Turn on post-alloc scheduling for x86.
[oota-llvm.git] / test / CodeGen / X86 / sink-hoist.ll
1 ; RUN: llc < %s -march=x86-64 -asm-verbose=false | FileCheck %s
2
3 ; Currently, floating-point selects are lowered to CFG triangles.
4 ; This means that one side of the select is always unconditionally
5 ; evaluated, however with MachineSink we can sink the other side so
6 ; that it's conditionally evaluated.
7
8 ; CHECK: foo:
9 ; CHECK:      divsd
10 ; CHECK-NEXT: testb $1, %dil
11 ; CHECK-NEXT: jne
12 ; CHECK-NEXT: divsd
13
14 define double @foo(double %x, double %y, i1 %c) nounwind {
15   %a = fdiv double %x, 3.2
16   %b = fdiv double %y, 3.3
17   %z = select i1 %c, double %a, double %b
18   ret double %z
19 }
20
21 ; Hoist floating-point constant-pool loads out of loops.
22
23 ; CHECK: bar:
24 ; CHECK: movsd
25 ; CHECK: align
26 define void @bar(double* nocapture %p, i64 %n) nounwind {
27 entry:
28   %0 = icmp sgt i64 %n, 0
29   br i1 %0, label %bb, label %return
30
31 bb:
32   %i.03 = phi i64 [ 0, %entry ], [ %3, %bb ]
33   %scevgep = getelementptr double* %p, i64 %i.03
34   %1 = load double* %scevgep, align 8
35   %2 = fdiv double 3.200000e+00, %1
36   store double %2, double* %scevgep, align 8
37   %3 = add nsw i64 %i.03, 1
38   %exitcond = icmp eq i64 %3, %n
39   br i1 %exitcond, label %return, label %bb
40
41 return:
42   ret void
43 }