aboutsummaryrefslogtreecommitdiffstats
path: root/variable.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Get rid of a nasal demonNobuyoshi Nakada2022-06-231-1/+1
* [Bug #18813] Warn when autoload has to lookup in parent namespaceJean Boussier2022-06-181-0/+16
* Fix Module#const_source_location for autoload constants with direct requiresJeremy Evans2022-06-061-2/+5
* Simplify the autoload require logic.Samuel Williams2022-05-261-36/+28
* Fix GC race condition in autoload.Samuel Williams2022-05-261-15/+18
* Tidy up redundant returns.Samuel Williams2022-05-251-3/+1
* Retain reference to blocking fibers.Samuel Williams2022-05-251-31/+15
* Fold too long lines, etc [ci skip]Nobuyoshi Nakada2022-05-191-5/+14
* Suppress unused-function [ci skip]Nobuyoshi Nakada2022-05-191-0/+2
* Move feature deletion from GC mark to `autoload_delete`. (#5912)Samuel Williams2022-05-171-6/+10
* Restore implicit relationship between `autoload_const` and `autoload_data` du...Samuel Williams2022-05-171-62/+116
* Suppress an unused-but-set-variable warning [ci skip]Nobuyoshi Nakada2022-05-171-3/+5
* Delete autoload data from global features after autoload has completed. (#5910)Samuel Williams2022-05-171-251/+304
* Fix various autoload race conditions. (#5898)Samuel Williams2022-05-151-76/+128
* Use a proper mutex for autoloading features. (#5788)Samuel Williams2022-05-081-133/+100
* call `const_added` after `autoload`Koichi Sasada2022-04-081-10/+21
* Finer-grained constant cache invalidation (take 2)Kevin Newton2022-04-011-13/+6
* Prefix ccan headers (#4568)Nobuyoshi Nakada2022-03-301-16/+16
* Revert "Finer-grained inline constant cache invalidation"Nobuyoshi Nakada2022-03-251-6/+13
* Finer-grained inline constant cache invalidationKevin Newton2022-03-241-13/+6
* variable.c: Fix incorrect identation in `const_added`Jean Boussier2022-01-141-2/+2
* Add a Module#const_added callbackJean Boussier2022-01-141-0/+10
* Fix typos [ci skip]Kazuhiro NISHIYAMA2021-12-251-1/+1
* prohibit load by `autoload` on non-main RactorKoichi Sasada2021-12-151-0/+4
* allow to access ivars of classes/modulesKoichi Sasada2021-10-231-10/+66
* Extract yjit_force_iv_index and make it work when object is frozenAlan Wu2021-10-201-3/+30
* Remove autoload for constant if the autoload failsJeremy Evans2021-10-081-16/+22
* Merge if statementS-H-GAMELINKS2021-10-071-4/+1
* Return fstrings from `build_const_pathname`.Samuel Williams2021-09-251-2/+1