summaryrefslogtreecommitdiff
path: root/gc.c
Commit message (Expand)AuthorAgeFilesLines
* Protoized old pre-ANSI K&R style declarations and definitionsNobuyoshi Nakada2021-05-071-2/+2
* Conditionally used functionsNobuyoshi Nakada2021-05-061-7/+18
* Allow newobj_of0 and newobj_slowpath to allocate into multiple heap slotsMatt Valentine-House2021-05-061-49/+408
* Reuse sysconf resultNobuyoshi Nakada2021-05-061-12/+12
* Revised PAGE_MAX_SIZE caseNobuyoshi Nakada2021-05-061-1/+4
* Fall back to sysconf to determine page size during runtimePeter Zhu2021-05-051-2/+14
* Fix PAGE_SIZE macro detection in autoconfPeter Zhu2021-05-051-19/+18
* PAGE_SIZE is used only when mmap is availableNobuyoshi Nakada2021-05-061-0/+4
* Fix compilation on M1 MacNobuyoshi Nakada2021-05-051-47/+71
* Fix -Wundef warnings for patterns `#if HAVE`Benoit Daloze2021-05-041-2/+2
* Fix trivial -Wundef warningsBenoit Daloze2021-05-041-1/+1
* Eagerly allocate instance variable tables along with objectAaron Patterson2021-05-031-2/+18
* Partially revert 2c7d3b3a722c4636ab1e9d289cbca47ddd168d3eYusuke Endoh2021-04-271-7/+0
* node.c (rb_ast_new): imemo_ast is WB-unprotectedYusuke Endoh2021-04-261-0/+7
* Fix some typos by spell checkerRyuta Kamizono2021-04-261-2/+2
* check ep during compaction because it can be nullAaron Patterson2021-04-201-3/+6
* Remove useless attribute set in init_mark_stackPeter Zhu2021-04-151-1/+0
* Add RSymbol struct back into RVALUEPeter Zhu2021-04-131-0/+1
* Suppress a warningNobuyoshi Nakada2021-04-011-1/+1
* skip marking for uninitialized imemo_env.Koichi Sasada2021-03-311-6/+10
* Change heap walking to be safe for object allocationPeter Zhu2021-03-241-44/+86
* Free iv index tableAaron Patterson2021-03-231-0/+1
* Remove unneeded declarationsS.H2021-03-201-2/+0
* gc.c: Use dedicated APIs for conservative GC in EmscriptenYusuke Endoh2021-03-191-0/+26
* Constified variables for getenvNobuyoshi Nakada2021-03-121-2/+2
* Don't use mmap on platforms that have large OS page sizesPeter Zhu2021-03-021-3/+18
* Fix typoPeter Zhu2021-03-021-1/+1
* Disable auto compaction on platforms that do not support itPeter Zhu2021-02-251-0/+7
* Use mmap for allocating heap pagesPeter Zhu2021-02-251-13/+37
* Reverting PR #4221Aaron Patterson2021-02-241-44/+13
* Disable auto compaction on platforms that do not support itPeter Zhu2021-02-241-0/+7
* Use mmap for allocating heap pagesPeter Zhu2021-02-241-13/+37
* show more information about imemo_mentKoichi Sasada2021-02-191-15/+18
* sync check_rvalue_consistency_force()Koichi Sasada2021-02-181-73/+76
* clear RVALUE on NEWOBJ event.Koichi Sasada2021-02-181-12/+15
* sync GC rest if neededKoichi Sasada2021-02-181-0/+3
* Removed no-longer used variableNobuyoshi Nakada2021-02-171-2/+0
* Remove unreachable if statement in gc_page_sweepPeter Zhu2021-02-161-7/+0
* Don't register non-heap allocated objectsAaron Patterson2021-02-041-0/+3
* Use RCLASS_EXT macro instead of directly accessing ptrMatt Valentine-House2021-02-011-5/+5
* Add RCLASS_SUBCLASSES MacroMatt Valentine-House2021-02-011-4/+4
* Removed static assertion about size of `RVALUE`Nobuyoshi Nakada2021-01-311-2/+0
* Narrowed down the condition to pack RValueNobuyoshi Nakada2021-01-311-3/+5
* [Fixes #17538] Fix assertion failure when rincgc is turned offPeter Zhu2021-01-271-2/+3
* Re-enable RGENGC_DEBUG for platforms with HAVE_VA_ARGS_MACROMatt Valentine-House2021-01-261-0/+2
* Fix RGENGC CHECK MODE >= 4Matt Valentine-House2021-01-261-2/+7
* gc.c: stop overflow check on emscripten buildYusuke Endoh2021-01-231-6/+1
* check is_incremental_marking() againKoichi Sasada2021-01-221-1/+10
* Fix more assumptions about the read barrierAaron Patterson2021-01-211-10/+0
* Always enabled read barrier even on GC.compactAaron Patterson2021-01-211-17/+3