mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
90e010bd3c
This patch combines some cases of ARMISD::CMOV for integers that arise in comparisons of the form a != b ? x : 0 a == b ? 0 : x and that currently (e.g. in Thumb1) are emitted as branches. Differential Revision: https://reviews.llvm.org/D34515 llvm-svn: 325323
27 lines
426 B
LLVM
27 lines
426 B
LLVM
; RUN: llc -mtriple=arm-eabi < %s | FileCheck %s
|
|
|
|
define i1 @t1(i64 %x) {
|
|
; CHECK-LABEL: t1:
|
|
; CHECK: lsr r0, r1, #31
|
|
%B = icmp slt i64 %x, 0
|
|
ret i1 %B
|
|
}
|
|
|
|
define i1 @t2(i64 %x) {
|
|
; CHECK-LABEL: t2:
|
|
; CHECK: rsbs r0, r1, #0
|
|
; CHECK: adc r0, r1, r0
|
|
%tmp = icmp ult i64 %x, 4294967296
|
|
ret i1 %tmp
|
|
}
|
|
|
|
define i1 @t3(i32 %x) {
|
|
; CHECK-LABEL: t3:
|
|
; CHECK: mov r0, #0
|
|
%tmp = icmp ugt i32 %x, -1
|
|
ret i1 %tmp
|
|
}
|
|
|
|
; CHECK-NOT: cmp
|
|
|