summaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2020-05-05 17:09:42 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2020-05-10 16:51:10 +0900
commit191cfcc407e83ddd99212db4ba7b3df9f4608a05 (patch)
treef4918c0a6f1f5bf26709a9e3800522176acc1d18 /template
parenta6f85899144607606c114e95104fa7e8ec8d95d9 (diff)
delete mk_call_iseq_optimized.rb
To generate what is necessary via generic_erb.rb instead.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3097
Diffstat (limited to 'template')
-rw-r--r--template/call_iseq_optimized.inc.tmpl68
1 files changed, 68 insertions, 0 deletions
diff --git a/template/call_iseq_optimized.inc.tmpl b/template/call_iseq_optimized.inc.tmpl
new file mode 100644
index 0000000000..f8883a1d95
--- /dev/null
+++ b/template/call_iseq_optimized.inc.tmpl
@@ -0,0 +1,68 @@
+/* -*- c -*- */
+% P = (0..3)
+% L = (0..5)
+%
+% def fname param, local
+% "vm_call_iseq_setup_normal_0start_#{param}params_#{local}locals"
+% end
+#if 1 /* enable or disable this optimization */
+
+/* DO NOT EDIT THIS FILE DIRECTLY
+ *
+ * This file is generated by tool/generic_erb.rb
+ * with template/call_iseq_optimized.inc.tmpl
+ */
+
+% P.each{|param|
+% L.each{|local|
+static VALUE
+<%= fname(param, local) %>(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
+{
+ RB_DEBUG_COUNTER_INC(ccf_iseq_fix);
+ return vm_call_iseq_setup_normal(ec, cfp, calling, vm_cc_cme(cd->cc), 0, <%= param %>, <%= local %>);
+}
+
+% }
+% }
+/* vm_call_iseq_handlers[param][local] */
+static const vm_call_handler vm_call_iseq_handlers[][<%= L.to_a.size %>] = {
+% P.each{|param|
+ {
+% L.each{|local|
+ <%= fname(param, local) %>,
+% }
+ },
+% }
+};
+
+static inline vm_call_handler
+vm_call_iseq_setup_func(const struct rb_callinfo *ci, const int param_size, const int local_size)
+{
+ if (UNLIKELY(vm_ci_flag(ci) & VM_CALL_TAILCALL)) {
+ return &vm_call_iseq_setup_tailcall_0start;
+ }
+ else if (0) { /* to disable optimize */
+ return &vm_call_iseq_setup_normal_0start;
+ }
+ else if (param_size <= <%= P.end %> && local_size <= <%= L.end %>) {
+ VM_ASSERT(local_size >= 0);
+ return vm_call_iseq_handlers[param_size][local_size];
+ }
+ else {
+ return &vm_call_iseq_setup_normal_0start;
+ }
+}
+
+#else
+
+static inline vm_call_handler
+vm_call_iseq_setup_func(const struct rb_callinfo *ci, const int param_size, const int local_size)
+{
+ if (UNLIKELY(vm_ci_flag(ci) & VM_CALL_TAILCALL)) {
+ return &vm_call_iseq_setup_tailcall_0start;
+ }
+ else {
+ return &vm_call_iseq_setup_normal_0start;
+ }
+}
+#endif