Commit 42fe404458731c0cf753a8d6d34d7116c08e79f7

Authored by bellard
1 parent 9d05095e

dump all mips insn (Thiemo Seufer)


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1935 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 5 additions and 0 deletions
mips-dis.c
... ... @@ -528,6 +528,7 @@ struct mips_opcode
528 528 ISA/ASE bitmask to test against; and CPU is the CPU specific ISA to
529 529 test, or zero if no CPU specific ISA test is desired. */
530 530  
  531 +#if 0
531 532 #define OPCODE_IS_MEMBER(insn, isa, cpu) \
532 533 (((insn)->membership & isa) != 0 \
533 534 || (cpu == CPU_R4650 && ((insn)->membership & INSN_4650) != 0) \
... ... @@ -543,6 +544,10 @@ struct mips_opcode
543 544 || (cpu == CPU_VR5400 && ((insn)->membership & INSN_5400) != 0) \
544 545 || (cpu == CPU_VR5500 && ((insn)->membership & INSN_5500) != 0) \
545 546 || 0) /* Please keep this term for easier source merging. */
  547 +#else
  548 +#define OPCODE_IS_MEMBER(insn, isa, cpu) \
  549 + (1 != 0)
  550 +#endif
546 551  
547 552 /* This is a list of macro expanded instructions.
548 553  
... ...