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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
; RUN: opt < %s -cost-model -analyze -mtriple=systemz-unknown -mcpu=z13 \
; RUN: | FileCheck %s -check-prefix=COST
; Check that all divide/remainder instructions are implemented by cheaper instructions.
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 -o - | FileCheck %s
; CHECK-NOT: dsg
; CHECK-NOT: dl
; Check costs of divisions/remainders by a vector of constants that is *not*
; a power of two. A sequence containing a multiply and shifts will replace
; the divide instruction.
; Scalar sdiv
define i64 @fun0(i64 %a) {
%r = sdiv i64 %a, 20
ret i64 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = sdiv i64 %a, 20
}
define i32 @fun1(i32 %a) {
%r = sdiv i32 %a, 20
ret i32 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = sdiv i32 %a, 20
}
define i16 @fun2(i16 %a) {
%r = sdiv i16 %a, 20
ret i16 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = sdiv i16 %a, 20
}
define i8 @fun3(i8 %a) {
%r = sdiv i8 %a, 20
ret i8 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = sdiv i8 %a, 20
}
; Vector sdiv
define <2 x i64> @fun4(<2 x i64> %a) {
%r = sdiv <2 x i64> %a, <i64 20, i64 21>
ret <2 x i64> %r
; COST: Cost Model: Found an estimated cost of 24 for instruction: %r = sdiv <2 x i64>
}
define <4 x i32> @fun5(<4 x i32> %a) {
%r = sdiv <4 x i32> %a, <i32 20, i32 20, i32 20, i32 20>
ret <4 x i32> %r
; COST: Cost Model: Found an estimated cost of 49 for instruction: %r = sdiv <4 x i32>
}
define <2 x i32> @fun6(<2 x i32> %a) {
%r = sdiv <2 x i32> %a, <i32 20, i32 21>
ret <2 x i32> %r
; COST: Cost Model: Found an estimated cost of 25 for instruction: %r = sdiv <2 x i32>
}
define <8 x i16> @fun7(<8 x i16> %a) {
%r = sdiv <8 x i16> %a, <i16 20, i16 20, i16 20, i16 20, i16 20, i16 20, i16 20, i16 20>
ret <8 x i16> %r
; COST: Cost Model: Found an estimated cost of 97 for instruction: %r = sdiv <8 x i16>
}
define <4 x i16> @fun8(<4 x i16> %a) {
%r = sdiv <4 x i16> %a, <i16 20, i16 20, i16 20, i16 21>
ret <4 x i16> %r
; COST: Cost Model: Found an estimated cost of 49 for instruction: %r = sdiv <4 x i16>
}
define <16 x i8> @fun9(<16 x i8> %a) {
%r = sdiv <16 x i8> %a, <i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20>
ret <16 x i8> %r
; COST: Cost Model: Found an estimated cost of 193 for instruction: %r = sdiv <16 x i8>
}
define <8 x i8> @fun10(<8 x i8> %a) {
%r = sdiv <8 x i8> %a, <i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 21>
ret <8 x i8> %r
; COST: Cost Model: Found an estimated cost of 97 for instruction: %r = sdiv <8 x i8>
}
; Scalar udiv
define i64 @fun11(i64 %a) {
%r = udiv i64 %a, 20
ret i64 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = udiv i64 %a, 20
}
define i32 @fun12(i32 %a) {
%r = udiv i32 %a, 20
ret i32 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = udiv i32 %a, 20
}
define i16 @fun13(i16 %a) {
%r = udiv i16 %a, 20
ret i16 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = udiv i16 %a, 20
}
define i8 @fun14(i8 %a) {
%r = udiv i8 %a, 20
ret i8 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = udiv i8
}
; Vector udiv
define <2 x i64> @fun15(<2 x i64> %a) {
%r = udiv <2 x i64> %a, <i64 20, i64 20>
ret <2 x i64> %r
; COST: Cost Model: Found an estimated cost of 24 for instruction: %r = udiv <2 x i64>
}
define <4 x i32> @fun16(<4 x i32> %a) {
%r = udiv <4 x i32> %a, <i32 20, i32 20, i32 20, i32 21>
ret <4 x i32> %r
; COST: Cost Model: Found an estimated cost of 49 for instruction: %r = udiv <4 x i32>
}
define <2 x i32> @fun17(<2 x i32> %a) {
%r = udiv <2 x i32> %a, <i32 20, i32 20>
ret <2 x i32> %r
; COST: Cost Model: Found an estimated cost of 25 for instruction: %r = udiv <2 x i32>
}
define <8 x i16> @fun18(<8 x i16> %a) {
%r = udiv <8 x i16> %a, <i16 20, i16 20, i16 20, i16 20, i16 20, i16 20, i16 20, i16 21>
ret <8 x i16> %r
; COST: Cost Model: Found an estimated cost of 97 for instruction: %r = udiv <8 x i16>
}
define <4 x i16> @fun19(<4 x i16> %a) {
%r = udiv <4 x i16> %a, <i16 20, i16 20, i16 20, i16 20>
ret <4 x i16> %r
; COST: Cost Model: Found an estimated cost of 49 for instruction: %r = udiv <4 x i16>
}
define <16 x i8> @fun20(<16 x i8> %a) {
%r = udiv <16 x i8> %a, <i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 21>
ret <16 x i8> %r
; COST: Cost Model: Found an estimated cost of 193 for instruction: %r = udiv <16 x i8>
}
define <8 x i8> @fun21(<8 x i8> %a) {
%r = udiv <8 x i8> %a, <i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20>
ret <8 x i8> %r
; COST: Cost Model: Found an estimated cost of 97 for instruction: %r = udiv <8 x i8>
}
; Scalar srem
define i64 @fun22(i64 %a) {
%r = srem i64 %a, 20
ret i64 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = srem i64
}
define i32 @fun23(i32 %a) {
%r = srem i32 %a, 20
ret i32 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = srem i32
}
define i16 @fun24(i16 %a) {
%r = srem i16 %a, 20
ret i16 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = srem i16
}
define i8 @fun25(i8 %a) {
%r = srem i8 %a, 20
ret i8 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = srem i8
}
; Vector srem
define <2 x i64> @fun26(<2 x i64> %a) {
%r = srem <2 x i64> %a, <i64 20, i64 21>
ret <2 x i64> %r
; COST: Cost Model: Found an estimated cost of 24 for instruction: %r = srem <2 x i64>
}
define <4 x i32> @fun27(<4 x i32> %a) {
%r = srem <4 x i32> %a, <i32 20, i32 20, i32 20, i32 20>
ret <4 x i32> %r
; COST: Cost Model: Found an estimated cost of 49 for instruction: %r = srem <4 x i32>
}
define <2 x i32> @fun28(<2 x i32> %a) {
%r = srem <2 x i32> %a, <i32 20, i32 21>
ret <2 x i32> %r
; COST: Cost Model: Found an estimated cost of 25 for instruction: %r = srem <2 x i32>
}
define <8 x i16> @fun29(<8 x i16> %a) {
%r = srem <8 x i16> %a, <i16 20, i16 20, i16 20, i16 20, i16 20, i16 20, i16 20, i16 20>
ret <8 x i16> %r
; COST: Cost Model: Found an estimated cost of 97 for instruction: %r = srem <8 x i16>
}
define <4 x i16> @fun30(<4 x i16> %a) {
%r = srem <4 x i16> %a, <i16 20, i16 20, i16 20, i16 21>
ret <4 x i16> %r
; COST: Cost Model: Found an estimated cost of 49 for instruction: %r = srem <4 x i16>
}
define <16 x i8> @fun31(<16 x i8> %a) {
%r = srem <16 x i8> %a, <i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20>
ret <16 x i8> %r
; COST: Cost Model: Found an estimated cost of 193 for instruction: %r = srem <16 x i8>
}
define <8 x i8> @fun32(<8 x i8> %a) {
%r = srem <8 x i8> %a, <i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 21>
ret <8 x i8> %r
; COST: Cost Model: Found an estimated cost of 97 for instruction: %r = srem <8 x i8>
}
; Scalar urem
define i64 @fun33(i64 %a) {
%r = urem i64 %a, 20
ret i64 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = urem i64
}
define i32 @fun34(i32 %a) {
%r = urem i32 %a, 20
ret i32 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = urem i32
}
define i16 @fun35(i16 %a) {
%r = urem i16 %a, 20
ret i16 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = urem i16
}
define i8 @fun36(i8 %a) {
%r = urem i8 %a, 20
ret i8 %r
; COST: Cost Model: Found an estimated cost of 10 for instruction: %r = urem i8
}
; Vector urem
define <2 x i64> @fun37(<2 x i64> %a) {
%r = urem <2 x i64> %a, <i64 20, i64 20>
ret <2 x i64> %r
; COST: Cost Model: Found an estimated cost of 24 for instruction: %r = urem <2 x i64>
}
define <4 x i32> @fun38(<4 x i32> %a) {
%r = urem <4 x i32> %a, <i32 20, i32 20, i32 20, i32 21>
ret <4 x i32> %r
; COST: Cost Model: Found an estimated cost of 49 for instruction: %r = urem <4 x i32>
}
define <2 x i32> @fun39(<2 x i32> %a) {
%r = urem <2 x i32> %a, <i32 20, i32 20>
ret <2 x i32> %r
; COST: Cost Model: Found an estimated cost of 25 for instruction: %r = urem <2 x i32>
}
define <8 x i16> @fun40(<8 x i16> %a) {
%r = urem <8 x i16> %a, <i16 20, i16 20, i16 20, i16 20, i16 20, i16 20, i16 20, i16 21>
ret <8 x i16> %r
; COST: Cost Model: Found an estimated cost of 97 for instruction: %r = urem <8 x i16>
}
define <4 x i16> @fun41(<4 x i16> %a) {
%r = urem <4 x i16> %a, <i16 20, i16 20, i16 20, i16 20>
ret <4 x i16> %r
; COST: Cost Model: Found an estimated cost of 49 for instruction: %r = urem <4 x i16>
}
define <16 x i8> @fun42(<16 x i8> %a) {
%r = urem <16 x i8> %a, <i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 21>
ret <16 x i8> %r
; COST: Cost Model: Found an estimated cost of 193 for instruction: %r = urem <16 x i8>
}
define <8 x i8> @fun43(<8 x i8> %a) {
%r = urem <8 x i8> %a, <i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20, i8 20>
ret <8 x i8> %r
; COST: Cost Model: Found an estimated cost of 97 for instruction: %r = urem <8 x i8>
}
|