blob: 4e756f9ab2f251ad4dcb85ad3d9ed0d2e643cfd4 [file] [log] [blame]
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001; Test the ASan's stack layout.
2; More tests in tests/Transforms/Utils/ASanStackFrameLayoutTest.cpp
Vitaly Bukad88e5202016-10-18 23:29:41 +00003; RUN: opt < %s -asan -asan-module -asan-stack-dynamic-alloca=0 -asan-use-after-scope -S \
4; RUN: | FileCheck %s --check-prefixes=CHECK,CHECK-STATIC
5; RUN: opt < %s -asan -asan-module -asan-stack-dynamic-alloca=1 -asan-use-after-scope -S \
6; RUN: | FileCheck %s --check-prefixes=CHECK,CHECK-DYNAMIC
Kostya Serebryany4fb78012013-12-06 09:00:17 +00007
8target 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-S128"
9target triple = "x86_64-unknown-linux-gnu"
10
11declare void @Use(i8*)
Matt Arsenaultf10061e2017-04-10 20:18:21 +000012declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) nounwind
13declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) nounwind
Kostya Serebryany4fb78012013-12-06 09:00:17 +000014
Vitaly Bukad88e5202016-10-18 23:29:41 +000015; CHECK: private unnamed_addr constant{{.*}}3 32 10 3 XXX 64 20 3 YYY 128 30 3 ZZZ\0
16; CHECK: private unnamed_addr constant{{.*}}3 32 5 3 AAA 64 55 3 BBB 160 555 3 CCC\0
17; CHECK: private unnamed_addr constant{{.*}}3 256 128 3 CCC 448 128 3 BBB 608 128 3 AAA\0
18; CHECK: private unnamed_addr constant{{.*}}2 32 4 3 AAA 48 4 5 BBB:7\0
Kostya Serebryany4fb78012013-12-06 09:00:17 +000019
20define void @Func1() sanitize_address {
21entry:
22; CHECK-LABEL: Func1
Alexey Samsonov4b7f4132014-12-11 21:53:03 +000023
24; CHECK-STATIC: alloca [192 x i8]
25; CHECK-DYNAMIC: alloca i8, i64 192
26
Kostya Serebryany4fb78012013-12-06 09:00:17 +000027; CHECK-NOT: alloca
28; CHECK: ret void
29 %XXX = alloca [10 x i8], align 1
30 %YYY = alloca [20 x i8], align 1
31 %ZZZ = alloca [30 x i8], align 1
Anna Zaks8ed1d812015-02-27 03:12:36 +000032 %arr1.ptr = bitcast [10 x i8]* %XXX to i8*
33 store volatile i8 0, i8* %arr1.ptr
34 %arr2.ptr = bitcast [20 x i8]* %YYY to i8*
35 store volatile i8 0, i8* %arr2.ptr
36 %arr3.ptr = bitcast [30 x i8]* %ZZZ to i8*
37 store volatile i8 0, i8* %arr3.ptr
Kostya Serebryany4fb78012013-12-06 09:00:17 +000038 ret void
39}
40
41define void @Func2() sanitize_address {
42entry:
43; CHECK-LABEL: Func2
Alexey Samsonov4b7f4132014-12-11 21:53:03 +000044
45; CHECK-STATIC: alloca [864 x i8]
46; CHECK-DYNAMIC: alloca i8, i64 864
47
Kostya Serebryany4fb78012013-12-06 09:00:17 +000048; CHECK-NOT: alloca
49; CHECK: ret void
50 %AAA = alloca [5 x i8], align 1
51 %BBB = alloca [55 x i8], align 1
52 %CCC = alloca [555 x i8], align 1
Anna Zaks8ed1d812015-02-27 03:12:36 +000053 %arr1.ptr = bitcast [5 x i8]* %AAA to i8*
54 store volatile i8 0, i8* %arr1.ptr
55 %arr2.ptr = bitcast [55 x i8]* %BBB to i8*
56 store volatile i8 0, i8* %arr2.ptr
57 %arr3.ptr = bitcast [555 x i8]* %CCC to i8*
58 store volatile i8 0, i8* %arr3.ptr
Kostya Serebryany4fb78012013-12-06 09:00:17 +000059 ret void
60}
61
62; Check that we reorder vars according to alignment and handle large alignments.
63define void @Func3() sanitize_address {
64entry:
65; CHECK-LABEL: Func3
Alexey Samsonov4b7f4132014-12-11 21:53:03 +000066
67; CHECK-STATIC: alloca [768 x i8]
68; CHECK-DYNAMIC: alloca i8, i64 768
69
Kostya Serebryany4fb78012013-12-06 09:00:17 +000070; CHECK-NOT: alloca
71; CHECK: ret void
72 %AAA = alloca [128 x i8], align 16
73 %BBB = alloca [128 x i8], align 64
74 %CCC = alloca [128 x i8], align 256
Anna Zaks8ed1d812015-02-27 03:12:36 +000075 %arr1.ptr = bitcast [128 x i8]* %AAA to i8*
76 store volatile i8 0, i8* %arr1.ptr
77 %arr2.ptr = bitcast [128 x i8]* %BBB to i8*
78 store volatile i8 0, i8* %arr2.ptr
79 %arr3.ptr = bitcast [128 x i8]* %CCC to i8*
80 store volatile i8 0, i8* %arr3.ptr
Kostya Serebryany4fb78012013-12-06 09:00:17 +000081 ret void
82}
Vitaly Bukad88e5202016-10-18 23:29:41 +000083
84; Check that line numbers are attached to variable names if variable
85; in the same file as a function.
86define void @Func5() sanitize_address #0 !dbg !11 {
87 %AAA = alloca i32, align 4 ; File is not the same as !11
88 %BBB = alloca i32, align 4 ; File is the same as !11
89 %BBB.ptr = bitcast i32* %BBB to i8*
Matt Arsenaultf10061e2017-04-10 20:18:21 +000090 call void @llvm.lifetime.start.p0i8(i64 4, i8* nonnull %BBB.ptr), !dbg !12
Vitaly Bukad88e5202016-10-18 23:29:41 +000091 store volatile i32 5, i32* %BBB, align 4
92 %AAA.ptr = bitcast i32* %AAA to i8*
Matt Arsenaultf10061e2017-04-10 20:18:21 +000093 call void @llvm.lifetime.start.p0i8(i64 4, i8* nonnull %AAA.ptr), !dbg !14
Vitaly Bukad88e5202016-10-18 23:29:41 +000094 store volatile i32 3, i32* %AAA, align 4
Matt Arsenaultf10061e2017-04-10 20:18:21 +000095 call void @llvm.lifetime.end.p0i8(i64 4, i8* nonnull %AAA.ptr), !dbg !17
96 call void @llvm.lifetime.end.p0i8(i64 4, i8* nonnull %BBB.ptr), !dbg !18
Vitaly Bukad88e5202016-10-18 23:29:41 +000097 ret void
98}
99
100!llvm.dbg.cu = !{!0}
101!llvm.module.flags = !{!3, !4}
102!3 = !{i32 2, !"Dwarf Version", i32 4}
103!4 = !{i32 2, !"Debug Info Version", i32 3}
104
105!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1)
106!1 = !DIFile(filename: "../file1.c", directory: "/")
107!11 = distinct !DISubprogram(name: "Func5", scope: !1, file: !1, line: 6, unit: !0)
108!12 = !DILocation(line: 7, column: 3, scope: !11)
109!18 = !DILocation(line: 10, column: 1, scope: !11)
110
111!21 = !DIFile(filename: "../file2.c", directory: "/")
112!6 = distinct !DISubprogram(name: "Func4", scope: !1, file: !21, line: 2, unit: !0)
113!15 = distinct !DILocation(line: 8, column: 3, scope: !11)
114!14 = !DILocation(line: 3, column: 3, scope: !6, inlinedAt: !15)
115!17 = !DILocation(line: 4, column: 1, scope: !6, inlinedAt: !15)