[PowerPC] Recommit r314244 with refactoring and off by default
[llvm-core.git] / test / CodeGen / X86 / lea-opt-cse4.ll
blob31f31a73d44e078339814036f72099d07951d40f
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-unknown | FileCheck %s -check-prefix=X64
3 ; RUN: llc < %s -mtriple=i686-unknown   | FileCheck %s -check-prefix=X86
5 %struct.SA = type { i32 , i32 , i32 , i32 , i32};
7 define void @foo(%struct.SA* nocapture %ctx, i32 %n) local_unnamed_addr #0 {
8 ; X64-LABEL: foo:
9 ; X64:       # BB#0: # %entry
10 ; X64-NEXT:    movl 16(%rdi), %eax
11 ; X64-NEXT:    movl (%rdi), %ecx
12 ; X64-NEXT:    addl %eax, %ecx
13 ; X64-NEXT:    addl %eax, %ecx
14 ; X64-NEXT:    addl %eax, %ecx
15 ; X64-NEXT:    leal (%rcx,%rax), %edx
16 ; X64-NEXT:    leal 1(%rax,%rcx), %ecx
17 ; X64-NEXT:    movl %ecx, 12(%rdi)
18 ; X64-NEXT:    leal 1(%rax,%rdx), %eax
19 ; X64-NEXT:    movl %eax, 16(%rdi)
20 ; X64-NEXT:    retq
22 ; X86-LABEL: foo:
23 ; X86:       # BB#0: # %entry
24 ; X86-NEXT:    pushl %esi
25 ; X86-NEXT:    .cfi_def_cfa_offset 8
26 ; X86-NEXT:    .cfi_offset %esi, -8
27 ; X86-NEXT:    movl {{[0-9]+}}(%esp), %eax
28 ; X86-NEXT:    movl 16(%eax), %ecx
29 ; X86-NEXT:    movl (%eax), %edx
30 ; X86-NEXT:    addl %ecx, %edx
31 ; X86-NEXT:    addl %ecx, %edx
32 ; X86-NEXT:    addl %ecx, %edx
33 ; X86-NEXT:    leal 1(%ecx,%edx), %esi
34 ; X86-NEXT:    addl %ecx, %edx
35 ; X86-NEXT:    movl %esi, 12(%eax)
36 ; X86-NEXT:    leal 1(%ecx,%edx), %ecx
37 ; X86-NEXT:    movl %ecx, 16(%eax)
38 ; X86-NEXT:    popl %esi
39 ; X86-NEXT:    retl
40  entry:
41    %h0 = getelementptr inbounds %struct.SA, %struct.SA* %ctx, i64 0, i32 0
42    %0 = load i32, i32* %h0, align 8
43    %h3 = getelementptr inbounds %struct.SA, %struct.SA* %ctx, i64 0, i32 3
44    %h4 = getelementptr inbounds %struct.SA, %struct.SA* %ctx, i64 0, i32 4
45    %1 = load i32, i32* %h4, align 8
46    %add  = add i32 %0  , 1
47    %add1 = add i32 %add, %1
48    %add2 = add i32 %add1, %1
49    %add3 = add i32 %add2, %1
50    %add4 = add i32 %add3, %1
51    store i32 %add4, i32* %h3, align 4
52    %add29 = add i32 %add4, %1
53    store i32 %add29, i32* %h4, align 8
54    ret void
59 define void @foo_loop(%struct.SA* nocapture %ctx, i32 %n) local_unnamed_addr #0 {
60 ; X64-LABEL: foo_loop:
61 ; X64:       # BB#0: # %entry
62 ; X64-NEXT:    .p2align 4, 0x90
63 ; X64-NEXT:  .LBB1_1: # %loop
64 ; X64-NEXT:    # =>This Inner Loop Header: Depth=1
65 ; X64-NEXT:    movl (%rdi), %ecx
66 ; X64-NEXT:    movl 16(%rdi), %eax
67 ; X64-NEXT:    leal 1(%rcx,%rax), %edx
68 ; X64-NEXT:    movl %edx, 12(%rdi)
69 ; X64-NEXT:    decl %esi
70 ; X64-NEXT:    jne .LBB1_1
71 ; X64-NEXT:  # BB#2: # %exit
72 ; X64-NEXT:    addl %eax, %ecx
73 ; X64-NEXT:    leal 1(%rax,%rcx), %ecx
74 ; X64-NEXT:    addl %eax, %ecx
75 ; X64-NEXT:    addl %eax, %ecx
76 ; X64-NEXT:    addl %eax, %ecx
77 ; X64-NEXT:    addl %eax, %ecx
78 ; X64-NEXT:    addl %eax, %ecx
79 ; X64-NEXT:    addl %eax, %ecx
80 ; X64-NEXT:    movl %ecx, 16(%rdi)
81 ; X64-NEXT:    retq
83 ; X86-LABEL: foo_loop:
84 ; X86:       # BB#0: # %entry
85 ; X86-NEXT:    pushl %edi
86 ; X86-NEXT:    .cfi_def_cfa_offset 8
87 ; X86-NEXT:    pushl %esi
88 ; X86-NEXT:    .cfi_def_cfa_offset 12
89 ; X86-NEXT:    .cfi_offset %esi, -12
90 ; X86-NEXT:    .cfi_offset %edi, -8
91 ; X86-NEXT:    movl {{[0-9]+}}(%esp), %edx
92 ; X86-NEXT:    movl {{[0-9]+}}(%esp), %eax
93 ; X86-NEXT:    .p2align 4, 0x90
94 ; X86-NEXT:  .LBB1_1: # %loop
95 ; X86-NEXT:    # =>This Inner Loop Header: Depth=1
96 ; X86-NEXT:    movl (%eax), %esi
97 ; X86-NEXT:    movl 16(%eax), %ecx
98 ; X86-NEXT:    leal 1(%esi,%ecx), %edi
99 ; X86-NEXT:    movl %edi, 12(%eax)
100 ; X86-NEXT:    decl %edx
101 ; X86-NEXT:    jne .LBB1_1
102 ; X86-NEXT:  # BB#2: # %exit
103 ; X86-NEXT:    addl %ecx, %esi
104 ; X86-NEXT:    leal 1(%ecx,%esi), %edx
105 ; X86-NEXT:    addl %ecx, %edx
106 ; X86-NEXT:    addl %ecx, %edx
107 ; X86-NEXT:    addl %ecx, %edx
108 ; X86-NEXT:    addl %ecx, %edx
109 ; X86-NEXT:    addl %ecx, %edx
110 ; X86-NEXT:    addl %ecx, %edx
111 ; X86-NEXT:    movl %edx, 16(%eax)
112 ; X86-NEXT:    popl %esi
113 ; X86-NEXT:    popl %edi
114 ; X86-NEXT:    retl
115  entry:
116    br label %loop
118  loop:
119    %iter = phi i32 [%n ,%entry ] ,[ %iter.ctr ,%loop]
120    %h0 = getelementptr inbounds %struct.SA, %struct.SA* %ctx, i64 0, i32 0
121    %0 = load i32, i32* %h0, align 8
122    %h3 = getelementptr inbounds %struct.SA, %struct.SA* %ctx, i64 0, i32 3
123    %h4 = getelementptr inbounds %struct.SA, %struct.SA* %ctx, i64 0, i32 4
124    %1 = load i32, i32* %h4, align 8
125    %add = add i32 %0, 1
126    %add4 = add i32 %add, %1
127    store i32 %add4, i32* %h3, align 4
128    %add291 = add i32 %add4, %1
129    %add292 = add i32 %add291, %1
130    %add293 = add i32 %add292, %1
131    %add294 = add i32 %add293, %1
132    %add295 = add i32 %add294, %1
133    %add296 = add i32 %add295, %1
134    %add29 = add i32 %add296, %1
135    %iter.ctr = sub i32 %iter , 1
136    %res = icmp ne i32 %iter.ctr , 0
137    br i1 %res , label %loop , label %exit
139  exit:
140    store i32 %add29, i32* %h4, align 8
141    ret void