Dan Gohman | 72a13d2 | 2009-09-08 22:34:10 +0000 | [diff] [blame] | 1 | ; RUN: opt < %s -instcombine -S | not grep extractvalue |
Matthijs Kooijman | b2fc72b | 2008-06-11 14:05:05 +0000 | [diff] [blame] | 2 | |
| 3 | ; Instcombine should fold various combinations of insertvalue and extractvalue |
| 4 | ; together |
| 5 | declare void @bar({i32, i32} %a) |
| 6 | |
Frits van Bommel | 40a80ac | 2010-11-29 20:55:40 +0000 | [diff] [blame^] | 7 | define i32 @foo(i32 %a, i32 %b) { |
Matthijs Kooijman | b2fc72b | 2008-06-11 14:05:05 +0000 | [diff] [blame] | 8 | ; Build a simple struct and pull values out again |
Frits van Bommel | 40a80ac | 2010-11-29 20:55:40 +0000 | [diff] [blame^] | 9 | %s1.1 = insertvalue {i32, i32} undef, i32 %a, 0 |
| 10 | %s1 = insertvalue {i32, i32} %s1.1, i32 %b, 1 |
Matthijs Kooijman | b2fc72b | 2008-06-11 14:05:05 +0000 | [diff] [blame] | 11 | %v1 = extractvalue {i32, i32} %s1, 0 |
| 12 | %v2 = extractvalue {i32, i32} %s1, 1 |
| 13 | |
| 14 | ; Build a nested struct and pull a sub struct out of it |
| 15 | ; This requires instcombine to insert a few insertvalue instructions |
| 16 | %ns1.1 = insertvalue {i32, {i32, i32}} undef, i32 %v1, 0 |
| 17 | %ns1.2 = insertvalue {i32, {i32, i32}} %ns1.1, i32 %v1, 1, 0 |
| 18 | %ns1 = insertvalue {i32, {i32, i32}} %ns1.2, i32 %v2, 1, 1 |
| 19 | %s2 = extractvalue {i32, {i32, i32}} %ns1, 1 |
Matthijs Kooijman | f22f34f | 2008-07-16 12:57:25 +0000 | [diff] [blame] | 20 | %v3 = extractvalue {i32, {i32, i32}} %ns1, 1, 1 |
Matthijs Kooijman | b2fc72b | 2008-06-11 14:05:05 +0000 | [diff] [blame] | 21 | call void @bar({i32, i32} %s2) |
Matthijs Kooijman | f22f34f | 2008-07-16 12:57:25 +0000 | [diff] [blame] | 22 | |
| 23 | ; Use nested extractvalues to get to a value |
| 24 | %s3 = extractvalue {i32, {i32, i32}} %ns1, 1 |
| 25 | %v4 = extractvalue {i32, i32} %s3, 1 |
| 26 | call void @bar({i32, i32} %s3) |
| 27 | |
| 28 | ; Use nested insertvalues to build a nested struct |
| 29 | %s4.1 = insertvalue {i32, i32} undef, i32 %v3, 0 |
| 30 | %s4 = insertvalue {i32, i32} %s4.1, i32 %v4, 1 |
| 31 | %ns2 = insertvalue {i32, {i32, i32}} undef, {i32, i32} %s4, 1 |
| 32 | |
| 33 | ; And now extract a single value from there |
| 34 | %v5 = extractvalue {i32, {i32, i32}} %ns2, 1, 1 |
| 35 | |
| 36 | ret i32 %v5 |
Matthijs Kooijman | b2fc72b | 2008-06-11 14:05:05 +0000 | [diff] [blame] | 37 | } |
| 38 | |