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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; Verify that calls to memchr with arrays of elements larger than char
; are folded correctly.
; RUN: opt < %s -passes=instcombine -S -data-layout="E" | FileCheck %s --check-prefixes=CHECK,BE-CHECK
; RUN: opt < %s -passes=instcombine -S -data-layout="e" | FileCheck %s --check-prefixes=CHECK,LE-CHECK
;
; Exercise folding of memchr calls with addition expressions involving
; pointers into constant arrays of types larger than char and fractional
; offsets.
declare i8* @memchr(i8*, i32, i64)
%struct.A = type { [2 x i16], [2 x i16] }
; Hex byte representation: 00 00 01 01 02 02 03 03
@a = constant [1 x %struct.A] [%struct.A { [2 x i16] [i16 0, i16 257], [2 x i16] [i16 514, i16 771] }]
define void @fold_memchr_A_pIb_cst_cst(i8** %pchr) {
; CHECK-LABEL: @fold_memchr_A_pIb_cst_cst(
; CHECK-NEXT: store i8* bitcast ([1 x %struct.A]* @a to i8*), i8** [[PCHR:%.*]], align 8
; CHECK-NEXT: [[PST_0_1_1:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 1
; CHECK-NEXT: store i8* null, i8** [[PST_0_1_1]], align 8
; CHECK-NEXT: [[PST_0_4_4:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 2
; CHECK-NEXT: store i8* null, i8** [[PST_0_4_4]], align 8
; CHECK-NEXT: [[PST_1_0_1:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 3
; CHECK-NEXT: store i8* getelementptr (i8, i8* bitcast ([1 x %struct.A]* @a to i8*), i64 1), i8** [[PST_1_0_1]], align 8
; CHECK-NEXT: [[PST_1_0_3:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 4
; CHECK-NEXT: store i8* getelementptr (i8, i8* bitcast ([1 x %struct.A]* @a to i8*), i64 1), i8** [[PST_1_0_3]], align 8
; CHECK-NEXT: [[PST_1_1_1:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 5
; CHECK-NEXT: store i8* null, i8** [[PST_1_1_1]], align 8
; CHECK-NEXT: [[PST_1_1_2:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 6
; CHECK-NEXT: store i8* bitcast (i16* getelementptr inbounds ([1 x %struct.A], [1 x %struct.A]* @a, i64 0, i64 0, i32 0, i64 1) to i8*), i8** [[PST_1_1_2]], align 8
; CHECK-NEXT: [[PST_1_3_3:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 7
; CHECK-NEXT: store i8* null, i8** [[PST_1_3_3]], align 8
; CHECK-NEXT: [[PST_1_3_4:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 8
; CHECK-NEXT: store i8* null, i8** [[PST_1_3_4]], align 8
; CHECK-NEXT: [[PST_1_3_6:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 10
; CHECK-NEXT: store i8* bitcast (i16* getelementptr inbounds ([1 x %struct.A], [1 x %struct.A]* @a, i64 0, i64 0, i32 1, i64 1) to i8*), i8** [[PST_1_3_6]], align 8
; CHECK-NEXT: ret void
;
%pa = getelementptr [1 x %struct.A], [1 x %struct.A]* @a, i64 0, i64 0
%pi8a = bitcast %struct.A* %pa to i8*
%pi8ap0 = getelementptr i8, i8* %pi8a, i32 0
; Fold memchr((char*)a + 0, '\0', 1) to a.
%pst_0_0_1 = getelementptr i8*, i8** %pchr, i32 0
%chr_0_0_1 = call i8* @memchr(i8* %pi8ap0, i32 0, i64 1)
store i8* %chr_0_0_1, i8** %pst_0_0_1
; Fold memchr((char*)a + 0, '\01', 1) to null.
%pst_0_1_1 = getelementptr i8*, i8** %pchr, i32 1
%chr_0_1_1 = call i8* @memchr(i8* %pi8ap0, i32 1, i64 1)
store i8* %chr_0_1_1, i8** %pst_0_1_1
; Fold memchr((char*)a + 0, '\04', 4) to null.
%pst_0_4_4 = getelementptr i8*, i8** %pchr, i32 2
%chr_0_4_4 = call i8* @memchr(i8* %pi8ap0, i32 4, i64 4)
store i8* %chr_0_4_4, i8** %pst_0_4_4
%pi8ap1 = getelementptr i8, i8* %pi8a, i32 1
; Fold memchr((char*)a + 1, '\0', 1) to (char*)a + 1.
%pst_1_0_1 = getelementptr i8*, i8** %pchr, i32 3
%chr_1_0_1 = call i8* @memchr(i8* %pi8ap1, i32 0, i64 1)
store i8* %chr_1_0_1, i8** %pst_1_0_1
; Fold memchr((char*)a + 1, '\0', 3) to (char*)a + 1.
%pst_1_0_3 = getelementptr i8*, i8** %pchr, i32 4
%chr_1_0_3 = call i8* @memchr(i8* %pi8ap1, i32 0, i64 3)
store i8* %chr_1_0_3, i8** %pst_1_0_3
; Fold memchr((char*)a + 1, '\01', 1) to null.
%pst_1_1_1 = getelementptr i8*, i8** %pchr, i32 5
%chr_1_1_1 = call i8* @memchr(i8* %pi8ap1, i32 1, i64 1)
store i8* %chr_1_1_1, i8** %pst_1_1_1
; Fold memchr((char*)a + 1, '\01', 2) to (char*)a + 2.
%pst_1_1_2 = getelementptr i8*, i8** %pchr, i32 6
%chr_1_1_2 = call i8* @memchr(i8* %pi8ap1, i32 1, i64 2)
store i8* %chr_1_1_2, i8** %pst_1_1_2
; Fold memchr((char*)a + 1, '\03', 3) to null.
%pst_1_3_3 = getelementptr i8*, i8** %pchr, i32 7
%chr_1_3_3 = call i8* @memchr(i8* %pi8ap1, i32 3, i64 3)
store i8* %chr_1_3_3, i8** %pst_1_3_3
; Fold memchr((char*)a + 1, '\03', 4) to null.
%pst_1_3_4 = getelementptr i8*, i8** %pchr, i32 8
%chr_1_3_4 = call i8* @memchr(i8* %pi8ap1, i32 3, i64 4)
store i8* %chr_1_3_4, i8** %pst_1_3_4
; Fold memchr((char*)a + 1, '\03', 5) to null.
%pst_1_3_5 = getelementptr i8*, i8** %pchr, i32 9
%chr_1_3_5 = call i8* @memchr(i8* %pi8ap1, i32 3, i64 5)
store i8* %chr_1_3_4, i8** %pst_1_3_4
; Fold memchr((char*)a + 1, '\03', 6) to (char*)a + 5.
%pst_1_3_6 = getelementptr i8*, i8** %pchr, i32 10
%chr_1_3_6 = call i8* @memchr(i8* %pi8ap1, i32 3, i64 6)
store i8* %chr_1_3_6, i8** %pst_1_3_6
ret void
}
define void @fold_memchr_A_pIb_cst_N(i64 %N, i8** %pchr) {
; CHECK-LABEL: @fold_memchr_A_pIb_cst_N(
; CHECK-NEXT: [[MEMCHR_CMP:%.*]] = icmp eq i64 [[N:%.*]], 0
; CHECK-NEXT: [[TMP1:%.*]] = select i1 [[MEMCHR_CMP]], i8* null, i8* bitcast ([1 x %struct.A]* @a to i8*)
; CHECK-NEXT: store i8* [[TMP1]], i8** [[PCHR:%.*]], align 8
; CHECK-NEXT: [[PST_0_1_N:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 1
; CHECK-NEXT: [[MEMCHR_CMP1:%.*]] = icmp ult i64 [[N]], 3
; CHECK-NEXT: [[TMP2:%.*]] = select i1 [[MEMCHR_CMP1]], i8* null, i8* bitcast (i16* getelementptr inbounds ([1 x %struct.A], [1 x %struct.A]* @a, i64 0, i64 0, i32 0, i64 1) to i8*)
; CHECK-NEXT: store i8* [[TMP2]], i8** [[PST_0_1_N]], align 8
; CHECK-NEXT: [[PST_0_4_N:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 2
; CHECK-NEXT: store i8* null, i8** [[PST_0_4_N]], align 8
; CHECK-NEXT: [[PST_1_0_N:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 3
; CHECK-NEXT: [[MEMCHR_CMP2:%.*]] = icmp eq i64 [[N]], 0
; CHECK-NEXT: [[TMP3:%.*]] = select i1 [[MEMCHR_CMP2]], i8* null, i8* getelementptr (i8, i8* bitcast ([1 x %struct.A]* @a to i8*), i64 1)
; CHECK-NEXT: store i8* [[TMP3]], i8** [[PST_1_0_N]], align 8
; CHECK-NEXT: [[PST_1_1_N:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 4
; CHECK-NEXT: [[MEMCHR_CMP3:%.*]] = icmp ult i64 [[N]], 2
; CHECK-NEXT: [[TMP4:%.*]] = select i1 [[MEMCHR_CMP3]], i8* null, i8* bitcast (i16* getelementptr inbounds ([1 x %struct.A], [1 x %struct.A]* @a, i64 0, i64 0, i32 0, i64 1) to i8*)
; CHECK-NEXT: store i8* [[TMP4]], i8** [[PST_1_1_N]], align 8
; CHECK-NEXT: [[PST_1_2_N:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 5
; CHECK-NEXT: [[MEMCHR_CMP4:%.*]] = icmp ult i64 [[N]], 4
; CHECK-NEXT: [[TMP5:%.*]] = select i1 [[MEMCHR_CMP4]], i8* null, i8* bitcast (i16* getelementptr inbounds ([1 x %struct.A], [1 x %struct.A]* @a, i64 0, i64 0, i32 1, i64 0) to i8*)
; CHECK-NEXT: store i8* [[TMP5]], i8** [[PST_1_2_N]], align 8
; CHECK-NEXT: [[PST_1_3_N:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 6
; CHECK-NEXT: [[MEMCHR_CMP5:%.*]] = icmp ult i64 [[N]], 6
; CHECK-NEXT: [[TMP6:%.*]] = select i1 [[MEMCHR_CMP5]], i8* null, i8* bitcast (i16* getelementptr inbounds ([1 x %struct.A], [1 x %struct.A]* @a, i64 0, i64 0, i32 1, i64 1) to i8*)
; CHECK-NEXT: store i8* [[TMP6]], i8** [[PST_1_3_N]], align 8
; CHECK-NEXT: [[PST_1_4_N:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 7
; CHECK-NEXT: store i8* null, i8** [[PST_1_4_N]], align 8
; CHECK-NEXT: [[PST_2_0_N:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 8
; CHECK-NEXT: store i8* null, i8** [[PST_2_0_N]], align 8
; CHECK-NEXT: [[PST_2_1_N:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 9
; CHECK-NEXT: [[MEMCHR_CMP6:%.*]] = icmp eq i64 [[N]], 0
; CHECK-NEXT: [[TMP7:%.*]] = select i1 [[MEMCHR_CMP6]], i8* null, i8* bitcast (i16* getelementptr inbounds ([1 x %struct.A], [1 x %struct.A]* @a, i64 0, i64 0, i32 0, i64 1) to i8*)
; CHECK-NEXT: store i8* [[TMP7]], i8** [[PST_2_1_N]], align 8
; CHECK-NEXT: [[PST_2_2_N:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 10
; CHECK-NEXT: [[MEMCHR_CMP7:%.*]] = icmp ult i64 [[N]], 3
; CHECK-NEXT: [[TMP8:%.*]] = select i1 [[MEMCHR_CMP7]], i8* null, i8* bitcast (i16* getelementptr inbounds ([1 x %struct.A], [1 x %struct.A]* @a, i64 0, i64 0, i32 1, i64 0) to i8*)
; CHECK-NEXT: store i8* [[TMP8]], i8** [[PST_2_2_N]], align 8
; CHECK-NEXT: [[PST_2_3_N:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 11
; CHECK-NEXT: [[MEMCHR_CMP8:%.*]] = icmp ult i64 [[N]], 5
; CHECK-NEXT: [[TMP9:%.*]] = select i1 [[MEMCHR_CMP8]], i8* null, i8* bitcast (i16* getelementptr inbounds ([1 x %struct.A], [1 x %struct.A]* @a, i64 0, i64 0, i32 1, i64 1) to i8*)
; CHECK-NEXT: store i8* [[TMP9]], i8** [[PST_2_3_N]], align 8
; CHECK-NEXT: [[PST_2_4_N:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 12
; CHECK-NEXT: store i8* null, i8** [[PST_2_4_N]], align 8
; CHECK-NEXT: ret void
;
%pa = getelementptr [1 x %struct.A], [1 x %struct.A]* @a, i64 0, i64 0
%pi8a = bitcast %struct.A* %pa to i8*
%pi8ap0 = getelementptr i8, i8* %pi8a, i32 0
; Fold memchr((char*)a + 0, '\0', N) to N ? a : null.
%pst_0_0_n = getelementptr i8*, i8** %pchr, i32 0
%chr_0_0_n = call i8* @memchr(i8* %pi8ap0, i32 0, i64 %N)
store i8* %chr_0_0_n, i8** %pst_0_0_n
; Fold memchr((char*)a + 0, '\01', N) to N < 2 ? null : a.
%pst_0_1_n = getelementptr i8*, i8** %pchr, i32 1
%chr_0_1_n = call i8* @memchr(i8* %pi8ap0, i32 1, i64 %N)
store i8* %chr_0_1_n, i8** %pst_0_1_n
; Fold memchr((char*)a + 0, '\04', N) to null.
%pst_0_4_n = getelementptr i8*, i8** %pchr, i32 2
%chr_0_4_n = call i8* @memchr(i8* %pi8ap0, i32 4, i64 %N)
store i8* %chr_0_4_n, i8** %pst_0_4_n
%pi8ap1 = getelementptr i8, i8* %pi8a, i32 1
; Fold memchr((char*)a + 1, '\0', N) to null.
%pst_1_0_n = getelementptr i8*, i8** %pchr, i32 3
%chr_1_0_n = call i8* @memchr(i8* %pi8ap1, i32 0, i64 %N)
store i8* %chr_1_0_n, i8** %pst_1_0_n
; Fold memchr((char*)a + 1, '\01', N) N ? (char*)a + 1 : null.
%pst_1_1_n = getelementptr i8*, i8** %pchr, i32 4
%chr_1_1_n = call i8* @memchr(i8* %pi8ap1, i32 1, i64 %N)
store i8* %chr_1_1_n, i8** %pst_1_1_n
; Fold memchr((char*)a + 1, '\02', N) to N < 2 ? null : (char*)a + 4.
%pst_1_2_n = getelementptr i8*, i8** %pchr, i32 5
%chr_1_2_n = call i8* @memchr(i8* %pi8ap1, i32 2, i64 %N)
store i8* %chr_1_2_n, i8** %pst_1_2_n
; Fold memchr((char*)a + 1, '\03', N) to N < 6 ? null : (char*)a + 6.
%pst_1_3_n = getelementptr i8*, i8** %pchr, i32 6
%chr_1_3_n = call i8* @memchr(i8* %pi8ap1, i32 3, i64 %N)
store i8* %chr_1_3_n, i8** %pst_1_3_n
; Fold memchr((char*)a + 1, '\04', N) to null.
%pst_1_4_n = getelementptr i8*, i8** %pchr, i32 7
%chr_1_4_n = call i8* @memchr(i8* %pi8ap1, i32 4, i64 %N)
store i8* %chr_1_4_n, i8** %pst_1_4_n
%pi8ap2 = getelementptr i8, i8* %pi8a, i32 2
; Fold memchr((char*)a + 2, '\0', N) to null.
%pst_2_0_n = getelementptr i8*, i8** %pchr, i32 8
%chr_2_0_n = call i8* @memchr(i8* %pi8ap2, i32 0, i64 %N)
store i8* %chr_2_0_n, i8** %pst_2_0_n
; Fold memchr((char*)a + 2, '\01', N) N ? (char*)a + 2 : null.
%pst_2_1_n = getelementptr i8*, i8** %pchr, i32 9
%chr_2_1_n = call i8* @memchr(i8* %pi8ap2, i32 1, i64 %N)
store i8* %chr_2_1_n, i8** %pst_2_1_n
; Fold memchr((char*)a + 2, '\02', N) to N < 3 ? null : (char*)a + 2.
%pst_2_2_n = getelementptr i8*, i8** %pchr, i32 10
%chr_2_2_n = call i8* @memchr(i8* %pi8ap2, i32 2, i64 %N)
store i8* %chr_2_2_n, i8** %pst_2_2_n
; Fold memchr((char*)a + 2, '\03', N) to N < 5 ? null : (char*)a + 4.
%pst_2_3_n = getelementptr i8*, i8** %pchr, i32 11
%chr_2_3_n = call i8* @memchr(i8* %pi8ap2, i32 3, i64 %N)
store i8* %chr_2_3_n, i8** %pst_2_3_n
; Fold memchr((char*)a + 2, '\04', N) to null.
%pst_2_4_n = getelementptr i8*, i8** %pchr, i32 12
%chr_2_4_n = call i8* @memchr(i8* %pi8ap2, i32 4, i64 %N)
store i8* %chr_2_4_n, i8** %pst_2_4_n
ret void
}
; Verify that calls with out of bounds offsets are not folded.
define void @call_memchr_A_pIb_xs_cst(i8** %pchr) {
; CHECK-LABEL: @call_memchr_A_pIb_xs_cst(
; CHECK-NEXT: [[CHR_1_0_0_2:%.*]] = call i8* @memchr(i8* noundef nonnull dereferenceable(1) bitcast (%struct.A* getelementptr inbounds ([1 x %struct.A], [1 x %struct.A]* @a, i64 1, i64 0) to i8*), i32 0, i64 2)
; CHECK-NEXT: store i8* [[CHR_1_0_0_2]], i8** [[PCHR:%.*]], align 8
; CHECK-NEXT: [[PST_1_0_1_2:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 1
; CHECK-NEXT: [[CHR_1_0_1_2:%.*]] = call i8* @memchr(i8* noundef nonnull dereferenceable(1) bitcast (%struct.A* getelementptr inbounds ([1 x %struct.A], [1 x %struct.A]* @a, i64 1, i64 0) to i8*), i32 0, i64 2)
; CHECK-NEXT: store i8* [[CHR_1_0_1_2]], i8** [[PST_1_0_1_2]], align 8
; CHECK-NEXT: [[PST_0_0_8_2:%.*]] = getelementptr i8*, i8** [[PCHR]], i64 2
; CHECK-NEXT: [[CHR_0_0_8_2:%.*]] = call i8* @memchr(i8* noundef nonnull dereferenceable(1) bitcast (i16* getelementptr inbounds ([1 x %struct.A], [1 x %struct.A]* @a, i64 1, i64 0, i32 0, i64 0) to i8*), i32 0, i64 2)
; CHECK-NEXT: store i8* [[CHR_0_0_8_2]], i8** [[PST_0_0_8_2]], align 8
; CHECK-NEXT: ret void
;
; Verify that the call isn't folded when the first GEP index is excessive.
%pa1 = getelementptr [1 x %struct.A], [1 x %struct.A]* @a, i64 1, i64 0
%pi8a1 = bitcast %struct.A* %pa1 to i8*
%pi8a1p0 = getelementptr i8, i8* %pi8a1, i32 0
; Don't fold memchr((char*)&a[1] + 0, '\0', 2).
%pst_1_0_0_2 = getelementptr i8*, i8** %pchr, i32 0
%chr_1_0_0_2 = call i8* @memchr(i8* %pi8a1p0, i32 0, i64 2)
store i8* %chr_1_0_0_2, i8** %pst_1_0_0_2
%pi8a1p1 = getelementptr i8, i8* %pi8a1, i32 1
; Likewise, don't fold memchr((char*)&a[1] + 1, '\0', 2).
%pst_1_0_1_2 = getelementptr i8*, i8** %pchr, i32 1
%chr_1_0_1_2 = call i8* @memchr(i8* %pi8a1p0, i32 0, i64 2)
store i8* %chr_1_0_1_2, i8** %pst_1_0_1_2
; Verify that the call isn't folded when the first GEP index is in bounds
; but the byte offset is excessive.
%pa0 = getelementptr [1 x %struct.A], [1 x %struct.A]* @a, i64 0, i64 0
%pi8a0 = bitcast %struct.A* %pa0 to i8*
%pi8a0p8 = getelementptr i8, i8* %pi8a0, i32 8
; Don't fold memchr((char*)&a[0] + 8, '\0', 2).
%pst_0_0_8_2 = getelementptr i8*, i8** %pchr, i32 2
%chr_0_0_8_2 = call i8* @memchr(i8* %pi8a0p8, i32 0, i64 2)
store i8* %chr_0_0_8_2, i8** %pst_0_0_8_2
ret void
}
@ai64 = constant [2 x i64] [i64 0, i64 -1]
; Verify that a memchr call with an argument consisting of three GEPs
; is folded.
define i8* @fold_memchr_gep_gep_gep() {
; CHECK-LABEL: @fold_memchr_gep_gep_gep(
; CHECK-NEXT: ret i8* bitcast (i16* getelementptr (i16, i16* bitcast (i32* getelementptr (i32, i32* bitcast (i64* getelementptr inbounds ([2 x i64], [2 x i64]* @ai64, i64 0, i64 1) to i32*), i64 1) to i16*), i64 1) to i8*)
;
%p8_1 = getelementptr [2 x i64], [2 x i64]* @ai64, i64 0, i64 1
%p4_0 = bitcast i64* %p8_1 to i32*
%p4_1 = getelementptr i32, i32* %p4_0, i64 1
%p2_0 = bitcast i32* %p4_1 to i16*
%p2_1 = getelementptr i16, i16* %p2_0, i64 1
%q2_1 = bitcast i16* %p2_1 to i8*
%pc = call i8* @memchr(i8* %q2_1, i32 -1, i64 2)
ret i8* %pc
}
%union.U = type { [2 x i32] }
@u = constant %union.U { [2 x i32] [i32 286331153, i32 35791394] }
; Verify memchr folding of a union member.
define i8* @fold_memchr_union_member() {
; CHECK-LABEL: @fold_memchr_union_member(
; BE-CHECK-NEXT: ret i8* getelementptr (i8, i8* bitcast (%union.U* @u to i8*), i64 5)
; LE-CHECK-NEXT: ret i8* bitcast (i32* getelementptr inbounds (%union.U, %union.U* @u, i64 0, i32 0, i64 1) to i8*)
;
%pu = getelementptr %union.U, %union.U* @u, i64 0
%pi8u = bitcast %union.U* %pu to i8*
%pi8u_p1 = getelementptr i8, i8* %pi8u, i64 1
%pc = call i8* @memchr(i8* %pi8u_p1, i32 34, i64 8)
ret i8* %pc
}
|