mirror of
https://github.com/mii443/qemu.git
synced 2025-09-02 07:09:47 +00:00
tcg/optimize: Use fold_xi_to_x for mul
Recognize the identity function for low-part multiply. Suggested-by: Luis Pires <luis.pires@eldorado.org.br> Reviewed-by: Luis Pires <luis.pires@eldorado.org.br> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
@ -1461,7 +1461,8 @@ static bool fold_movcond(OptContext *ctx, TCGOp *op)
|
|||||||
static bool fold_mul(OptContext *ctx, TCGOp *op)
|
static bool fold_mul(OptContext *ctx, TCGOp *op)
|
||||||
{
|
{
|
||||||
if (fold_const2(ctx, op) ||
|
if (fold_const2(ctx, op) ||
|
||||||
fold_xi_to_i(ctx, op, 0)) {
|
fold_xi_to_i(ctx, op, 0) ||
|
||||||
|
fold_xi_to_x(ctx, op, 1)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Reference in New Issue
Block a user