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
/
yjit_core.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
YJIT: Add ability to exit to interpreter from stubs
Alan Wu
2021-11-26
1
-45
/
+107
*
YJIT: Make block invalidation more robust
Alan Wu
2021-11-22
1
-5
/
+48
*
Add --yjit-no-type-prop so we can test YJIT without type propagation (#5135)
Maxime Chevalier-Boisvert
2021-11-18
1
-1
/
+18
*
YJIT code pages refactoring for code GC (#5073)
Maxime Chevalier-Boisvert
2021-11-04
1
-33
/
+34
*
Put YJIT into a single compilation unit
Alan Wu
2021-10-20
1
-32
/
+47
*
style: line break before "else"
Alan Wu
2021-10-20
1
-12
/
+24
*
style: switch statements indent
Alan Wu
2021-10-20
1
-50
/
+47
*
style: align pointer "*" to the right
Alan Wu
2021-10-20
1
-56
/
+56
*
Remove a few more uses of the global cb/ocb
Maxime Chevalier-Boisvert
2021-10-20
1
-1
/
+1
*
Step 2 to remove the global cb/ocb objects.
Maxime Chevalier-Boisvert
2021-10-20
1
-8
/
+8
*
Add counters for tracking invalidations
Alan Wu
2021-10-20
1
-0
/
+8
*
Store block callee_cme in darray
John Hawthorn
2021-10-20
1
-2
/
+5
*
Only clear the JIT function when we invalidate the entry block
Aaron Patterson
2021-10-20
1
-1
/
+8
*
TracePoint support
Alan Wu
2021-10-20
1
-22
/
+31
*
Allow to compile with --yjit-stats support but not the full RUBY_DEBUG
Jean Boussier
2021-10-20
1
-1
/
+1
*
Use callee-saved regs for REG_SP, REG_EP, REG_CFP
John Hawthorn
2021-10-20
1
-10
/
+0
*
Detach mapping to local in ctx_set_local_type
John Hawthorn
2021-10-20
1
-0
/
+9
*
Fix stack size check for ctx_get_opnd_type
John Hawthorn
2021-10-20
1
-3
/
+6
*
Move yjit_type_of_value into yjit_core.c
John Hawthorn
2021-10-20
1
-0
/
+37
*
Implement verify_ctx for debugging
John Hawthorn
2021-10-20
1
-1
/
+40
*
Don't generate entry point when PC != 0
John Hawthorn
2021-10-20
1
-0
/
+6
*
Allow upgrading first N types when stack is large
John Hawthorn
2021-10-20
1
-6
/
+7
*
Improve comments for mapping functions
John Hawthorn
2021-10-20
1
-1
/
+12
*
Fix ctx_clear_local_types
John Hawthorn
2021-10-20
1
-1
/
+2
*
Make ctx_diff aware of mappings
John Hawthorn
2021-10-20
1
-3
/
+16
*
Introduce ctx_{get,set}_opnd_mapping
John Hawthorn
2021-10-20
1
-30
/
+78
*
Rename to ctx_upgrade_opnd_type
John Hawthorn
2021-10-20
1
-5
/
+13
*
Make sure we can still compile with the JIT disabled
Aaron Patterson
2021-10-20
1
-0
/
+3
*
Fix BOP invalidation
Aaron Patterson
2021-10-20
1
-11
/
+3
*
Add a guard that we start executing on the first PC
Aaron Patterson
2021-10-20
1
-1
/
+1
*
fix alignment
Aaron Patterson
2021-10-20
1
-2
/
+0
*
Flatten mappings when clearing locals
John Hawthorn
2021-10-20
1
-0
/
+10
*
Convert yjit static stat variables to counters
Noah Gibbs
2021-10-20
1
-1
/
+1
*
Try running with more YJIT options in CI to surface more bugs
Maxime Chevalier-Boisvert
2021-10-20
1
-2
/
+2
*
Update comment
Maxime Chevalier-Boisvert
2021-10-20
1
-1
/
+2
*
Remove #define MAX_VERSIONS, now using command-line option
Maxime Chevalier-Boisvert
2021-10-20
1
-4
/
+0
*
Fix issue in yjit_free_block causing segfault
Maxime Chevalier-Boisvert
2021-10-20
1
-0
/
+13
*
Fix assertions in `invalidate_block_version()`, add small repro (#14)
Maxime Chevalier-Boisvert
2021-10-20
1
-4
/
+5
*
Implement greedy versioning. Refactor versioning logic. (#10)
Maxime Chevalier-Boisvert
2021-10-20
1
-42
/
+54
*
Pass self type through method calls
Maxime Chevalier-Boisvert
2021-10-20
1
-2
/
+1
*
Malloc branch entries (#112)
Maxime Chevalier-Boisvert
2021-10-20
1
-138
/
+121
*
Temporarily increase MAX_BRANCHES until we have a better solution
Maxime Chevalier-Boisvert
2021-10-20
1
-1
/
+1
*
Diff the local types in ctx_diff()
Maxime Chevalier-Boisvert
2021-10-20
1
-3
/
+13
*
move assert. opnd.idx doesn't make sense for OPND_SELF
Alan Wu
2021-10-20
1
-2
/
+1
*
Fix bug in ctx_set_local_type()
Maxime Chevalier-Boisvert
2021-10-20
1
-1
/
+1
*
Re-enable local type tracking, until first call
Maxime Chevalier-Boisvert
2021-10-20
1
-0
/
+7
*
Assert for running out of branches in all builds
Alan Wu
2021-10-20
1
-3
/
+3
*
Introduce concept of YJIT instruction operands
Maxime Chevalier-Boisvert
2021-10-20
1
-13
/
+20
*
YJIT: Fancier opt_getinlinecache
Alan Wu
2021-10-20
1
-9
/
+10
*
Fix stack-use-after-scope in gen_direct_jump()
Alan Wu
2021-10-20
1
-8
/
+9
[next]