Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 1 | ; RUN: opt < %s -tsan -S | FileCheck %s |
| 2 | |
| 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" |
| 4 | target triple = "x86_64-unknown-linux-gnu" |
| 5 | |
Dmitry Vyukov | b1ad572 | 2013-10-17 07:20:06 +0000 | [diff] [blame] | 6 | define i32 @read_4_bytes(i32* %a) sanitize_thread { |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 7 | entry: |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 8 | %tmp1 = load i32, i32* %a, align 4 |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 9 | ret i32 %tmp1 |
| 10 | } |
| 11 | |
Ismail Pazarbasi | 2d4ae9f | 2015-05-07 21:41:23 +0000 | [diff] [blame] | 12 | ; CHECK: @llvm.global_ctors = {{.*}}@tsan.module_ctor |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 13 | |
Dmitry Vyukov | b1ad572 | 2013-10-17 07:20:06 +0000 | [diff] [blame] | 14 | ; CHECK: define i32 @read_4_bytes(i32* %a) |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 15 | ; CHECK: call void @__tsan_func_entry(i8* %0) |
| 16 | ; CHECK-NEXT: %1 = bitcast i32* %a to i8* |
| 17 | ; CHECK-NEXT: call void @__tsan_read4(i8* %1) |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 18 | ; CHECK-NEXT: %tmp1 = load i32, i32* %a, align 4 |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 19 | ; CHECK-NEXT: call void @__tsan_func_exit() |
| 20 | ; CHECK: ret i32 |
| 21 | |
| 22 | |
Daniel Neilson | 1e68724 | 2018-01-19 17:13:12 +0000 | [diff] [blame] | 23 | declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture, i64, i1) |
| 24 | declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture, i8* nocapture, i64, i1) |
| 25 | declare void @llvm.memset.p0i8.i64(i8* nocapture, i8, i64, i1) |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 26 | |
| 27 | |
| 28 | ; Check that tsan converts mem intrinsics back to function calls. |
| 29 | |
Alexey Samsonov | 82667c7 | 2014-05-31 00:26:03 +0000 | [diff] [blame] | 30 | define void @MemCpyTest(i8* nocapture %x, i8* nocapture %y) sanitize_thread { |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 31 | entry: |
Daniel Neilson | 1e68724 | 2018-01-19 17:13:12 +0000 | [diff] [blame] | 32 | tail call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %x, i8* align 4 %y, i64 16, i1 false) |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 33 | ret void |
| 34 | ; CHECK: define void @MemCpyTest |
| 35 | ; CHECK: call i8* @memcpy |
| 36 | ; CHECK: ret void |
| 37 | } |
| 38 | |
Alexey Samsonov | 82667c7 | 2014-05-31 00:26:03 +0000 | [diff] [blame] | 39 | define void @MemMoveTest(i8* nocapture %x, i8* nocapture %y) sanitize_thread { |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 40 | entry: |
Daniel Neilson | 1e68724 | 2018-01-19 17:13:12 +0000 | [diff] [blame] | 41 | tail call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %x, i8* align 4 %y, i64 16, i1 false) |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 42 | ret void |
| 43 | ; CHECK: define void @MemMoveTest |
| 44 | ; CHECK: call i8* @memmove |
| 45 | ; CHECK: ret void |
| 46 | } |
| 47 | |
Alexey Samsonov | 82667c7 | 2014-05-31 00:26:03 +0000 | [diff] [blame] | 48 | define void @MemSetTest(i8* nocapture %x) sanitize_thread { |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 49 | entry: |
Daniel Neilson | 1e68724 | 2018-01-19 17:13:12 +0000 | [diff] [blame] | 50 | tail call void @llvm.memset.p0i8.i64(i8* align 4 %x, i8 77, i64 16, i1 false) |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 51 | ret void |
Benjamin Kramer | b50682e | 2013-04-11 12:41:41 +0000 | [diff] [blame] | 52 | ; CHECK: define void @MemSetTest |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 53 | ; CHECK: call i8* @memset |
| 54 | ; CHECK: ret void |
| 55 | } |
Ismail Pazarbasi | 2d4ae9f | 2015-05-07 21:41:23 +0000 | [diff] [blame] | 56 | |
Arnold Schwaighofer | 8eb1a48 | 2017-02-15 18:57:06 +0000 | [diff] [blame] | 57 | ; CHECK-LABEL: @SwiftError |
| 58 | ; CHECK-NOT: __tsan_read |
| 59 | ; CHECK-NOT: __tsan_write |
| 60 | ; CHECK: ret |
| 61 | define void @SwiftError(i8** swifterror) sanitize_thread { |
| 62 | %swifterror_ptr_value = load i8*, i8** %0 |
| 63 | store i8* null, i8** %0 |
| 64 | %swifterror_addr = alloca swifterror i8* |
| 65 | %swifterror_ptr_value_2 = load i8*, i8** %swifterror_addr |
| 66 | store i8* null, i8** %swifterror_addr |
| 67 | ret void |
| 68 | } |
| 69 | |
| 70 | ; CHECK-LABEL: @SwiftErrorCall |
| 71 | ; CHECK-NOT: __tsan_read |
| 72 | ; CHECK-NOT: __tsan_write |
| 73 | ; CHECK: ret |
| 74 | define void @SwiftErrorCall(i8** swifterror) sanitize_thread { |
| 75 | %swifterror_addr = alloca swifterror i8* |
| 76 | store i8* null, i8** %0 |
| 77 | call void @SwiftError(i8** %0) |
| 78 | ret void |
| 79 | } |
| 80 | |
Ismail Pazarbasi | 2d4ae9f | 2015-05-07 21:41:23 +0000 | [diff] [blame] | 81 | ; CHECK: define internal void @tsan.module_ctor() |
| 82 | ; CHECK: call void @__tsan_init() |