summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--benchmark/mjit_opt_cc_insns.yml2
-rw-r--r--mjit_compile.c6
-rw-r--r--tool/ruby_vm/views/mjit_compile.inc.erb8
-rw-r--r--vm_insnhelper.c16
4 files changed, 23 insertions, 9 deletions
diff --git a/benchmark/mjit_opt_cc_insns.yml b/benchmark/mjit_opt_cc_insns.yml
index d8738b55c9..fed6d34bd5 100644
--- a/benchmark/mjit_opt_cc_insns.yml
+++ b/benchmark/mjit_opt_cc_insns.yml
@@ -23,3 +23,5 @@ benchmark:
loop_count: 40000000
- script: mjit_eq(1, nil)
loop_count: 8000000
+ - script: mjit_eq(nil, 1)
+ loop_count: 8000000
diff --git a/mjit_compile.c b/mjit_compile.c
index b2e40828b6..8ceab558dd 100644
--- a/mjit_compile.c
+++ b/mjit_compile.c
@@ -105,9 +105,11 @@ has_valid_method_type(CALL_CACHE cc)
// Returns true if MJIT thinks this cc's opt_* insn may fallback to opt_send_without_block.
static bool
-has_cache_for_send(CALL_CACHE cc, bool cfunc_cached)
+has_cache_for_send(CALL_CACHE cc, int insn)
{
- return has_valid_method_type(cc) && (!cfunc_cached || vm_cc_cme(cc)->def->type != VM_METHOD_TYPE_CFUNC);
+ extern bool rb_vm_opt_cfunc_p(CALL_CACHE cc, int insn);
+ return has_valid_method_type(cc) &&
+ !(vm_cc_cme(cc)->def->type == VM_METHOD_TYPE_CFUNC && rb_vm_opt_cfunc_p(cc, insn));
}
// Returns true if iseq can use fastpath for setup, otherwise NULL. This becomes true in the same condition
diff --git a/tool/ruby_vm/views/mjit_compile.inc.erb b/tool/ruby_vm/views/mjit_compile.inc.erb
index b399b7f583..c8f9aca777 100644
--- a/tool/ruby_vm/views/mjit_compile.inc.erb
+++ b/tool/ruby_vm/views/mjit_compile.inc.erb
@@ -29,12 +29,6 @@
% insn.expr.expr.lines.any? { |l| l.match(/\A\s+CALL_SIMPLE_METHOD\(\);\s+\z/) }
% end.map(&:name)
%
-% # These insns cache cfunc in cc under optimized circumstances. They don't generate opt_send when cfunc is cached.
-% cfunc_insns = [
-% 'opt_nil_p',
-% 'opt_not',
-% ]
-%
% # Available variables and macros in JIT-ed function:
% # ec: the first argument of _mjitXXX
% # reg_cfp: the second argument of _mjitXXX
@@ -62,7 +56,7 @@ switch (insn) {
% when *send_compatible_opt_insns
% # To avoid cancel, just emit `opt_send_without_block` instead of `opt_*` insn if call cache is populated.
% cd_index = insn.opes.index { |o| o.fetch(:type) == 'CALL_DATA' }
- if (has_cache_for_send(captured_cc_entries(status)[call_data_index((CALL_DATA)operands[<%= cd_index %>], body)], <%= cfunc_insns.include?(insn.name) %>)) {
+ if (has_cache_for_send(captured_cc_entries(status)[call_data_index((CALL_DATA)operands[<%= cd_index %>], body)], BIN(<%= insn.name %>))) {
<%= render 'mjit_compile_send', locals: { insn: opt_send_without_block } -%>
<%= render 'mjit_compile_insn', locals: { insn: opt_send_without_block } -%>
break;
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index af8bf464da..5c85d14967 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -4903,6 +4903,22 @@ vm_trace_hook(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, const VAL
}
}
+// Return true if given cc has cfunc which is NOT handled by opt_send_without_block.
+bool
+rb_vm_opt_cfunc_p(CALL_CACHE cc, int insn)
+{
+ switch (insn) {
+ case BIN(opt_eq):
+ return check_cfunc(vm_cc_cme(cc), rb_obj_equal);
+ case BIN(opt_nil_p):
+ return check_cfunc(vm_cc_cme(cc), rb_false);
+ case BIN(opt_not):
+ return check_cfunc(vm_cc_cme(cc), rb_obj_not);
+ default:
+ return false;
+ }
+}
+
#define VM_TRACE_HOOK(target_event, val) do { \
if ((pc_events & (target_event)) & enabled_flags) { \
vm_trace_hook(ec, reg_cfp, pc, pc_events, (target_event), global_hooks, local_hooks, (val)); \