* mips.h (CPU_RM9000): Define.
(OPCODE_IS_MEMBER): Handle CPU_RM9000.
This commit is contained in:
parent
55059a1f7d
commit
23b9802aa0
|
@ -1,3 +1,8 @@
|
||||||
|
2004-12-09 Ian Lance Taylor <ian@wasabisystems.com>
|
||||||
|
|
||||||
|
* mips.h (CPU_RM9000): Define.
|
||||||
|
(OPCODE_IS_MEMBER): Handle CPU_RM9000.
|
||||||
|
|
||||||
2004-11-25 Jan Beulich <jbeulich@novell.com>
|
2004-11-25 Jan Beulich <jbeulich@novell.com>
|
||||||
|
|
||||||
* i386.h: CpuNo64 mov can't reasonably have a 'q' suffix. Moves
|
* i386.h: CpuNo64 mov can't reasonably have a 'q' suffix. Moves
|
||||||
|
|
|
@ -470,6 +470,7 @@ struct mips_opcode
|
||||||
#define CPU_R6000 6000
|
#define CPU_R6000 6000
|
||||||
#define CPU_RM7000 7000
|
#define CPU_RM7000 7000
|
||||||
#define CPU_R8000 8000
|
#define CPU_R8000 8000
|
||||||
|
#define CPU_RM9000 9000
|
||||||
#define CPU_R10000 10000
|
#define CPU_R10000 10000
|
||||||
#define CPU_R12000 12000
|
#define CPU_R12000 12000
|
||||||
#define CPU_MIPS16 16
|
#define CPU_MIPS16 16
|
||||||
|
@ -489,6 +490,7 @@ struct mips_opcode
|
||||||
(((insn)->membership & isa) != 0 \
|
(((insn)->membership & isa) != 0 \
|
||||||
|| (cpu == CPU_R4650 && ((insn)->membership & INSN_4650) != 0) \
|
|| (cpu == CPU_R4650 && ((insn)->membership & INSN_4650) != 0) \
|
||||||
|| (cpu == CPU_RM7000 && ((insn)->membership & INSN_4650) != 0) \
|
|| (cpu == CPU_RM7000 && ((insn)->membership & INSN_4650) != 0) \
|
||||||
|
|| (cpu == CPU_RM9000 && ((insn)->membership & INSN_4650) != 0) \
|
||||||
|| (cpu == CPU_R4010 && ((insn)->membership & INSN_4010) != 0) \
|
|| (cpu == CPU_R4010 && ((insn)->membership & INSN_4010) != 0) \
|
||||||
|| (cpu == CPU_VR4100 && ((insn)->membership & INSN_4100) != 0) \
|
|| (cpu == CPU_VR4100 && ((insn)->membership & INSN_4100) != 0) \
|
||||||
|| (cpu == CPU_R3900 && ((insn)->membership & INSN_3900) != 0) \
|
|| (cpu == CPU_R3900 && ((insn)->membership & INSN_3900) != 0) \
|
||||||
|
|
Loading…
Reference in New Issue