diff mbox

[AArch64] Restrict usage of SBFIZ to valid range only

Message ID 000001cdaaf8$64f324c0$2ed96e40$@bolton@arm.com
State New
Headers show

Commit Message

Ian Bolton Oct. 15, 2012, 5:13 p.m. UTC
This fixes an issue where we were generating an SBFIZ with
operand 3 outside of the valid range (as determined by the
size of the destination register and the amount of shift).

My patch checks that the range is valid before allowing
the pattern to be used.

This has now had full regression testing and all is OK.

OK for aarch64-trunk and aarch64-4_7-branch?

Cheers,
Ian


2012-10-15  Ian Bolton  <ian.bolton@arm.com>

	* gcc/config/aarch64/aarch64.md
	(<optab><ALLX:mode>_shft_<GPI:mode>): Restrict based on op2.


-------------------------
diff mbox

Patch

diff --git a/gcc/config/aarch64/aarch64.md b/gcc/config/aarch64/aarch64.md
index e6086a9..3bfe6e6 100644
--- a/gcc/config/aarch64/aarch64.md
+++ b/gcc/config/aarch64/aarch64.md
@@ -2311,7 +2311,7 @@ 
        (ashift:GPI (ANY_EXTEND:GPI
                     (match_operand:ALLX 1 "register_operand" "r"))
                    (match_operand 2 "const_int_operand" "n")))]
-  ""
+  "<ALLX:sizen> <= (<GPI:sizen> - UINTVAL (operands[2]))"
   "<su>bfiz\\t%<GPI:w>0, %<GPI:w>1, %2, #<ALLX:sizen>"
   [(set_attr "v8type" "bfm")
    (set_attr "mode" "<GPI:MODE>")]