diff mbox

[AArch64] Properly cost zero_extend+ashift forms of ubfi[xz]

Message ID 56615D45.80408@arm.com
State New
Headers show

Commit Message

Kyrylo Tkachov Dec. 4, 2015, 9:30 a.m. UTC
Hi all,

We don't handle properly the patterns for the [us]bfiz and [us]bfx instructions when they
have an extend+ashift form. For example, the *<ANY_EXTEND:optab><GPI:mode>_ashl<SHORT:mode> pattern.
This leads to rtx costs recuring into the extend and assigning a cost to these patterns that is too
large.

This patch fixes that oversight.
I stumbled across this when working on a different combine patch and ended up matching the above
pattern, only to have it rejected for -mcpu=cortex-a53 due to the erroneous cost.

Bootstrapped and tested on aarch64.

Ok for trunk?

Thanks,
Kyrill

2015-12-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>

     * config/aarch64/aarch64.c (aarch64_extend_bitfield_pattern_p):
     New function.
     (aarch64_rtx_costs, ZERO_EXTEND, SIGN_EXTEND cases): Use the above
     to handle extend+shift rtxes.

Comments

Kyrylo Tkachov Dec. 11, 2015, 9:53 a.m. UTC | #1
Ping.
https://gcc.gnu.org/ml/gcc-patches/2015-12/msg00526.html

Thanks,
Kyrill

On 04/12/15 09:30, Kyrill Tkachov wrote:
> Hi all,
>
> We don't handle properly the patterns for the [us]bfiz and [us]bfx instructions when they
> have an extend+ashift form. For example, the *<ANY_EXTEND:optab><GPI:mode>_ashl<SHORT:mode> pattern.
> This leads to rtx costs recuring into the extend and assigning a cost to these patterns that is too
> large.
>
> This patch fixes that oversight.
> I stumbled across this when working on a different combine patch and ended up matching the above
> pattern, only to have it rejected for -mcpu=cortex-a53 due to the erroneous cost.
>
> Bootstrapped and tested on aarch64.
>
> Ok for trunk?
>
> Thanks,
> Kyrill
>
> 2015-12-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
>
>     * config/aarch64/aarch64.c (aarch64_extend_bitfield_pattern_p):
>     New function.
>     (aarch64_rtx_costs, ZERO_EXTEND, SIGN_EXTEND cases): Use the above
>     to handle extend+shift rtxes.
James Greenhalgh Dec. 16, 2015, 2:59 p.m. UTC | #2
On Fri, Dec 04, 2015 at 09:30:45AM +0000, Kyrill Tkachov wrote:
> Hi all,
> 
> We don't handle properly the patterns for the [us]bfiz and [us]bfx instructions when they
> have an extend+ashift form. For example, the *<ANY_EXTEND:optab><GPI:mode>_ashl<SHORT:mode> pattern.
> This leads to rtx costs recuring into the extend and assigning a cost to these patterns that is too
> large.
> 
> This patch fixes that oversight.
> I stumbled across this when working on a different combine patch and ended up matching the above
> pattern, only to have it rejected for -mcpu=cortex-a53 due to the erroneous cost.
> 
> Bootstrapped and tested on aarch64.
> 
> Ok for trunk?
> 
> Thanks,
> Kyrill
> 
> 2015-12-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
> 
>     * config/aarch64/aarch64.c (aarch64_extend_bitfield_pattern_p):
>     New function.
>     (aarch64_rtx_costs, ZERO_EXTEND, SIGN_EXTEND cases): Use the above
>     to handle extend+shift rtxes.

> diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c
> index c97ecdc0859e0a24792a57aeb18b2e4ea35918f4..d180f6f2d37a280ad77f34caad8496ddaa6e01b2 100644
> --- a/gcc/config/aarch64/aarch64.c
> +++ b/gcc/config/aarch64/aarch64.c
> @@ -5833,6 +5833,50 @@ aarch64_if_then_else_costs (rtx op0, rtx op1, rtx op2, int *cost, bool speed)
>    return false;
>  }
>  
> +/* Check whether X is a bitfield operation of the form shift + extend that
> +   maps down to a UBFIZ/SBFIZ/UBFX/SBFX instruction.  If so, return the
> +   operand to which the bitfield operation is applied to.  Otherwise return

No need for that second "to" at the end of the sentence.

> +   NULL_RTX.  */
> +
> +static rtx
> +aarch64_extend_bitfield_pattern_p (rtx x)
> +{
> +  rtx_code outer_code = GET_CODE (x);
> +  machine_mode outer_mode = GET_MODE (x);
> +
> +  if (outer_code != ZERO_EXTEND && outer_code != SIGN_EXTEND
> +      && outer_mode != SImode && outer_mode != DImode)
> +    return NULL_RTX;
> +
> +  rtx inner = XEXP (x, 0);
> +  rtx_code inner_code = GET_CODE (inner);
> +  machine_mode inner_mode = GET_MODE (inner);
> +  rtx op = NULL_RTX;
> +
> +  switch (inner_code)
> +    {
> +      case ASHIFT:
> +	if (CONST_INT_P (XEXP (inner, 1))
> +	    && (inner_mode == QImode || inner_mode == HImode))
> +	  op = XEXP (inner, 0);
> +	break;
> +      case LSHIFTRT:
> +	if (outer_code == ZERO_EXTEND && CONST_INT_P (XEXP (inner, 1))
> +	    && (inner_mode == QImode || inner_mode == HImode))
> +	  op = XEXP (inner, 0);
> +	break;
> +      case ASHIFTRT:
> +	if (outer_code == SIGN_EXTEND && CONST_INT_P (XEXP (inner, 1))
> +	    && (inner_mode == QImode || inner_mode == HImode))
> +	  op = XEXP (inner, 0);
> +	break;
> +      default:
> +	break;
> +    }
> +
> +  return op;
> +}
> +
>  /* Calculate the cost of calculating X, storing it in *COST.  Result
>     is true if the total cost of the operation has now been calculated.  */
>  static bool
> @@ -6521,6 +6565,14 @@ cost_plus:
>  	  return true;
>  	}
>  
> +      op0 = aarch64_extend_bitfield_pattern_p (x);
> +      if (op0)
> +	{
> +	  *cost += rtx_cost (op0, mode, ZERO_EXTEND, 0, speed);
> +	  if (speed)
> +	    *cost += extra_cost->alu.bfx;
> +	  return true;
> +	}

