index
:
delta/ruby.git
5a1dfb04bc2
KEIJU
KOSAKO
RUBY
SER
SHIGEO
SPCOLTRIN
baserock/GENIVI/G-1.2
baserock/liw/sam/chef
baserock/morph/ruby_1_8_7
baserock/morph/ruby_1_9_3
baserock/ps/proto-web-system
baserock/ruby_1_9_3
baserock/ruby_2_0_0
baserock/ruby_2_1
baserock/v1_9_3_194-bootstrap
bundler
c65f10304f
copy_file_range_bug
dependabot/bundler/spec/mspec/rake-12.3.3
half-baked-1.9
master
matzruby
maximecb-patch-1
maximecb-patch-2
mvm
new_gc
revert-2779-news-for-module-name
rexml_adds_tests
ricsin
ruby_1_3
ruby_1_4
ruby_1_6
ruby_1_8
ruby_1_8_5
ruby_1_8_6
ruby_1_8_7
ruby_1_9_1
ruby_1_9_2
ruby_1_9_3
ruby_2_0_0
ruby_2_1
ruby_2_2
ruby_2_3
ruby_2_4
ruby_2_5
ruby_2_6
ruby_2_7
ruby_3_0
ruby_3_1
ruby_3_2
ruby_m17n
scheduler-process-wait
testunit
thread_inspect
trunk
unlabeled-1.1.1
unlabeled-1.39.2
v1_0r
v1_1dev
v1_1r
win32-unicode-test
yuki24-patch-1
github.com: ruby/ruby.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
compile.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
fix raise in exception with jump
Koichi Sasada
2021-04-22
1
-7
/
+27
*
Evaluate multiple assignment left hand side before right hand side
Jeremy Evans
2021-04-21
1
-105
/
+258
*
Make defined? cache the results of method calls
Jeremy Evans
2021-03-29
1
-33
/
+66
*
Pattern matching pin operator against expression [Feature #17411]
Kazuki Tsujimoto
2021-03-21
1
-0
/
+1
*
Store strings for `defined` in the iseqs
Aaron Patterson
2021-03-17
1
-15
/
+21
*
Simplify ibf_dump_object_symbol by delegating to ibf_dump_object_string
Jean Boussier
2021-03-10
1
-15
/
+1
*
Pre-freeze ISeq names to avoid useless duplication
Jean Boussier
2021-03-10
1
-2
/
+2
*
Use rb_enc_interned_str in ibf_load_object_string
Jean Boussier
2021-03-10
1
-5
/
+8
*
Specialize ibf_load_object_symbol and ibf_dump_object_symbol
Jean Boussier
2021-03-10
1
-5
/
+25
*
Eliminate useless catch tables and nops from lambdas
Aaron Patterson
2021-02-16
1
-0
/
+26
*
Mark pattern labels as unremoveable
Vladimir Dementyev
2021-01-19
1
-1
/
+1
*
Fix WB for callinfo
Aaron Patterson
2021-01-14
1
-0
/
+1
*
Guard callinfo
Aaron Patterson
2021-01-13
1
-2
/
+5
*
only add the trailing nop if the catch table is not break / next / redo
Aaron Patterson
2021-01-13
1
-5
/
+13
*
enable constant cache on ractors
Koichi Sasada
2021-01-05
1
-10
/
+4
*
Hoisted out compile_builtin_arg to refine messages
Nobuyoshi Nakada
2021-01-01
1
-12
/
+30
*
Access to reserved word parameter like as `__builtin.arg!(:if)`
Nobuyoshi Nakada
2020-12-31
1
-5
/
+24
*
Dup kwrest hash when merging other keyword arguments [Bug #17481]
Nobuyoshi Nakada
2020-12-28
1
-0
/
+4
*
Adjusted indents [ci skip]
Nobuyoshi Nakada
2020-12-25
1
-3
/
+3
*
Skip defined check in NODE_OP_ASGN_OR with ivar
John Hawthorn
2020-12-14
1
-1
/
+1
*
Raise when loading unprovided builtin function [Bug #17192]
Nobuyoshi Nakada
2020-11-30
1
-4
/
+3
*
Add `GC.auto_compact= true/false` and `GC.auto_compact`
Aaron Patterson
2020-11-02
1
-0
/
+3
*
Revert "Use adjusted sp on `iseq_set_sequence()`" and "Delay `remove_unreacha...
wanabe
2020-10-31
1
-43
/
+18
*
Removed unused variable
Nobuyoshi Nakada
2020-10-31
1
-1
/
+0
*
Use adjusted sp on `iseq_set_sequence()`
wanabe
2020-10-31
1
-10
/
+8
*
Delay `remove_unreachable_chunk()` after `iseq_set_sequence()`
wanabe
2020-10-31
1
-8
/
+36
*
strip trailing spaces [ci skip]
Nobuyoshi Nakada
2020-10-30
1
-1
/
+1
*
check isolated Proc more strictly
Koichi Sasada
2020-10-29
1
-7
/
+52
*
compile.c: separate compile_builtin_function_call (#3711)
Kenta Murata
2020-10-28
1
-80
/
+88
*
Don't redefine #rb_intern over and over again
Stefan Stùˆben
2020-10-21
1
-17
/
+15
*
sync RClass::ext::iv_index_tbl
Koichi Sasada
2020-10-17
1
-0
/
+2
*
Adjust sp for `if true or ...`/`if false and ...`
wanabe
2020-10-16
1
-2
/
+8
*
Adjust sp for `x = false; y = (return until x unless x)` [Bug #16695]
wanabe
2020-10-16
1
-5
/
+3
*
Add missing WB for iseq
Aaron Patterson
2020-10-07
1
-0
/
+1
*
Added the room for builtin inline prefix
Nobuyoshi Nakada
2020-10-03
1
-2
/
+3
*
Check builtin inline function index overflow
Nobuyoshi Nakada
2020-10-03
1
-2
/
+5
*
Put same frozen Range literal if possible
Koichi Sasada
2020-10-02
1
-2
/
+2
*
Unfreeze string-literal-only interpolated string-literal
Nobuyoshi Nakada
2020-09-30
1
-2
/
+10
*
Interpolated strings are no longer frozen with frozen-string-literal: true
Benoit Daloze
2020-09-15
1
-59
/
+1
*
Introduce Ractor mechanism for parallel execution
Koichi Sasada
2020-09-03
1
-1
/
+16
*
procnames-start-lines [ci skip]
Nobuyoshi Nakada
2020-08-17
1
-3
/
+6
*
Revisit "Refactor to reduce "swap" instruction of pattern matching"
Nobuyoshi Nakada
2020-08-17
1
-3
/
+3
*
Revert "Refactor to reduce "swap" instruction of pattern matching"
Kazuhiro NISHIYAMA
2020-08-17
1
-1
/
+2
*
Refactor to reduce "swap" instruction of pattern matching
wanabe
2020-08-16
1
-2
/
+1
*
Adjust sp for `case ... in a: 0 ... end`
wanabe
2020-08-16
1
-0
/
+2
*
Adjust sp for `case ... in *, a, * end`
wanabe
2020-08-16
1
-0
/
+3
*
Adjust sp for `case ... in *v end`/`case ... in v1, v2 end`
wanabe
2020-08-16
1
-0
/
+3
*
Adjust sp for `case ... in v1 ... in v2 end`
wanabe
2020-08-16
1
-0
/
+3
*
Adjust sp for `case ... in v1, v2 ... end`
wanabe
2020-08-16
1
-0
/
+2
*
Adjust sp for `case ... in pat => var ... end`
wanabe
2020-08-16
1
-0
/
+1
[next]