|
1 |
| -; RUN: opt < %s -asan -asan-module -S | FileCheck %s |
| 1 | +; RUN: opt < %s -asan -S | FileCheck %s |
2 | 2 | ; AddressSanitizer must insert __asan_handle_no_return
|
3 |
| -; before every noreturn call or invoke. |
| 3 | +; before noreturn calls that aren't inserted by sanitizers. |
4 | 4 |
|
5 | 5 | 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"
|
6 | 6 | target triple = "x86_64-unknown-linux-gnu"
|
7 | 7 |
|
8 |
| -declare void @MyNoReturnFunc(i32) noreturn |
| 8 | +declare void @NormalFunc() |
| 9 | +declare void @NoReturnFunc() noreturn |
9 | 10 |
|
10 |
| -define i32 @Call1(i8* nocapture %arg) uwtable sanitize_address { |
11 |
| -entry: |
12 |
| - call void @MyNoReturnFunc(i32 1) noreturn ; The call insn has noreturn attr. |
13 |
| -; CHECK: @Call1 |
14 |
| -; CHECK: call void @__asan_handle_no_return |
15 |
| -; CHECK-NEXT: call void @MyNoReturnFunc |
16 |
| -; CHECK-NEXT: unreachable |
| 11 | +; Instrument noreturn callsites (regardless of function) |
| 12 | +define i32 @Call1() sanitize_address { |
| 13 | + call void @NormalFunc() noreturn |
17 | 14 | unreachable
|
18 | 15 | }
|
| 16 | +; CHECK-LABEL: @Call1 |
| 17 | +; CHECK-NEXT: call void @__asan_handle_no_return |
| 18 | +; CHECK-NEXT: call void @NormalFunc |
19 | 19 |
|
20 |
| -define i32 @Call2(i8* nocapture %arg) uwtable sanitize_address { |
21 |
| -entry: |
22 |
| - call void @MyNoReturnFunc(i32 1) ; No noreturn attribure on the call. |
23 |
| -; CHECK: @Call2 |
24 |
| -; CHECK: call void @__asan_handle_no_return |
25 |
| -; CHECK-NEXT: call void @MyNoReturnFunc |
26 |
| -; CHECK-NEXT: unreachable |
| 20 | +; Instrument calls to noreturn functions (regardless of callsite) |
| 21 | +define i32 @Call2() sanitize_address { |
| 22 | + call void @NoReturnFunc() |
| 23 | + unreachable |
| 24 | +} |
| 25 | +; CHECK-LABEL: @Call2 |
| 26 | +; CHECK-NEXT: call void @__asan_handle_no_return |
| 27 | +; CHECK-NEXT: call void @NoReturnFunc |
| 28 | + |
| 29 | +; Do *not* instrument callsites marked !nosanitize |
| 30 | +define i32 @Call3() sanitize_address { |
| 31 | + call void @NoReturnFunc() noreturn, !nosanitize !{} |
27 | 32 | unreachable
|
28 | 33 | }
|
| 34 | +; CHECK-LABEL: @Call3 |
| 35 | +; CHECK-NOT: call void @__asan_handle_no_return |
| 36 | +; CHECK: call void @NoReturnFunc |
29 | 37 |
|
30 | 38 | declare i32 @__gxx_personality_v0(...)
|
31 | 39 |
|
32 |
| -define i64 @Invoke1(i8** %esc) nounwind uwtable ssp sanitize_address personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { |
| 40 | +define i64 @Invoke1() nounwind uwtable ssp sanitize_address personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { |
33 | 41 | entry:
|
34 |
| - invoke void @MyNoReturnFunc(i32 1) |
| 42 | + invoke void @NoReturnFunc() |
35 | 43 | to label %invoke.cont unwind label %lpad
|
36 | 44 |
|
37 | 45 | invoke.cont:
|
|
42 | 50 | filter [0 x i8*] zeroinitializer
|
43 | 51 | ret i64 1
|
44 | 52 | }
|
45 |
| -; CHECK: @Invoke1 |
| 53 | +; CHECK-LABEL: @Invoke1 |
46 | 54 | ; CHECK: call void @__asan_handle_no_return
|
47 |
| -; CHECK-NEXT: invoke void @MyNoReturnFunc |
| 55 | +; CHECK-NEXT: invoke void @NoReturnFunc |
48 | 56 | ; CHECK: ret i64 0
|
49 | 57 | ; CHECK: ret i64 1
|
0 commit comments