guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 07/17: Move assert-nargs-ee slow path out of line


From: Andy Wingo
Subject: [Guile-commits] 07/17: Move assert-nargs-ee slow path out of line
Date: Wed, 11 Dec 2019 03:47:50 -0500 (EST)

wingo pushed a commit to branch master
in repository guile.

commit 7aad56105f2b8c7769bcf2e29c31c60e59ef2a03
Author: Andy Wingo <address@hidden>
Date:   Sun Dec 8 09:38:40 2019 +0100

    Move assert-nargs-ee slow path out of line
    
    * libguile/jit.c (compile_assert_nargs_ee)
      (compile_assert_nargs_ee_slow): Move slow path out of line.
---
 libguile/jit.c | 25 ++++++++++++++-----------
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/libguile/jit.c b/libguile/jit.c
index bc0d994..5ad85b6 100644
--- a/libguile/jit.c
+++ b/libguile/jit.c
@@ -1917,22 +1917,17 @@ compile_throw_value_and_data_slow (scm_jit_state *j, 
uint32_t val,
 static void
 compile_assert_nargs_ee (scm_jit_state *j, uint32_t nlocals)
 {
-  jit_reloc_t k;
-  jit_gpr_t t = T0;
-  uint32_t saved_state = j->register_state;
-
-  k = emit_branch_if_frame_locals_count_eq (j, t, nlocals);
-  emit_store_current_ip (j, t);
-  emit_call_1 (j, scm_vm_intrinsics.error_wrong_num_args,
-               thread_operand ());
-  jit_patch_here (j->jit, k);
+  add_slow_path_patch
+    (j, emit_branch_if_frame_locals_count_not_eq (j, T0, nlocals));
 
-  j->register_state = saved_state;
   j->frame_size_min = j->frame_size_max = nlocals;
 }
 static void
 compile_assert_nargs_ee_slow (scm_jit_state *j, uint32_t nlocals)
 {
+  emit_store_current_ip (j, T0);
+  emit_call_1 (j, scm_vm_intrinsics.error_wrong_num_args,
+               thread_operand ());
 }
 
 static void
@@ -2064,14 +2059,22 @@ static void
 compile_assert_nargs_ee_locals (scm_jit_state *j, uint16_t expected,
                                 uint16_t nlocals)
 {
-  compile_assert_nargs_ee (j, expected);
+  jit_gpr_t t = T0;
+
+  add_slow_path_patch
+    (j, emit_branch_if_frame_locals_count_not_eq (j, t, expected));
+
   if (nlocals)
     compile_alloc_frame (j, expected + nlocals);
+  j->frame_size_min = j->frame_size_max = expected + nlocals;
 }
 static void
 compile_assert_nargs_ee_locals_slow (scm_jit_state *j, uint16_t expected,
                                 uint16_t nlocals)
 {
+  emit_store_current_ip (j, T0);
+  emit_call_1 (j, scm_vm_intrinsics.error_wrong_num_args,
+               thread_operand ());
 }
 
 static void



reply via email to

[Prev in Thread] Current Thread [Next in Thread]