blob: 64edc18d45072dafd5c565df7b0d0b72f70d2189 [file] [log] [blame]
Frits van Bommel28218aa2010-11-29 21:56:20 +00001; RUN: opt < %s -instcombine -S | FileCheck %s
Matthijs Kooijmanb2fc72b2008-06-11 14:05:05 +00002
Frits van Bommel28218aa2010-11-29 21:56:20 +00003declare void @bar({i32, i32} %a)
4declare i32 @baz(i32 %a)
5
6; CHECK: define i32 @foo
7; CHECK-NOT: extractvalue
8define i32 @foo(i32 %a, i32 %b) {
Matthijs Kooijmanb2fc72b2008-06-11 14:05:05 +00009; Instcombine should fold various combinations of insertvalue and extractvalue
10; together
Matthijs Kooijmanb2fc72b2008-06-11 14:05:05 +000011 ; Build a simple struct and pull values out again
Frits van Bommel40a80ac2010-11-29 20:55:40 +000012 %s1.1 = insertvalue {i32, i32} undef, i32 %a, 0
13 %s1 = insertvalue {i32, i32} %s1.1, i32 %b, 1
Matthijs Kooijmanb2fc72b2008-06-11 14:05:05 +000014 %v1 = extractvalue {i32, i32} %s1, 0
15 %v2 = extractvalue {i32, i32} %s1, 1
16
17 ; Build a nested struct and pull a sub struct out of it
18 ; This requires instcombine to insert a few insertvalue instructions
19 %ns1.1 = insertvalue {i32, {i32, i32}} undef, i32 %v1, 0
20 %ns1.2 = insertvalue {i32, {i32, i32}} %ns1.1, i32 %v1, 1, 0
21 %ns1 = insertvalue {i32, {i32, i32}} %ns1.2, i32 %v2, 1, 1
22 %s2 = extractvalue {i32, {i32, i32}} %ns1, 1
Matthijs Kooijmanf22f34f2008-07-16 12:57:25 +000023 %v3 = extractvalue {i32, {i32, i32}} %ns1, 1, 1
Matthijs Kooijmanb2fc72b2008-06-11 14:05:05 +000024 call void @bar({i32, i32} %s2)
Matthijs Kooijmanf22f34f2008-07-16 12:57:25 +000025
26 ; Use nested extractvalues to get to a value
27 %s3 = extractvalue {i32, {i32, i32}} %ns1, 1
28 %v4 = extractvalue {i32, i32} %s3, 1
29 call void @bar({i32, i32} %s3)
30
31 ; Use nested insertvalues to build a nested struct
32 %s4.1 = insertvalue {i32, i32} undef, i32 %v3, 0
33 %s4 = insertvalue {i32, i32} %s4.1, i32 %v4, 1
34 %ns2 = insertvalue {i32, {i32, i32}} undef, {i32, i32} %s4, 1
35
36 ; And now extract a single value from there
37 %v5 = extractvalue {i32, {i32, i32}} %ns2, 1, 1
38
39 ret i32 %v5
Matthijs Kooijmanb2fc72b2008-06-11 14:05:05 +000040}
41
Frits van Bommel28218aa2010-11-29 21:56:20 +000042; CHECK: define i32 @extract2gep
43; CHECK-NEXT: [[GEP:%[a-z0-9]+]] = getelementptr inbounds {{.*}}* %pair, i32 0, i32 1
44; CHECK-NEXT: [[LOAD:%[A-Za-z0-9]+]] = load i32* [[GEP]]
45; CHECK-NEXT: store
46; CHECK-NEXT: br label %loop
47; CHECK-NOT: extractvalue
48; CHECK: call {{.*}}(i32 [[LOAD]])
49; CHECK-NOT: extractvalue
50; CHECK: ret i32 [[LOAD]]
51define i32 @extract2gep({i32, i32}* %pair, i32* %P) {
52 ; The load + extractvalue should be converted
53 ; to an inbounds gep + smaller load.
54 ; The new load should be in the same spot as the old load.
55 %L = load {i32, i32}* %pair
56 store i32 0, i32* %P
57 br label %loop
58
59loop:
60 %E = extractvalue {i32, i32} %L, 1
61 %C = call i32 @baz(i32 %E)
62 store i32 %C, i32* %P
63 %cond = icmp eq i32 %C, 0
64 br i1 %cond, label %end, label %loop
65
66end:
67 ret i32 %E
68}
69
70; CHECK: define i32 @doubleextract2gep
71; CHECK-NEXT: [[GEP:%[a-z0-9]+]] = getelementptr inbounds {{.*}}* %arg, i32 0, i32 1, i32 1
72; CHECK-NEXT: [[LOAD:%[A-Za-z0-9]+]] = load i32* [[GEP]]
73; CHECK-NEXT: ret i32 [[LOAD]]
74define i32 @doubleextract2gep({i32, {i32, i32}}* %arg) {
75 ; The load + extractvalues should be converted
76 ; to a 3-index inbounds gep + smaller load.
77 %L = load {i32, {i32, i32}}* %arg
78 %E1 = extractvalue {i32, {i32, i32}} %L, 1
79 %E2 = extractvalue {i32, i32} %E1, 1
80 ret i32 %E2
81}
82
83; CHECK: define i32 @nogep-multiuse
84; CHECK-NEXT: load {{.*}} %pair
85; CHECK-NEXT: extractvalue
86; CHECK-NEXT: extractvalue
87; CHECK-NEXT: add
88; CHECK-NEXT: ret
89define i32 @nogep-multiuse({i32, i32}* %pair) {
90 ; The load should be left unchanged since both parts are needed.
91 %L = volatile load {i32, i32}* %pair
92 %LHS = extractvalue {i32, i32} %L, 0
93 %RHS = extractvalue {i32, i32} %L, 1
94 %R = add i32 %LHS, %RHS
95 ret i32 %R
96}
97
98; CHECK: define i32 @nogep-volatile
99; CHECK-NEXT: volatile load {{.*}} %pair
100; CHECK-NEXT: extractvalue
101; CHECK-NEXT: ret
102define i32 @nogep-volatile({i32, i32}* %pair) {
103 ; The volatile load should be left unchanged.
104 %L = volatile load {i32, i32}* %pair
105 %E = extractvalue {i32, i32} %L, 1
106 ret i32 %E
107}