From: Peter Maydell Date: Tue, 20 Jan 2015 15:19:33 +0000 (+0000) Subject: target-mips: Don't use _raw load/store accessors X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=15353001197c413f3ddebd51152a514dce08c458;p=qemu.git target-mips: Don't use _raw load/store accessors Use cpu_*_data instead of the direct *_raw load/store accessors. Signed-off-by: Peter Maydell Reviewed-by: Richard Henderson Reviewed-by: Paolo Bonzini Reviewed-by: Alex Bennée Message-id: 1421334118-3287-9-git-send-email-peter.maydell@linaro.org --- diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index d619ba4785..ea7d95f36c 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -74,7 +74,7 @@ void helper_raise_exception(CPUMIPSState *env, uint32_t exception) static inline type do_##name(CPUMIPSState *env, target_ulong addr, \ int mem_idx) \ { \ - return (type) insn##_raw(addr); \ + return (type) cpu_##insn##_data(env, addr); \ } #else #define HELPER_LD(name, insn, type) \ @@ -101,7 +101,7 @@ HELPER_LD(ld, ldq, int64_t) static inline void do_##name(CPUMIPSState *env, target_ulong addr, \ type val, int mem_idx) \ { \ - insn##_raw(addr, val); \ + cpu_##insn##_data(env, addr, val); \ } #else #define HELPER_ST(name, insn, type) \