mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 02:24:58 -06:00
tcg/optimize: Use fold_masks_zs in fold_orc
Avoid the use of the OptContext slots. Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
83b1ba3696
commit
54e26b292b
1 changed files with 5 additions and 3 deletions
|
@ -2096,6 +2096,8 @@ static bool fold_or(OptContext *ctx, TCGOp *op)
|
||||||
|
|
||||||
static bool fold_orc(OptContext *ctx, TCGOp *op)
|
static bool fold_orc(OptContext *ctx, TCGOp *op)
|
||||||
{
|
{
|
||||||
|
uint64_t s_mask;
|
||||||
|
|
||||||
if (fold_const2(ctx, op) ||
|
if (fold_const2(ctx, op) ||
|
||||||
fold_xx_to_i(ctx, op, -1) ||
|
fold_xx_to_i(ctx, op, -1) ||
|
||||||
fold_xi_to_x(ctx, op, -1) ||
|
fold_xi_to_x(ctx, op, -1) ||
|
||||||
|
@ -2103,9 +2105,9 @@ static bool fold_orc(OptContext *ctx, TCGOp *op)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx->s_mask = arg_info(op->args[1])->s_mask
|
s_mask = arg_info(op->args[1])->s_mask
|
||||||
& arg_info(op->args[2])->s_mask;
|
& arg_info(op->args[2])->s_mask;
|
||||||
return false;
|
return fold_masks_s(ctx, op, s_mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool fold_qemu_ld(OptContext *ctx, TCGOp *op)
|
static bool fold_qemu_ld(OptContext *ctx, TCGOp *op)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue