mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 14:00:21 +02:00
Move assert-nargs-le slow path out of line
* libguile/jit.c (compile_assert_nargs_le) (compile_assert_nargs_le_slow): Move slow path out of line.
This commit is contained in:
parent
45b936a8e3
commit
0c8a4d3426
1 changed files with 5 additions and 10 deletions
|
@ -1946,22 +1946,17 @@ compile_assert_nargs_ge_slow (scm_jit_state *j, uint32_t nlocals)
|
|||
static void
|
||||
compile_assert_nargs_le (scm_jit_state *j, uint32_t nlocals)
|
||||
{
|
||||
jit_reloc_t k;
|
||||
jit_gpr_t t = T0;
|
||||
uint32_t saved_state = j->register_state;
|
||||
add_slow_path_patch
|
||||
(j, emit_branch_if_frame_locals_count_greater_than (j, T0, nlocals));
|
||||
|
||||
k = emit_branch_if_frame_locals_count_less_than (j, t, nlocals + 1);
|
||||
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);
|
||||
|
||||
j->register_state = saved_state;
|
||||
j->frame_size_max = nlocals;
|
||||
}
|
||||
static void
|
||||
compile_assert_nargs_le_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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue