[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Analysis / MemorySSA / lifetime-simple.ll
blob2d0481c18415796e7ed7e6a534c56e75fcfa9c65
1 ; RUN: opt -basic-aa -print-memoryssa -verify-memoryssa -enable-new-pm=0 -analyze < %s 2>&1 | FileCheck %s
2 ; RUN: opt -aa-pipeline=basic-aa -passes='print<memoryssa>,verify<memoryssa>' -disable-output < %s 2>&1 | FileCheck %s
3 ; This test checks that lifetime markers are considered clobbers of %P,
4 ; and due to lack of noalias information, of %Q as well.
6 define i8 @test(i8* %P, i8* %Q) {
7 entry:
8 ; CHECK:  1 = MemoryDef(liveOnEntry)
9 ; CHECK-NEXT:   call void @llvm.lifetime.start.p0i8(i64 32, i8* %P)
10   call void @llvm.lifetime.start.p0i8(i64 32, i8* %P)
11 ; CHECK:  MemoryUse(1)
12 ; CHECK-NEXT:   %0 = load i8, i8* %P
13   %0 = load i8, i8* %P
14 ; CHECK:  2 = MemoryDef(1)
15 ; CHECK-NEXT:   store i8 1, i8* %P
16   store i8 1, i8* %P
17 ; CHECK:  3 = MemoryDef(2)
18 ; CHECK-NEXT:   call void @llvm.lifetime.end.p0i8(i64 32, i8* %P)
19   call void @llvm.lifetime.end.p0i8(i64 32, i8* %P)
20 ; CHECK:  MemoryUse(3)
21 ; CHECK-NEXT:   %1 = load i8, i8* %P
22   %1 = load i8, i8* %P
23 ; CHECK:  MemoryUse(3)
24 ; CHECK-NEXT:   %2 = load i8, i8* %Q
25   %2 = load i8, i8* %Q
26   ret i8 %1
28 declare void @llvm.lifetime.start.p0i8(i64 %S, i8* nocapture %P) readonly
29 declare void @llvm.lifetime.end.p0i8(i64 %S, i8* nocapture %P)