public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH 3/4] xtensa: Make use of BALL/BNALL instructions
@ 2022-06-12  6:38 Takayuki 'January June' Suwa
  2022-06-14  0:33 ` Max Filippov
  0 siblings, 1 reply; 2+ messages in thread
From: Takayuki 'January June' Suwa @ 2022-06-12  6:38 UTC (permalink / raw)
  To: GCC Patches

In Xtensa ISA, there is no single machine instruction that calculates unary
bitwise negation, but a few similar fused instructions are exist:

   "BALL  Ax, Ay, label"  // if ((~Ax & Ay) == 0) goto label;
   "BNALL Ax, Ay, label"  // if ((~Ax & Ay) != 0) goto label;

These instructions have never been emitted before, but it seems no 
reason not
to make use of them.

gcc/ChangeLog:

	* config/xtensa/xtensa.md (*masktrue_bitcmpl): New insn pattern.

gcc/testsuite/ChangeLog:

	* gcc.target/xtensa/BALL-BNALL.c: New.
---
  gcc/config/xtensa/xtensa.md                  | 21 +++++++++++++
  gcc/testsuite/gcc.target/xtensa/BALL-BNALL.c | 33 ++++++++++++++++++++
  2 files changed, 54 insertions(+)
  create mode 100644 gcc/testsuite/gcc.target/xtensa/BALL-BNALL.c

diff --git a/gcc/config/xtensa/xtensa.md b/gcc/config/xtensa/xtensa.md
index 25b8d2fb3c9..090a2939684 100644
--- a/gcc/config/xtensa/xtensa.md
+++ b/gcc/config/xtensa/xtensa.md
@@ -1627,6 +1627,27 @@
     (set_attr "mode"	"none")
     (set_attr "length"	"3")])

+(define_insn "*masktrue_bitcmpl"
+  [(set (pc)
+	(if_then_else (match_operator 3 "boolean_operator"
+			[(and:SI (not:SI (match_operand:SI 0 "register_operand" "r"))
+				 (match_operand:SI 1 "register_operand" "r"))
+			 (const_int 0)])
+		      (label_ref (match_operand 2 "" ""))
+		      (pc)))]
+  ""
+{
+  switch (GET_CODE (operands[3]))
+    {
+    case EQ:	return "ball\t%0, %1, %2";
+    case NE:	return "bnall\t%0, %1, %2";
+    default:	gcc_unreachable ();
+    }
+}
+  [(set_attr "type"	"jump")
+   (set_attr "mode"	"none")
+   (set_attr "length"	"3")])
+

  ;; Zero-overhead looping support.

diff --git a/gcc/testsuite/gcc.target/xtensa/BALL-BNALL.c 
b/gcc/testsuite/gcc.target/xtensa/BALL-BNALL.c
new file mode 100644
index 00000000000..ba61c6f371b
--- /dev/null
+++ b/gcc/testsuite/gcc.target/xtensa/BALL-BNALL.c
@@ -0,0 +1,33 @@
+/* { dg-do compile } */
+/* { dg-options "-O" } */
+
+extern void foo(void);
+
+void BNONE_test(int a, int b)
+{
+  if (a & b)
+    foo();
+}
+
+void BANY_test(int a, int b)
+{
+  if (!(a & b))
+    foo();
+}
+
+void BALL_test(int a, int b)
+{
+  if (~a & b)
+    foo();
+}
+
+void BNALL_test(int a, int b)
+{
+  if (!(~a & b))
+    foo();
+}
+
+/* { dg-final { scan-assembler-times "bnone" 1 } } */
+/* { dg-final { scan-assembler-times "bany" 1 } } */
+/* { dg-final { scan-assembler-times "ball" 1 } } */
+/* { dg-final { scan-assembler-times "bnall" 1 } } */
-- 
2.20.1

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

* Re: [PATCH 3/4] xtensa: Make use of BALL/BNALL instructions
  2022-06-12  6:38 [PATCH 3/4] xtensa: Make use of BALL/BNALL instructions Takayuki 'January June' Suwa
@ 2022-06-14  0:33 ` Max Filippov
  0 siblings, 0 replies; 2+ messages in thread
From: Max Filippov @ 2022-06-14  0:33 UTC (permalink / raw)
  To: Takayuki 'January June' Suwa; +Cc: GCC Patches

On Sat, Jun 11, 2022 at 11:43 PM Takayuki 'January June' Suwa
<jjsuwa_sys3175@yahoo.co.jp> wrote:
>
> In Xtensa ISA, there is no single machine instruction that calculates unary
> bitwise negation, but a few similar fused instructions are exist:
>
>    "BALL  Ax, Ay, label"  // if ((~Ax & Ay) == 0) goto label;
>    "BNALL Ax, Ay, label"  // if ((~Ax & Ay) != 0) goto label;
>
> These instructions have never been emitted before, but it seems no
> reason not
> to make use of them.
>
> gcc/ChangeLog:
>
>         * config/xtensa/xtensa.md (*masktrue_bitcmpl): New insn pattern.
>
> gcc/testsuite/ChangeLog:
>
>         * gcc.target/xtensa/BALL-BNALL.c: New.
> ---
>   gcc/config/xtensa/xtensa.md                  | 21 +++++++++++++
>   gcc/testsuite/gcc.target/xtensa/BALL-BNALL.c | 33 ++++++++++++++++++++
>   2 files changed, 54 insertions(+)
>   create mode 100644 gcc/testsuite/gcc.target/xtensa/BALL-BNALL.c

Regtested for target=xtensa-linux-uclibc, no new regressions.
Committed to master.

-- 
Thanks.
-- Max

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

end of thread, other threads:[~2022-06-14  0:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-12  6:38 [PATCH 3/4] xtensa: Make use of BALL/BNALL instructions Takayuki 'January June' Suwa
2022-06-14  0:33 ` Max Filippov

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