[Clang][CodeGen]`vtable`, `typeinfo` et al. are globals
[llvm-project.git] / llvm / test / Instrumentation / AddressSanitizer / instrument_global.ll
blobaa943cff6c4936ee0f8596b11cfb4fea52c9d8c7
1 ; RUN: opt < %s -passes=asan -asan-globals-live-support=1 -S | FileCheck %s
2 ; RUN: opt < %s -passes=asan -asan-globals-live-support=1 -asan-mapping-scale=5 -S | FileCheck %s
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 @xxx = global i32 0, align 4
7 ; If a global is present, __asan_[un]register_globals should be called from
8 ; module ctor/dtor
10 ; CHECK: @___asan_gen_ = private constant [8 x i8] c"<stdin>\00", align 1
11 ; CHECK: @llvm.used = appending global [2 x ptr] [ptr @asan.module_ctor, ptr @asan.module_dtor], section "llvm.metadata"
12 ; CHECK: @llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 1, ptr @asan.module_ctor, ptr @asan.module_ctor }]
13 ; CHECK: @llvm.global_dtors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 1, ptr @asan.module_dtor, ptr @asan.module_dtor }]
15 ; Test that we don't instrument global arrays with static initializer
16 ; indexed with constants in-bounds. But instrument all other cases.
18 @GlobSt = global [10 x i32] zeroinitializer, align 16  ; static initializer
19 @GlobDy = global [10 x i32] zeroinitializer, align 16, sanitize_address_dyninit  ; dynamic initializer
20 @GlobEx = external global [10 x i32] , align 16        ; extern initializer
22 ; GlobSt is declared here, and has static initializer -- ok to optimize.
23 define i32 @AccessGlobSt_0_2() sanitize_address {
24 entry:
25     %0 = load i32, ptr getelementptr inbounds ([10 x i32], ptr @GlobSt, i64 0, i64 2), align 8
26     ret i32 %0
27 ; CHECK-LABEL: define i32 @AccessGlobSt_0_2
28 ; CHECK-NOT: __asan_report
29 ; CHECK: ret i32 %0
32 ; GlobSt is accessed out of bounds -- can't optimize
33 define i32 @AccessGlobSt_0_12() sanitize_address {
34 entry:
35     %0 = load i32, ptr getelementptr inbounds ([10 x i32], ptr @GlobSt, i64 0, i64 12), align 8
36     ret i32 %0
37 ; CHECK-LABEL: define i32 @AccessGlobSt_0_12
38 ; CHECK: __asan_report
39 ; CHECK: ret i32
42 ; GlobSt is accessed with Gep that has non-0 first index -- can't optimize.
43 define i32 @AccessGlobSt_1_2() sanitize_address {
44 entry:
45     %0 = load i32, ptr getelementptr inbounds ([10 x i32], ptr @GlobSt, i64 1, i64 2), align 8
46     ret i32 %0
47 ; CHECK-LABEL: define i32 @AccessGlobSt_1_2
48 ; CHECK: __asan_report
49 ; CHECK: ret i32
52 ; GlobDy is declared with dynamic initializer -- can't optimize.
53 define i32 @AccessGlobDy_0_2() sanitize_address {
54 entry:
55     %0 = load i32, ptr getelementptr inbounds ([10 x i32], ptr @GlobDy, i64 0, i64 2), align 8
56     ret i32 %0
57 ; CHECK-LABEL: define i32 @AccessGlobDy_0_2
58 ; CHECK: __asan_report
59 ; CHECK: ret i32
62 ; GlobEx is an external global -- can't optimize.
63 define i32 @AccessGlobEx_0_2() sanitize_address {
64 entry:
65     %0 = load i32, ptr getelementptr inbounds ([10 x i32], ptr @GlobEx, i64 0, i64 2), align 8
66     ret i32 %0
67 ; CHECK-LABEL: define i32 @AccessGlobEx_0_2
68 ; CHECK: __asan_report
69 ; CHECK: ret i32
72 ; CHECK-LABEL: define internal void @asan.module_ctor
73 ; CHECK-NOT: ret
74 ; CHECK: call void @__asan_register_elf_globals
75 ; CHECK: ret
77 ; CHECK-LABEL: define internal void @asan.module_dtor
78 ; CHECK-NOT: ret
79 ; CHECK: call void @__asan_unregister_elf_globals
80 ; CHECK: ret