summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/rjit-bindgen.yml (renamed from .github/workflows/mjit-bindgen.yml)0
-rw-r--r--.github/workflows/rjit.yml (renamed from .github/workflows/mjit.yml)0
-rw-r--r--.gitignore1
-rw-r--r--bootstraptest/test_rjit.rb (renamed from bootstraptest/test_mjit.rb)0
-rw-r--r--doc/rjit/rjit.md (renamed from doc/mjit/mjit.md)0
-rw-r--r--lib/ruby_vm/rjit/assembler.rb (renamed from lib/ruby_vm/mjit/assembler.rb)0
-rw-r--r--lib/ruby_vm/rjit/block.rb (renamed from lib/ruby_vm/mjit/block.rb)0
-rw-r--r--lib/ruby_vm/rjit/branch_stub.rb (renamed from lib/ruby_vm/mjit/branch_stub.rb)0
-rw-r--r--lib/ruby_vm/rjit/c_pointer.rb (renamed from lib/ruby_vm/mjit/c_pointer.rb)0
-rw-r--r--lib/ruby_vm/rjit/c_type.rb (renamed from lib/ruby_vm/mjit/c_type.rb)0
-rw-r--r--lib/ruby_vm/rjit/code_block.rb (renamed from lib/ruby_vm/mjit/code_block.rb)0
-rw-r--r--lib/ruby_vm/rjit/compiler.rb (renamed from lib/ruby_vm/mjit/compiler.rb)0
-rw-r--r--lib/ruby_vm/rjit/context.rb (renamed from lib/ruby_vm/mjit/context.rb)0
-rw-r--r--lib/ruby_vm/rjit/exit_compiler.rb (renamed from lib/ruby_vm/mjit/exit_compiler.rb)0
-rw-r--r--lib/ruby_vm/rjit/hooks.rb (renamed from lib/ruby_vm/mjit/hooks.rb)0
-rw-r--r--lib/ruby_vm/rjit/insn_compiler.rb (renamed from lib/ruby_vm/mjit/insn_compiler.rb)0
-rw-r--r--lib/ruby_vm/rjit/invariants.rb (renamed from lib/ruby_vm/mjit/invariants.rb)0
-rw-r--r--lib/ruby_vm/rjit/jit_state.rb (renamed from lib/ruby_vm/mjit/jit_state.rb)0
-rw-r--r--lib/ruby_vm/rjit/stats.rb (renamed from lib/ruby_vm/mjit/stats.rb)0
-rw-r--r--rjit.c (renamed from mjit.c)0
-rw-r--r--rjit.h (renamed from mjit.h)0
-rw-r--r--rjit.rb (renamed from mjit.rb)0
-rw-r--r--rjit_c.c (renamed from mjit_c.c)0
-rw-r--r--rjit_c.h (renamed from mjit_c.h)0
-rw-r--r--rjit_c.rb (renamed from mjit_c.rb)0
-rwxr-xr-xtool/rjit/bindgen.rb (renamed from tool/mjit/bindgen.rb)0
-rw-r--r--tool/ruby_vm/views/lib/ruby_vm/rjit/instruction.rb.erb (renamed from tool/ruby_vm/views/lib/ruby_vm/mjit/instruction.rb.erb)0
27 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/mjit-bindgen.yml b/.github/workflows/rjit-bindgen.yml
index 3107fcee0a..3107fcee0a 100644
--- a/.github/workflows/mjit-bindgen.yml
+++ b/.github/workflows/rjit-bindgen.yml
diff --git a/.github/workflows/mjit.yml b/.github/workflows/rjit.yml
index 7a95cb6875..7a95cb6875 100644
--- a/.github/workflows/mjit.yml
+++ b/.github/workflows/rjit.yml
diff --git a/.gitignore b/.gitignore
index ecac178a2c..d36aeee7ba 100644
--- a/.gitignore
+++ b/.gitignore
@@ -241,6 +241,7 @@ lcov*.info
# MJIT
/include/ruby-*/*/rb_mjit_min_header-*.h
/lib/ruby_vm/mjit/instruction.rb
+/lib/ruby_vm/rjit/instruction.rb
/mjit_config.h
/rb_mjit_header.h*
diff --git a/bootstraptest/test_mjit.rb b/bootstraptest/test_rjit.rb
index c00c742318..c00c742318 100644
--- a/bootstraptest/test_mjit.rb
+++ b/bootstraptest/test_rjit.rb
diff --git a/doc/mjit/mjit.md b/doc/rjit/rjit.md
index 6f19ab3ea7..6f19ab3ea7 100644
--- a/doc/mjit/mjit.md
+++ b/doc/rjit/rjit.md
diff --git a/lib/ruby_vm/mjit/assembler.rb b/lib/ruby_vm/rjit/assembler.rb
index cccd228c00..cccd228c00 100644
--- a/lib/ruby_vm/mjit/assembler.rb
+++ b/lib/ruby_vm/rjit/assembler.rb
diff --git a/lib/ruby_vm/mjit/block.rb b/lib/ruby_vm/rjit/block.rb
index 9b0c91ad40..9b0c91ad40 100644
--- a/lib/ruby_vm/mjit/block.rb
+++ b/lib/ruby_vm/rjit/block.rb
diff --git a/lib/ruby_vm/mjit/branch_stub.rb b/lib/ruby_vm/rjit/branch_stub.rb
index 0f015e2f72..0f015e2f72 100644
--- a/lib/ruby_vm/mjit/branch_stub.rb
+++ b/lib/ruby_vm/rjit/branch_stub.rb
diff --git a/lib/ruby_vm/mjit/c_pointer.rb b/lib/ruby_vm/rjit/c_pointer.rb
index 73cf267482..73cf267482 100644
--- a/lib/ruby_vm/mjit/c_pointer.rb
+++ b/lib/ruby_vm/rjit/c_pointer.rb
diff --git a/lib/ruby_vm/mjit/c_type.rb b/lib/ruby_vm/rjit/c_type.rb
index 9e45d8d41c..9e45d8d41c 100644
--- a/lib/ruby_vm/mjit/c_type.rb
+++ b/lib/ruby_vm/rjit/c_type.rb
diff --git a/lib/ruby_vm/mjit/code_block.rb b/lib/ruby_vm/rjit/code_block.rb
index 21ae2386b7..21ae2386b7 100644
--- a/lib/ruby_vm/mjit/code_block.rb
+++ b/lib/ruby_vm/rjit/code_block.rb
diff --git a/lib/ruby_vm/mjit/compiler.rb b/lib/ruby_vm/rjit/compiler.rb
index 85e6b5fa06..85e6b5fa06 100644
--- a/lib/ruby_vm/mjit/compiler.rb
+++ b/lib/ruby_vm/rjit/compiler.rb
diff --git a/lib/ruby_vm/mjit/context.rb b/lib/ruby_vm/rjit/context.rb
index e834b42999..e834b42999 100644
--- a/lib/ruby_vm/mjit/context.rb
+++ b/lib/ruby_vm/rjit/context.rb
diff --git a/lib/ruby_vm/mjit/exit_compiler.rb b/lib/ruby_vm/rjit/exit_compiler.rb
index 1d704a8dca..1d704a8dca 100644
--- a/lib/ruby_vm/mjit/exit_compiler.rb
+++ b/lib/ruby_vm/rjit/exit_compiler.rb
diff --git a/lib/ruby_vm/mjit/hooks.rb b/lib/ruby_vm/rjit/hooks.rb
index 57d4ebc381..57d4ebc381 100644
--- a/lib/ruby_vm/mjit/hooks.rb
+++ b/lib/ruby_vm/rjit/hooks.rb
diff --git a/lib/ruby_vm/mjit/insn_compiler.rb b/lib/ruby_vm/rjit/insn_compiler.rb
index 07670daed1..07670daed1 100644
--- a/lib/ruby_vm/mjit/insn_compiler.rb
+++ b/lib/ruby_vm/rjit/insn_compiler.rb
diff --git a/lib/ruby_vm/mjit/invariants.rb b/lib/ruby_vm/rjit/invariants.rb
index 127e446ed9..127e446ed9 100644
--- a/lib/ruby_vm/mjit/invariants.rb
+++ b/lib/ruby_vm/rjit/invariants.rb
diff --git a/lib/ruby_vm/mjit/jit_state.rb b/lib/ruby_vm/rjit/jit_state.rb
index decafee579..decafee579 100644
--- a/lib/ruby_vm/mjit/jit_state.rb
+++ b/lib/ruby_vm/rjit/jit_state.rb
diff --git a/lib/ruby_vm/mjit/stats.rb b/lib/ruby_vm/rjit/stats.rb
index b605f3c1ad..b605f3c1ad 100644
--- a/lib/ruby_vm/mjit/stats.rb
+++ b/lib/ruby_vm/rjit/stats.rb
diff --git a/mjit.c b/rjit.c
index 4e48609763..4e48609763 100644
--- a/mjit.c
+++ b/rjit.c
diff --git a/mjit.h b/rjit.h
index fb5e503ca2..fb5e503ca2 100644
--- a/mjit.h
+++ b/rjit.h
diff --git a/mjit.rb b/rjit.rb
index f9679e9164..f9679e9164 100644
--- a/mjit.rb
+++ b/rjit.rb
diff --git a/mjit_c.c b/rjit_c.c
index 9af89c649d..9af89c649d 100644
--- a/mjit_c.c
+++ b/rjit_c.c
diff --git a/mjit_c.h b/rjit_c.h
index 4d66251acd..4d66251acd 100644
--- a/mjit_c.h
+++ b/rjit_c.h
diff --git a/mjit_c.rb b/rjit_c.rb
index d670a6582a..d670a6582a 100644
--- a/mjit_c.rb
+++ b/rjit_c.rb
diff --git a/tool/mjit/bindgen.rb b/tool/rjit/bindgen.rb
index c4f8bff329..c4f8bff329 100755
--- a/tool/mjit/bindgen.rb
+++ b/tool/rjit/bindgen.rb
diff --git a/tool/ruby_vm/views/lib/ruby_vm/mjit/instruction.rb.erb b/tool/ruby_vm/views/lib/ruby_vm/rjit/instruction.rb.erb
index 16c10a9928..16c10a9928 100644
--- a/tool/ruby_vm/views/lib/ruby_vm/mjit/instruction.rb.erb
+++ b/tool/ruby_vm/views/lib/ruby_vm/rjit/instruction.rb.erb