diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-18 13:45:14 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-18 13:45:14 +0000 |
commit | 04acd3072622097f343d16e2da2ec84d6ee1b840 (patch) | |
tree | a0bf148385f592bf64dbe864994c31647a5feff2 /target-alpha/op.c | |
parent | 4b2eb8d2759aa575062c587cded89ae347ce1317 (diff) |
target-alpha: convert remaining arith3 functions to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5254 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-alpha/op.c')
-rw-r--r-- | target-alpha/op.c | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/target-alpha/op.c b/target-alpha/op.c index 68812a0e56..2896c1d4a2 100644 --- a/target-alpha/op.c +++ b/target-alpha/op.c @@ -161,59 +161,7 @@ void OPPROTO op_store_fpcr (void) RETURN(); } -/* Arithmetic */ -void OPPROTO op_addqv (void) -{ - helper_addqv(); - RETURN(); -} - -void OPPROTO op_addlv (void) -{ - helper_addlv(); - RETURN(); -} - -void OPPROTO op_subqv (void) -{ - helper_subqv(); - RETURN(); -} - -void OPPROTO op_sublv (void) -{ - helper_sublv(); - RETURN(); -} - -void OPPROTO op_mullv (void) -{ - helper_mullv(); - RETURN(); -} - -void OPPROTO op_mulqv (void) -{ - helper_mulqv(); - RETURN(); -} - -void OPPROTO op_umulh (void) -{ - uint64_t tl, th; - - mulu64(&tl, &th, T0, T1); - T0 = th; - RETURN(); -} - /* Tests */ -void OPPROTO op_cmpbge (void) -{ - helper_cmpbge(); - RETURN(); -} - #if 0 // Qemu does not know how to do this... void OPPROTO op_bcond (void) { |