summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/ConstantHoisting/ARM/const-addr-no-neg-offset.ll
blob: 80428ad1cde222b39e0751ad480044220001a6c0 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
; RUN: opt -mtriple=arm-arm-none-eabi -consthoist -S < %s | FileCheck %s
; RUN: opt -mtriple=arm-arm-none-eabi -consthoist -pgso -S < %s | FileCheck %s -check-prefix=PGSO
; RUN: opt -mtriple=arm-arm-none-eabi -consthoist -pgso=false -S < %s | FileCheck %s -check-prefix=NPGSO

; There are different candidates here for the base constant: 1073876992 and
; 1073876996. But we don't want to see the latter because it results in
; negative offsets.

define void @foo() #0 {
entry:
; CHECK-LABEL: @foo
; CHECK-NOT: [[CONST1:%const_mat[0-9]*]] = add i32 %const, -4
; CHECK-LABEL: @foo_pgso
  %0 = load volatile i32, i32* inttoptr (i32 1073876992 to i32*), align 4096
  %or = or i32 %0, 1
  store volatile i32 %or, i32* inttoptr (i32 1073876992 to i32*), align 4096
  %1 = load volatile i32, i32* inttoptr (i32 1073876996 to i32*), align 4
  %and = and i32 %1, -117506048
  store volatile i32 %and, i32* inttoptr (i32 1073876996 to i32*), align 4
  %2 = load volatile i32, i32* inttoptr (i32 1073876992 to i32*), align 4096
  %and1 = and i32 %2, -17367041
  store volatile i32 %and1, i32* inttoptr (i32 1073876996 to i32*), align 4096
  %3 = load volatile i32, i32* inttoptr (i32 1073876992 to i32*), align 4096
  %and2 = and i32 %3, -262145
  store volatile i32 %and2, i32* inttoptr (i32 1073876992 to i32*), align 4096
  %4 = load volatile i32, i32* inttoptr (i32 1073876996 to i32*), align 4
  %and3 = and i32 %4, -8323073
  store volatile i32 %and3, i32* inttoptr (i32 1073876996 to i32*), align 4
  store volatile i32 10420224, i32* inttoptr (i32 1073877000 to i32*), align 8
  %5 = load volatile i32, i32* inttoptr (i32 1073876996 to i32*), align 4096
  %or4 = or i32 %5, 65536
  store volatile i32 %or4, i32* inttoptr (i32 1073876996 to i32*), align 4096
  %6 = load volatile i32, i32* inttoptr (i32 1073881088 to i32*), align 8192
  %or6.i.i = or i32 %6, 16
  store volatile i32 %or6.i.i, i32* inttoptr (i32 1073881088 to i32*), align 8192
  %7 = load volatile i32, i32* inttoptr (i32 1073881088 to i32*), align 8192
  %and7.i.i = and i32 %7, -4
  store volatile i32 %and7.i.i, i32* inttoptr (i32 1073881088 to i32*), align 8192
  %8 = load volatile i32, i32* inttoptr (i32 1073881088 to i32*), align 8192
  %or8.i.i = or i32 %8, 2
  store volatile i32 %or8.i.i, i32* inttoptr (i32 1073881088 to i32*), align 8192
  ret void
}

attributes #0 = { minsize norecurse nounwind optsize readnone uwtable }

define void @foo_pgso() #1 !prof !14 {
entry:
; PGSO-LABEL: @foo_pgso
; PGSO-NOT: [[CONST2:%const_mat[0-9]*]] = add i32 %const, -4
; NPGSO-LABEL: @foo_pgso
; NPGSO: [[CONST2:%const_mat[0-9]*]] = add i32 %const, -4
  %0 = load volatile i32, i32* inttoptr (i32 1073876992 to i32*), align 4096
  %or = or i32 %0, 1
  store volatile i32 %or, i32* inttoptr (i32 1073876992 to i32*), align 4096
  %1 = load volatile i32, i32* inttoptr (i32 1073876996 to i32*), align 4
  %and = and i32 %1, -117506048
  store volatile i32 %and, i32* inttoptr (i32 1073876996 to i32*), align 4
  %2 = load volatile i32, i32* inttoptr (i32 1073876992 to i32*), align 4096
  %and1 = and i32 %2, -17367041
  store volatile i32 %and1, i32* inttoptr (i32 1073876996 to i32*), align 4096
  %3 = load volatile i32, i32* inttoptr (i32 1073876992 to i32*), align 4096
  %and2 = and i32 %3, -262145
  store volatile i32 %and2, i32* inttoptr (i32 1073876992 to i32*), align 4096
  %4 = load volatile i32, i32* inttoptr (i32 1073876996 to i32*), align 4
  %and3 = and i32 %4, -8323073
  store volatile i32 %and3, i32* inttoptr (i32 1073876996 to i32*), align 4
  store volatile i32 10420224, i32* inttoptr (i32 1073877000 to i32*), align 8
  %5 = load volatile i32, i32* inttoptr (i32 1073876996 to i32*), align 4096
  %or4 = or i32 %5, 65536
  store volatile i32 %or4, i32* inttoptr (i32 1073876996 to i32*), align 4096
  %6 = load volatile i32, i32* inttoptr (i32 1073881088 to i32*), align 8192
  %or6.i.i = or i32 %6, 16
  store volatile i32 %or6.i.i, i32* inttoptr (i32 1073881088 to i32*), align 8192
  %7 = load volatile i32, i32* inttoptr (i32 1073881088 to i32*), align 8192
  %and7.i.i = and i32 %7, -4
  store volatile i32 %and7.i.i, i32* inttoptr (i32 1073881088 to i32*), align 8192
  %8 = load volatile i32, i32* inttoptr (i32 1073881088 to i32*), align 8192
  %or8.i.i = or i32 %8, 2
  store volatile i32 %or8.i.i, i32* inttoptr (i32 1073881088 to i32*), align 8192
  ret void
}

attributes #1 = { norecurse nounwind readnone uwtable }  ; no optsize or minsize

!llvm.module.flags = !{!0}
!0 = !{i32 1, !"ProfileSummary", !1}
!1 = !{!2, !3, !4, !5, !6, !7, !8, !9}
!2 = !{!"ProfileFormat", !"InstrProf"}
!3 = !{!"TotalCount", i64 10000}
!4 = !{!"MaxCount", i64 10}
!5 = !{!"MaxInternalCount", i64 1}
!6 = !{!"MaxFunctionCount", i64 1000}
!7 = !{!"NumCounts", i64 3}
!8 = !{!"NumFunctions", i64 3}
!9 = !{!"DetailedSummary", !10}
!10 = !{!11, !12, !13}
!11 = !{i32 10000, i64 100, i32 1}
!12 = !{i32 999000, i64 100, i32 1}
!13 = !{i32 999999, i64 1, i32 2}
!14 = !{!"function_entry_count", i64 0}
OpenPOWER on IntegriCloud