[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 30/46] tcg/optimize: Distinguish simplification in fold_setcond_z
From: |
Richard Henderson |
Subject: |
[PATCH 30/46] tcg/optimize: Distinguish simplification in fold_setcond_zmask |
Date: |
Tue, 10 Dec 2024 09:23:45 -0600 |
Change return from bool to int; distinguish between
complete folding, simplification, and no change.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
tcg/optimize.c | 22 ++++++++++++++--------
1 file changed, 14 insertions(+), 8 deletions(-)
diff --git a/tcg/optimize.c b/tcg/optimize.c
index eac5ef5eec..7b1d437c27 100644
--- a/tcg/optimize.c
+++ b/tcg/optimize.c
@@ -2137,7 +2137,8 @@ static bool fold_remainder(OptContext *ctx, TCGOp *op)
return finish_folding(ctx, op);
}
-static bool fold_setcond_zmask(OptContext *ctx, TCGOp *op, bool neg)
+/* Return 1 if finished, -1 if simplified, 0 if unchanged. */
+static int fold_setcond_zmask(OptContext *ctx, TCGOp *op, bool neg)
{
uint64_t a_zmask, b_val;
TCGCond cond;
@@ -2232,11 +2233,10 @@ static bool fold_setcond_zmask(OptContext *ctx, TCGOp
*op, bool neg)
op->opc = xor_opc;
op->args[2] = arg_new_constant(ctx, 1);
}
- return false;
+ return -1;
}
}
-
- return false;
+ return 0;
}
static void fold_setcond_tst_pow2(OptContext *ctx, TCGOp *op, bool neg)
@@ -2341,10 +2341,13 @@ static bool fold_setcond(OptContext *ctx, TCGOp *op)
return tcg_opt_gen_movi(ctx, op, op->args[0], i);
}
- if (fold_setcond_zmask(ctx, op, false)) {
+ i = fold_setcond_zmask(ctx, op, false);
+ if (i > 0) {
return true;
}
- fold_setcond_tst_pow2(ctx, op, false);
+ if (i == 0) {
+ fold_setcond_tst_pow2(ctx, op, false);
+ }
ctx->z_mask = 1;
ctx->s_mask = smask_from_zmask(1);
@@ -2359,10 +2362,13 @@ static bool fold_negsetcond(OptContext *ctx, TCGOp *op)
return tcg_opt_gen_movi(ctx, op, op->args[0], -i);
}
- if (fold_setcond_zmask(ctx, op, true)) {
+ i = fold_setcond_zmask(ctx, op, true);
+ if (i > 0) {
return true;
}
- fold_setcond_tst_pow2(ctx, op, true);
+ if (i == 0) {
+ fold_setcond_tst_pow2(ctx, op, true);
+ }
/* Value is {0,-1} so all bits are repetitions of the sign. */
ctx->s_mask = -1;
--
2.43.0
- [PATCH 21/46] tcg/optimize: Use fold_masks_zs in fold_nand, (continued)
- [PATCH 21/46] tcg/optimize: Use fold_masks_zs in fold_nand, Richard Henderson, 2024/12/10
- [PATCH 24/46] tcg/optimize: Use fold_masks_zs in fold_not, Richard Henderson, 2024/12/10
- [PATCH 25/46] tcg/optimize: Use fold_masks_zs in fold_or, Richard Henderson, 2024/12/10
- [PATCH 28/46] tcg/optimize: Return true from fold_qemu_st, fold_tcg_st, Richard Henderson, 2024/12/10
- [PATCH 29/46] tcg/optimize: Use finish_folding in fold_remainder, Richard Henderson, 2024/12/10
- [PATCH 30/46] tcg/optimize: Distinguish simplification in fold_setcond_zmask,
Richard Henderson <=
- [PATCH 32/46] tcg/optimize: Use fold_masks_zs in fold_negsetcond, Richard Henderson, 2024/12/10
- [PATCH 33/46] tcg/optimize: Use fold_masks_z in fold_setcond2, Richard Henderson, 2024/12/10
- [PATCH 31/46] tcg/optimize: Use fold_masks_z in fold_setcond, Richard Henderson, 2024/12/10
- [PATCH 38/46] tcg/optimize: Use finish_folding in fold_sub, fold_sub_vec, Richard Henderson, 2024/12/10
- [PATCH 35/46] tcg/optimize: Use finish_folding in fold_cmpsel_vec, Richard Henderson, 2024/12/10