include/opcode/
* mips.h (CPU_RM7000): New macro. (OPCODE_IS_MEMBER): Match CPU_RM7000 against 4650 insns. bfd/ * archures.c (bfd_mach_mips7000): New. * bfd-in2.h: Regenerated. * cpu-mips.c (arch_info_struct): Add an entry for mips:7000. * elfxx-mips.c (mips_set_isa_flags): Handle bfd_mach_mips7000. (mips_mach_extensions): Add an entry for it. opcodes/ * mips-dis.c (mips_arch_choices): Add rm7000 and rm9000 entries. gas/ * config/tc-mips.c (hilo_interlocks): True for CPU_RM7000. (mips_cpu_info_table): Add rm7000 and rm9000 entries. gas/testsuite/ * gas/mips/rm7000.[sd]: New test. * gas/mips/mips.exp: Run it.
This commit is contained in:
parent
7a90ec1ad1
commit
f0dcabe35a
|
@ -1,3 +1,8 @@
|
|||
2003-07-15 Richard Sandiford <rsandifo@redhat.com>
|
||||
|
||||
* mips.h (CPU_RM7000): New macro.
|
||||
(OPCODE_IS_MEMBER): Match CPU_RM7000 against 4650 insns.
|
||||
|
||||
2003-07-09 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
2000-04-01 Alexandre Oliva <aoliva@cygnus.com>
|
||||
|
|
|
@ -451,6 +451,7 @@ struct mips_opcode
|
|||
#define CPU_VR5400 5400
|
||||
#define CPU_VR5500 5500
|
||||
#define CPU_R6000 6000
|
||||
#define CPU_RM7000 7000
|
||||
#define CPU_R8000 8000
|
||||
#define CPU_R10000 10000
|
||||
#define CPU_R12000 12000
|
||||
|
@ -469,6 +470,7 @@ struct mips_opcode
|
|||
#define OPCODE_IS_MEMBER(insn, isa, cpu) \
|
||||
(((insn)->membership & isa) != 0 \
|
||||
|| (cpu == CPU_R4650 && ((insn)->membership & INSN_4650) != 0) \
|
||||
|| (cpu == CPU_RM7000 && ((insn)->membership & INSN_4650) != 0) \
|
||||
|| (cpu == CPU_R4010 && ((insn)->membership & INSN_4010) != 0) \
|
||||
|| (cpu == CPU_VR4100 && ((insn)->membership & INSN_4100) != 0) \
|
||||
|| (cpu == CPU_R3900 && ((insn)->membership & INSN_3900) != 0) \
|
||||
|
|
Loading…
Reference in New Issue