Nick Lewycky | 6f7d834 | 2009-10-13 07:03:23 +0000 | [diff] [blame] | 1 | ; RUN: llvm-as -disable-output < %s |
| 2 | |
| 3 | %"struct.std::pair<int,int>" = type { i32, i32 } |
| 4 | |
| 5 | declare void @_Z3barRKi(i32*) |
| 6 | |
| 7 | declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind |
| 8 | declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind |
Mehdi Amini | 8c629ec | 2016-08-13 23:31:24 +0000 | [diff] [blame] | 9 | declare {}* @llvm.invariant.start.p0i8(i64, i8* nocapture) readonly nounwind |
| 10 | declare void @llvm.invariant.end.p0i8({}*, i64, i8* nocapture) nounwind |
Nick Lewycky | 6f7d834 | 2009-10-13 07:03:23 +0000 | [diff] [blame] | 11 | |
| 12 | define i32 @_Z4foo2v() nounwind { |
| 13 | entry: |
| 14 | %x = alloca %"struct.std::pair<int,int>" |
| 15 | %y = bitcast %"struct.std::pair<int,int>"* %x to i8* |
| 16 | |
| 17 | ;; Constructor starts here (this isn't needed since it is immediately |
| 18 | ;; preceded by an alloca, but shown for completeness). |
| 19 | call void @llvm.lifetime.start(i64 8, i8* %y) |
| 20 | |
David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 21 | %0 = getelementptr %"struct.std::pair<int,int>", %"struct.std::pair<int,int>"* %x, i32 0, i32 0 |
Nick Lewycky | 6f7d834 | 2009-10-13 07:03:23 +0000 | [diff] [blame] | 22 | store i32 4, i32* %0, align 8 |
David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 23 | %1 = getelementptr %"struct.std::pair<int,int>", %"struct.std::pair<int,int>"* %x, i32 0, i32 1 |
Nick Lewycky | 6f7d834 | 2009-10-13 07:03:23 +0000 | [diff] [blame] | 24 | store i32 5, i32* %1, align 4 |
| 25 | |
| 26 | ;; Constructor has finished here. |
Mehdi Amini | 8c629ec | 2016-08-13 23:31:24 +0000 | [diff] [blame] | 27 | %inv = call {}* @llvm.invariant.start.p0i8(i64 8, i8* %y) |
Nick Lewycky | 6f7d834 | 2009-10-13 07:03:23 +0000 | [diff] [blame] | 28 | call void @_Z3barRKi(i32* %0) nounwind |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 29 | %2 = load i32, i32* %0, align 8 |
Nick Lewycky | 6f7d834 | 2009-10-13 07:03:23 +0000 | [diff] [blame] | 30 | |
| 31 | ;; Destructor is run here. |
Mehdi Amini | 8c629ec | 2016-08-13 23:31:24 +0000 | [diff] [blame] | 32 | call void @llvm.invariant.end.p0i8({}* %inv, i64 8, i8* %y) |
Nick Lewycky | 6f7d834 | 2009-10-13 07:03:23 +0000 | [diff] [blame] | 33 | ;; Destructor is done here. |
| 34 | call void @llvm.lifetime.end(i64 8, i8* %y) |
| 35 | ret i32 %2 |
| 36 | } |