summaryrefslogtreecommitdiff
path: root/gc.c
Commit message (Expand)AuthorAgeFilesLines
* [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
* Fix malloc_increase is not correctly calculatedPeter Zhu2021-09-201-3/+3
* Fix total_freed_objects for invalidated pagesPeter Zhu2021-09-151-1/+2
* Don't overwrite free_slots count during sweepingPeter Zhu2021-09-151-1/+2
* Update the free_slots count of the original pagePeter Zhu2021-09-151-20/+9
* Using RB_BIGNUM_TYPE_P macroS-H-GAMELINKS2021-09-111-2/+2
* suppress GCC's -Wnonnull-compare卜部昌平2021-09-101-0/+7
* Replace RBOOL macroS-H-GAMELINKS2021-09-051-4/+4
* Remove heap_is_swept_object functionPeter Zhu2021-09-011-12/+1
* Fix memory leak in Variable Width AllocationPeter Zhu2021-08-271-23/+27
* [Feature #18045] Implement size classes for GCPeter Zhu2021-08-251-329/+749
* [Feature #18045] Remove T_PAYLOADPeter Zhu2021-08-251-343/+2
* Replace intptr_t with uintptr_t in gc.cPeter Zhu2021-08-231-21/+21
* Revert "[Feature #18045] Implement size classes for GC"Peter Zhu2021-08-231-754/+674
* [Feature #18045] Implement size classes for GCPeter Zhu2021-08-231-331/+752
* [Feature #18045] Remove T_PAYLOADPeter Zhu2021-08-231-343/+2
* Turned the reminder comment to a compile-time messageNobuyoshi Nakada2021-08-201-1/+2
* Undefine the alloc function for T_DATA classesMike Dalessio2021-08-201-2/+13
* `SIZE_MAX` is not `size_t` on emscriptenNobuyoshi Nakada2021-08-161-3/+3
* Make during_compacting flag in GC one bitPeter Zhu2021-08-111-2/+2
* Make bit flags `reason` unsignedNobuyoshi Nakada2021-08-081-26/+26
* Suppress warnings when GC_ENABLE_INCREMENTAL_MARK == 0Nobuyoshi Nakada2021-08-081-8/+7
* Using RBOOL macroS.H2021-08-021-5/+5
* Do not check pending interrupts when running finalizersJeremy Evans2021-07-291-0/+4
* 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