diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-01-04 23:26:24 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-01-04 23:26:24 +0000 |
commit | ac9eb0731ad123f8789005978500ac67026188c2 (patch) | |
tree | 46196d5fcd9eba3ecb37b13a401fe4dab9be070d /target-ppc/op_helper_mem.h | |
parent | 9a64fbe4d89751524be0954f87dd514083295e99 (diff) |
suppressed explicit access type and use the exception routine to infer it from the micro operation
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@529 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/op_helper_mem.h')
-rw-r--r-- | target-ppc/op_helper_mem.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/target-ppc/op_helper_mem.h b/target-ppc/op_helper_mem.h index 6c20273195..f3d5a16752 100644 --- a/target-ppc/op_helper_mem.h +++ b/target-ppc/op_helper_mem.h @@ -8,14 +8,14 @@ void glue(do_lsw, MEMSUFFIX) (int dst) __func__, T0, T1, dst); } for (; T1 > 3; T1 -= 4, T0 += 4) { - ugpr(dst++) = glue(_ldl, MEMSUFFIX)((void *)T0, ACCESS_INT); + ugpr(dst++) = glue(ldl, MEMSUFFIX)((void *)T0); if (dst == 32) dst = 0; } if (T1 > 0) { tmp = 0; for (sh = 24; T1 > 0; T1--, T0++, sh -= 8) { - tmp |= glue(_ldub, MEMSUFFIX)((void *)T0, ACCESS_INT) << sh; + tmp |= glue(ldub, MEMSUFFIX)((void *)T0) << sh; } ugpr(dst) = tmp; } @@ -30,14 +30,13 @@ void glue(do_stsw, MEMSUFFIX) (int src) __func__, T0, T1, src); } for (; T1 > 3; T1 -= 4, T0 += 4) { - glue(_stl, MEMSUFFIX)((void *)T0, ugpr(src++), ACCESS_INT); + glue(stl, MEMSUFFIX)((void *)T0, ugpr(src++)); if (src == 32) src = 0; } if (T1 > 0) { for (sh = 24; T1 > 0; T1--, T0++, sh -= 8) - glue(_stb, MEMSUFFIX)((void *)T0, (ugpr(src) >> sh) & 0xFF, - ACCESS_INT); + glue(stb, MEMSUFFIX)((void *)T0, (ugpr(src) >> sh) & 0xFF); } } |