public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] PR rtl-optimization/83565: Fix 32-bit rotate on ia64
@ 2017-12-24  0:32 James Clarke
  2017-12-24  0:36 ` [PATCH v2] " James Clarke
  0 siblings, 1 reply; 3+ messages in thread
From: James Clarke @ 2017-12-24  0:32 UTC (permalink / raw)
  To: gcc-patches; +Cc: James Clarke

From: James Clarke <jrtc27@jrtc27.com>

On ia64, 32-bit rotates are implemented by copying the lower 32 bits of
a register into the upper half, then performing a right shift. However,
depending on the bit pattern in question, this can leave the upper 32
bits as non-zero, despite being only a 32-bit unsigned result. Therefore
add an extra zero_extract to mask these out.

gcc/
	PR rtl-optimization/83565
	* gcc/config/ia64/ia64.md ("*rotrsi3_internal"): Mask out higher 32
	bits from the shift result.
	("*rotlsi3_internal"): Likewise
---
 gcc/config/ia64/ia64.md |   10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gcc/config/ia64/ia64.md b/gcc/config/ia64/ia64.md
index b7cd52b..8198b54 100644
--- a/gcc/config/ia64/ia64.md
+++ b/gcc/config/ia64/ia64.md
@@ -3329,7 +3329,10 @@
 	(ior:DI (zero_extend:DI (match_dup 1))
 		(ashift:DI (zero_extend:DI (match_dup 1)) (const_int 32))))
    (set (match_dup 3)
-	(lshiftrt:DI (match_dup 3) (match_dup 2)))]
+	(lshiftrt:DI (match_dup 3) (match_dup 2)))
+   (set (match_dup 3)
+	(zero_extract:DI (match_dup 3)
+		(const_int 32) (const_int 0)))]
   "operands[3] = gen_rtx_REG (DImode, REGNO (operands[0]));")
 
 (define_expand "rotlsi3"
@@ -3358,7 +3361,10 @@
 	(ior:DI (zero_extend:DI (match_dup 1))
 		(ashift:DI (zero_extend:DI (match_dup 1)) (const_int 32))))
    (set (match_dup 3)
-	(lshiftrt:DI (match_dup 3) (match_dup 2)))]
+	(lshiftrt:DI (match_dup 3) (match_dup 2)))
+   (set (match_dup 3)
+	(zero_extract:DI (match_dup 3)
+		(const_int 32) (const_int 0)))]
 {
   operands[3] = gen_rtx_REG (DImode, REGNO (operands[0]));
   operands[2] = GEN_INT (32 - INTVAL (operands[2]));
-- 
1.7.10.4

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

end of thread, other threads:[~2017-12-24  5:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-24  0:32 [PATCH] PR rtl-optimization/83565: Fix 32-bit rotate on ia64 James Clarke
2017-12-24  0:36 ` [PATCH v2] " James Clarke
2017-12-24  5:15   ` Jim Wilson

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