summaryrefslogtreecommitdiff
path: root/gc.c
AgeCommit message (Expand)Author
2023-02-07Revert "Consider DATA objects without a mark function as protected"Jean Boussier
2023-02-07Consider DATA objects without a mark function as protectedJean Boussier
2023-02-01[Bug #19398] Memory leak in WeakMapPeter Zhu
2023-01-31Copying GC support for EXIVARKunshan Wang
2023-01-19Add rb_gc_mark_and_move and implement on iseqPeter Zhu
2023-01-11Move classpath to rb_classext_tPeter Zhu
2023-01-09Fix re-embedding of strings during compactionPeter Zhu
2023-01-04Allow malloc during gc when GC has been disabledPeter Zhu
2023-01-03[ci skip] Remove trailing semicolon in gc.cPeter Zhu
2022-12-30Fix integer underflow when using HEAP_INIT_SLOTSPeter Zhu
2022-12-26Skip insanely memory consuming testsNobuyoshi Nakada
2022-12-20[DOC] Fix formatting for GC.compactPeter Zhu
2022-12-20[DOC] Escape all usages of GCPeter Zhu
2022-12-20[DOC] Fix call-seq for GC methodsPeter Zhu
2022-12-20[DOC] Fix formatting for GC#latest_compact_infoPeter Zhu
2022-12-20Fix thrashing of major GC when size pool is smallPeter Zhu
2022-12-19Fix misfire of compaction read barrierPeter Zhu
2022-12-19Fix buffer overrun when re-embedding objectsPeter Zhu
2022-12-17Hard crash when allocating in GC when RUBY_DEBUGPeter Zhu
2022-12-17Move check for GC to xmalloc and xcallocPeter Zhu
2022-12-16Don't allow allocating memory during GCPeter Zhu
2022-12-15Refactor to only attempt to move movable objectsPeter Zhu
2022-12-15Fix Object Movement allocation in GCMatt Valentine-House
2022-12-15Transition complex objects to "too complex" shapeJemma Issroff
2022-12-15Revert "Fix Object Movement allocation in GC"Peter Zhu
2022-12-15Fix Object Movement allocation in GCMatt Valentine-House
2022-12-13fix indentation: gc_compact_destination_poolMatt Valentine-House
2022-12-12[DOC] Don't document private methods in objspacePeter Zhu
2022-12-10Expose need_major_gc via GC.latest_gc_info (#6791)Mirek Klimos
2022-12-09Remove unused counter for heap_page->pinned_slotsMatt Valentine-House
2022-11-22Increment max_iv_count on class based on number of set_iv in initialize (#6788)Jemma Issroff
2022-11-21Add RVALUE_OVERHEAD and move ractor_belonging_idPeter Zhu
2022-11-18Differentiate T_OBJECT shapes from other objectsAaron Patterson
2022-11-16Using UNDEF_P macroS-H-GAMELINKS
2022-11-10Remove numiv from RObjectJemma Issroff
2022-11-10Transition shape when object's capacity changesJemma Issroff
2022-11-06[wasm] Scan machine stack based on `ec->machine.stack_{start,end}`Yuta Saito
2022-11-04Increment max_iv_count on class in gc marking, not gc freeingJemma Issroff
2022-10-31Implement object shapes for T_CLASS and T_MODULE (#6637)John Hawthorn
2022-10-28fix ASAN error in GCAaron Patterson
2022-10-21Rename `iv_count` on shapes to `next_iv_index`Jemma Issroff
2022-10-21Remove unused class serialJemma Issroff
2022-10-21Check writebarrier arguments only when RGENGC_CHECK_MODE [ci skip]Nobuyoshi Nakada
2022-10-20Check writebarrier argumentsNobuyoshi Nakada
2022-10-19Stop zeroing memory on allocation / copyAaron Patterson
2022-10-19Fix and improve coroutines for Darwin (macOS) ppc/ppc64. (#5975)Sergey Fedorov
2022-10-15More precisely iterate over Object instance variablesAaron Patterson
2022-10-14Use `roomof` macro for rounding up divisionsNobuyoshi Nakada
2022-10-11Revert "Revert "This commit implements the Object Shapes technique in CRuby.""Jemma Issroff
2022-10-07Add IO#timeout attribute and use it for blocking IO operations. (#5653)Samuel Williams