ppc/svp64: support mrr mode
authorDmitry Selyutin <ghostmansd@gmail.com>
Mon, 25 Jul 2022 19:15:25 +0000 (22:15 +0300)
committerDmitry Selyutin <ghostmansd@gmail.com>
Fri, 23 Sep 2022 17:11:54 +0000 (20:11 +0300)
gas/config/tc-ppc-svp64.c

index bc42aa572d93361fba6812a6d0a638cc14558743..14cc9cd2fc046059814d16a5608417eef9b3ca4c 100644 (file)
@@ -43,6 +43,7 @@ struct svp64_ctx {
   unsigned int ff : 3 + 2; /* 3-bit plus RC1 */
   unsigned int pr : 3 + 2; /* 3-bit plus RC1 */
   unsigned int mr : 1;
+  unsigned int rg : 1;
 };
 
 #define SVP64_RC1_ACTIVE (1U << 3U)
@@ -477,6 +478,23 @@ svp64_decode_mr (char *str, struct svp64_ctx *svp64)
   return str;
 }
 
+static char *
+svp64_decode_mrr (char *str, struct svp64_ctx *svp64)
+{
+  str += (sizeof ("mrr") - 1);
+  if ( ! ISSPACE (*str) && *str != SVP64_SEP && *str != '\0')
+    return NULL;
+
+  svp64->sv_mode_explicit = 1;
+  svp64->sv_mode = 0;
+  svp64->mr = 1;
+  svp64->rg = 1;
+
+  *str++ = '\0';
+
+  return str;
+}
+
 static char *
 svp64_decode_mode (char *str, struct svp64_ctx *svp64)
 {
@@ -499,6 +517,7 @@ svp64_decode_mode (char *str, struct svp64_ctx *svp64)
     SVP64_DECODER ("ff=" , svp64_decode_ff),
     SVP64_DECODER ("pr=" , svp64_decode_pr),
     SVP64_DECODER ("mr"  , svp64_decode_mr),
+    SVP64_DECODER ("mrr" , svp64_decode_mrr),
   };
 
   for (i = 0; i < sizeof (table) / sizeof (table[0]); ++i)