aboutsummaryrefslogtreecommitdiffstats
path: root/gc.c
Commit message (Expand)AuthorAgeFilesLines
* Suppress exception message in finalizer [Feature #17798]Nobuyoshi Nakada2021-07-231-1/+1
* Show exception in finalizer [Feature #17798]Nobuyoshi Nakada2021-07-231-1/+14
* Access rb_execution_context_t::errinfo directlyNobuyoshi Nakada2021-07-231-2/+2
* Use rb_equalNobuyoshi Nakada2021-07-231-1/+1
* Finalizers no longer store the safe levelNobuyoshi Nakada2021-07-231-6/+6
* Don't recompute the heap pagePeter Zhu2021-07-221-1/+1
* Don't set flags in finalize_listPeter Zhu2021-07-221-1/+0
* Change GC verification to walk all pagesPeter Zhu2021-07-211-6/+7
* [Bug #18014] Add assertion to verify freelistPeter Zhu2021-07-151-0/+12
* [Bug #18014] Fix memory leak in GC when using RactorsPeter Zhu2021-07-151-62/+54
* [Bug #18014] Fix rb_gc_force_recycle unmark before sweepPeter Zhu2021-07-151-1/+1
* Get rid of conflict in ccan/listNobuyoshi Nakada2021-07-101-0/+2
* gc.c: use each_stack_location for emscriptenYusuke Endoh2021-07-071-2/+2
* Use stride passed into os_obj_of_iPeter Zhu2021-06-301-3/+2
* Fix crash on RGENGC_CHECK_MODE=4Peter Zhu2021-06-291-0/+2
* Fix asan error when walking heap for T_PAYLOAD objectseileencodes2021-06-221-1/+3
* Add a cache for class variableseileencodes2021-06-181-0/+36
* Refactor heap_set_incrementPeter Zhu2021-06-171-17/+7
* Adjust styles [ci skip]Nobuyoshi Nakada2021-06-171-11/+13
* Added parentheses to silence sizeof-array-div warningsNobuyoshi Nakada2021-06-131-1/+1
* Removed duplicate includeNobuyoshi Nakada2021-06-131-1/+1
* Finish GC before calling gc_set_initial_pagesPeter Zhu2021-06-101-0/+2
* Refactor gc_marks_start_heap to only configure heapPeter Zhu2021-06-091-10/+13
* Add multi-heap support to gc_marks_wb_unprotected_objectsPeter Zhu2021-06-081-3/+3
* Support an arbitrary number of header bits (< BITS_BITLENGTH)Aaron Patterson2021-06-031-243/+312
* use a bool instead of intAaron Patterson2021-06-021-3/+3
* Allocate exact space for objspace_each_objectsPeter Zhu2021-06-021-2/+2
* Use the current object as the compaction indexAaron Patterson2021-06-011-37/+64
* Fill out switch statement in push_mark_stackAaron Patterson2021-05-261-7/+36
* Disable compaction on platforms that can't support itAaron Patterson2021-05-251-0/+18
* Revert any references that are on the machine stack after compactingAaron Patterson2021-05-181-17/+39
* PAGE_SIZE is never used on msys/mingwNobuyoshi Nakada2021-05-161-1/+1
* Refix PAGE_SIZENobuyoshi Nakada2021-05-141-4/+7
* Make USE_MMAP_ALIGNED_ALLOC static constNobuyoshi Nakada2021-05-141-3/+3
* skip rb_bug for inconsistent zombies countKoichi Sasada2021-05-131-7/+8
* Revert "Filling cache values on cvar write"Aaron Patterson2021-05-111-36/+0
* Add a cache for class variableseileencodes2021-05-111-0/+36
* Protoized old pre-ANSI K&R style declarations and definitionsNobuyoshi Nakada2021-05-071-2/+2
* Conditionally used functionsNobuyoshi Nakada2021-05-061-7/+18
* Allow newobj_of0 and newobj_slowpath to allocate into multiple heap slotsMatt Valentine-House2021-05-061-49/+408
* Reuse sysconf resultNobuyoshi Nakada2021-05-061-12/+12
* Revised PAGE_MAX_SIZE caseNobuyoshi Nakada2021-05-061-1/+4
* Fall back to sysconf to determine page size during runtimePeter Zhu2021-05-051-2/+14
* Fix PAGE_SIZE macro detection in autoconfPeter Zhu2021-05-051-19/+18
* PAGE_SIZE is used only when mmap is availableNobuyoshi Nakada2021-05-061-0/+4
* Fix compilation on M1 MacNobuyoshi Nakada2021-05-051-47/+71
* Fix -Wundef warnings for patterns `#if HAVE`Benoit Daloze2021-05-041-2/+2
* Fix trivial -Wundef warningsBenoit Daloze2021-05-041-1/+1
* Eagerly allocate instance variable tables along with objectAaron Patterson2021-05-031-2/+18
* Partially revert 2c7d3b3a722c4636ab1e9d289cbca47ddd168d3eYusuke Endoh2021-04-271-7/+0