diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-29 17:21:28 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-29 17:21:28 +0000 |
commit | f18cd2238d39950f8a532cb2a2ee48a453d2e88f (patch) | |
tree | 961cbb41d1f5b04b4e34f8671c8033e200929d71 /target-alpha/op_mem.h | |
parent | 023d8ca21fab3cb29be506946476ffc16c479a17 (diff) |
target-alpha: convert FP ops to TCG
- Convert FP ops to TCG
- Fix S format
- Implement F and G formats (untested)
- Fix MF_FPCR an MT_FPCR
- Fix FTOIS, FTOIT, ITOFF, ITOFS, ITOFT
- Fix CPYSN, CPYSE
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5354 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-alpha/op_mem.h')
-rw-r--r-- | target-alpha/op_mem.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/target-alpha/op_mem.h b/target-alpha/op_mem.h index 63e59a64ab..0d031a28c5 100644 --- a/target-alpha/op_mem.h +++ b/target-alpha/op_mem.h @@ -90,31 +90,4 @@ ALPHA_LD_OP(q_l, ldq_l); ALPHA_ST_OP(l_c, stl_c); ALPHA_ST_OP(q_c, stq_c); -#define ALPHA_LDF_OP(name, op) \ -void OPPROTO glue(glue(op_ld, name), MEMSUFFIX) (void) \ -{ \ - print_mem_EA(T0); \ - FT1 = glue(op, MEMSUFFIX)(T0); \ - RETURN(); \ -} - -#define ALPHA_STF_OP(name, op) \ -void OPPROTO glue(glue(op_st, name), MEMSUFFIX) (void) \ -{ \ - print_mem_EA(T0); \ - glue(op, MEMSUFFIX)(T0, FT1); \ - RETURN(); \ -} - -ALPHA_LDF_OP(t, ldfq); -ALPHA_STF_OP(t, stfq); -ALPHA_LDF_OP(s, ldfl); -ALPHA_STF_OP(s, stfl); - -/* VAX floating point */ -ALPHA_LDF_OP(f, helper_ldff); -ALPHA_STF_OP(f, helper_stff); -ALPHA_LDF_OP(g, helper_ldfg); -ALPHA_STF_OP(g, helper_stfg); - #undef MEMSUFFIX |