aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/tools/llvm-reduce/reduce-operands-alloca.ll
blob: 61c46185b337859f1efc3b46dcfc1fdaa2ba130d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
; RUN: llvm-reduce --abort-on-invalid-reduction --delta-passes=operands-zero --test FileCheck --test-arg --check-prefix=CHECK --test-arg %s --test-arg --input-file %s -o %t
; RUN: FileCheck %s --check-prefixes=CHECK,ZERO < %t

; RUN: llvm-reduce --abort-on-invalid-reduction --delta-passes=operands-one --test FileCheck --test-arg --check-prefix=CHECK --test-arg %s --test-arg --input-file %s -o %t
; RUN: FileCheck %s --check-prefixes=CHECK,ONE < %t

; RUN: llvm-reduce --abort-on-invalid-reduction --delta-passes=operands-poison --test FileCheck --test-arg --check-prefix=CHECK --test-arg %s --test-arg --input-file %s -o %t
; RUN: FileCheck %s --check-prefixes=CHECK,POISON < %t


; CHECK-LABEL: @dyn_alloca(
; ZERO: %alloca = alloca i32, i32 %size, align 4
; ONE: %alloca = alloca i32, align 4
; POISON: %alloca = alloca i32, i32 %size, align 4
define void @dyn_alloca(i32 %size) {
 %alloca = alloca i32, i32 %size
 store i32 0, ptr %alloca
 ret void
}

; CHECK-LABEL: @alloca_0_elt(
; ZERO: %alloca = alloca i32, i32 0, align 4
; ONE: %alloca = alloca i32, i32 0, align 4
; POISON:  %alloca = alloca i32, i32 0, align 4
define void @alloca_0_elt() {
 %alloca = alloca i32, i32 0
 store i32 0, ptr %alloca
 ret void
}

; CHECK-LABEL: @alloca_1_elt(
; ZERO: %alloca = alloca i32, align 4
; ONE: %alloca = alloca i32, align 4
; POISON: %alloca = alloca i32, align 4
define void @alloca_1_elt() {
 %alloca = alloca i32, i32 1
 store i32 0, ptr %alloca
 ret void
}

; CHECK-LABEL: @alloca_1024_elt(
; ZERO: %alloca = alloca i32, i32 1024, align 4
; ONE: %alloca = alloca i32, align 4
; POISON: %alloca = alloca i32, i32 1024, align 4
define void @alloca_1024_elt() {
 %alloca = alloca i32, i32 1024
 store i32 0, ptr %alloca
 ret void
}

; CHECK-LABEL: @alloca_poison_elt(
; ZERO: %alloca = alloca i32, i32 poison, align 4
; ONE: %alloca = alloca i32, align 4
; POISON: %alloca = alloca i32, i32 poison, align 4
define void @alloca_poison_elt() {
 %alloca = alloca i32, i32 poison
 store i32 0, ptr %alloca
 ret void
}

; CHECK-LABEL: @alloca_constexpr_elt(
; ZERO: %alloca = alloca i32, i32 ptrtoint (ptr @alloca_constexpr_elt to i32)
; ONE: %alloca = alloca i32, align 4
; POISON: %alloca = alloca i32, i32 ptrtoint (ptr @alloca_constexpr_elt to i32)
define void @alloca_constexpr_elt() {
 %alloca = alloca i32, i32 ptrtoint (ptr @alloca_constexpr_elt to i32)
 store i32 0, ptr %alloca
 ret void
}