public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* rs6000: Generate an lxvp instead of two adjacent lxv instructions
@ 2021-07-08 22:01 Peter Bergner
  2021-07-08 23:28 ` Segher Boessenkool
  0 siblings, 1 reply; 15+ messages in thread
From: Peter Bergner @ 2021-07-08 22:01 UTC (permalink / raw)
  To: Segher Boessenkool; +Cc: GCC Patches

The MMA build built-ins currently use individual lxv instructions to
load up the registers of a __vector_pair or __vector_quad.  If the
memory addresses of the built-in operands are to adjacent locations,
then we could use an lxvp in some cases to load up two registers at once.
The patch below adds support for checking whether memory addresses are
adjacent and emitting an lxvp instead of two lxv instructions.

This passed bootstrap and regtesting on powerpc64le-linux with no regressions.
Ok for trunk?

This seems simple enough, that I'd like to backport this to GCC 11
after some burn in on trunk, if that is ok?

Given the MMA redesign from GCC 10 to GCC 11, I have no plans to
backport this to GCC 10.

Peter


gcc/
	* config/rs6000/rs6000.c (consecutive_mem_locations): New function.
	(rs6000_split_multireg_move): Handle MMA build built-ins with operands
	in consecutive memory locations.
	(adjacent_mem_locations): Return the lower addressed memory rtx, if any.
	(power6_sched_reorder2): Update for adjacent_mem_locations change.

gcc/testsuite/
	* gcc.target/powerpc/mma-builtin-9.c: New test.

diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index 9a5db63d0ef..de36c5ecd91 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -293,6 +293,8 @@ bool cpu_builtin_p = false;
    don't link in rs6000-c.c, so we can't call it directly.  */
 void (*rs6000_target_modify_macros_ptr) (bool, HOST_WIDE_INT, HOST_WIDE_INT);
 
+static bool consecutive_mem_locations (rtx, rtx);
+
 /* Simplfy register classes into simpler classifications.  We assume
    GPR_REG_TYPE - FPR_REG_TYPE are ordered so that we can use a simple range
    check for standard register classes (gpr/floating/altivec/vsx) and
@@ -16841,8 +16843,35 @@ rs6000_split_multireg_move (rtx dst, rtx src)
 	  for (int i = 0; i < nvecs; i++)
 	    {
 	      int index = WORDS_BIG_ENDIAN ? i : nvecs - 1 - i;
-	      rtx dst_i = gen_rtx_REG (reg_mode, reg + index);
-	      emit_insn (gen_rtx_SET (dst_i, XVECEXP (src, 0, i)));
+	      int index_next = WORDS_BIG_ENDIAN ? index + 1 : index - 1;
+	      rtx dst_i;
+	      int regno = reg + i;
+
+	      /* If we are loading an even VSX register and our memory location
+		 is adjacent to the next register's memory location (if any),
+		 then we can load them both with one LXVP instruction.  */
+	      if ((regno & 1) == 0
+		  && VSX_REGNO_P (regno)
+		  && MEM_P (XVECEXP (src, 0, index))
+		  && MEM_P (XVECEXP (src, 0, index_next)))
+		{
+		  rtx base = WORDS_BIG_ENDIAN ? XVECEXP (src, 0, index)
+					      : XVECEXP (src, 0, index_next);
+		  rtx next = WORDS_BIG_ENDIAN ? XVECEXP (src, 0, index_next)
+					      : XVECEXP (src, 0, index);
+
+		  if (consecutive_mem_locations (base, next))
+		    {
+		      dst_i = gen_rtx_REG (OOmode, regno);
+		      emit_move_insn (dst_i, adjust_address (base, OOmode, 0));
+		      /* Skip the next register, since we just loaded it.  */
+		      i++;
+		      continue;
+		    }
+		}
+
+	      dst_i = gen_rtx_REG (reg_mode, reg + i);
+	      emit_insn (gen_rtx_SET (dst_i, XVECEXP (src, 0, index)));
 	    }
 
 	  /* We are writing an accumulator register, so we have to
@@ -18427,23 +18456,37 @@ get_memref_parts (rtx mem, rtx *base, HOST_WIDE_INT *offset,
   return true;
 }
 
-/* The function returns true if the target storage location of
-   mem1 is adjacent to the target storage location of mem2 */
-/* Return 1 if memory locations are adjacent.  */
+/* If the target storage locations of arguments MEM1 and MEM2 are
+   adjacent, then return the argument that has the lower address.
+   Otherwise, return NULL_RTX.  */
 
-static bool
+static rtx
 adjacent_mem_locations (rtx mem1, rtx mem2)
 {
   rtx reg1, reg2;
   HOST_WIDE_INT off1, size1, off2, size2;
 
   if (get_memref_parts (mem1, &reg1, &off1, &size1)
-      && get_memref_parts (mem2, &reg2, &off2, &size2))
-    return ((REGNO (reg1) == REGNO (reg2))
-	    && ((off1 + size1 == off2)
-		|| (off2 + size2 == off1)));
+      && get_memref_parts (mem2, &reg2, &off2, &size2)
+      && REGNO (reg1) == REGNO (reg2))
+    {
+      if (off1 + size1 == off2)
+	return mem1;
+      else if (off2 + size2 == off1)
+	return mem2;
+    }
 
-  return false;
+  return NULL_RTX;
+}
+
+/* The function returns true if the target storage location of
+   MEM1 is adjacent to the target storage location of MEM2 and
+   MEM1 has a lower address then MEM2.  */
+
+static bool
+consecutive_mem_locations (rtx mem1, rtx mem2)
+{
+  return adjacent_mem_locations (mem1, mem2) == mem1;
 }
 
 /* This function returns true if it can be determined that the two MEM
@@ -19009,7 +19052,7 @@ power6_sched_reorder2 (rtx_insn **ready, int lastpos)
 		first_store_pos = pos;
 
 	      if (is_store_insn (last_scheduled_insn, &str_mem2)
-		  && adjacent_mem_locations (str_mem, str_mem2))
+		  && adjacent_mem_locations (str_mem, str_mem2) != NULL_RTX)
 		{
 		  /* Found an adjacent store.  Move it to the head of the
 		     ready list, and adjust it's priority so that it is
diff --git a/gcc/testsuite/gcc.target/powerpc/mma-builtin-9.c b/gcc/testsuite/gcc.target/powerpc/mma-builtin-9.c
new file mode 100644
index 00000000000..397d0f1db35
--- /dev/null
+++ b/gcc/testsuite/gcc.target/powerpc/mma-builtin-9.c
@@ -0,0 +1,28 @@
+/* { dg-do compile } */
+/* { dg-require-effective-target power10_ok } */
+/* { dg-options "-mdejagnu-cpu=power10 -O2" } */
+
+typedef unsigned char  vec_t __attribute__((vector_size(16)));
+
+void
+foo (__vector_pair *dst, vec_t *src)
+{
+  __vector_pair pair;
+  /* Adjacent loads should be combined into one lxvp instruction.  */
+  __builtin_vsx_build_pair (&pair, src[0], src[1]);
+  *dst = pair;
+}
+
+void
+bar (__vector_quad *dst, vec_t *src)
+{
+  __vector_quad quad;
+  /* Adjacent loads should be combined into two lxvp instructions.  */
+  __builtin_mma_build_acc (&quad, src[0], src[1], src[2], src[3]);
+  *dst = quad;
+}
+
+/* { dg-final { scan-assembler-not {\mlxv\M} } } */
+/* { dg-final { scan-assembler-not {\mstxv\M} } } */
+/* { dg-final { scan-assembler-times {\mlxvp\M} 3 } } */
+/* { dg-final { scan-assembler-times {\mstxvp\M} 3 } } */

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2021-07-15 15:57 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-08 22:01 rs6000: Generate an lxvp instead of two adjacent lxv instructions Peter Bergner
2021-07-08 23:28 ` Segher Boessenkool
2021-07-09  1:26   ` Peter Bergner
2021-07-09 15:33     ` Segher Boessenkool
2021-07-09 23:14     ` Peter Bergner
2021-07-10  2:51       ` Peter Bergner
2021-07-11  0:39       ` segher
2021-07-13 17:09         ` Peter Bergner
2021-07-13 22:42           ` Segher Boessenkool
2021-07-13 17:14         ` Peter Bergner
2021-07-13 18:52           ` Peter Bergner
2021-07-13 22:59           ` Segher Boessenkool
2021-07-14 21:12             ` Peter Bergner
2021-07-15 14:15               ` Peter Bergner
2021-07-15 15:56                 ` Segher Boessenkool

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).