public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] [AArch64] Add vcond, vcondu support.
@ 2012-10-09 11:09 James Greenhalgh
  2012-10-15 11:50 ` Marcus Shawcroft
  0 siblings, 1 reply; 5+ messages in thread
From: James Greenhalgh @ 2012-10-09 11:09 UTC (permalink / raw)
  To: gcc-patches

[-- Attachment #1: Type: text/plain, Size: 683 bytes --]


Hi,

This patch adds support for vcond and vcondu to the AArch64
backend.

Tested with no regressions on aarch64-none-elf.

OK for aarch64-branch?

(If so, someone will have to commit for me, as I do not
have commit rights.)

Thanks
James Greenhalgh

---
2012-09-11  James Greenhalgh  <james.greenhalgh@arm.com>
	    Tejas Belagod  <tejas.belagod@arm.com>

	* config/aarch64/aarch64-simd.md
	(aarch64_simd_bsl<mode>_internal): New pattern.
	(aarch64_simd_bsl<mode>): Likewise.
	(aarch64_vcond_internal<mode>): Likewise.
	(vcondu<mode><mode>): Likewise.
	(vcond<mode><mode>): Likewise.
	* config/aarch64/iterators.md (UNSPEC_BSL): Add to define_constants.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-AArch64-Add-vcond-vcondu-support.patch --]
[-- Type: text/x-patch; name=0001-AArch64-Add-vcond-vcondu-support.patch, Size: 5279 bytes --]

diff --git a/gcc/config/aarch64/aarch64-simd.md b/gcc/config/aarch64/aarch64-simd.md
index a7ddfb1..c9b5e17 100644
--- a/gcc/config/aarch64/aarch64-simd.md
+++ b/gcc/config/aarch64/aarch64-simd.md
@@ -1467,6 +1467,150 @@
    (set_attr "simd_mode" "V2SI")]
 )
 
+;; vbsl_* intrinsics may compile to any of vbsl/vbif/vbit depending on register
+;; allocation.  For an intrinsic of form:
+;;   vD = bsl_* (vS, vN, vM)
+;; We can use any of:
+;;   bsl vS, vN, vM  (if D = S)
+;;   bit vD, vN, vS  (if D = M, so 1-bits in vS choose bits from vN, else vM)
+;;   bif vD, vM, vS  (if D = N, so 0-bits in vS choose bits from vM, else vN)
+
+(define_insn "aarch64_simd_bsl<mode>_internal"
+  [(set (match_operand:VDQ 0 "register_operand"		     "=w,w,w")
+	(unspec:VDQ [(match_operand:VDQ 1 "register_operand" " 0,w,w")
+		     (match_operand:VDQ 2 "register_operand" " w,w,0")
+                     (match_operand:VDQ 3 "register_operand" " w,0,w")]
+                    UNSPEC_BSL))]
+  "TARGET_SIMD"
+  "@
+  bsl\\t%0.<Vbtype>, %2.<Vbtype>, %3.<Vbtype>
+  bit\\t%0.<Vbtype>, %2.<Vbtype>, %1.<Vbtype>
+  bif\\t%0.<Vbtype>, %3.<Vbtype>, %1.<Vbtype>"
+)
+
+(define_expand "aarch64_simd_bsl<mode>"
+  [(set (match_operand:VDQ 0 "register_operand")
+        (unspec:VDQ [(match_operand:<V_cmp_result> 1 "register_operand")
+                      (match_operand:VDQ 2 "register_operand")
+                      (match_operand:VDQ 3 "register_operand")]
+                     UNSPEC_BSL))]
+  "TARGET_SIMD"
+{
+  /* We can't alias operands together if they have different modes.  */
+  operands[1] = gen_lowpart (<MODE>mode, operands[1]);
+})
+
+(define_expand "aarch64_vcond_internal<mode>"
+  [(set (match_operand:VDQ 0 "register_operand")
+	(if_then_else:VDQ
+	  (match_operator 3 "comparison_operator"
+	    [(match_operand:VDQ 4 "register_operand")
+	     (match_operand:VDQ 5 "nonmemory_operand")])
+	  (match_operand:VDQ 1 "register_operand")
+	  (match_operand:VDQ 2 "register_operand")))]
+  "TARGET_SIMD"
+{
+  int inverse = 0, has_zero_imm_form = 0;
+  rtx mask = gen_reg_rtx (<MODE>mode);
+
+  switch (GET_CODE (operands[3]))
+    {
+    case LE:
+    case LT:
+    case NE:
+      inverse = 1;
+      /* Fall through.  */
+    case GE:
+    case GT:
+    case EQ:
+      has_zero_imm_form = 1;
+      break;
+    case LEU:
+    case LTU:
+      inverse = 1;
+      break;
+    default:
+      break;
+    }
+
+  if (!REG_P (operands[5])
+      && (operands[5] != CONST0_RTX (<MODE>mode) || !has_zero_imm_form))
+    operands[5] = force_reg (<MODE>mode, operands[5]);
+
+  switch (GET_CODE (operands[3]))
+    {
+    case LT:
+    case GE:
+      emit_insn (gen_aarch64_cmge<mode> (mask, operands[4], operands[5]));
+      break;
+
+    case LE:
+    case GT:
+      emit_insn (gen_aarch64_cmgt<mode> (mask, operands[4], operands[5]));
+      break;
+
+    case LTU:
+    case GEU:
+      emit_insn (gen_aarch64_cmhs<mode> (mask, operands[4], operands[5]));
+      break;
+
+    case LEU:
+    case GTU:
+      emit_insn (gen_aarch64_cmhi<mode> (mask, operands[4], operands[5]));
+      break;
+
+    case NE:
+    case EQ:
+      emit_insn (gen_aarch64_cmeq<mode> (mask, operands[4], operands[5]));
+      break;
+
+    default:
+      gcc_unreachable ();
+    }
+
+  if (inverse)
+    emit_insn (gen_aarch64_simd_bsl<mode> (operands[0], mask, operands[2],
+				    operands[1]));
+  else
+    emit_insn (gen_aarch64_simd_bsl<mode> (operands[0], mask, operands[1],
+				    operands[2]));
+
+  DONE;
+})
+
+(define_expand "vcond<mode><mode>"
+  [(set (match_operand:VDQ 0 "register_operand")
+	(if_then_else:VDQ
+	  (match_operator 3 "comparison_operator"
+	    [(match_operand:VDQ 4 "register_operand")
+	     (match_operand:VDQ 5 "nonmemory_operand")])
+	  (match_operand:VDQ 1 "register_operand")
+	  (match_operand:VDQ 2 "register_operand")))]
+  "TARGET_SIMD"
+{
+  emit_insn (gen_aarch64_vcond_internal<mode> (operands[0], operands[1],
+					       operands[2], operands[3],
+					       operands[4], operands[5]));
+  DONE;
+})
+
+
+(define_expand "vcondu<mode><mode>"
+  [(set (match_operand:VDQ 0 "register_operand")
+	(if_then_else:VDQ
+	  (match_operator 3 "comparison_operator"
+	    [(match_operand:VDQ 4 "register_operand")
+	     (match_operand:VDQ 5 "nonmemory_operand")])
+	  (match_operand:VDQ 1 "register_operand")
+	  (match_operand:VDQ 2 "register_operand")))]
+  "TARGET_SIMD"
+{
+  emit_insn (gen_aarch64_vcond_internal<mode> (operands[0], operands[1],
+					       operands[2], operands[3],
+					       operands[4], operands[5]));
+  DONE;
+})
+
 ;; Patterns for AArch64 SIMD Intrinsics.
 
 (define_expand "aarch64_create<mode>"
diff --git a/gcc/config/aarch64/iterators.md b/gcc/config/aarch64/iterators.md
index bf2041e..8d5d4b0 100644
--- a/gcc/config/aarch64/iterators.md
+++ b/gcc/config/aarch64/iterators.md
@@ -227,6 +227,7 @@
     UNSPEC_CMTST	; Used in aarch64-simd.md.
     UNSPEC_FMAX		; Used in aarch64-simd.md.
     UNSPEC_FMIN		; Used in aarch64-simd.md.
+    UNSPEC_BSL		; Used in aarch64-simd.md.
 ])
 
 ;; -------------------------------------------------------------------

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

* Re: [PATCH] [AArch64] Add vcond, vcondu support.
  2012-10-09 11:09 [PATCH] [AArch64] Add vcond, vcondu support James Greenhalgh
@ 2012-10-15 11:50 ` Marcus Shawcroft
  2012-10-26  9:47   ` James Greenhalgh
                     ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Marcus Shawcroft @ 2012-10-15 11:50 UTC (permalink / raw)
  To: gcc-patches

On 09/10/12 12:08, James Greenhalgh wrote:
>
> Hi,
>
> This patch adds support for vcond and vcondu to the AArch64
> backend.
>
> Tested with no regressions on aarch64-none-elf.
>
> OK for aarch64-branch?
>
> (If so, someone will have to commit for me, as I do not
> have commit rights.)
>
> Thanks
> James Greenhalgh
>
> ---
> 2012-09-11  James Greenhalgh<james.greenhalgh@arm.com>
> 	Tejas Belagod<tejas.belagod@arm.com>
>
> 	* config/aarch64/aarch64-simd.md
> 	(aarch64_simd_bsl<mode>_internal): New pattern.
> 	(aarch64_simd_bsl<mode>): Likewise.
> 	(aarch64_vcond_internal<mode>): Likewise.
> 	(vcondu<mode><mode>): Likewise.
> 	(vcond<mode><mode>): Likewise.
> 	* config/aarch64/iterators.md (UNSPEC_BSL): Add to define_constants.

OK
/Marcus

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

* RE: [PATCH] [AArch64] Add vcond, vcondu support.
  2012-10-15 11:50 ` Marcus Shawcroft
