ppc/svp64: introduce non-zero operand flag
authorDmitry Selyutin <ghostmansd@gmail.com>
Mon, 25 Jul 2022 13:10:15 +0000 (16:10 +0300)
committerAlan Modra <amodra@gmail.com>
Thu, 11 Aug 2022 09:08:29 +0000 (18:38 +0930)
svstep and svshape instructions subtract 1 before encoding some of the
operands. Obviously zero is not supported for these operands. Whilst
PPC_OPERAND_PLUS1 fits perfectly to mark that maximal value should be
incremented, there is no flag which marks the fact that zero values are
not allowed. This patch adds a new flag, PPC_OPERAND_NONZERO, for this
purpose.

gas/config/tc-ppc.c
include/opcode/ppc.h
opcodes/ppc-dis.c

index ffc99857e3952bee770e3e492f6633bd5e937799..b5aad4b6e3ef40e0017d121b147c3fd1b3f01db6 100644 (file)
@@ -1657,9 +1657,14 @@ ppc_setup_opcodes (void)
       for (i = 0; i < num_powerpc_operands; ++i)
        {
          uint64_t mask = powerpc_operands[i].bitm;
+         unsigned long flags = powerpc_operands[i].flags;
          uint64_t right_bit;
          unsigned int j;
 
+         if ((flags & PPC_OPERAND_PLUS1) != 0
+              && (flags & PPC_OPERAND_NONZERO) != 0)
+           as_bad ("mutually exclusive operand flags");
+
          right_bit = mask & -mask;
          mask += right_bit;
          right_bit = mask & -mask;
@@ -1992,6 +1997,11 @@ ppc_insert_operand (uint64_t insn,
       max = (max >> 1) & -right;
       min = ~max & -right;
     }
+  else if ((operand->flags & PPC_OPERAND_NONZERO) != 0)
+    {
+      ++min;
+      ++max;
+    }
 
   if ((operand->flags & PPC_OPERAND_PLUS1) != 0)
     max++;
@@ -2042,10 +2052,15 @@ ppc_insert_operand (uint64_t insn,
       if (errmsg != (const char *) NULL)
        as_bad_where (file, line, "%s", errmsg);
     }
-  else if (operand->shift >= 0)
-    insn |= (val & operand->bitm) << operand->shift;
   else
-    insn |= (val & operand->bitm) >> -operand->shift;
+    {
+      if ((operand->flags & PPC_OPERAND_NONZERO) != 0)
+       --val;
+      if (operand->shift >= 0)
+       insn |= (val & operand->bitm) << operand->shift;
+      else
+       insn |= (val & operand->bitm) >> -operand->shift;
+    }
 
   return insn;
 }
index cf72db6069d227a98efa2dcaae558241ac2cc91a..3578f0d218dfa28297f859c2c5b88078b9d481c1 100644 (file)
@@ -463,6 +463,11 @@ extern const unsigned int num_powerpc_operands;
 #define PPC_OPERAND_FCR (0x1000000)
 #define PPC_OPERAND_UDI (0x2000000)
 
+/* Valid range of operand is 1..n rather than 0..n-1.
+   Before encoding, the operand value is decremented.
+   After decoding, the operand value is incremented.  */
+#define PPC_OPERAND_NONZERO (0x4000000)
+
 extern ppc_cpu_t ppc_parse_cpu (ppc_cpu_t, ppc_cpu_t *, const char *);
 
 static inline int64_t
index db03dce461368a584bf4751d7e686be6df6ed1db..97f2e201e9a6af445699fac65141d8b341250cd6 100644 (file)
@@ -545,6 +545,9 @@ operand_value_powerpc (const struct powerpc_operand *operand,
        }
     }
 
+  if ((operand->flags & PPC_OPERAND_NONZERO) != 0)
+    ++value;
+
   return value;
 }