mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
target-ppc: convert most SPE integer instructions to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5668 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
970d622e8a
commit
57951c2742
5 changed files with 618 additions and 487 deletions
|
@ -832,10 +832,14 @@ static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
|
|||
|
||||
/*****************************************************************************/
|
||||
/* CRF definitions */
|
||||
#define CRF_LT 3
|
||||
#define CRF_GT 2
|
||||
#define CRF_EQ 1
|
||||
#define CRF_SO 0
|
||||
#define CRF_LT 3
|
||||
#define CRF_GT 2
|
||||
#define CRF_EQ 1
|
||||
#define CRF_SO 0
|
||||
#define CRF_CH (1 << 4)
|
||||
#define CRF_CL (1 << 3)
|
||||
#define CRF_CH_OR_CL (1 << 2)
|
||||
#define CRF_CH_AND_CL (1 << 1)
|
||||
|
||||
/* XER definitions */
|
||||
#define XER_SO 31
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue