diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2013-05-23 13:00:03 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2013-05-26 10:05:21 +0000 |
commit | 5b35b4e91d4d023d44dc28437ae414a21e9b8117 (patch) | |
tree | dd64c48b056934ce35aaae2328f30d9b404df8d3 /target-arm | |
parent | e2592fad1720d848699f32e67882b611bbed2cb5 (diff) | |
download | qemu-5b35b4e91d4d023d44dc28437ae414a21e9b8117.tar.gz qemu-5b35b4e91d4d023d44dc28437ae414a21e9b8117.tar.bz2 qemu-5b35b4e91d4d023d44dc28437ae414a21e9b8117.zip |
target-arm: Remove gen_{ld,st}* definitions
All the uses of the gen_{ld,st}* functions are gone now, so remove
the functions themselves.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-arm')
-rw-r--r-- | target-arm/translate.c | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/target-arm/translate.c b/target-arm/translate.c index 0ca68fe584..71135bdef1 100644 --- a/target-arm/translate.c +++ b/target-arm/translate.c @@ -841,52 +841,6 @@ static inline void store_reg_from_load(CPUARMState *env, DisasContext *s, } } -static inline TCGv_i32 gen_ld8s(TCGv_i32 addr, int index) -{ - TCGv_i32 tmp = tcg_temp_new_i32(); - tcg_gen_qemu_ld8s(tmp, addr, index); - return tmp; -} -static inline TCGv_i32 gen_ld8u(TCGv_i32 addr, int index) -{ - TCGv_i32 tmp = tcg_temp_new_i32(); - tcg_gen_qemu_ld8u(tmp, addr, index); - return tmp; -} -static inline TCGv_i32 gen_ld16s(TCGv_i32 addr, int index) -{ - TCGv_i32 tmp = tcg_temp_new_i32(); - tcg_gen_qemu_ld16s(tmp, addr, index); - return tmp; -} -static inline TCGv_i32 gen_ld16u(TCGv_i32 addr, int index) -{ - TCGv_i32 tmp = tcg_temp_new_i32(); - tcg_gen_qemu_ld16u(tmp, addr, index); - return tmp; -} -static inline TCGv_i32 gen_ld32(TCGv_i32 addr, int index) -{ - TCGv_i32 tmp = tcg_temp_new_i32(); - tcg_gen_qemu_ld32u(tmp, addr, index); - return tmp; -} -static inline void gen_st8(TCGv_i32 val, TCGv_i32 addr, int index) -{ - tcg_gen_qemu_st8(val, addr, index); - tcg_temp_free_i32(val); -} -static inline void gen_st16(TCGv_i32 val, TCGv_i32 addr, int index) -{ - tcg_gen_qemu_st16(val, addr, index); - tcg_temp_free_i32(val); -} -static inline void gen_st32(TCGv_i32 val, TCGv_i32 addr, int index) -{ - tcg_gen_qemu_st32(val, addr, index); - tcg_temp_free_i32(val); -} - static inline void gen_set_pc_im(uint32_t val) { tcg_gen_movi_i32(cpu_R[15], val); |