2010-11-13 06:42:47 +08:00
|
|
|
; RUN: llc < %s -mtriple=arm-apple-darwin -mcpu=cortex-a8 | FileCheck %s -check-prefix=ARM
|
|
|
|
; RUN: llc < %s -mtriple=thumb-apple-darwin -mcpu=cortex-a8 | FileCheck %s -check-prefix=T2
|
|
|
|
; rdar://8662825
|
2007-06-21 15:40:00 +08:00
|
|
|
|
2009-03-12 13:56:37 +08:00
|
|
|
define i32 @t1(i32 %a, i32 %b, i32 %c) nounwind {
|
2010-11-13 06:42:47 +08:00
|
|
|
; ARM: t1:
|
2012-08-17 07:21:55 +08:00
|
|
|
; ARM: suble r1, r1, #-2147483647
|
|
|
|
; ARM: mov r0, r1
|
2010-11-13 06:42:47 +08:00
|
|
|
|
|
|
|
; T2: t1:
|
2010-11-18 04:13:28 +08:00
|
|
|
; T2: mvn r0, #-2147483648
|
2012-08-17 07:21:55 +08:00
|
|
|
; T2: addle.w r1, r1
|
|
|
|
; T2: mov r0, r1
|
2010-11-13 06:42:47 +08:00
|
|
|
%tmp1 = icmp sgt i32 %c, 10
|
|
|
|
%tmp2 = select i1 %tmp1, i32 0, i32 2147483647
|
|
|
|
%tmp3 = add i32 %tmp2, %b
|
|
|
|
ret i32 %tmp3
|
2007-06-21 15:40:00 +08:00
|
|
|
}
|
|
|
|
|
2009-03-12 13:56:37 +08:00
|
|
|
define i32 @t2(i32 %a, i32 %b, i32 %c, i32 %d) nounwind {
|
2010-11-13 06:42:47 +08:00
|
|
|
; ARM: t2:
|
2012-08-17 07:21:55 +08:00
|
|
|
; ARM: suble r1, r1, #10
|
|
|
|
; ARM: mov r0, r1
|
2010-11-13 06:42:47 +08:00
|
|
|
|
|
|
|
; T2: t2:
|
2012-08-17 07:21:55 +08:00
|
|
|
; T2: suble.w r1, r1, #10
|
|
|
|
; T2: mov r0, r1
|
2010-11-13 06:42:47 +08:00
|
|
|
%tmp1 = icmp sgt i32 %c, 10
|
|
|
|
%tmp2 = select i1 %tmp1, i32 0, i32 10
|
|
|
|
%tmp3 = sub i32 %b, %tmp2
|
|
|
|
ret i32 %tmp3
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @t3(i32 %a, i32 %b, i32 %x, i32 %y) nounwind {
|
|
|
|
; ARM: t3:
|
Also pass logical ops to combineSelectAndUse.
Add these transformations to the existing add/sub ones:
(and (select cc, -1, c), x) -> (select cc, x, (and, x, c))
(or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
(xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
The selects can then be transformed to a single predicated instruction
by peephole.
This transformation will make it possible to eliminate the ISD::CAND,
COR, and CXOR custom DAG nodes.
llvm-svn: 162176
2012-08-19 05:25:16 +08:00
|
|
|
; ARM: andge r3, r3, r2
|
|
|
|
; ARM: mov r0, r3
|
2010-11-13 06:42:47 +08:00
|
|
|
|
|
|
|
; T2: t3:
|
Also pass logical ops to combineSelectAndUse.
Add these transformations to the existing add/sub ones:
(and (select cc, -1, c), x) -> (select cc, x, (and, x, c))
(or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
(xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
The selects can then be transformed to a single predicated instruction
by peephole.
This transformation will make it possible to eliminate the ISD::CAND,
COR, and CXOR custom DAG nodes.
llvm-svn: 162176
2012-08-19 05:25:16 +08:00
|
|
|
; T2: andge.w r3, r3, r2
|
|
|
|
; T2: mov r0, r3
|
2010-11-13 06:42:47 +08:00
|
|
|
%cond = icmp slt i32 %a, %b
|
|
|
|
%z = select i1 %cond, i32 -1, i32 %x
|
|
|
|
%s = and i32 %z, %y
|
|
|
|
ret i32 %s
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @t4(i32 %a, i32 %b, i32 %x, i32 %y) nounwind {
|
|
|
|
; ARM: t4:
|
Also pass logical ops to combineSelectAndUse.
Add these transformations to the existing add/sub ones:
(and (select cc, -1, c), x) -> (select cc, x, (and, x, c))
(or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
(xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
The selects can then be transformed to a single predicated instruction
by peephole.
This transformation will make it possible to eliminate the ISD::CAND,
COR, and CXOR custom DAG nodes.
llvm-svn: 162176
2012-08-19 05:25:16 +08:00
|
|
|
; ARM: orrge r3, r3, r2
|
|
|
|
; ARM: mov r0, r3
|
2010-11-13 06:42:47 +08:00
|
|
|
|
|
|
|
; T2: t4:
|
Also pass logical ops to combineSelectAndUse.
Add these transformations to the existing add/sub ones:
(and (select cc, -1, c), x) -> (select cc, x, (and, x, c))
(or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
(xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
The selects can then be transformed to a single predicated instruction
by peephole.
This transformation will make it possible to eliminate the ISD::CAND,
COR, and CXOR custom DAG nodes.
llvm-svn: 162176
2012-08-19 05:25:16 +08:00
|
|
|
; T2: orrge.w r3, r3, r2
|
|
|
|
; T2: mov r0, r3
|
2010-11-13 06:42:47 +08:00
|
|
|
%cond = icmp slt i32 %a, %b
|
|
|
|
%z = select i1 %cond, i32 0, i32 %x
|
|
|
|
%s = or i32 %z, %y
|
|
|
|
ret i32 %s
|
2007-06-21 15:40:00 +08:00
|
|
|
}
|
Optimize a couple of common patterns involving conditional moves where the false
value is zero. Instead of a cmov + op, issue an conditional op instead. e.g.
cmp r9, r4
mov r4, #0
moveq r4, #1
orr lr, lr, r4
should be:
cmp r9, r4
orreq lr, lr, #1
That is, optimize (or x, (cmov 0, y, cond)) to (or.cond x, y). Similarly extend
this to xor as well as (and x, (cmov -1, y, cond)) => (and.cond x, y).
It's possible to extend this to ADD and SUB but I don't think they are common.
rdar://8659097
llvm-svn: 151224
2012-02-23 09:19:06 +08:00
|
|
|
|
|
|
|
define i32 @t5(i32 %a, i32 %b, i32 %c) nounwind {
|
|
|
|
entry:
|
|
|
|
; ARM: t5:
|
|
|
|
; ARM-NOT: moveq
|
|
|
|
; ARM: orreq r2, r2, #1
|
|
|
|
|
|
|
|
; T2: t5:
|
|
|
|
; T2-NOT: moveq
|
2012-03-21 05:49:54 +08:00
|
|
|
; T2: orreq r2, r2, #1
|
Optimize a couple of common patterns involving conditional moves where the false
value is zero. Instead of a cmov + op, issue an conditional op instead. e.g.
cmp r9, r4
mov r4, #0
moveq r4, #1
orr lr, lr, r4
should be:
cmp r9, r4
orreq lr, lr, #1
That is, optimize (or x, (cmov 0, y, cond)) to (or.cond x, y). Similarly extend
this to xor as well as (and x, (cmov -1, y, cond)) => (and.cond x, y).
It's possible to extend this to ADD and SUB but I don't think they are common.
rdar://8659097
llvm-svn: 151224
2012-02-23 09:19:06 +08:00
|
|
|
%tmp1 = icmp eq i32 %a, %b
|
|
|
|
%tmp2 = zext i1 %tmp1 to i32
|
|
|
|
%tmp3 = or i32 %tmp2, %c
|
|
|
|
ret i32 %tmp3
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @t6(i32 %a, i32 %b, i32 %c, i32 %d) nounwind {
|
|
|
|
; ARM: t6:
|
|
|
|
; ARM-NOT: movge
|
|
|
|
; ARM: eorlt r3, r3, r2
|
|
|
|
|
|
|
|
; T2: t6:
|
|
|
|
; T2-NOT: movge
|
|
|
|
; T2: eorlt.w r3, r3, r2
|
|
|
|
%cond = icmp slt i32 %a, %b
|
|
|
|
%tmp1 = select i1 %cond, i32 %c, i32 0
|
|
|
|
%tmp2 = xor i32 %tmp1, %d
|
|
|
|
ret i32 %tmp2
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @t7(i32 %a, i32 %b, i32 %c) nounwind {
|
|
|
|
entry:
|
|
|
|
; ARM: t7:
|
|
|
|
; ARM-NOT: lsleq
|
|
|
|
; ARM: andeq r2, r2, r2, lsl #1
|
|
|
|
|
|
|
|
; T2: t7:
|
|
|
|
; T2-NOT: lsleq.w
|
|
|
|
; T2: andeq.w r2, r2, r2, lsl #1
|
|
|
|
%tmp1 = shl i32 %c, 1
|
|
|
|
%cond = icmp eq i32 %a, %b
|
|
|
|
%tmp2 = select i1 %cond, i32 %tmp1, i32 -1
|
|
|
|
%tmp3 = and i32 %c, %tmp2
|
|
|
|
ret i32 %tmp3
|
|
|
|
}
|
|
|
|
|
2012-08-16 06:16:39 +08:00
|
|
|
; Fold ORRri into movcc.
|
|
|
|
define i32 @t8(i32 %a, i32 %b) nounwind {
|
|
|
|
; ARM: t8:
|
|
|
|
; ARM: cmp r0, r1
|
|
|
|
; ARM: orrge r0, r1, #1
|
|
|
|
|
|
|
|
; T2: t8:
|
|
|
|
; T2: cmp r0, r1
|
|
|
|
; T2: orrge r0, r1, #1
|
|
|
|
%x = or i32 %b, 1
|
|
|
|
%cond = icmp slt i32 %a, %b
|
|
|
|
%tmp1 = select i1 %cond, i32 %a, i32 %x
|
|
|
|
ret i32 %tmp1
|
|
|
|
}
|
|
|
|
|
|
|
|
; Fold ANDrr into movcc.
|
|
|
|
define i32 @t9(i32 %a, i32 %b, i32 %c) nounwind {
|
|
|
|
; ARM: t9:
|
|
|
|
; ARM: cmp r0, r1
|
|
|
|
; ARM: andge r0, r1, r2
|
|
|
|
|
|
|
|
; T2: t9:
|
|
|
|
; T2: cmp r0, r1
|
|
|
|
; T2: andge.w r0, r1, r2
|
|
|
|
%x = and i32 %b, %c
|
|
|
|
%cond = icmp slt i32 %a, %b
|
|
|
|
%tmp1 = select i1 %cond, i32 %a, i32 %x
|
|
|
|
ret i32 %tmp1
|
|
|
|
}
|
|
|
|
|
|
|
|
; Fold EORrs into movcc.
|
|
|
|
define i32 @t10(i32 %a, i32 %b, i32 %c, i32 %d) nounwind {
|
|
|
|
; ARM: t10:
|
|
|
|
; ARM: cmp r0, r1
|
|
|
|
; ARM: eorge r0, r1, r2, lsl #7
|
|
|
|
|
|
|
|
; T2: t10:
|
|
|
|
; T2: cmp r0, r1
|
|
|
|
; T2: eorge.w r0, r1, r2, lsl #7
|
|
|
|
%s = shl i32 %c, 7
|
|
|
|
%x = xor i32 %b, %s
|
|
|
|
%cond = icmp slt i32 %a, %b
|
|
|
|
%tmp1 = select i1 %cond, i32 %a, i32 %x
|
|
|
|
ret i32 %tmp1
|
|
|
|
}
|
|
|
|
|
|
|
|
; Fold ORRri into movcc, reversing the condition.
|
|
|
|
define i32 @t11(i32 %a, i32 %b) nounwind {
|
|
|
|
; ARM: t11:
|
|
|
|
; ARM: cmp r0, r1
|
|
|
|
; ARM: orrlt r0, r1, #1
|
|
|
|
|
|
|
|
; T2: t11:
|
|
|
|
; T2: cmp r0, r1
|
|
|
|
; T2: orrlt r0, r1, #1
|
|
|
|
%x = or i32 %b, 1
|
|
|
|
%cond = icmp slt i32 %a, %b
|
|
|
|
%tmp1 = select i1 %cond, i32 %x, i32 %a
|
|
|
|
ret i32 %tmp1
|
|
|
|
}
|
2012-08-17 07:21:55 +08:00
|
|
|
|
|
|
|
; Fold ADDri12 into movcc
|
|
|
|
define i32 @t12(i32 %a, i32 %b) nounwind {
|
|
|
|
; ARM: t12:
|
|
|
|
; ARM: cmp r0, r1
|
|
|
|
; ARM: addge r0, r1,
|
|
|
|
|
|
|
|
; T2: t12:
|
|
|
|
; T2: cmp r0, r1
|
|
|
|
; T2: addwge r0, r1, #3000
|
|
|
|
%x = add i32 %b, 3000
|
|
|
|
%cond = icmp slt i32 %a, %b
|
|
|
|
%tmp1 = select i1 %cond, i32 %a, i32 %x
|
|
|
|
ret i32 %tmp1
|
|
|
|
}
|
2012-08-18 04:55:34 +08:00
|
|
|
|
|
|
|
; Handle frame index operands.
|
|
|
|
define void @pr13628() nounwind uwtable align 2 {
|
|
|
|
%x3 = alloca i8, i32 256, align 8
|
|
|
|
%x4 = load i8* undef, align 1
|
|
|
|
%x5 = icmp ne i8 %x4, 0
|
|
|
|
%x6 = select i1 %x5, i8* %x3, i8* null
|
|
|
|
call void @bar(i8* %x6) nounwind
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
declare void @bar(i8*)
|