blob: 4042a095c6c367c0880fdeb4e33e74f6d3b7f4a9 [file] [log] [blame]
Dan Gohman13b1ad62009-09-25 23:58:45 +00001; 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:
Dan Gohman83cefbc2009-09-28 20:48:39 +00009; CHECK: divsd
Evan Cheng6e2f5a42009-10-18 19:57:27 +000010; CHECK-NEXT: testb $1, %dil
11; CHECK-NEXT: jne
12; CHECK-NEXT: divsd
Dan Gohman13b1ad62009-09-25 23:58:45 +000013
14define 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
26define void @bar(double* nocapture %p, i64 %n) nounwind {
27entry:
28 %0 = icmp sgt i64 %n, 0
29 br i1 %0, label %bb, label %return
30
31bb:
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
41return:
42 ret void
43}