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
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -passes=instcombine -S -o - %s | FileCheck %s
; Tests if an integer type can cover the entire range of an input
; FP value. If so, we can remove an intermediate cast to a smaller
; int type (remove a truncate).
define i16 @half_fptoui_i17_i16(half %x) {
; CHECK-LABEL: @half_fptoui_i17_i16(
; CHECK-NEXT: [[I:%.*]] = fptoui half [[X:%.*]] to i16
; CHECK-NEXT: ret i16 [[I]]
;
%i = fptoui half %x to i17
%r = trunc i17 %i to i16
ret i16 %r
}
; Negative test - not enough bits to hold max half value (65504).
define i15 @half_fptoui_i17_i15(half %x) {
; CHECK-LABEL: @half_fptoui_i17_i15(
; CHECK-NEXT: [[I:%.*]] = fptoui half [[X:%.*]] to i17
; CHECK-NEXT: [[R:%.*]] = trunc i17 [[I]] to i15
; CHECK-NEXT: ret i15 [[R]]
;
%i = fptoui half %x to i17
%r = trunc i17 %i to i15
ret i15 %r
}
; Wider intermediate type is ok.
define i16 @half_fptoui_i32_i16(half %x) {
; CHECK-LABEL: @half_fptoui_i32_i16(
; CHECK-NEXT: [[I:%.*]] = fptoui half [[X:%.*]] to i16
; CHECK-NEXT: ret i16 [[I]]
;
%i = fptoui half %x to i32
%r = trunc i32 %i to i16
ret i16 %r
}
; Wider final type is ok.
; TODO: Handle non-simple result type.
define i17 @half_fptoui_i32_i17(half %x) {
; CHECK-LABEL: @half_fptoui_i32_i17(
; CHECK-NEXT: [[I:%.*]] = fptoui half [[X:%.*]] to i32
; CHECK-NEXT: [[R:%.*]] = trunc i32 [[I]] to i17
; CHECK-NEXT: ret i17 [[R]]
;
%i = fptoui half %x to i32
%r = trunc i32 %i to i17
ret i17 %r
}
; Vectors work too.
define <4 x i16> @half_fptoui_4xi32_4xi16(<4 x half> %x) {
; CHECK-LABEL: @half_fptoui_4xi32_4xi16(
; CHECK-NEXT: [[I:%.*]] = fptoui <4 x half> [[X:%.*]] to <4 x i16>
; CHECK-NEXT: ret <4 x i16> [[I]]
;
%i = fptoui <4 x half> %x to <4 x i32>
%r = trunc <4 x i32> %i to <4 x i16>
ret <4 x i16> %r
}
define i128 @bfloat_fptoui_i129_i128(bfloat %x) {
; CHECK-LABEL: @bfloat_fptoui_i129_i128(
; CHECK-NEXT: [[I:%.*]] = fptoui bfloat [[X:%.*]] to i128
; CHECK-NEXT: ret i128 [[I]]
;
%i = fptoui bfloat %x to i129
%r = trunc i129 %i to i128
ret i128 %r
}
; Negative test - not enough bits to hold max bfloat value (2**127 * (2 − 2**−7))
define i127 @bfloat_fptoui_i128_i127(bfloat %x) {
; CHECK-LABEL: @bfloat_fptoui_i128_i127(
; CHECK-NEXT: [[I:%.*]] = fptoui bfloat [[X:%.*]] to i128
; CHECK-NEXT: [[R:%.*]] = trunc i128 [[I]] to i127
; CHECK-NEXT: ret i127 [[R]]
;
%i = fptoui bfloat %x to i128
%r = trunc i128 %i to i127
ret i127 %r
}
define i128 @float_fptoui_i129_i128(float %x) {
; CHECK-LABEL: @float_fptoui_i129_i128(
; CHECK-NEXT: [[I:%.*]] = fptoui float [[X:%.*]] to i128
; CHECK-NEXT: ret i128 [[I]]
;
%i = fptoui float %x to i129
%r = trunc i129 %i to i128
ret i128 %r
}
; TODO: We could transform with multiple users.
declare void @use(i129)
define i128 @float_fptoui_i129_i128_use(float %x) {
; CHECK-LABEL: @float_fptoui_i129_i128_use(
; CHECK-NEXT: [[I:%.*]] = fptoui float [[X:%.*]] to i129
; CHECK-NEXT: call void @use(i129 [[I]])
; CHECK-NEXT: [[R:%.*]] = trunc i129 [[I]] to i128
; CHECK-NEXT: ret i128 [[R]]
;
%i = fptoui float %x to i129
call void @use(i129 %i)
%r = trunc i129 %i to i128
ret i128 %r
}
; Negative test - not enough bits to hold max float value (2**127 * (2 − 2**−23))
define i127 @float_fptoui_i128_i127(float %x) {
; CHECK-LABEL: @float_fptoui_i128_i127(
; CHECK-NEXT: [[I:%.*]] = fptoui float [[X:%.*]] to i128
; CHECK-NEXT: [[R:%.*]] = trunc i128 [[I]] to i127
; CHECK-NEXT: ret i127 [[R]]
;
%i = fptoui float %x to i128
%r = trunc i128 %i to i127
ret i127 %r
}
define i1024 @double_fptoui_i1025_i1024(double %x) {
; CHECK-LABEL: @double_fptoui_i1025_i1024(
; CHECK-NEXT: [[I:%.*]] = fptoui double [[X:%.*]] to i1024
; CHECK-NEXT: ret i1024 [[I]]
;
%i = fptoui double %x to i1025
%r = trunc i1025 %i to i1024
ret i1024 %r
}
; Negative test - not enough bits to hold max double value (2**1023 * (2 − 2**−52))
define i1023 @double_fptoui_i1024_i1023(double %x) {
; CHECK-LABEL: @double_fptoui_i1024_i1023(
; CHECK-NEXT: [[I:%.*]] = fptoui double [[X:%.*]] to i1024
; CHECK-NEXT: [[R:%.*]] = trunc i1024 [[I]] to i1023
; CHECK-NEXT: ret i1023 [[R]]
;
%i = fptoui double %x to i1024
%r = trunc i1024 %i to i1023
ret i1023 %r
}
; Negative test - not enough bits to hold min half value (-65504).
define i16 @half_fptosi_i17_i16(half %x) {
; CHECK-LABEL: @half_fptosi_i17_i16(
; CHECK-NEXT: [[I:%.*]] = fptosi half [[X:%.*]] to i17
; CHECK-NEXT: [[R:%.*]] = trunc i17 [[I]] to i16
; CHECK-NEXT: ret i16 [[R]]
;
%i = fptosi half %x to i17
%r = trunc i17 %i to i16
ret i16 %r
}
define i17 @half_fptosi_i18_i17(half %x) {
; CHECK-LABEL: @half_fptosi_i18_i17(
; CHECK-NEXT: [[I:%.*]] = fptosi half [[X:%.*]] to i17
; CHECK-NEXT: ret i17 [[I]]
;
%i = fptosi half %x to i18
%r = trunc i18 %i to i17
ret i17 %r
}
; Wider intermediate type is ok.
; TODO: Handle non-simple result type.
define i17 @half_fptosi_i32_i17(half %x) {
; CHECK-LABEL: @half_fptosi_i32_i17(
; CHECK-NEXT: [[I:%.*]] = fptosi half [[X:%.*]] to i32
; CHECK-NEXT: [[R:%.*]] = trunc i32 [[I]] to i17
; CHECK-NEXT: ret i17 [[R]]
;
%i = fptosi half %x to i32
%r = trunc i32 %i to i17
ret i17 %r
}
; Wider final type is ok.
; TODO: Handle non-simple result type.
define i18 @half_fptosi_i32_i18(half %x) {
; CHECK-LABEL: @half_fptosi_i32_i18(
; CHECK-NEXT: [[I:%.*]] = fptosi half [[X:%.*]] to i32
; CHECK-NEXT: [[R:%.*]] = trunc i32 [[I]] to i18
; CHECK-NEXT: ret i18 [[R]]
;
%i = fptosi half %x to i32
%r = trunc i32 %i to i18
ret i18 %r
}
; Vectors work too.
define <4 x i17> @half_fptosi_4xi32_4xi17(<4 x half> %x) {
; CHECK-LABEL: @half_fptosi_4xi32_4xi17(
; CHECK-NEXT: [[I:%.*]] = fptosi <4 x half> [[X:%.*]] to <4 x i17>
; CHECK-NEXT: ret <4 x i17> [[I]]
;
%i = fptosi <4 x half> %x to <4 x i32>
%r = trunc <4 x i32> %i to <4 x i17>
ret <4 x i17> %r
}
; Negative test - not enough bits to hold min float value.
define i128 @bfloat_fptosi_i129_i128(bfloat %x) {
; CHECK-LABEL: @bfloat_fptosi_i129_i128(
; CHECK-NEXT: [[I:%.*]] = fptosi bfloat [[X:%.*]] to i129
; CHECK-NEXT: [[R:%.*]] = trunc i129 [[I]] to i128
; CHECK-NEXT: ret i128 [[R]]
;
%i = fptosi bfloat %x to i129
%r = trunc i129 %i to i128
ret i128 %r
}
define i129 @bfloat_fptosi_i130_i129(bfloat %x) {
; CHECK-LABEL: @bfloat_fptosi_i130_i129(
; CHECK-NEXT: [[I:%.*]] = fptosi bfloat [[X:%.*]] to i129
; CHECK-NEXT: ret i129 [[I]]
;
%i = fptosi bfloat %x to i130
%r = trunc i130 %i to i129
ret i129 %r
}
define i129 @float_fptosi_i130_i129(float %x) {
; CHECK-LABEL: @float_fptosi_i130_i129(
; CHECK-NEXT: [[I:%.*]] = fptosi float [[X:%.*]] to i129
; CHECK-NEXT: ret i129 [[I]]
;
%i = fptosi float %x to i130
%r = trunc i130 %i to i129
ret i129 %r
}
; Negative test - not enough bits to hold min float value.
define i128 @float_fptosi_i129_i128(float %x) {
; CHECK-LABEL: @float_fptosi_i129_i128(
; CHECK-NEXT: [[I:%.*]] = fptosi float [[X:%.*]] to i129
; CHECK-NEXT: [[R:%.*]] = trunc i129 [[I]] to i128
; CHECK-NEXT: ret i128 [[R]]
;
%i = fptosi float %x to i129
%r = trunc i129 %i to i128
ret i128 %r
}
define i1025 @double_fptosi_i1026_i1025(double %x) {
; CHECK-LABEL: @double_fptosi_i1026_i1025(
; CHECK-NEXT: [[I:%.*]] = fptosi double [[X:%.*]] to i1025
; CHECK-NEXT: ret i1025 [[I]]
;
%i = fptosi double %x to i1026
%r = trunc i1026 %i to i1025
ret i1025 %r
}
; Negative test - not enough bits to hold min double value.
define i1024 @double_fptosi_i1025_i1024(double %x) {
; CHECK-LABEL: @double_fptosi_i1025_i1024(
; CHECK-NEXT: [[I:%.*]] = fptosi double [[X:%.*]] to i1025
; CHECK-NEXT: [[R:%.*]] = trunc i1025 [[I]] to i1024
; CHECK-NEXT: ret i1024 [[R]]
;
%i = fptosi double %x to i1025
%r = trunc i1025 %i to i1024
ret i1024 %r
}
|