Files
clang-p2996/llvm/test/CodeGen/Thumb/long-setcc.ll
Roger Ferrer Ibanez d41059a9f6 [ARM] Materialise some boolean values to avoid a branch
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
2018-02-16 09:23:59 +00:00

27 lines
458 B
LLVM

; RUN: llc -mtriple=thumb-eabi < %s | FileCheck %s
define i1 @t1(i64 %x) {
; CHECK-LABEL: t1:
; CHECK: lsrs r0, r1, #31
%B = icmp slt i64 %x, 0
ret i1 %B
}
define i1 @t2(i64 %x) {
; CHECK-LABEL: t2:
; CHECK: movs r0, #0
; CHECK: subs r0, r0, r1
; CHECK: adcs r0, r1
%tmp = icmp ult i64 %x, 4294967296
ret i1 %tmp
}
define i1 @t3(i32 %x) {
; CHECK-LABEL: t3:
; CHECK: movs r0, #0
%tmp = icmp ugt i32 %x, -1
ret i1 %tmp
}
; CHECK-NOT: cmp