mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
Convert andn, orn and xnor to TCG
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4030 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
3f47aa8c37
commit
56ec06bb8e
2 changed files with 6 additions and 18 deletions
|
@ -554,21 +554,6 @@ void OPPROTO op_tsub_T1_T0_ccTV(void)
|
|||
FORCE_RET();
|
||||
}
|
||||
|
||||
void OPPROTO op_andn_T1_T0(void)
|
||||
{
|
||||
T0 &= ~T1;
|
||||
}
|
||||
|
||||
void OPPROTO op_orn_T1_T0(void)
|
||||
{
|
||||
T0 |= ~T1;
|
||||
}
|
||||
|
||||
void OPPROTO op_xnor_T1_T0(void)
|
||||
{
|
||||
T0 ^= ~T1;
|
||||
}
|
||||
|
||||
void OPPROTO op_umul_T1_T0(void)
|
||||
{
|
||||
uint64_t res;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue