mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
target/arm: Rename neon_load_reg64 to vfp_load_reg64
The only uses of this function are for loading VFP double-precision values, and nothing to do with NEON. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20201030022618.785675-10-richard.henderson@linaro.org Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
0aa8e700a5
commit
b38b96ca90
2 changed files with 46 additions and 46 deletions
|
@ -1132,14 +1132,14 @@ static long vfp_reg_offset(bool dp, unsigned reg)
|
|||
}
|
||||
}
|
||||
|
||||
static inline void neon_load_reg64(TCGv_i64 var, int reg)
|
||||
static inline void vfp_load_reg64(TCGv_i64 var, int reg)
|
||||
{
|
||||
tcg_gen_ld_i64(var, cpu_env, vfp_reg_offset(1, reg));
|
||||
tcg_gen_ld_i64(var, cpu_env, vfp_reg_offset(true, reg));
|
||||
}
|
||||
|
||||
static inline void neon_store_reg64(TCGv_i64 var, int reg)
|
||||
static inline void vfp_store_reg64(TCGv_i64 var, int reg)
|
||||
{
|
||||
tcg_gen_st_i64(var, cpu_env, vfp_reg_offset(1, reg));
|
||||
tcg_gen_st_i64(var, cpu_env, vfp_reg_offset(true, reg));
|
||||
}
|
||||
|
||||
static inline void vfp_load_reg32(TCGv_i32 var, int reg)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue