aboutsummaryrefslogtreecommitdiff
path: root/sim/mips
diff options
context:
space:
mode:
authorGavin Romig-Koch <gavin@redhat.com>1997-02-20 15:48:57 +0000
committerGavin Romig-Koch <gavin@redhat.com>1997-02-20 15:48:57 +0000
commit528031fd49710a960a89c65777ea1c779fbbbced (patch)
tree459f6eeb831ebe306006c1ede72f1b592a763d0e /sim/mips
parent8f06365c2f3fe3bbb40474b00477f01f217670a1 (diff)
downloadgdb-528031fd49710a960a89c65777ea1c779fbbbced.zip
gdb-528031fd49710a960a89c65777ea1c779fbbbced.tar.gz
gdb-528031fd49710a960a89c65777ea1c779fbbbced.tar.bz2
Correct test for ISA dependent bits
Diffstat (limited to 'sim/mips')
-rw-r--r--sim/mips/gencode.c24
1 files changed, 18 insertions, 6 deletions
diff --git a/sim/mips/gencode.c b/sim/mips/gencode.c
index 9ae77c3..e7ff998 100644
--- a/sim/mips/gencode.c
+++ b/sim/mips/gencode.c
@@ -450,7 +450,19 @@ typedef struct instruction {
the normal instruction space. */
#define MASK_ISA (0x000000FF) /* Start by leaving 8bits for the ISA ID */
/* The other bits are allocated downwards, to avoid renumbering if we
- have to extend the bits allocated to the pure ISA number. */
+ have to extend the bits allocated to the pure ISA number.
+
+ These architecture bits come in two flavors:
+ ISA dependent - marking insns that should be included in the opcode
+ set if that architecture is requested on the gencode command line
+ AND the ISA of the insn is <= requested ISA;
+
+ ISA independent - marking insn that should be included in the opcode
+ set if that architecture is requested
+ OR the ISA of the insn is <= requested ISA.
+
+ Independent bits are listed in MASK_ISA_INDEP, the rest are dependent.
+ */
#define ARCH_VR4100 ((unsigned)1 << 31) /* NEC VR4100 extension instructions */
/* start-sanitize-r5900 */
#define ARCH_R5900 ((unsigned)1 << 30) /* Toshiba r5900 extension instructions */
@@ -463,7 +475,7 @@ typedef struct instruction {
/* end-sanitize-r5900 */ \
| 0)
-
+#define MASK_ISA_DEP ~(MASK_ISA_INDEP | MASK_ISA)
/* Very short names for use in the table below to keep it neet. */
@@ -1842,10 +1854,10 @@ process_instructions(doarch,features)
valid, then if the instruction matches any of the
architecture specific flags. NOTE: We allow a selected ISA of
zero to be used to match all standard instructions. */
- if (((MIPS_DECODE[loop].isa & doarch & MASK_ISA_INDEP)
- || (((MIPS_DECODE[loop].isa & MASK_ISA) <= doisa)
- && (((MIPS_DECODE[loop].isa & ~MASK_ISA) == 0)
- || ((MIPS_DECODE[loop].isa & ~MASK_ISA) & doarch) != 0)))
+ unsigned int isa = MIPS_DECODE[loop].isa;
+ if (((isa & doarch & MASK_ISA_INDEP)
+ || (((isa & MASK_ISA) <= doisa)
+ && (((isa & MASK_ISA_DEP) == 0) || ((isa & MASK_ISA_DEP) & doarch) != 0)))
&& (!(MIPS_DECODE[loop].flags & FP) || ((MIPS_DECODE[loop].flags & FP) && dofp))) {
unsigned int onemask;
unsigned int zeromask;