2011-07-07 05:55:05 +02:00
|
|
|
; RUN: llc < %s -march=arm -mattr=+v4t | FileCheck %s
|
2007-04-11 07:02:57 +02:00
|
|
|
|
|
|
|
;; Integer absolute value, should produce something as good as: ARM:
|
2011-10-11 00:59:55 +02:00
|
|
|
;; movs r0, r0
|
|
|
|
;; rsbmi r0, r0, #0
|
2007-04-11 07:02:57 +02:00
|
|
|
;; bx lr
|
|
|
|
|
|
|
|
define i32 @test(i32 %a) {
|
|
|
|
%tmp1neg = sub i32 0, %a
|
|
|
|
%b = icmp sgt i32 %a, -1
|
|
|
|
%abs = select i1 %b, i32 %a, i32 %tmp1neg
|
|
|
|
ret i32 %abs
|
2012-06-15 23:32:12 +02:00
|
|
|
; CHECK: cmp
|
2011-10-11 00:59:55 +02:00
|
|
|
; CHECK: rsbmi r0, r0, #0
|
2010-02-09 00:47:34 +01:00
|
|
|
; CHECK: bx lr
|
2007-04-11 07:02:57 +02:00
|
|
|
}
|
2012-06-15 23:32:12 +02:00
|
|
|
|
|
|
|
; rdar://11633193
|
|
|
|
;; 3 instructions will be generated for abs(a-b):
|
|
|
|
;; subs
|
|
|
|
;; rsbmi
|
|
|
|
;; bx
|
|
|
|
define i32 @test2(i32 %a, i32 %b) nounwind readnone ssp {
|
|
|
|
entry:
|
|
|
|
; CHECK: test2
|
|
|
|
; CHECK: subs
|
|
|
|
; CHECK-NEXT: rsbmi
|
|
|
|
; CHECK-NEXT: bx
|
|
|
|
%sub = sub nsw i32 %a, %b
|
|
|
|
%cmp = icmp sgt i32 %sub, -1
|
|
|
|
%sub1 = sub nsw i32 0, %sub
|
|
|
|
%cond = select i1 %cmp, i32 %sub, i32 %sub1
|
|
|
|
ret i32 %cond
|
|
|
|
}
|