aboutsummaryrefslogtreecommitdiffstats
path: root/gc.c
Commit message (Expand)AuthorAgeFilesLines
* Typedef built-in function typesNobuyoshi Nakada2022-06-021-1/+1
* Move `GC.verify_compaction_references` [Bug #18779]Nobuyoshi Nakada2022-06-021-38/+8
* Adjust indent and nesting [ci skip]Nobuyoshi Nakada2022-06-021-3/+1
* Define unsupported GC compaction methods as rb_f_notimplementMike Dalessio2022-05-241-4/+26
* Move compaction-related methods into gc.cMike Dalessio2022-05-241-10/+91
* Fix compiler warning when USE_RVARGC=0Matt Valentine-House2022-05-131-1/+1
* Write have instead of have have [ci skipKaĆ­que Kandy Koga2022-05-101-1/+1
* Don't allocate new page on finish sweepingPeter Zhu2022-05-091-2/+0
* Fix heap_extend_pages when total_slots is 0Peter Zhu2022-05-091-3/+7
* Grow size pools with no or few slotsPeter Zhu2022-05-091-0/+5
* Call gc_sweep_finish_size_pool on size pools with no pagesPeter Zhu2022-05-091-0/+13
* Fix gc_page_sweep when last bitmap plane is not usedPeter Zhu2022-05-091-3/+8
* Mark RCLASS_INCLUDERAlan Wu2022-05-051-0/+4
* Unpoison freelist when iterating over it in gc_sweep_pageJemma Issroff2022-05-041-0/+2
* Remove unneeded castPeter Zhu2022-05-041-1/+1
* Update reference for RCLASS_INCLUDER during compactionAlan Wu2022-05-031-0/+1
* Parenthize macro argumentsNobuyoshi Nakada2022-04-131-2/+2
* Fix a typo [ci skip]Kazuhiro NISHIYAMA2022-04-121-1/+1
* [DOC]Some link prefix replaceS-H-GAMELINKS2022-04-091-2/+2
* Update `heap_pages_deferred_final` atomicallyNobuyoshi Nakada2022-04-071-9/+14
* ruby_gc_set_params: update malloc_limit when env is setEric Wong2022-04-041-2/+4
* Disable mmap on WASMPeter Zhu2022-04-041-2/+7
* Make heap page sizes 64KiB by defaultPeter Zhu2022-04-041-7/+2
* extract magic number from gc_sweep_stepMatt Valentine-House2022-04-011-1/+3
* Use mmap for heap page allocation onlyPeter Zhu2022-04-011-77/+104
* [Feature #18619] remove FL_FROM_FREELISTMatt Valentine-House2022-04-011-13/+1
* [Feature #18619] Remove redundant compaction pathMatt Valentine-House2022-04-011-204/+2
* [Feature #18619] Reverse the order of compaction movementMatt Valentine-House2022-04-011-60/+233
* Remove hard-coded swept slots thresholdMatt Valentine-House2022-03-311-1/+4
* Decouple incremental marking step from page sizesPeter Zhu2022-03-301-96/+136
* Prefix ccan headers (#4568)Nobuyoshi Nakada2022-03-301-29/+29
* Remove unneeded function declarations in gc.cPeter Zhu2022-03-281-4/+0
* Add ISEQ_BODY macroPeter Zhu2022-03-241-3/+3
* Dedup superclass array in leaf sibling classesJohn Hawthorn2022-03-031-4/+10
* Constant time class to class ancestor lookupJohn Hawthorn2022-02-231-0/+11
* Change darray size to size_t and add functions that use GC mallocPeter Zhu2022-02-161-0/+7
* `wmap#each` should check liveness of keysKoichi Sasada2022-02-161-20/+42
* fix GC event synchronizationKoichi Sasada2022-02-141-14/+22
* Free cached mark stack chunks when freeing objspacePeter Zhu2022-02-101-2/+19
* Move total_freed_pages to size poolPeter Zhu2022-02-031-3/+17
* Move total_allocated_pages to size poolPeter Zhu2022-02-031-3/+20
* Fix case when gc_marks_continue does not yield slotsPeter Zhu2022-02-031-4/+5
* Decouple GC slot sizes from RVALUEPeter Zhu2022-02-021-73/+84
* Fix heap page iteration in gc_verify_heap_pagePeter Zhu2022-01-311-6/+8
* [Bug#18556] Fallback `MAP_ ANONYMOUS`Nobuyoshi Nakada2022-01-291-0/+4
* Fix typo in assertion in gc.cPeter Zhu2022-01-261-1/+1
* Unpoison the cached object in the exact sizeNobuyoshi Nakada2022-01-261-1/+7
* Call rb_id_table_foreach_values insteadPeter Zhu2022-01-251-2/+2
* Rename rb_id_table_foreach_with_replacePeter Zhu2022-01-251-7/+7
* Remove redundant if statement in try_movePeter Zhu2022-01-251-6/+1