aboutsummaryrefslogtreecommitdiffstats
path: root/gc.c
Commit message (Expand)AuthorAgeFilesLines
* Improve string info in rb_raw_obj_infoPeter Zhu2022-01-071-2/+9
* Remove assertion causing read barrier to triggerPeter Zhu2022-01-051-2/+0
* Switch `is_pointer_to_heap` to use library bsearchMatt Valentine-House2022-01-041-23/+50
* [Feature #18364] Add GC.stat_heap to get stats for memory heapsPeter Zhu2022-01-041-0/+122
* Negative RBOOL usageNobuyoshi Nakada2022-01-011-2/+2
* On 64bit macOS, enlarge heap pages to reduce mmap calls [Bug #18447]Nobuyoshi Nakada2021-12-291-0/+7
* Remove deprecate rb_cData [Bug #18433]Nobuyoshi Nakada2021-12-261-3/+0
* `finalize_deferred` doesn't need VM lockKoichi Sasada2021-12-231-6/+2
* undef `rb_vm_lookup_overloaded_cme()`Koichi Sasada2021-12-231-6/+5
* make `overloaded_cme_table` truly weak key mapKoichi Sasada2021-12-211-7/+1
* `mandatory_only_cme` should not be in `def`Koichi Sasada2021-12-211-4/+13
* Show whether object is garbage in rb_raw_obj_info()Alan Wu2021-12-201-1/+2
* Remove compaction support detection using sysconfPeter Zhu2021-12-141-35/+3
* Fixed the check order in wmap_live_p [Bug #18392]Nobuyoshi Nakada2021-12-071-13/+22
* ObjectSpace::WeakMap#inspect: check if living object [Bug #18392]Nobuyoshi Nakada2021-12-071-6/+23
* Refactor GC functions to have consistent namingPeter Zhu2021-12-031-18/+18
* Lazily create singletons on instance_{exec,eval} (#5146)John Hawthorn2021-12-021-2/+2
* Don't clear the constant cache when finishing compactionMatt Valentine-House2021-12-021-1/+0
* Cast tv_usec to int32_t to fit in tv_nsecYuta Saito2021-12-021-1/+1
* Fix a function name in an error messageKazuhiro NISHIYAMA2021-11-261-1/+1
* Remove unused function `size_pool_for_size`Kazuhiro NISHIYAMA2021-11-261-14/+0
* initialize allocated memory by VWA for assertionsKoichi Sasada2021-11-261-0/+4
* Revert "Add GC.stat_size_pool to get stats for a size pool"Peter Zhu2021-11-251-95/+0
* Add GC.stat_size_pool to get stats for a size poolPeter Zhu2021-11-251-0/+95
* Speed up Ractors for Variable Width AllocationPeter Zhu2021-11-231-93/+59
* Removes unused HEAP_PAGE_BITMAP_PLANES constant from gc.cJemma Issroff2021-11-221-2/+0
* Make RCLASS_EXT(c)->subclasses a doubly linked listMatt Valentine-House2021-11-221-13/+2
* gc.c: Fix a compile error on some crossbuildsYusuke Endoh2021-11-191-1/+1
* GC measurement featureKoichi Sasada2021-11-191-37/+60
* support `GC.stat(:time)` take 2Koichi Sasada2021-11-191-0/+51
* `Primitive.mandatory_only?` for fast pathKoichi Sasada2021-11-151-5/+9
* Remove RCLASS(obj)->ptr when RVARGC is enabledMatt Valentine-House2021-11-111-4/+4
* fix a memory leak introduced in 8bbd319Matt Valentine-House2021-11-111-2/+6
* [Feature #18290] Deprecate rb_gc_force_recycle and remove invalidate_mark_sta...Peter Zhu2021-11-081-72/+1
* make obj_free return true when it frees an objectMatt Valentine-House2021-10-291-9/+8
* Prefer size pool heap macros over direct accessMatt Valentine-House2021-10-291-15/+15
* Fix a warningKazuhiro NISHIYAMA2021-10-281-1/+1
* Fix a warningKazuhiro NISHIYAMA2021-10-281-1/+1
* Align `RFloat` at VALUE boundaryNobuyoshi Nakada2021-10-271-6/+5
* [Feature #18239] Implement VWA for stringsPeter Zhu2021-10-251-56/+89
* [Feature #18239] Refactor RVARGC alloc functionsPeter Zhu2021-10-251-1/+3
* Suppress false warning for freed pointerNobuyoshi Nakada2021-10-241-13/+24
* Push compaction page alignment check downAaron Patterson2021-10-211-18/+18
* Partial revert of ceebc7fc98dAaron Patterson2021-10-201-1/+1
* MicroJIT: generate less code for CFUNCsAlan Wu2021-10-201-1/+1
* Print errno when mprotect failsAaron Patterson2021-10-201-2/+2
* Move rb_ractor_p definitionS.H2021-10-041-2/+0
* Using NIL_P macro instead of `== Qnil`S.H2021-10-031-4/+4
* Cast to void pointer to suppress -Wformat-pedantic in RUBY_DEBUG_LOGNobuyoshi Nakada2021-10-031-4/+4
* Introduce `RBIMPL_NONNULL_ARG` macroNobuyoshi Nakada2021-09-271-8/+1