@ 2012-10-26  9:47   ` James Greenhalgh
  2012-10-30 13:35   ` James Greenhalgh
  2012-12-03 14:24   ` James Greenhalgh
  2 siblings, 0 replies; 5+ messages in thread
From: James Greenhalgh @ 2012-10-26  9:47 UTC (permalink / raw)
  To: gcc-patches; +Cc: Marcus Shawcroft

> -----Original Message-----
> From: gcc-patches-owner@gcc.gnu.org [mailto:gcc-patches-
> owner@gcc.gnu.org] On Behalf Of Marcus Shawcroft
> Sent: 15 October 2012 12:37
> To: gcc-patches@gcc.gnu.org
> Subject: Re: [PATCH] [AArch64] Add vcond, vcondu support.
> 
> On 09/10/12 12:08, James Greenhalgh wrote:
> >
> > Hi,
> >
> > This patch adds support for vcond and vcondu to the AArch64
> > backend.
> >
> > Tested with no regressions on aarch64-none-elf.
> >
> > OK for aarch64-branch?
> >
> > (If so, someone will have to commit for me, as I do not
> > have commit rights.)
> >
> > Thanks
> > James Greenhalgh
> >
> > ---
> > 2012-09-11  James Greenhalgh<james.greenhalgh@arm.com>
> > 	Tejas Belagod<tejas.belagod@arm.com>
> >
> > 	* config/aarch64/aarch64-simd.md
> > 	(aarch64_simd_bsl<mode>_internal): New pattern.
> > 	(aarch64_simd_bsl<mode>): Likewise.
> > 	(aarch64_vcond_internal<mode>): Likewise.
> > 	(vcondu<mode><mode>): Likewise.
> > 	(vcond<mode><mode>): Likewise.
> > 	* config/aarch64/iterators.md (UNSPEC_BSL): Add to
> define_constants.
> 
> OK
> /Marcus
> 

Hi Marcus,

Thanks for the review, could someone please commit this patch
for me as I do not have SVN write access.

Regards,
James Greenhalgh

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

* RE: [PATCH] [AArch64] Add vcond, vcondu support.
  2012-10-15 11:50 ` Marcus Shawcroft
  2012-10-26  9:47   ` James Greenhalgh
@ 2012-10-30 13:35   ` James Greenhalgh
  2012-12-03 14:24   ` James Greenhalgh
  2 siblings, 0 replies; 5+ messages in thread
From: James Greenhalgh @ 2012-10-30 13:35 UTC (permalink / raw)
  To: gcc-patches; +Cc: Marcus Shawcroft

> -----Original Message-----
> From: gcc-patches-owner@gcc.gnu.org [mailto:gcc-patches-
> owner@gcc.gnu.org] On Behalf Of Marcus Shawcroft
> Sent: 15 October 2012 12:37
> To: gcc-patches@gcc.gnu.org
> Subject: Re: [PATCH] [AArch64] Add vcond, vcondu support.
> 
> On 09/10/12 12:08, James Greenhalgh wrote:
> >
> > Hi,
> >
> > This patch adds support for vcond and vcondu to the AArch64
> > backend.
> >
> > Tested with no regressions on aarch64-none-elf.
> >
> > OK for aarch64-branch?
> >
> > (If so, someone will have to commit for me, as I do not
> > have commit rights.)
> >
> > Thanks
> > James Greenhalgh
> >
> > ---
> > 2012-09-11  James Greenhalgh<james.greenhalgh@arm.com>
> > 	Tejas Belagod<tejas.belagod@arm.com>
> >
> > 	* config/aarch64/aarch64-simd.md
> > 	(aarch64_simd_bsl<mode>_internal): New pattern.
> > 	(aarch64_simd_bsl<mode>): Likewise.
> > 	(aarch64_vcond_internal<mode>): Likewise.
> > 	(vcondu<mode><mode>): Likewise.
> > 	(vcond<mode><mode>): Likewise.
> > 	* config/aarch64/iterators.md (UNSPEC_BSL): Add to
> define_constants.
> 
> OK
> /Marcus
> 

Hi,

Committed as revision 192985.

Thanks,
James Greenhalgh

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

* RE: [PATCH] [AArch64] Add vcond, vcondu support.
  2012-10-15 11:50 ` Marcus Shawcroft
  2012-10-26  9:47   ` James Greenhalgh
  2012-10-30 13:35   ` James Greenhalgh
