summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2023-02-14 22:52:12 -0800
committerTakashi Kokubun <[email protected]>2023-03-05 23:28:59 -0800
commita9ef36866a391ddb1cc7005919d80f1a1ab9b5f2 (patch)
tree70a229bc259beeecd9bbfc86867d81a20e46d90c
parentc3ca9448bf62461d84ea333ac83649c5e1b77c6b (diff)
Implement dupn and setn
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/7448
-rw-r--r--lib/ruby_vm/mjit/insn_compiler.rb48
1 files changed, 43 insertions, 5 deletions
diff --git a/lib/ruby_vm/mjit/insn_compiler.rb b/lib/ruby_vm/mjit/insn_compiler.rb
index 1a6d442c90..7426f678ba 100644
--- a/lib/ruby_vm/mjit/insn_compiler.rb
+++ b/lib/ruby_vm/mjit/insn_compiler.rb
@@ -23,7 +23,7 @@ module RubyVM::MJIT
asm.incr_counter(:mjit_insns_count)
asm.comment("Insn: #{insn.name}")
- # 43/101
+ # 45/101
case insn.name
when :nop then nop(jit, ctx, asm)
when :getlocal then getlocal(jit, ctx, asm)
@@ -62,11 +62,11 @@ module RubyVM::MJIT
# newrange
when :pop then pop(jit, ctx, asm)
when :dup then dup(jit, ctx, asm)
- # dupn
+ when :dupn then dupn(jit, ctx, asm)
# swap
# opt_reverse
# topn
- # setn
+ when :setn then setn(jit, ctx, asm)
# adjuststack
# defined
# checkmatch
@@ -284,11 +284,49 @@ module RubyVM::MJIT
KeepCompiling
end
- # dupn
+ # @param jit [RubyVM::MJIT::JITState]
+ # @param ctx [RubyVM::MJIT::Context]
+ # @param asm [RubyVM::MJIT::Assembler]
+ def dupn(jit, ctx, asm)
+ n = jit.operand(0)
+
+ # In practice, seems to be only used for n==2
+ if n != 2
+ return CantCompile
+ end
+
+ opnd1 = ctx.stack_opnd(1)
+ opnd0 = ctx.stack_opnd(0)
+
+ dst1 = ctx.stack_push
+ asm.mov(:rax, opnd1)
+ asm.mov(dst1, :rax)
+
+ dst0 = ctx.stack_push
+ asm.mov(:rax, opnd0)
+ asm.mov(dst0, :rax)
+
+ KeepCompiling
+ end
+
# swap
# opt_reverse
# topn
- # setn
+
+ # @param jit [RubyVM::MJIT::JITState]
+ # @param ctx [RubyVM::MJIT::Context]
+ # @param asm [RubyVM::MJIT::Assembler]
+ def setn(jit, ctx, asm)
+ n = jit.operand(0)
+
+ top_val = ctx.stack_pop(0)
+ dst_opnd = ctx.stack_opnd(n)
+ asm.mov(:rax, top_val)
+ asm.mov(dst_opnd, :rax)
+
+ KeepCompiling
+ end
+
# adjuststack
# defined
# checkmatch