aboutsummaryrefslogtreecommitdiffstats
path: root/compile.c
Commit message (Expand)AuthorAgeFilesLines
* Raise when loading unprovided builtin function [Bug #17192]Nobuyoshi Nakada2020-11-301-4/+3
* Add `GC.auto_compact= true/false` and `GC.auto_compact`Aaron Patterson2020-11-021-0/+3
* Revert "Use adjusted sp on `iseq_set_sequence()`" and "Delay `remove_unreacha...wanabe2020-10-311-43/+18
* Removed unused variableNobuyoshi Nakada2020-10-311-1/+0
* Use adjusted sp on `iseq_set_sequence()`wanabe2020-10-311-10/+8
* Delay `remove_unreachable_chunk()` after `iseq_set_sequence()`wanabe2020-10-311-8/+36
* strip trailing spaces [ci skip]Nobuyoshi Nakada2020-10-301-1/+1
* check isolated Proc more strictlyKoichi Sasada2020-10-291-7/+52
* compile.c: separate compile_builtin_function_call (#3711)Kenta Murata2020-10-281-80/+88
* Don't redefine #rb_intern over and over againStefan Stüben2020-10-211-17/+15
* sync RClass::ext::iv_index_tblKoichi Sasada2020-10-171-0/+2
* Adjust sp for `if true or ...`/`if false and ...`wanabe2020-10-161-2/+8
* Adjust sp for `x = false; y = (return until x unless x)` [Bug #16695]wanabe2020-10-161-5/+3
* Add missing WB for iseqAaron Patterson2020-10-071-0/+1
* Added the room for builtin inline prefixNobuyoshi Nakada2020-10-031-2/+3
* Check builtin inline function index overflowNobuyoshi Nakada2020-10-031-2/+5
* Put same frozen Range literal if possibleKoichi Sasada2020-10-021-2/+2
* Unfreeze string-literal-only interpolated string-literalNobuyoshi Nakada2020-09-301-2/+10
* Interpolated strings are no longer frozen with frozen-string-literal: trueBenoit Daloze2020-09-151-59/+1
* Introduce Ractor mechanism for parallel executionKoichi Sasada2020-09-031-1/+16
* procnames-start-lines [ci skip]Nobuyoshi Nakada2020-08-171-3/+6
* Revisit "Refactor to reduce "swap" instruction of pattern matching"Nobuyoshi Nakada2020-08-171-3/+3
* Revert "Refactor to reduce "swap" instruction of pattern matching"Kazuhiro NISHIYAMA2020-08-171-1/+2
* Refactor to reduce "swap" instruction of pattern matchingwanabe2020-08-161-2/+1
* Adjust sp for `case ... in a: 0 ... end`wanabe2020-08-161-0/+2
* Adjust sp for `case ... in *, a, * end`wanabe2020-08-161-0/+3
* Adjust sp for `case ... in *v end`/`case ... in v1, v2 end`wanabe2020-08-161-0/+3
* Adjust sp for `case ... in v1 ... in v2 end`wanabe2020-08-161-0/+3
* Adjust sp for `case ... in v1, v2 ... end`wanabe2020-08-161-0/+2
* Adjust sp for `case ... in pat => var ... end`wanabe2020-08-161-0/+1
* Adjust sp for `case ... in pat1 | pat2 ... end`wanabe2020-08-161-0/+1
* Adjust sp for pattern matching implicit/explicit "else"wanabe2020-08-161-0/+8
* Warn sp overwriting on compile timewanabe2020-08-161-1/+20
* Show hidden object and TS_BUILTIN for halfbaked insn datawanabe2020-08-161-2/+6
* Use ID instead of GENTRY for gvars. (#3278)Koichi Sasada2020-07-031-46/+4
* compile_redo: fix wrong condition卜部昌平2020-06-291-1/+1
* ibf_dump_object_object: do not goto into a branch卜部昌平2020-06-291-8/+4
* compile_call: do not goto into a branch卜部昌平2020-06-291-10/+9
* compile_redo: do not goto into a branch卜部昌平2020-06-291-7/+3
* compile_next: do not goto into a branch卜部昌平2020-06-291-6/+2
* compile_break: do not goto into a branch卜部昌平2020-06-291-19/+15
* compile_branch_condition: do not goto into a branch卜部昌平2020-06-291-10/+10
* optimize_checktype: do not goto into a branch卜部昌平2020-06-291-2/+1
* iseq_set_exception_table: do not goto into a branch卜部昌平2020-06-291-5/+2
* Removed non-ASCII code to suppress warnings by localized compilersNobuyoshi Nakada2020-06-271-2/+2
* Cosmetic changeKazuki Tsujimoto2020-06-271-1/+2
* Add #deconstruct cache to find patternVladimir Dementyev2020-06-271-59/+65
* Optimize array pattern matching by caching #deconstruct valueVladimir Dementyev2020-06-271-16/+64
* Removed no longer used flagsNobuyoshi Nakada2020-06-271-2/+0
* Not to rewrite node while compilingNobuyoshi Nakada2020-06-271-9/+4