From: Kyrylo Tkachov Date: Fri, 16 Dec 2016 16:26:08 +0000 (+0000) Subject: [AArch64] Split X-reg UBFIZ into W-reg LSL when possible X-Git-Tag: upstream/12.2.0~42426 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=680153bd1eefcdd31809fedd9a937bff03853dcf;p=platform%2Fupstream%2Fgcc.git [AArch64] Split X-reg UBFIZ into W-reg LSL when possible * config/aarch64/aarch64.md: New define_split above bswap2. * gcc.target/aarch64/ubfiz_lsl_1.c: New test. From-SVN: r243756 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d7f39fc..9aecfdc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2016-12-16 Kyrylo Tkachov + * config/aarch64/aarch64.md: New define_split above bswap2. + +2016-12-16 Kyrylo Tkachov + * config/aarch64/aarch64.md: New define_split above insv. 2016-12-16 Jakub Jelinek diff --git a/gcc/config/aarch64/aarch64.md b/gcc/config/aarch64/aarch64.md index 078bd8e..6d89e31 100644 --- a/gcc/config/aarch64/aarch64.md +++ b/gcc/config/aarch64/aarch64.md @@ -4439,6 +4439,24 @@ [(set_attr "type" "bfx")] ) +;; When the bit position and width of the equivalent extraction add up to 32 +;; we can use a W-reg LSL instruction taking advantage of the implicit +;; zero-extension of the X-reg. +(define_split + [(set (match_operand:DI 0 "register_operand") + (and:DI (ashift:DI (match_operand:DI 1 "register_operand") + (match_operand 2 "const_int_operand")) + (match_operand 3 "const_int_operand")))] + "aarch64_mask_and_shift_for_ubfiz_p (DImode, operands[3], operands[2]) + && (INTVAL (operands[2]) + popcount_hwi (INTVAL (operands[3]))) + == GET_MODE_BITSIZE (SImode)" + [(set (match_dup 0) + (zero_extend:DI (ashift:SI (match_dup 4) (match_dup 2))))] + { + operands[4] = gen_lowpart (SImode, operands[1]); + } +) + (define_insn "bswap2" [(set (match_operand:GPI 0 "register_operand" "=r") (bswap:GPI (match_operand:GPI 1 "register_operand" "r")))] diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index fc73346..30f8931 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2016-12-16 Kyrylo Tkachov + * gcc.target/aarch64/ubfiz_lsl_1.c: New test. + +2016-12-16 Kyrylo Tkachov + * gcc.target/aarch64/ubfx_lsr_1.c: New test. 2016-12-16 Jakub Jelinek diff --git a/gcc/testsuite/gcc.target/aarch64/ubfiz_lsl_1.c b/gcc/testsuite/gcc.target/aarch64/ubfiz_lsl_1.c new file mode 100644 index 0000000..d3fd3f2 --- /dev/null +++ b/gcc/testsuite/gcc.target/aarch64/ubfiz_lsl_1.c @@ -0,0 +1,13 @@ +/* { dg-do compile } */ +/* { dg-options "-O2" } */ + +/* Check that an X-reg UBFIZ can be simplified into a W-reg LSL. */ + +long long +f2 (long long x) +{ + return (x << 5) & 0xffffffff; +} + +/* { dg-final { scan-assembler "lsl\tw" } } */ +/* { dg-final { scan-assembler-not "ubfiz\tx" } } */