mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
1cd05bb605
the original instruction, half the cases were missed (making it not wrong but suboptimal). Also correct a typo (A <-> B) in the second chunk. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122414 91177308-0d34-0410-b5e6-96231b3b80d8
43 lines
881 B
LLVM
43 lines
881 B
LLVM
; RUN: opt < %s -instsimplify -S | FileCheck %s
|
|
|
|
define i32 @factorize(i32 %x, i32 %y) {
|
|
; CHECK: @factorize
|
|
; (X | 1) & (X | 2) -> X | (1 & 2) -> X
|
|
%l = or i32 %x, 1
|
|
%r = or i32 %x, 2
|
|
%z = and i32 %l, %r
|
|
ret i32 %z
|
|
; CHECK: ret i32 %x
|
|
}
|
|
|
|
define i32 @factorize2(i32 %x) {
|
|
; CHECK: @factorize2
|
|
; 3*X - 2*X -> X
|
|
%l = mul i32 3, %x
|
|
%r = mul i32 2, %x
|
|
%z = sub i32 %l, %r
|
|
ret i32 %z
|
|
; CHECK: ret i32 %x
|
|
}
|
|
|
|
define i32 @factorize3(i32 %x, i32 %a, i32 %b) {
|
|
; CHECK: @factorize3
|
|
; (X | (A|B)) & (X | B) -> X | ((A|B) & B) -> X | B
|
|
%aORb = or i32 %a, %b
|
|
%l = or i32 %x, %aORb
|
|
%r = or i32 %x, %b
|
|
%z = and i32 %l, %r
|
|
ret i32 %z
|
|
; CHECK: ret i32 %r
|
|
}
|
|
|
|
define i32 @expand(i32 %x) {
|
|
; CHECK: @expand
|
|
; ((X & 1) | 2) & 1 -> ((X & 1) & 1) | (2 & 1) -> (X & 1) | 0 -> X & 1
|
|
%a = and i32 %x, 1
|
|
%b = or i32 %a, 2
|
|
%c = and i32 %b, 1
|
|
ret i32 %c
|
|
; CHECK: ret i32 %a
|
|
}
|