aboutsummaryrefslogtreecommitdiffstats
path: root/vm.c
Commit message (Expand)AuthorAgeFilesLines
* remove `NON_SCALAR_THREAD_ID` supportKoichi Sasada2022-05-241-4/+0
* setup vm->main_ractor before `Init_native_thread()`Koichi Sasada2022-05-201-5/+6
* `rb_thread_t::serial` for debugKoichi Sasada2022-05-201-0/+5
* Delete autoload data from global features after autoload has completed. (#5910)Samuel Williams2022-05-171-2/+2
* Fix various autoload race conditions. (#5898)Samuel Williams2022-05-151-0/+4
* Rust YJITAlan Wu2022-04-271-1/+6
* introduce struct `rb_native_thread`Koichi Sasada2022-04-231-7/+6
* refactoring thread inits in vm.cKoichi Sasada2022-04-231-30/+22
* Uncomment code to raise LocalJumpError for yield across thread through enumJeremy Evans2022-04-211-2/+0
* Raise RuntimeError if Kernel#binding is called from a non-Ruby frameJeremy Evans2022-04-061-7/+4
* RubyVM.stat constant cache metrics (#5766)Kevin Newton2022-04-051-32/+11
* Bring back RubyVM.stat(:global_constant_state)Kevin Newton2022-04-041-1/+3
* Finer-grained constant cache invalidation (take 2)Kevin Newton2022-04-011-9/+52
* Revert "Raise RuntimeError if Kernel#binding is called from a non-Ruby frame"Jeremy Evans2022-04-011-4/+7
* Prefix ccan headers (#4568)Nobuyoshi Nakada2022-03-301-7/+7
* Revert "Finer-grained inline constant cache invalidation"Nobuyoshi Nakada2022-03-251-52/+9
* Raise RuntimeError if Kernel#binding is called from a non-Ruby frameJeremy Evans2022-03-241-7/+4
* Finer-grained inline constant cache invalidationKevin Newton2022-03-241-9/+52
* Add ISEQ_BODY macroPeter Zhu2022-03-241-40/+40
* [wasm] vm.c: stop unwinding to main for every vm_exec call by setjmpYuta Saito2022-02-181-0/+80
* Fix error: old-style function definitionKazuhiro NISHIYAMA2022-01-221-1/+1
* Accurately report VM memsizeKevin Newton2022-01-211-4/+52
* T#dup (T < Proc) should return T's objectKoichi Sasada2022-01-131-1/+1
* Show the target Proc on Ractor::IsolationErrorSutou Kouhei2021-12-221-1/+3
* make `overloaded_cme_table` truly weak key mapKoichi Sasada2021-12-211-1/+5
* Remove RubyVM::JIT (#5275)Takashi Kokubun2021-12-151-3/+0
* Don't invalidate BOPs when aliases redefinedJohn Hawthorn2021-12-141-3/+8
* YJIT: Avoid unnecessary BOP invalidationJohn Hawthorn2021-12-141-3/+5
* Prepare for removing RubyVM::JIT (#5262)Takashi Kokubun2021-12-131-12/+11
* `Ractor.make_shareable` checks proc's seflKoichi Sasada2021-12-091-0/+4
* Lazily create singletons on instance_{exec,eval} (#5146)John Hawthorn2021-12-021-12/+15
* Rework tracing for blocks running as methodsAlan Wu2021-12-011-41/+32
* Refactor hacky ID tables to struct rb_ast_id_table_tYusuke Endoh2021-11-211-5/+4
* `rb_method_optimized_t` for further extensionKoichi Sasada2021-11-191-2/+2
* `vm_empty_cc_for_super`Koichi Sasada2021-11-171-0/+16
* Convert IDs to IntegersNobuyoshi Nakada2021-11-081-4/+31
* Refine the error message for hidden variablesNobuyoshi Nakada2021-11-071-3/+8
* Preserve the encoding of message from outer local variableNobuyoshi Nakada2021-10-291-1/+1
* Preserve the encoding of message from outer local variablesNobuyoshi Nakada2021-10-291-47/+27
* Make Coverage suspendable (#4856)Yusuke Endoh2021-10-251-0/+2
* suppress warnings for probable NULL dererefencesNobuyoshi Nakada2021-10-241-0/+1
* Suppress sign-compare warningNobuyoshi Nakada2021-10-241-2/+2
* Deprecate include/prepend in refinements and add Refinement#import_methods in...Shugo Maeda2021-10-211-0/+19
* `RubyVM.keep_script_lines`Koichi Sasada2021-10-211-0/+39
* Expand tabsAlan Wu2021-10-201-2/+2
* Cleanup diff against upstream. Add commentsAlan Wu2021-10-201-1/+1
* Fix changes from rebaseNoah Gibbs2021-10-201-4/+3
* Count interpreter instructions when -DYJIT_STATS=1Alan Wu2021-10-201-13/+1
* Yet Another Ruby JIT!Jose Narvaez2021-10-201-6/+6
* WIP JIT-to-JIT returnsMaxime Chevalier-Boisvert2021-10-201-1/+1