[asan] Assign a low branch weight to ASan's slow path, patch by Jonas Wagner. This...
[oota-llvm.git] / test / Instrumentation / AddressSanitizer / instrument_initializer_metadata.ll
1 ; RUN: opt < %s -asan -asan-module -S | FileCheck %s
2 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"
3 target triple = "x86_64-unknown-linux-gnu"
4 @xxx = internal global i32 0, align 4  ; With dynamic initializer.
5 @XXX = global i32 0, align 4           ; With dynamic initializer.
6 @yyy = internal global i32 0, align 4  ; W/o dynamic initializer.
7 @YYY = global i32 0, align 4           ; W/o dynamic initializer.
8 ; Clang will emit the following metadata identifying @xxx as dynamically
9 ; initialized.
10 !0 = metadata !{i32* @xxx, null, null, i1 true, i1 false}
11 !1 = metadata !{i32* @XXX, null, null, i1 true, i1 false}
12 !2 = metadata !{i32* @yyy, null, null, i1 false, i1 false}
13 !3 = metadata !{i32* @YYY, null, null, i1 false, i1 false}
14 !llvm.asan.globals = !{!0, !1, !2, !3}
15
16 define i32 @initializer() uwtable {
17 entry:
18   ret i32 42
19 }
20
21 define internal void @__cxx_global_var_init() section ".text.startup" {
22 entry:
23   %call = call i32 @initializer()
24   store i32 %call, i32* @xxx, align 4
25   ret void
26 }
27
28 @llvm.global_ctors = appending global [1 x { i32, void ()* }] [{ i32, void ()* } { i32 65535, void ()* @_GLOBAL__I_a }]
29
30 define internal void @_GLOBAL__I_a() sanitize_address section ".text.startup" {
31 entry:
32   call void @__cxx_global_var_init()
33   ret void
34 }
35
36 ; Clang indicated that @xxx was dynamically initailized.
37 ; __asan_{before,after}_dynamic_init should be called from _GLOBAL__I_a
38
39 ; CHECK: define internal void @_GLOBAL__I_a
40 ; CHECK-NOT: ret
41 ; CHECK: call void @__asan_before_dynamic_init
42 ; CHECK: call void @__cxx_global_var_init
43 ; CHECK: call void @__asan_after_dynamic_init
44 ; CHECK: ret
45
46 ; Check that xxx is instrumented.
47 define void @touch_xxx() sanitize_address {
48   store i32 0, i32 *@xxx, align 4
49   ret void
50 ; CHECK: define void @touch_xxx
51 ; CHECK: call void @__asan_report_store4
52 ; CHECK: ret void
53 }
54
55 ; Check that XXX is instrumented.
56 define void @touch_XXX() sanitize_address {
57   store i32 0, i32 *@XXX, align 4
58   ret void
59 ; CHECK: define void @touch_XXX
60 ; CHECK: call void @__asan_report_store4
61 ; CHECK: ret void
62 }
63
64
65 ; Check that yyy is NOT instrumented (as it does not have dynamic initializer).
66 define void @touch_yyy() sanitize_address {
67   store i32 0, i32 *@yyy, align 4
68   ret void
69 ; CHECK: define void @touch_yyy
70 ; CHECK-NOT: call void @__asan_report_store4
71 ; CHECK: ret void
72 }
73
74 ; Check that YYY is NOT instrumented (as it does not have dynamic initializer).
75 define void @touch_YYY() sanitize_address {
76   store i32 0, i32 *@YYY, align 4
77   ret void
78 ; CHECK: define void @touch_YYY
79 ; CHECK-NOT: call void @__asan_report_store4
80 ; CHECK: ret void
81 }