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
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 {
25 %0 = load i32, ptr getelementptr inbounds ([10 x i32], ptr @GlobSt, i64 0, i64 2), align 8
27 ; CHECK-LABEL: define i32 @AccessGlobSt_0_2
28 ; CHECK-NOT: __asan_report
32 ; GlobSt is accessed out of bounds -- can't optimize
33 define i32 @AccessGlobSt_0_12() sanitize_address {
35 %0 = load i32, ptr getelementptr inbounds ([10 x i32], ptr @GlobSt, i64 0, i64 12), align 8
37 ; CHECK-LABEL: define i32 @AccessGlobSt_0_12
38 ; CHECK: __asan_report
42 ; GlobSt is accessed with Gep that has non-0 first index -- can't optimize.
43 define i32 @AccessGlobSt_1_2() sanitize_address {
45 %0 = load i32, ptr getelementptr inbounds ([10 x i32], ptr @GlobSt, i64 1, i64 2), align 8
47 ; CHECK-LABEL: define i32 @AccessGlobSt_1_2
48 ; CHECK: __asan_report
52 ; GlobDy is declared with dynamic initializer -- can't optimize.
53 define i32 @AccessGlobDy_0_2() sanitize_address {
55 %0 = load i32, ptr getelementptr inbounds ([10 x i32], ptr @GlobDy, i64 0, i64 2), align 8
57 ; CHECK-LABEL: define i32 @AccessGlobDy_0_2
58 ; CHECK: __asan_report
62 ; GlobEx is an external global -- can't optimize.
63 define i32 @AccessGlobEx_0_2() sanitize_address {
65 %0 = load i32, ptr getelementptr inbounds ([10 x i32], ptr @GlobEx, i64 0, i64 2), align 8
67 ; CHECK-LABEL: define i32 @AccessGlobEx_0_2
68 ; CHECK: __asan_report
72 ; CHECK-LABEL: define internal void @asan.module_ctor
74 ; CHECK: call void @__asan_register_elf_globals
77 ; CHECK-LABEL: define internal void @asan.module_dtor
79 ; CHECK: call void @__asan_unregister_elf_globals