diff mbox series

[17/46] tcg/optimize: Use fold_masks_zsa in fold_exts

Message ID 20241210152401.1823648-18-richard.henderson@linaro.org
State New
Headers show
Series tcg: Remove in-flight mask data from OptContext | expand

Commit Message

Richard Henderson Dec. 10, 2024, 3:23 p.m. UTC
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 tcg/optimize.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

Comments

Pierrick Bouvier Dec. 17, 2024, 8:26 p.m. UTC | #1
On 12/10/24 07:23, Richard Henderson wrote:
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
>   tcg/optimize.c | 8 +++-----
>   1 file changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/tcg/optimize.c b/tcg/optimize.c
> index a0ccf7f3f2..5d10e704a7 100644
> --- a/tcg/optimize.c
> +++ b/tcg/optimize.c
> @@ -1759,7 +1759,7 @@ static bool fold_extract2(OptContext *ctx, TCGOp *op)
>   
>   static bool fold_exts(OptContext *ctx, TCGOp *op)
>   {
> -    uint64_t s_mask_old, s_mask, z_mask, sign;
> +    uint64_t s_mask_old, s_mask, z_mask, a_mask = -1, sign;
>       bool type_change = false;
>   
>       if (fold_const1(ctx, op)) {
> @@ -1795,13 +1795,11 @@ static bool fold_exts(OptContext *ctx, TCGOp *op)
>       }
>       s_mask |= sign << 1;
>   
> -    ctx->z_mask = z_mask;
> -    ctx->s_mask = s_mask;
>       if (!type_change) {
> -        ctx->a_mask = s_mask & ~s_mask_old;
> +        a_mask = s_mask & ~s_mask_old;
>       }
>   
> -    return fold_masks(ctx, op);
> +    return fold_masks_zsa(ctx, op, z_mask, s_mask, a_mask);
>   }
>   
>   static bool fold_extu(OptContext *ctx, TCGOp *op)

Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
diff mbox series

Patch

diff --git a/tcg/optimize.c b/tcg/optimize.c
index a0ccf7f3f2..5d10e704a7 100644
--- a/tcg/optimize.c
+++ b/tcg/optimize.c
@@ -1759,7 +1759,7 @@  static bool fold_extract2(OptContext *ctx, TCGOp *op)
 
 static bool fold_exts(OptContext *ctx, TCGOp *op)
 {
-    uint64_t s_mask_old, s_mask, z_mask, sign;
+    uint64_t s_mask_old, s_mask, z_mask, a_mask = -1, sign;
     bool type_change = false;
 
     if (fold_const1(ctx, op)) {
@@ -1795,13 +1795,11 @@  static bool fold_exts(OptContext *ctx, TCGOp *op)
     }
     s_mask |= sign << 1;
 
-    ctx->z_mask = z_mask;
-    ctx->s_mask = s_mask;
     if (!type_change) {
-        ctx->a_mask = s_mask & ~s_mask_old;
+        a_mask = s_mask & ~s_mask_old;
     }
 
-    return fold_masks(ctx, op);
+    return fold_masks_zsa(ctx, op, z_mask, s_mask, a_mask);
 }
 
 static bool fold_extu(OptContext *ctx, TCGOp *op)