Newline here.

>        if (speed)
>  	{
>  	  if (VECTOR_MODE_P (mode))
> @@ -6552,6 +6604,14 @@ cost_plus:
>  	  return true;
>  	}
>  
> +      op0 = aarch64_extend_bitfield_pattern_p (x);
> +      if (op0)
> +	{
> +	  *cost += rtx_cost (op0, mode, SIGN_EXTEND, 0, speed);
> +	  if (speed)
> +	    *cost += extra_cost->alu.bfx;
> +	  return true;
> +	}

And here.

>        if (speed)
>  	{
>  	  if (VECTOR_MODE_P (mode))

OK with those changes.

Thanks,
James
diff mbox

Patch

diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c
index c97ecdc0859e0a24792a57aeb18b2e4ea35918f4..d180f6f2d37a280ad77f34caad8496ddaa6e01b2 100644
--- a/gcc/config/aarch64/aarch64.c
+++ b/gcc/config/aarch64/aarch64.c
@@ -5833,6 +5833,50 @@  aarch64_if_then_else_costs (rtx op0, rtx op1, rtx op2, int *cost, bool speed)
   return false;
 }
 
+/* Check whether X is a bitfield operation of the form shift + extend that
+   maps down to a UBFIZ/SBFIZ/UBFX/SBFX instruction.  If so, return the
+   operand to which the bitfield operation is applied to.  Otherwise return
+   NULL_RTX.  */
+
+static rtx
+aarch64_extend_bitfield_pattern_p (rtx x)
+{
+  rtx_code outer_code = GET_CODE (x);
+  machine_mode outer_mode = GET_MODE (x);
+
+  if (outer_code != ZERO_EXTEND && outer_code != SIGN_EXTEND
+      && outer_mode != SImode && outer_mode != DImode)
+    return NULL_RTX;
+
+  rtx inner = XEXP (x, 0);
+  rtx_code inner_code = GET_CODE (inner);
+  machine_mode inner_mode = GET_MODE (inner);
+  rtx op = NULL_RTX;
+
+  switch (inner_code)
+    {
+      case ASHIFT:
+	if (CONST_INT_P (XEXP (inner, 1))
+	    && (inner_mode == QImode || inner_mode == HImode))
+	  op = XEXP (inner, 0);
+	break;
+      case LSHIFTRT:
+	if (outer_code == ZERO_EXTEND && CONST_INT_P (XEXP (inner, 1))
+	    && (inner_mode == QImode || inner_mode == HImode))
+	  op = XEXP (inner, 0);
+	break;
+      case ASHIFTRT:
+	if (outer_code == SIGN_EXTEND && CONST_INT_P (XEXP (inner, 1))
+	    && (inner_mode == QImode || inner_mode == HImode))
+	  op = XEXP (inner, 0);
+	break;
+      default:
+	break;
+    }
+
+  return op;
+}
+
 /* Calculate the cost of calculating X, storing it in *COST.  Result
    is true if the total cost of the operation has now been calculated.  */
 static bool
@@ -6521,6 +6565,14 @@  cost_plus:
 	  return true;
 	}
 
+      op0 = aarch64_extend_bitfield_pattern_p (x);
+      if (op0)
+	{
+	  *cost += rtx_cost (op0, mode, ZERO_EXTEND, 0, speed);
+	  if (speed)
+	    *cost += extra_cost->alu.bfx;
+	  return true;
+	}
       if (speed)
 	{
 	  if (VECTOR_MODE_P (mode))
@@ -6552,6 +6604,14 @@  cost_plus:
 	  return true;
 	}
 
+      op0 = aarch64_extend_bitfield_pattern_p (x);
+      if (op0)
+	{
+	  *cost += rtx_cost (op0, mode, SIGN_EXTEND, 0, speed);
+	  if (speed)
+	    *cost += extra_cost->alu.bfx;
+	  return true;
+	}
       if (speed)
 	{
 	  if (VECTOR_MODE_P (mode))