aboutsummaryrefslogtreecommitdiffstats
path: root/insns.def
diff options
context:
space:
mode:
Diffstat (limited to 'insns.def')
-rw-r--r--insns.def24
1 files changed, 24 insertions, 0 deletions
diff --git a/insns.def b/insns.def
index 16efac81d3..9af64aa4b3 100644
--- a/insns.def
+++ b/insns.def
@@ -814,6 +814,12 @@ send
VALUE bh = vm_caller_setup_arg_block(ec, GET_CFP(), cd->ci, blockiseq, false);
val = vm_sendish(ec, GET_CFP(), cd, bh, mexp_search_method);
+ jit_func_t func;
+ if (val == Qundef && (func = jit_compile(ec))) {
+ val = func(ec, ec->cfp);
+ if (ec->tag->state) THROW_EXCEPTION(val);
+ }
+
if (val == Qundef) {
RESTORE_REGS();
NEXT_INSN();
@@ -833,6 +839,12 @@ opt_send_without_block
VALUE bh = VM_BLOCK_HANDLER_NONE;
val = vm_sendish(ec, GET_CFP(), cd, bh, mexp_search_method);
+ jit_func_t func;
+ if (val == Qundef && (func = jit_compile(ec))) {
+ val = func(ec, ec->cfp);
+ if (ec->tag->state) THROW_EXCEPTION(val);
+ }
+
if (val == Qundef) {
RESTORE_REGS();
NEXT_INSN();
@@ -935,6 +947,12 @@ invokesuper
VALUE bh = vm_caller_setup_arg_block(ec, GET_CFP(), cd->ci, blockiseq, true);
val = vm_sendish(ec, GET_CFP(), cd, bh, mexp_search_super);
+ jit_func_t func;
+ if (val == Qundef && (func = jit_compile(ec))) {
+ val = func(ec, ec->cfp);
+ if (ec->tag->state) THROW_EXCEPTION(val);
+ }
+
if (val == Qundef) {
RESTORE_REGS();
NEXT_INSN();
@@ -954,6 +972,12 @@ invokeblock
VALUE bh = VM_BLOCK_HANDLER_NONE;
val = vm_sendish(ec, GET_CFP(), cd, bh, mexp_search_invokeblock);
+ jit_func_t func;
+ if (val == Qundef && (func = jit_compile(ec))) {
+ val = func(ec, ec->cfp);
+ if (ec->tag->state) THROW_EXCEPTION(val);
+ }
+
if (val == Qundef) {
RESTORE_REGS();
NEXT_INSN();