mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
47941aa098
This is based on the following equivalences: select(C0 & C1, X, Y) <=> select(C0, select(C1, X, Y), Y) select(C0 | C1, X, Y) <=> select(C0, X, select(C1, X, Y)) Many target cannot perform and/or on the CPU flags and therefore the right side should be choosen to avoid materializign the i1 flags in an integer register. If the target can perform this operation efficiently we normalize to the left form. Differential Revision: http://reviews.llvm.org/D7622 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231507 91177308-0d34-0410-b5e6-96231b3b80d8
51 lines
1.5 KiB
LLVM
51 lines
1.5 KiB
LLVM
; RUN: llc -o - %s | FileCheck %s
|
|
target triple = "arm-unknown-unknown"
|
|
|
|
; select with and i1/or i1 condition should be implemented as a series of 2
|
|
; cmovs, not by producing two conditions and using and on them.
|
|
|
|
define i32 @select_and(i32 %a0, i32 %a1, i32 %a2, i32 %a3, i32 %a4, i32 %a5) {
|
|
; CHECK-LABEL: select_and
|
|
; CHECK-NOT: tst
|
|
; CHECK-NOT: movne
|
|
; CHECK: mov{{lo|hs}}
|
|
; CHECK: mov{{lo|hs}}
|
|
%cmp0 = icmp ult i32 %a0, %a1
|
|
%cmp1 = icmp ult i32 %a2, %a3
|
|
%and = and i1 %cmp0, %cmp1
|
|
%res = select i1 %and, i32 %a4, i32 %a5
|
|
ret i32 %res
|
|
}
|
|
|
|
define i32 @select_or(i32 %a0, i32 %a1, i32 %a2, i32 %a3, i32 %a4, i32 %a5) {
|
|
; select with and i1 condition should be implemented as a series of 2 cmovs, not
|
|
; by producing two conditions and using and on them.
|
|
; CHECK-LABEL: select_or
|
|
; CHECK-NOT: orss
|
|
; CHECK-NOT: tst
|
|
; CHECK: mov{{lo|hs}}
|
|
; CHECK: mov{{lo|hs}}
|
|
%cmp0 = icmp ult i32 %a0, %a1
|
|
%cmp1 = icmp ult i32 %a2, %a3
|
|
%and = or i1 %cmp0, %cmp1
|
|
%res = select i1 %and, i32 %a4, i32 %a5
|
|
ret i32 %res
|
|
}
|
|
|
|
; If one of the conditions is materialized as a 0/1 value anyway, then the
|
|
; sequence of 2 cmovs should not be used.
|
|
|
|
@var32 = global i32 0
|
|
define i32 @select_noopt(i32 %a0, i32 %a1, i32 %a2, i32 %a3, i32 %a4) {
|
|
; CHECK-LABEL: select_noopt
|
|
; CHECK: orrs
|
|
; CHECK: movne
|
|
%cmp0 = icmp ult i32 %a0, %a1
|
|
%cmp1 = icmp ult i32 %a1, %a2
|
|
%or = or i1 %cmp0, %cmp1
|
|
%zero_one = zext i1 %or to i32
|
|
store volatile i32 %zero_one, i32* @var32
|
|
%res = select i1 %or, i32 %a3, i32 %a4
|
|
ret i32 %res
|
|
}
|