target/arm: Use tcg_constant in gen_probe_access
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 20220426163043.100432-2-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
cf6f26d6f9
commit
35be15069d
@ -240,14 +240,10 @@ static void gen_address_with_allocation_tag0(TCGv_i64 dst, TCGv_i64 src)
|
||||
static void gen_probe_access(DisasContext *s, TCGv_i64 ptr,
|
||||
MMUAccessType acc, int log2_size)
|
||||
{
|
||||
TCGv_i32 t_acc = tcg_const_i32(acc);
|
||||
TCGv_i32 t_idx = tcg_const_i32(get_mem_index(s));
|
||||
TCGv_i32 t_size = tcg_const_i32(1 << log2_size);
|
||||
|
||||
gen_helper_probe_access(cpu_env, ptr, t_acc, t_idx, t_size);
|
||||
tcg_temp_free_i32(t_acc);
|
||||
tcg_temp_free_i32(t_idx);
|
||||
tcg_temp_free_i32(t_size);
|
||||
gen_helper_probe_access(cpu_env, ptr,
|
||||
tcg_constant_i32(acc),
|
||||
tcg_constant_i32(get_mem_index(s)),
|
||||
tcg_constant_i32(1 << log2_size));
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user