aboutsummaryrefslogtreecommitdiffstats
path: root/gc.c
Commit message (Expand)AuthorAgeFilesLines
* need more lock in finalize_list()Koichi Sasada2020-12-071-9/+10
* RB_VM_LOCK_ENTER_NO_BARRIERKoichi Sasada2020-12-071-4/+4
* skip assertion on multi-ractorKoichi Sasada2020-12-071-1/+3
* RB_EC_NEWOBJ_OFKoichi Sasada2020-12-071-1/+1
* per-ractor object allocationKoichi Sasada2020-12-071-146/+219
* Revert "Skip repeated scan of object during compaction"Aaron Patterson2020-12-031-1/+1
* Skip repeated scan of object during compactionPeter Zhu2020-12-031-1/+1
* When allocating new pages, add them to the end of the linked listAaron Patterson2020-12-021-2/+2
* Incremental sweeping should not require page allocationAaron Patterson2020-12-021-3/+2
* show with sharing infoKoichi Sasada2020-12-011-0/+1
* ractor local storage C-APIKoichi Sasada2020-12-011-0/+1
* support SIGSEGV/BUS while read_barrier_handler()Koichi Sasada2020-11-301-11/+18
* Run rb_print_backtrace first on ruby_on_ciTakashi Kokubun2020-11-261-1/+7
* Call rb_bug_without_die on CITakashi Kokubun2020-11-261-1/+6
* Disable auto compaction on platforms that can't support itAaron Patterson2020-11-251-5/+64
* Revert "Disable auto compaction on platforms that can't support it"Aaron Patterson2020-11-241-49/+3
* Disable auto compaction on platforms that can't support itAaron Patterson2020-11-241-0/+21
* add HEAP_PAGE_SIZE to internal constantsAaron Patterson2020-11-241-0/+1
* Disable read barrier on explicit compaction requestAaron Patterson2020-11-241-3/+28
* fix public interfaceKoichi Sasada2020-11-181-1/+1
* gc_rest can change the total pages, so we need to do that firstAaron Patterson2020-11-051-2/+2
* add asserts to find crashAaron Patterson2020-11-051-3/+3
* Refactor verification methodAaron Patterson2020-11-051-43/+37
* take VM lock when mutating the heapAaron Patterson2020-11-051-19/+27
* ensure T_OBJECT objects have internals initializedAaron Patterson2020-11-041-1/+5
* Add `GC.auto_compact= true/false` and `GC.auto_compact`Aaron Patterson2020-11-021-351/+642
* suppport Ractor.send(move: true) for more detaKoichi Sasada2020-11-021-12/+0
* Objects are born embedded, so we don't need to check ivprAaron Patterson2020-10-281-2/+1
* Remove another unnecessary testAaron Patterson2020-10-281-5/+3
* Remove unnecessary conditionalAaron Patterson2020-10-281-8/+6
* If an object isn't embedded it will have an ivptrAaron Patterson2020-10-281-3/+2
* Use a lock level for a less granular lock.Aaron Patterson2020-10-221-0/+2
* Ractor-safe rb_objspace_reachable_objects_fromKoichi Sasada2020-10-211-76/+82
* ObjectSpace.each_object with RactorsKoichi Sasada2020-10-201-2/+4
* sync RClass::ext::iv_index_tblKoichi Sasada2020-10-171-1/+29
* add NULL check.Koichi Sasada2020-10-031-1/+3
* Fix ASAN and don't check SPECIAL_CONST_PAaron Patterson2020-09-281-24/+21
* Fix ASAN errors when updating call cacheAaron Patterson2020-09-281-0/+8
* sync rb_gc_register_mark_object()Koichi Sasada2020-09-241-7/+11
* Add a comment about why we're checking the finalizer tableAaron Patterson2020-09-221-0/+5
* Revert "Pin values in the finalizer table"Aaron Patterson2020-09-221-0/+6
* Update heap_pages_himem after freeing pagesPeter Zhu2020-09-201-0/+6
* strip trailing spaces [ci skip]Nobuyoshi Nakada2020-09-191-3/+3
* Pin values in the finalizer tableAaron Patterson2020-09-181-7/+9
* rb_obj_info() shows more info for T_SYMBOLKoichi Sasada2020-09-181-0/+11
* Warn on a finalizer that captures the object to be finalizedChris Seaton2020-09-161-3/+61
* pointers on the stack need to be pinnedAaron Patterson2020-09-151-1/+1
* Fix incorrect initialization of `rb_io_t::self`.Samuel Williams2020-09-151-0/+2
* Fixed heap-use-after-free on racterNobuyoshi Nakada2020-09-041-0/+3
* Avoid potential for rb_raise() while crashingAlan Wu2020-09-031-1/+10