diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-17 22:04:52 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-17 22:04:52 +0000 |
commit | b3249f630e95f3235da438ee1a6cd1b867084e9c (patch) | |
tree | 73e6a9cdd97062c471dd4aaa596abd34316c5b6d /target-alpha/op.c | |
parent | 9c29504eb71238241f29667bd96fb83c97668e1a (diff) |
target-alpha: convert byte manipulation instructions to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5246 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-alpha/op.c')
-rw-r--r-- | target-alpha/op.c | 139 |
1 files changed, 0 insertions, 139 deletions
diff --git a/target-alpha/op.c b/target-alpha/op.c index 405a05257f..5d0daa9521 100644 --- a/target-alpha/op.c +++ b/target-alpha/op.c @@ -243,145 +243,6 @@ void OPPROTO op_umulh (void) RETURN(); } -/* Logical */ -void OPPROTO op_mskbl (void) -{ - helper_mskbl(); - RETURN(); -} - -void OPPROTO op_extbl (void) -{ - helper_extbl(); - RETURN(); -} - -void OPPROTO op_insbl (void) -{ - helper_insbl(); - RETURN(); -} - -void OPPROTO op_mskwl (void) -{ - helper_mskwl(); - RETURN(); -} - -void OPPROTO op_extwl (void) -{ - helper_extwl(); - RETURN(); -} - -void OPPROTO op_inswl (void) -{ - helper_inswl(); - RETURN(); -} - -void OPPROTO op_mskll (void) -{ - helper_mskll(); - RETURN(); -} - -void OPPROTO op_extll (void) -{ - helper_extll(); - RETURN(); -} - -void OPPROTO op_insll (void) -{ - helper_insll(); - RETURN(); -} - -void OPPROTO op_zap (void) -{ - helper_zap(); - RETURN(); -} - -void OPPROTO op_zapnot (void) -{ - helper_zapnot(); - RETURN(); -} - -void OPPROTO op_mskql (void) -{ - helper_mskql(); - RETURN(); -} - -void OPPROTO op_extql (void) -{ - helper_extql(); - RETURN(); -} - -void OPPROTO op_insql (void) -{ - helper_insql(); - RETURN(); -} - -void OPPROTO op_mskwh (void) -{ - helper_mskwh(); - RETURN(); -} - -void OPPROTO op_inswh (void) -{ - helper_inswh(); - RETURN(); -} - -void OPPROTO op_extwh (void) -{ - helper_extwh(); - RETURN(); -} - -void OPPROTO op_msklh (void) -{ - helper_msklh(); - RETURN(); -} - -void OPPROTO op_inslh (void) -{ - helper_inslh(); - RETURN(); -} - -void OPPROTO op_extlh (void) -{ - helper_extlh(); - RETURN(); -} - -void OPPROTO op_mskqh (void) -{ - helper_mskqh(); - RETURN(); -} - -void OPPROTO op_insqh (void) -{ - helper_insqh(); - RETURN(); -} - -void OPPROTO op_extqh (void) -{ - helper_extqh(); - RETURN(); -} - /* Tests */ void OPPROTO op_cmpult (void) { |