[asan] make sure that linker-initialized globals (non-extern) are not instrumented...
[oota-llvm.git] / test / Instrumentation / AddressSanitizer / instrument_initializer_metadata.ll
1 ; RUN: opt < %s -asan -asan-initialization-order -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 @yyy = internal global i32 0, align 4  ; W/o dynamic initializer.
6 ; Clang will emit the following metadata identifying @xxx as dynamically
7 ; initialized.
8 !0 = metadata !{i32* @xxx}
9 !llvm.asan.dynamically_initialized_globals = !{!0}
10
11 define i32 @initializer() uwtable {
12 entry:
13   ret i32 42
14 }
15
16 define internal void @__cxx_global_var_init() section ".text.startup" {
17 entry:
18   %call = call i32 @initializer()
19   store i32 %call, i32* @xxx, align 4
20   ret void
21 }
22
23 define internal void @_GLOBAL__I_a() address_safety section ".text.startup" {
24 entry:
25   call void @__cxx_global_var_init()
26   ret void
27 }
28
29 ; Clang indicated that @xxx was dynamically initailized.
30 ; __asan_{before,after}_dynamic_init should be called from _GLOBAL__I_a
31
32 ; CHECK: define internal void @_GLOBAL__I_a
33 ; CHECK-NOT: ret
34 ; CHECK: call void @__asan_before_dynamic_init
35 ; CHECK: call void @__cxx_global_var_init
36 ; CHECK: call void @__asan_after_dynamic_init
37 ; CHECK: ret
38
39 ; Check that xxx is instrumented.
40 define void @touch_xxx() address_safety {
41   store i32 0, i32 *@xxx, align 4
42   ret void
43 ; CHECK: define void @touch_xxx
44 ; CHECK: call void @__asan_report_store4
45 ; CHECK: ret void
46 }
47
48 ; Check that yyy is NOT instrumented (as it does not have dynamic initializer).
49 define void @touch_yyy() address_safety {
50   store i32 0, i32 *@yyy, align 4
51   ret void
52 ; CHECK: define void @touch_yyy
53 ; CHECK-NOT: call void @__asan_report_store4
54 ; CHECK: ret void
55 }