Chris's constant data sequence refactoring actually enabled printing
[oota-llvm.git] / test / CodeGen / X86 / 2011-11-09-FoldImpDefs.ll
1 ; RUN: llc < %s -verify-regalloc | FileCheck %s
2 ; PR11347
3 ;
4 ; This test case materializes the constant 1 in a register:
5 ;
6 ; %vreg19<def> = MOV32ri 1
7 ;
8 ; Then rematerializes the instruction for a sub-register copy:
9 ; 1168L   %vreg14:sub_8bit<def,undef> = COPY %vreg19:sub_8bit<kill>, %vreg14<imp-def>; GR32:%vreg14,%vreg19
10 ;        Considering merging %vreg19 with %vreg14
11 ;                RHS = %vreg19 = [560d,656L:0)[720L,976d:0)[1088L,1168d:0)  0@560d
12 ;                LHS = %vreg14 = [16d,160L:0)[160L,256L:2)[256L,1088L:1)[1168d,1184L:3)[1184L,1344L:2)  0@16d-phikill 1@256L-phidef-phikill 2@1184L-phidef-phikill 3@1168d-phikill
13 ; Remat: %vreg14<def> = MOV32ri 1, %vreg14<imp-def>, %vreg14<imp-def>; GR32:%vreg14
14 ;
15 ; This rematerialized constant is feeding a PHI that is spilled, so the constant
16 ; is written directly to a stack slot that gets the %esi function argument in
17 ; another basic block:
18 ;
19 ; CHECK: %entry
20 ; CHECK: movl %esi, [[FI:[0-9]+\(%rsp\)]]
21 ; CHECK: %if.else24
22 ; CHECK: movl $1, [[FI]]
23 ; CHECK: %lor.end9
24 ; CHECK: movl [[FI]],
25 ;
26 ; Those <imp-def> operands on the MOV32ri instruction confused the spiller
27 ; because they were preserved by TII.foldMemoryOperand.  It is quite rare to
28 ; see a rematerialized instruction spill, it can only happen when it is feeding
29 ; a PHI.
30
31 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
32 target triple = "x86_64-apple-macosx10.7"
33
34 @g_193 = external global i32, align 4
35 @g_103 = external global i32, align 4
36
37 declare i32 @func_21(i16 signext, i32) nounwind uwtable readnone ssp
38
39 define i32 @func_25(i32 %p_27, i8 signext %p_28, i32 %p_30) noreturn nounwind uwtable ssp {
40 entry:
41   br label %for.cond
42
43 for.cond28.for.cond.loopexit_crit_edge:           ; preds = %for.cond28thread-pre-split
44   store i32 0, i32* @g_103, align 4
45   br label %for.cond
46
47 for.cond:                                         ; preds = %for.cond28thread-pre-split, %for.cond28.for.cond.loopexit_crit_edge, %entry
48   %l_365.0 = phi i32 [ undef, %entry ], [ %and, %for.cond28.for.cond.loopexit_crit_edge ], [ %and, %for.cond28thread-pre-split ]
49   %l_288.0 = phi i32 [ undef, %entry ], [ %l_288.1.ph, %for.cond28.for.cond.loopexit_crit_edge ], [ %l_288.1.ph, %for.cond28thread-pre-split ]
50   %l_349.0 = phi i32 [ undef, %entry ], [ %xor, %for.cond28.for.cond.loopexit_crit_edge ], [ %xor, %for.cond28thread-pre-split ]
51   %p_28.addr.0 = phi i8 [ %p_28, %entry ], [ %p_28.addr.1.ph, %for.cond28.for.cond.loopexit_crit_edge ], [ %p_28.addr.1.ph, %for.cond28thread-pre-split ]
52   br i1 undef, label %for.cond31, label %lor.end
53
54 lor.end:                                          ; preds = %for.cond
55   %tobool3 = icmp eq i32 %l_349.0, 0
56   br i1 %tobool3, label %for.cond31, label %if.then
57
58 if.then:                                          ; preds = %lor.end
59   br i1 undef, label %lor.rhs6, label %lor.end9
60
61 lor.rhs6:                                         ; preds = %if.then
62   br label %lor.end9
63
64 lor.end9:                                         ; preds = %lor.rhs6, %if.then
65   %and = and i32 %l_365.0, 1
66   %conv11 = sext i8 %p_28.addr.0 to i32
67   %xor = xor i32 %and, %conv11
68   br i1 false, label %if.else, label %if.end
69
70 if.else:                                          ; preds = %lor.end9
71   br label %if.end
72
73 if.end:                                           ; preds = %if.else, %lor.end9
74   %l_395.0 = phi i32 [ 0, %if.else ], [ 1, %lor.end9 ]
75   %cmp14 = icmp ne i32 %and, %conv11
76   %conv15 = zext i1 %cmp14 to i32
77   br i1 %cmp14, label %if.then16, label %for.cond28thread-pre-split
78
79 if.then16:                                        ; preds = %if.end
80   %or17 = or i32 %l_288.0, 1
81   %call18 = tail call i32 @func_39(i32 0, i32 %or17, i32 0, i32 0) nounwind
82   br i1 undef, label %if.else24, label %if.then20
83
84 if.then20:                                        ; preds = %if.then16
85   %conv21 = trunc i32 %l_395.0 to i16
86   %call22 = tail call i32 @func_21(i16 signext %conv21, i32 undef)
87   br label %for.cond28thread-pre-split
88
89 if.else24:                                        ; preds = %if.then16
90   store i32 %conv15, i32* @g_193, align 4
91   %conv25 = trunc i32 %l_395.0 to i8
92   br label %for.cond28thread-pre-split
93
94 for.cond28thread-pre-split:                       ; preds = %if.else24, %if.then20, %if.end
95   %l_288.1.ph = phi i32 [ %l_288.0, %if.end ], [ %or17, %if.else24 ], [ %or17, %if.then20 ]
96   %p_28.addr.1.ph = phi i8 [ %p_28.addr.0, %if.end ], [ %conv25, %if.else24 ], [ %p_28.addr.0, %if.then20 ]
97   %.pr = load i32* @g_103, align 4
98   %tobool2933 = icmp eq i32 %.pr, 0
99   br i1 %tobool2933, label %for.cond, label %for.cond28.for.cond.loopexit_crit_edge
100
101 for.cond31:                                       ; preds = %for.cond31, %lor.end, %for.cond
102   br label %for.cond31
103 }
104
105 declare i32 @func_39(i32, i32, i32, i32)