aboutsummaryrefslogtreecommitdiffstats
path: root/vm_insnhelper.c
Commit message (Expand)AuthorAgeFilesLines
* more on struct rb_call_data卜部昌平2019-10-251-114/+151
* retry tailcall optimization (#2529)wanabe2019-10-251-3/+34
* Duplicate hash when converting keyword hash to keywordsJeremy Evans2019-10-241-2/+4
* Combine call info and cache to speed up method invocationAlan Wu2019-10-241-35/+31
* extracted declare_underNobuyoshi Nakada2019-10-101-8/+10
* Revert "tailcall optimization again (#2528)"Koichi Sasada2019-10-061-34/+3
* tailcall optimization again (#2528)wanabe2019-10-061-3/+34
* add debug counters for vm_search_method_slowpath()卜部昌平2019-10-031-0/+5
* Revert https://github.com/ruby/ruby/pull/2486卜部昌平2019-10-031-23/+29
* Treat return in block in class/module as LocalJumpError (#2511)Jeremy Evans2019-10-021-1/+5
* Fix assertionNobuyoshi Nakada2019-09-301-1/+1
* delete unnecessary branch卜部昌平2019-09-301-4/+0
* refactor constify most of rb_method_entry_t卜部昌平2019-09-301-6/+6
* refactor add rb_method_entry_from_template卜部昌平2019-09-301-10/+2
* refactor delete rb_method_entry_copy卜部昌平2019-09-301-1/+0
* refactor delete rb_method_definition_set卜部昌平2019-09-301-20/+27
* refactor rb_method_definition_create take opts卜部昌平2019-09-301-4/+4
* refactor constify most of rb_method_definition_t卜部昌平2019-09-301-3/+3
* Remove VM_NO_KEYWORDS, replace with RB_NO_KEYWORDSJeremy Evans2019-09-291-1/+1
* Correctly issue ArgumentError when calling method that accepts no keywordsJeremy Evans2019-09-271-0/+2
* Adjusted spaces [ci skip]Nobuyoshi Nakada2019-09-271-7/+7
* Adjusted spaces [ci skip]Nobuyoshi Nakada2019-09-271-3/+6
* Add Module#ruby2_keywords for passing keywords through regular argument splatsJeremy Evans2019-09-251-17/+27
* Use RUBY_VM_NEXT_CONTROL_FRAME macroTakashi Kokubun2019-09-201-3/+2
* fix spec failure卜部昌平2019-09-191-2/+10
* reuse cc->call卜部昌平2019-09-191-6/+31
* delete unused variable卜部昌平2019-09-181-1/+0
* Fix keyword argument separation issues with sym procs when using refinementsJeremy Evans2019-09-171-4/+22
* Convert keyword argument to required positional hash argument for Class#new, ...Jeremy Evans2019-09-061-2/+10
* * remove trailing spaces. [ci skip]git2019-09-061-1/+1
* Mark rb_warn_keyword_to_last_hash as static inlineJeremy Evans2019-09-051-1/+0
* Convert empty keyword hash to required positional argument and warn for metho...Jeremy Evans2019-09-051-1/+1
* Convert empty keyword hash to required positional argument and warn for sym p...Jeremy Evans2019-09-051-1/+1
* Convert empty keyword hash to required positional argument and warn for lambd...Jeremy Evans2019-09-051-4/+6
* Convert empty keyword hash to required positional argument and warnJeremy Evans2019-09-051-5/+22
* Always remove empty keyword hashes when calling methodsJeremy Evans2019-09-051-13/+18
* Add a keyword-to-last-hash warning for some case of define_method methodYusuke Endoh2019-09-051-0/+4
* define_method should not drop the empty keyword hashYusuke Endoh2019-09-051-1/+1
* vm_call_bmethod should not drop the empty keyword hashYusuke Endoh2019-09-051-1/+1
* vm_call_opt_send should not drop the empty keyword hashYusuke Endoh2019-09-051-1/+1
* vm_insnhelper.c: Do not read `ci->flag` after CALLER_SETUP_ARGYusuke Endoh2019-09-051-2/+2
* Add a comment that some ci->flag is inconsistent after CALLER_SETUP_ARGYusuke Endoh2019-09-051-0/+10
* Ignore an empty keyword splat for attr_reader/writer methodsYusuke Endoh2019-09-051-2/+2
* C method should accept a keyword hash (for compatibility with 2.6)Yusuke Endoh2019-09-051-1/+1
* CALLER_SETUP_ARG removes an empty keyword hash from argvYusuke Endoh2019-09-051-21/+9
* vm_argc.c (vm_caller_setup_arg_kw): "cfunc" argument is no longer usedYusuke Endoh2019-09-051-1/+1
* Set calling->kw_splat = 1 in vm_caller_setup_arg_kwYusuke Endoh2019-09-051-4/+3
* Fix passing keywords without splats to sym procs, define_method, and method_m...Jeremy Evans2019-09-051-3/+4
* Make Symbol#to_proc calls handle keyword argumentsJeremy Evans2019-09-051-2/+1
* If removing an empty keyword splat hash, unset the kw_splat flagJeremy Evans2019-09-051-0/+2