guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 14/17: Move allocate-words/immediate slow path out of li


From: Andy Wingo
Subject: [Guile-commits] 14/17: Move allocate-words/immediate slow path out of line
Date: Wed, 11 Dec 2019 03:47:51 -0500 (EST)

wingo pushed a commit to branch master
in repository guile.

commit f1578c98b220388e8222dfc21b94e92636c0297e
Author: Andy Wingo <address@hidden>
Date:   Tue Dec 10 22:33:47 2019 +0100

    Move allocate-words/immediate slow path out of line
    
    * libguile/jit.c (compile_allocate_words_immediate)
      (compile_allocate_words_immediate_slow): Move slow path out of line.
---
 libguile/jit.c | 31 +++++++++++++++++++------------
 1 file changed, 19 insertions(+), 12 deletions(-)

diff --git a/libguile/jit.c b/libguile/jit.c
index 1908f11..04d515f 100644
--- a/libguile/jit.c
+++ b/libguile/jit.c
@@ -2252,27 +2252,34 @@ compile_allocate_words_immediate (scm_jit_state *j, 
uint16_t dst, uint16_t nword
       ptrdiff_t offset = offsetof(struct scm_thread, freelists);
       offset += idx * sizeof(void*);
       emit_ldxi (j, res, THREAD, offset);
-      jit_reloc_t fast = jit_bnei (j->jit, res, 0);
-      emit_store_current_ip (j, res);
-      emit_call_2 (j, scm_vm_intrinsics.allocate_words_with_freelist,
-                   thread_operand (),
-                   jit_operand_imm (JIT_OPERAND_ABI_WORD, idx));
-      emit_retval (j, res);
-      emit_reload_sp (j);
-      jit_reloc_t done = jit_jmp (j->jit);
-
-      jit_patch_here (j->jit, fast);
+      add_slow_path_patch (j, jit_beqi (j->jit, res, 0));
       jit_gpr_t new_freelist = T1;
       emit_ldr (j, new_freelist, res);
       jit_stxi (j->jit, offset, THREAD, new_freelist);
-
-      jit_patch_here (j->jit, done);
       emit_sp_set_scm (j, dst, res);
     }
 }
 static void
 compile_allocate_words_immediate_slow (scm_jit_state *j, uint16_t dst, 
uint16_t nwords)
 {
+  size_t bytes = nwords * sizeof(SCM);
+  size_t idx = scm_inline_gc_bytes_to_freelist_index (bytes);
+
+  if (SCM_UNLIKELY (idx >= SCM_INLINE_GC_FREELIST_COUNT))
+    {
+    }
+  else
+    {
+      jit_gpr_t res = T0;
+      emit_store_current_ip (j, res);
+      emit_call_2 (j, scm_vm_intrinsics.allocate_words_with_freelist,
+                   thread_operand (),
+                   jit_operand_imm (JIT_OPERAND_ABI_WORD, idx));
+      emit_retval (j, res);
+      emit_reload_sp (j);
+      emit_sp_set_scm (j, dst, res);
+      continue_after_slow_path (j, j->next_ip);
+    }
 }
 
 static void



reply via email to

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