summaryrefslogtreecommitdiff
path: root/variable.c
Commit message (Expand)AuthorAgeFilesLines
* Merge T_OBJECT case in rb_ivar_delete functionS-H-GAMELINKS2023-04-271-5/+0
* fix `NameError` messageKoichi Sasada2023-04-191-3/+4
* Move shape ID to flags for classes on 32 bitPeter Zhu2023-04-161-1/+1
* Use an st table for "too complex" objectsAaron Patterson2023-03-201-14/+14
* Reuse CVAR_LOOKUP macroS-H-GAMELINKS2023-03-121-24/+14
* Revert "Allow classes and modules to become too complex"Aaron Patterson2023-03-101-79/+23
* Allow classes and modules to become too complexHParker2023-03-091-23/+79
* Stop exporting symbols for MJITTakashi Kokubun2023-03-061-11/+11
* [Bug #19469] Fix crash when resizing generic iv listPeter Zhu2023-03-031-5/+18
* Implement Write Barrier for `autoload_table_type`Jean Boussier2023-03-011-12/+16
* Fix spelling (#7405)John Bampton2023-02-281-1/+1
* Implement Write Barrier for `autoload_data`Jean Boussier2023-02-281-6/+7
* Encapsulate RCLASS_ATTACHED_OBJECTJean Boussier2023-02-151-2/+2
* Copying GC support for EXIVARKunshan Wang2023-01-311-4/+4
* don't allow setting class variable on module that's frozen [Bug #19341]lukeg2023-01-191-0/+1
* Move classpath to rb_classext_tPeter Zhu2023-01-111-34/+31
* Remove check for RCLASS_EXT in variable.cPeter Zhu2023-01-111-1/+0
* Fix buffer overrun with auto-compact for shapesPeter Zhu2022-12-221-1/+4
* Transition complex objects to "too complex" shapeJemma Issroff2022-12-151-9/+103
* Stop transitioning to UNDEF when undefining an instance variableAaron Patterson2022-12-071-52/+14
* Use consistent style [ci skip]Nobuyoshi Nakada2022-12-021-1/+2
* Speed up shape transitionsPeter Zhu2022-11-211-10/+15
* Refactor obj_ivar_set and vm_setivarPeter Zhu2022-11-211-20/+23
* Differentiate T_OBJECT shapes from other objectsAaron Patterson2022-11-181-0/+1
* Using UNDEF_P macroS-H-GAMELINKS2022-11-161-20/+20
* Extract `rb_shape_get_parent` helperJemma Issroff2022-11-101-2/+2
* Remove numiv from RObjectJemma Issroff2022-11-101-15/+5
* Transition shape when object's capacity changesJemma Issroff2022-11-101-23/+38
* Adjust indents [ci skip]Nobuyoshi Nakada2022-11-101-5/+10
* Adjust indents [ci skip]Nobuyoshi Nakada2022-11-011-11/+11
* Always lookup IV buffers when iteratingAaron Patterson2022-10-311-7/+36
* Implement object shapes for T_CLASS and T_MODULE (#6637)John Hawthorn2022-10-311-151/+185
* Adjust indents [ci skip]Nobuyoshi Nakada2022-10-241-37/+34
* Reuse RBOOL macro in rb_ivar_defined functionS-H-GAMELINKS2022-10-241-6/+1
* Rename `iv_count` on shapes to `next_iv_index`Jemma Issroff2022-10-211-5/+5
* Stop zeroing memory on allocation / copyAaron Patterson2022-10-191-3/+0
* More precisely iterate over Object instance variablesAaron Patterson2022-10-151-23/+12
* Explicitly cast to uint32_t and suppress warnings by VCNobuyoshi Nakada2022-10-161-2/+3
* YJIT doesn't need rb_obj_ensure_iv_index_mappingAaron Patterson2022-10-141-1/+1
* Make inline cache reads / writes atomic with object shapesJemma Issroff2022-10-111-3/+3
* Revert "Revert "This commit implements the Object Shapes technique in CRuby.""Jemma Issroff2022-10-111-403/+336
* Revert "This commit implements the Object Shapes technique in CRuby."Aaron Patterson2022-09-301-336/+403
* * expand tabs. [ci skip]git2022-09-291-18/+18
* This commit implements the Object Shapes technique in CRuby.Jemma Issroff2022-09-281-419/+352
* Revert this until we can figure out WB issues or remove shapes from GCAaron Patterson2022-09-261-349/+403
* * expand tabs. [ci skip]git2022-09-271-18/+18
* This commit implements the Object Shapes technique in CRuby.Jemma Issroff2022-09-261-419/+365
* Repalce to NIL_P macroS-H-GAMELINKS2022-08-191-1/+1
* Expand tabs [ci skip]Takashi Kokubun2022-07-211-341/+341
* Implement Objects on VWAPeter Zhu2022-07-151-1/+7