Cranelift: Rewrite or(and(x, y), not(y)) => or(x, not(y)) (#5676)
Co-authored-by: Rainy Sinclair <844493+itsrainy@users.noreply.github.com>
This commit is contained in:
@@ -109,6 +109,11 @@ macro_rules! isle_common_prelude_methods {
|
|||||||
!x
|
!x
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
fn u64_eq(&mut self, x: u64, y: u64) -> u64 {
|
||||||
|
u64::from(x == y)
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn u64_is_zero(&mut self, value: u64) -> bool {
|
fn u64_is_zero(&mut self, value: u64) -> bool {
|
||||||
0 == value
|
0 == value
|
||||||
|
|||||||
@@ -138,6 +138,33 @@
|
|||||||
(rule (simplify (bnot ty (band t x y)))
|
(rule (simplify (bnot ty (band t x y)))
|
||||||
(bor ty (bnot ty x) (bnot ty y)))
|
(bor ty (bnot ty x) (bnot ty y)))
|
||||||
|
|
||||||
|
;; `or(and(x, y), not(y)) == or(x, not(y))`
|
||||||
|
(rule (simplify (bor ty
|
||||||
|
(band ty x y)
|
||||||
|
z @ (bnot ty y)))
|
||||||
|
(bor ty x z))
|
||||||
|
;; Duplicate the rule but swap the `bor` operands because `bor` is
|
||||||
|
;; commutative. We could, of course, add a `simplify` rule to do the commutative
|
||||||
|
;; swap for all `bor`s but this will bloat the e-graph with many e-nodes. It is
|
||||||
|
;; cheaper to have additional rules, rather than additional e-nodes, because we
|
||||||
|
;; amortize their cost via ISLE's smart codegen.
|
||||||
|
(rule (simplify (bor ty
|
||||||
|
z @ (bnot ty y)
|
||||||
|
(band ty x y)))
|
||||||
|
(bor ty x z))
|
||||||
|
|
||||||
|
;; `or(and(x, y), not(y)) == or(x, not(y))` specialized for constants, since
|
||||||
|
;; otherwise we may not know that `z == not(y)` since we don't generally expand
|
||||||
|
;; constants in the e-graph.
|
||||||
|
;;
|
||||||
|
;; (No need to duplicate for commutative `bor` for this constant version because
|
||||||
|
;; we move constants to the right.)
|
||||||
|
(rule (simplify (bor ty
|
||||||
|
(band ty x (iconst ty (u64_from_imm64 y)))
|
||||||
|
z @ (iconst ty (u64_from_imm64 zk))))
|
||||||
|
(if (u64_eq zk (u64_not y)))
|
||||||
|
(bor ty x z))
|
||||||
|
|
||||||
;; x*2 == 2*x == x+x.
|
;; x*2 == 2*x == x+x.
|
||||||
(rule (simplify (imul ty x (iconst _ (simm32 2))))
|
(rule (simplify (imul ty x (iconst _ (simm32 2))))
|
||||||
(iadd ty x x))
|
(iadd ty x x))
|
||||||
|
|||||||
@@ -141,6 +141,9 @@
|
|||||||
(decl pure u64_not (u64) u64)
|
(decl pure u64_not (u64) u64)
|
||||||
(extern constructor u64_not u64_not)
|
(extern constructor u64_not u64_not)
|
||||||
|
|
||||||
|
(decl pure u64_eq (u64 u64) u64)
|
||||||
|
(extern constructor u64_eq u64_eq)
|
||||||
|
|
||||||
(decl pure u64_sextend_u32 (u64) u64)
|
(decl pure u64_sextend_u32 (u64) u64)
|
||||||
(extern constructor u64_sextend_u32 u64_sextend_u32)
|
(extern constructor u64_sextend_u32 u64_sextend_u32)
|
||||||
|
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ block0(v0: i32):
|
|||||||
return v3
|
return v3
|
||||||
; check: v4 = iconst.i32 0xffff_ffe0
|
; check: v4 = iconst.i32 0xffff_ffe0
|
||||||
; check: v5 = band v0, v4
|
; check: v5 = band v0, v4
|
||||||
; return v5
|
; check: return v5
|
||||||
}
|
}
|
||||||
|
|
||||||
function %unsigned_shift_right_shift_left_i64(i64) -> i64 {
|
function %unsigned_shift_right_shift_left_i64(i64) -> i64 {
|
||||||
@@ -86,3 +86,45 @@ block0(v0: i64):
|
|||||||
; check: v5 = band v0, v4
|
; check: v5 = band v0, v4
|
||||||
; return v5
|
; return v5
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function %or_and_y_with_not_y(i8, i8) -> i8 {
|
||||||
|
block0(v0: i8, v1: i8):
|
||||||
|
v2 = band v0, v1
|
||||||
|
v3 = bnot v1
|
||||||
|
v4 = bor v2, v3
|
||||||
|
return v4
|
||||||
|
; check: v5 = bor v0, v3
|
||||||
|
; check: return v5
|
||||||
|
}
|
||||||
|
|
||||||
|
function %or_and_constant_with_not_constant(i8) -> i8 {
|
||||||
|
block0(v0: i8):
|
||||||
|
v1 = iconst.i8 -4
|
||||||
|
v2 = band v0, v1
|
||||||
|
v3 = iconst.i8 3
|
||||||
|
v4 = bor v2, v3
|
||||||
|
return v4
|
||||||
|
; check: v5 = bor v0, v3
|
||||||
|
; check: return v5
|
||||||
|
}
|
||||||
|
|
||||||
|
function %or_and_y_with_not_y(i8, i8) -> i8 {
|
||||||
|
block0(v0: i8, v1: i8):
|
||||||
|
v2 = band v0, v1
|
||||||
|
v3 = bnot v1
|
||||||
|
v4 = bor v3, v2
|
||||||
|
return v4
|
||||||
|
; check: v5 = bor v0, v3
|
||||||
|
; check: return v5
|
||||||
|
}
|
||||||
|
|
||||||
|
function %or_and_constant_with_not_constant(i8) -> i8 {
|
||||||
|
block0(v0: i8):
|
||||||
|
v1 = iconst.i8 -4
|
||||||
|
v2 = band v0, v1
|
||||||
|
v3 = iconst.i8 3
|
||||||
|
v4 = bor v3, v2
|
||||||
|
return v4
|
||||||
|
; check: v6 = bor v0, v3
|
||||||
|
; check: return v6
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,34 @@
|
|||||||
|
;; Test the rewrite: `or(and(x, y), not(y)) => or(x, not(y))`
|
||||||
|
|
||||||
|
test interpret
|
||||||
|
test run
|
||||||
|
target aarch64
|
||||||
|
target x86_64
|
||||||
|
target riscv64
|
||||||
|
target s390x
|
||||||
|
|
||||||
|
function %or_and_y_with_not_y(i8, i8) -> i8 {
|
||||||
|
block0(v0: i8, v1: i8):
|
||||||
|
v2 = band v0, v1
|
||||||
|
v3 = bnot v1
|
||||||
|
v4 = bor v2, v3
|
||||||
|
return v4
|
||||||
|
}
|
||||||
|
; run: %or_and_y_with_not_y(0xff, 0x0a) == 0xff
|
||||||
|
; run: %or_and_y_with_not_y(0xff, 0xb0) == 0xff
|
||||||
|
; run: %or_and_y_with_not_y(0xaa, 0x0a) == 0xff
|
||||||
|
; run: %or_and_y_with_not_y(0xaa, 0xb0) == 0xef
|
||||||
|
; run: %or_and_y_with_not_y(0x00, 0x0a) == 0xf5
|
||||||
|
; run: %or_and_y_with_not_y(0x00, 0xb0) == 0x4f
|
||||||
|
|
||||||
|
function %or_and_constant_with_not_constant(i8) -> i8 {
|
||||||
|
block0(v0: i8):
|
||||||
|
v1 = iconst.i8 -4
|
||||||
|
v2 = band v0, v1
|
||||||
|
v3 = iconst.i8 3
|
||||||
|
v4 = bor v2, v3
|
||||||
|
return v4
|
||||||
|
}
|
||||||
|
; run: %or_and_constant_with_not_constant(0xff) == 0xff
|
||||||
|
; run: %or_and_constant_with_not_constant(0xaa) == 0xab
|
||||||
|
; run: %or_and_constant_with_not_constant(0x00) == 0x03
|
||||||
Reference in New Issue
Block a user