[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Instrumentation / ThreadSanitizer / vptr_update.ll
blobe222e87fa7dbfcd4943f1e5a3dff926ee27da76b
1 ; RUN: opt < %s -passes=tsan -S | FileCheck %s
2 ; Check that vtable pointer updates are treated in a special way.
3 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
5 define void @Foo(ptr nocapture %a, ptr %b) nounwind uwtable sanitize_thread {
6 entry:
7 ; CHECK-LABEL: @Foo
8 ; CHECK: call void @__tsan_vptr_update
9 ; CHECK: ret void
10   store ptr %b, ptr %a, align 8, !tbaa !0
11   ret void
14 define void @FooInt(ptr nocapture %a, i64 %b) nounwind uwtable sanitize_thread {
15 entry:
16 ; CHECK-LABEL: @FooInt
17 ; CHECK: call void @__tsan_vptr_update
18 ; CHECK: ret void
19   store i64 %b, ptr %a, align 8, !tbaa !0
20   ret void
24 declare i32 @Func1()
25 declare i32 @Func2()
27 ; Test that we properly handle vector stores marked as vtable updates.
28 define void @VectorVptrUpdate(ptr nocapture %a, ptr %b) nounwind uwtable sanitize_thread {
29 entry:
30 ; CHECK-LABEL: @VectorVptrUpdate
31 ; CHECK: call void @__tsan_vptr_update{{.*}}Func1
32 ; CHECK-NOT: call void @__tsan_vptr_update
33 ; CHECK: ret void
34   store <2 x ptr> <ptr @Func1, ptr @Func2>,  ptr %a, align 8, !tbaa !0
35   ret void
38 !0 = !{!2, !2, i64 0}
39 !1 = !{!"Simple C/C++ TBAA"}
40 !2 = !{!"vtable pointer", !1}