@ 2012-12-03 14:24   ` James Greenhalgh
  2 siblings, 0 replies; 5+ messages in thread
From: James Greenhalgh @ 2012-12-03 14:24 UTC (permalink / raw)
  To: Marcus Shawcroft; +Cc: gcc-patches

> -----Original Message-----
> From: gcc-patches-owner@gcc.gnu.org [mailto:gcc-patches-
> owner@gcc.gnu.org] On Behalf Of Marcus Shawcroft
> Sent: 15 October 2012 12:37
> To: gcc-patches@gcc.gnu.org
> Subject: Re: [PATCH] [AArch64] Add vcond, vcondu support.
> 
> On 09/10/12 12:08, James Greenhalgh wrote:
> >
> > Hi,
> >
> > This patch adds support for vcond and vcondu to the AArch64
> > backend.
> >
> OK
> /Marcus
> 

Hi Marcus,

I've also back-ported and committed this to AArch64-4.7-branch.
The back-port was clean, and a regression test for
aarch64-none-elf was also clean.

Thanks,
James

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

end of thread, other threads:[~2012-12-03 14:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-09 11:09 [PATCH] [AArch64] Add vcond, vcondu support James Greenhalgh
2012-10-15 11:50 ` Marcus Shawcroft
2012-10-26  9:47   ` James Greenhalgh
2012-10-30 13:35   ` James Greenhalgh
2012-12-03 14:24   ` James Greenhalgh

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).