aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/WebAssembly/simd-build-vector.ll
blob: cfbec78b9d17fc85da6754dde53fd50390fca8ba (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
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -verify-machineinstrs -disable-wasm-fallthrough-return-opt -wasm-disable-explicit-locals -wasm-keep-registers -mattr=+simd128 | FileCheck %s

; Test that the logic to choose between v128.const vector
; initialization and splat vector initialization and to optimize the
; choice of splat value works correctly.

target triple = "wasm32-unknown-unknown"

define <8 x i16> @same_const_one_replaced_i16x8(i16 %x) {
; CHECK-LABEL: same_const_one_replaced_i16x8:
; CHECK:         .functype same_const_one_replaced_i16x8 (i32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    v128.const $push0=, 42, 42, 42, 42, 42, 0, 42, 42
; CHECK-NEXT:    i16x8.replace_lane $push1=, $pop0, 5, $0
; CHECK-NEXT:    return $pop1
  %v = insertelement
    <8 x i16> <i16 42, i16 42, i16 42, i16 42, i16 42, i16 42, i16 42, i16 42>,
    i16 %x,
    i32 5
  ret <8 x i16> %v
}

define <8 x i16> @different_const_one_replaced_i16x8(i16 %x) {
; CHECK-LABEL: different_const_one_replaced_i16x8:
; CHECK:         .functype different_const_one_replaced_i16x8 (i32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    v128.const $push0=, 1, -2, 3, -4, 5, 0, 7, -8
; CHECK-NEXT:    i16x8.replace_lane $push1=, $pop0, 5, $0
; CHECK-NEXT:    return $pop1
  %v = insertelement
    <8 x i16> <i16 1, i16 -2, i16 3, i16 -4, i16 5, i16 -6, i16 7, i16 -8>,
    i16 %x,
    i32 5
  ret <8 x i16> %v
}

define <4 x float> @same_const_one_replaced_f32x4(float %x) {
; CHECK-LABEL: same_const_one_replaced_f32x4:
; CHECK:         .functype same_const_one_replaced_f32x4 (f32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    v128.const $push0=, 0x1.5p5, 0x1.5p5, 0x0p0, 0x1.5p5
; CHECK-NEXT:    f32x4.replace_lane $push1=, $pop0, 2, $0
; CHECK-NEXT:    return $pop1
  %v = insertelement
    <4 x float> <float 42., float 42., float 42., float 42.>,
    float %x,
    i32 2
  ret <4 x float> %v
}

define <4 x float> @different_const_one_replaced_f32x4(float %x) {
; CHECK-LABEL: different_const_one_replaced_f32x4:
; CHECK:         .functype different_const_one_replaced_f32x4 (f32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    v128.const $push0=, 0x1p0, 0x1p1, 0x0p0, 0x1p2
; CHECK-NEXT:    f32x4.replace_lane $push1=, $pop0, 2, $0
; CHECK-NEXT:    return $pop1
  %v = insertelement
    <4 x float> <float 1., float 2., float 3., float 4.>,
    float %x,
    i32 2
  ret <4 x float> %v
}

define <4 x i32> @splat_common_const_i32x4() {
; CHECK-LABEL: splat_common_const_i32x4:
; CHECK:         .functype splat_common_const_i32x4 () -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    v128.const $push0=, 0, 3, 3, 1
; CHECK-NEXT:    return $pop0
  ret <4 x i32> <i32 undef, i32 3, i32 3, i32 1>
}

define <8 x i16> @splat_common_arg_i16x8(i16 %a, i16 %b, i16 %c) {
; CHECK-LABEL: splat_common_arg_i16x8:
; CHECK:         .functype splat_common_arg_i16x8 (i32, i32, i32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    i16x8.splat $push0=, $2
; CHECK-NEXT:    i16x8.replace_lane $push1=, $pop0, 0, $1
; CHECK-NEXT:    i16x8.replace_lane $push2=, $pop1, 2, $0
; CHECK-NEXT:    i16x8.replace_lane $push3=, $pop2, 4, $1
; CHECK-NEXT:    i16x8.replace_lane $push4=, $pop3, 7, $1
; CHECK-NEXT:    return $pop4
  %v0 = insertelement <8 x i16> undef, i16 %b, i32 0
  %v1 = insertelement <8 x i16> %v0, i16 %c, i32 1
  %v2 = insertelement <8 x i16> %v1, i16 %a, i32 2
  %v3 = insertelement <8 x i16> %v2, i16 %c, i32 3
  %v4 = insertelement <8 x i16> %v3, i16 %b, i32 4
  %v5 = insertelement <8 x i16> %v4, i16 %c, i32 5
  %v6 = insertelement <8 x i16> %v5, i16 %c, i32 6
  %v7 = insertelement <8 x i16> %v6, i16 %b, i32 7
  ret <8 x i16> %v7
}

define <16 x i8> @swizzle_one_i8x16(<16 x i8> %src, <16 x i8> %mask) {
; CHECK-LABEL: swizzle_one_i8x16:
; CHECK:         .functype swizzle_one_i8x16 (v128, v128) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    global.get $push5=, __stack_pointer
; CHECK-NEXT:    i32.const $push6=, 16
; CHECK-NEXT:    i32.sub $push8=, $pop5, $pop6
; CHECK-NEXT:    local.tee $push7=, $2=, $pop8
; CHECK-NEXT:    v128.store 0($pop7), $0
; CHECK-NEXT:    i8x16.extract_lane_u $push0=, $1, 0
; CHECK-NEXT:    i32.const $push1=, 15
; CHECK-NEXT:    i32.and $push2=, $pop0, $pop1
; CHECK-NEXT:    i32.or $push3=, $2, $pop2
; CHECK-NEXT:    v128.load8_splat $push4=, 0($pop3)
; CHECK-NEXT:    return $pop4
  %m0 = extractelement <16 x i8> %mask, i32 0
  %s0 = extractelement <16 x i8> %src, i8 %m0
  %v0 = insertelement <16 x i8> undef, i8 %s0, i32 0
  ret <16 x i8> %v0
}

define <16 x i8> @swizzle_all_i8x16(<16 x i8> %src, <16 x i8> %mask) {
; CHECK-LABEL: swizzle_all_i8x16:
; CHECK:         .functype swizzle_all_i8x16 (v128, v128) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    global.get $push65=, __stack_pointer
; CHECK-NEXT:    i32.const $push66=, 16
; CHECK-NEXT:    i32.sub $push83=, $pop65, $pop66
; CHECK-NEXT:    local.tee $push82=, $2=, $pop83
; CHECK-NEXT:    v128.store 0($pop82), $0
; CHECK-NEXT:    i8x16.extract_lane_u $push61=, $1, 15
; CHECK-NEXT:    i32.const $push1=, 15
; CHECK-NEXT:    i32.and $push62=, $pop61, $pop1
; CHECK-NEXT:    i32.or $push63=, $2, $pop62
; CHECK-NEXT:    i8x16.extract_lane_u $push57=, $1, 14
; CHECK-NEXT:    i32.const $push81=, 15
; CHECK-NEXT:    i32.and $push58=, $pop57, $pop81
; CHECK-NEXT:    i32.or $push59=, $2, $pop58
; CHECK-NEXT:    i8x16.extract_lane_u $push53=, $1, 13
; CHECK-NEXT:    i32.const $push80=, 15
; CHECK-NEXT:    i32.and $push54=, $pop53, $pop80
; CHECK-NEXT:    i32.or $push55=, $2, $pop54
; CHECK-NEXT:    i8x16.extract_lane_u $push49=, $1, 12
; CHECK-NEXT:    i32.const $push79=, 15
; CHECK-NEXT:    i32.and $push50=, $pop49, $pop79
; CHECK-NEXT:    i32.or $push51=, $2, $pop50
; CHECK-NEXT:    i8x16.extract_lane_u $push45=, $1, 11
; CHECK-NEXT:    i32.const $push78=, 15
; CHECK-NEXT:    i32.and $push46=, $pop45, $pop78
; CHECK-NEXT:    i32.or $push47=, $2, $pop46
; CHECK-NEXT:    i8x16.extract_lane_u $push41=, $1, 10
; CHECK-NEXT:    i32.const $push77=, 15
; CHECK-NEXT:    i32.and $push42=, $pop41, $pop77
; CHECK-NEXT:    i32.or $push43=, $2, $pop42
; CHECK-NEXT:    i8x16.extract_lane_u $push37=, $1, 9
; CHECK-NEXT:    i32.const $push76=, 15
; CHECK-NEXT:    i32.and $push38=, $pop37, $pop76
; CHECK-NEXT:    i32.or $push39=, $2, $pop38
; CHECK-NEXT:    i8x16.extract_lane_u $push33=, $1, 8
; CHECK-NEXT:    i32.const $push75=, 15
; CHECK-NEXT:    i32.and $push34=, $pop33, $pop75
; CHECK-NEXT:    i32.or $push35=, $2, $pop34
; CHECK-NEXT:    i8x16.extract_lane_u $push29=, $1, 7
; CHECK-NEXT:    i32.const $push74=, 15
; CHECK-NEXT:    i32.and $push30=, $pop29, $pop74
; CHECK-NEXT:    i32.or $push31=, $2, $pop30
; CHECK-NEXT:    i8x16.extract_lane_u $push25=, $1, 6
; CHECK-NEXT:    i32.const $push73=, 15
; CHECK-NEXT:    i32.and $push26=, $pop25, $pop73
; CHECK-NEXT:    i32.or $push27=, $2, $pop26
; CHECK-NEXT:    i8x16.extract_lane_u $push21=, $1, 5
; CHECK-NEXT:    i32.const $push72=, 15
; CHECK-NEXT:    i32.and $push22=, $pop21, $pop72
; CHECK-NEXT:    i32.or $push23=, $2, $pop22
; CHECK-NEXT:    i8x16.extract_lane_u $push17=, $1, 4
; CHECK-NEXT:    i32.const $push71=, 15
; CHECK-NEXT:    i32.and $push18=, $pop17, $pop71
; CHECK-NEXT:    i32.or $push19=, $2, $pop18
; CHECK-NEXT:    i8x16.extract_lane_u $push13=, $1, 3
; CHECK-NEXT:    i32.const $push70=, 15
; CHECK-NEXT:    i32.and $push14=, $pop13, $pop70
; CHECK-NEXT:    i32.or $push15=, $2, $pop14
; CHECK-NEXT:    i8x16.extract_lane_u $push9=, $1, 2
; CHECK-NEXT:    i32.const $push69=, 15
; CHECK-NEXT:    i32.and $push10=, $pop9, $pop69
; CHECK-NEXT:    i32.or $push11=, $2, $pop10
; CHECK-NEXT:    i8x16.extract_lane_u $push0=, $1, 1
; CHECK-NEXT:    i32.const $push68=, 15
; CHECK-NEXT:    i32.and $push2=, $pop0, $pop68
; CHECK-NEXT:    i32.or $push3=, $2, $pop2
; CHECK-NEXT:    i8x16.extract_lane_u $push4=, $1, 0
; CHECK-NEXT:    i32.const $push67=, 15
; CHECK-NEXT:    i32.and $push5=, $pop4, $pop67
; CHECK-NEXT:    i32.or $push6=, $2, $pop5
; CHECK-NEXT:    v128.load8_splat $push7=, 0($pop6)
; CHECK-NEXT:    v128.load8_lane $push8=, 0($pop3), $pop7, 1
; CHECK-NEXT:    v128.load8_lane $push12=, 0($pop11), $pop8, 2
; CHECK-NEXT:    v128.load8_lane $push16=, 0($pop15), $pop12, 3
; CHECK-NEXT:    v128.load8_lane $push20=, 0($pop19), $pop16, 4
; CHECK-NEXT:    v128.load8_lane $push24=, 0($pop23), $pop20, 5
; CHECK-NEXT:    v128.load8_lane $push28=, 0($pop27), $pop24, 6
; CHECK-NEXT:    v128.load8_lane $push32=, 0($pop31), $pop28, 7
; CHECK-NEXT:    v128.load8_lane $push36=, 0($pop35), $pop32, 8
; CHECK-NEXT:    v128.load8_lane $push40=, 0($pop39), $pop36, 9
; CHECK-NEXT:    v128.load8_lane $push44=, 0($pop43), $pop40, 10
; CHECK-NEXT:    v128.load8_lane $push48=, 0($pop47), $pop44, 11
; CHECK-NEXT:    v128.load8_lane $push52=, 0($pop51), $pop48, 12
; CHECK-NEXT:    v128.load8_lane $push56=, 0($pop55), $pop52, 13
; CHECK-NEXT:    v128.load8_lane $push60=, 0($pop59), $pop56, 14
; CHECK-NEXT:    v128.load8_lane $push64=, 0($pop63), $pop60, 15
; CHECK-NEXT:    return $pop64
  %m0 = extractelement <16 x i8> %mask, i32 0
  %s0 = extractelement <16 x i8> %src, i8 %m0
  %v0 = insertelement <16 x i8> undef, i8 %s0, i32 0
  %m1 = extractelement <16 x i8> %mask, i32 1
  %s1 = extractelement <16 x i8> %src, i8 %m1
  %v1 = insertelement <16 x i8> %v0, i8 %s1, i32 1
  %m2 = extractelement <16 x i8> %mask, i32 2
  %s2 = extractelement <16 x i8> %src, i8 %m2
  %v2 = insertelement <16 x i8> %v1, i8 %s2, i32 2
  %m3 = extractelement <16 x i8> %mask, i32 3
  %s3 = extractelement <16 x i8> %src, i8 %m3
  %v3 = insertelement <16 x i8> %v2, i8 %s3, i32 3
  %m4 = extractelement <16 x i8> %mask, i32 4
  %s4 = extractelement <16 x i8> %src, i8 %m4
  %v4 = insertelement <16 x i8> %v3, i8 %s4, i32 4
  %m5 = extractelement <16 x i8> %mask, i32 5
  %s5 = extractelement <16 x i8> %src, i8 %m5
  %v5 = insertelement <16 x i8> %v4, i8 %s5, i32 5
  %m6 = extractelement <16 x i8> %mask, i32 6
  %s6 = extractelement <16 x i8> %src, i8 %m6
  %v6 = insertelement <16 x i8> %v5, i8 %s6, i32 6
  %m7 = extractelement <16 x i8> %mask, i32 7
  %s7 = extractelement <16 x i8> %src, i8 %m7
  %v7 = insertelement <16 x i8> %v6, i8 %s7, i32 7
  %m8 = extractelement <16 x i8> %mask, i32 8
  %s8 = extractelement <16 x i8> %src, i8 %m8
  %v8 = insertelement <16 x i8> %v7, i8 %s8, i32 8
  %m9 = extractelement <16 x i8> %mask, i32 9
  %s9 = extractelement <16 x i8> %src, i8 %m9
  %v9 = insertelement <16 x i8> %v8, i8 %s9, i32 9
  %m10 = extractelement <16 x i8> %mask, i32 10
  %s10 = extractelement <16 x i8> %src, i8 %m10
  %v10 = insertelement <16 x i8> %v9, i8 %s10, i32 10
  %m11 = extractelement <16 x i8> %mask, i32 11
  %s11 = extractelement <16 x i8> %src, i8 %m11
  %v11 = insertelement <16 x i8> %v10, i8 %s11, i32 11
  %m12 = extractelement <16 x i8> %mask, i32 12
  %s12 = extractelement <16 x i8> %src, i8 %m12
  %v12 = insertelement <16 x i8> %v11, i8 %s12, i32 12
  %m13 = extractelement <16 x i8> %mask, i32 13
  %s13 = extractelement <16 x i8> %src, i8 %m13
  %v13 = insertelement <16 x i8> %v12, i8 %s13, i32 13
  %m14 = extractelement <16 x i8> %mask, i32 14
  %s14 = extractelement <16 x i8> %src, i8 %m14
  %v14 = insertelement <16 x i8> %v13, i8 %s14, i32 14
  %m15 = extractelement <16 x i8> %mask, i32 15
  %s15 = extractelement <16 x i8> %src, i8 %m15
  %v15 = insertelement <16 x i8> %v14, i8 %s15, i32 15
  ret <16 x i8> %v15
}

; Ensure we don't us swizzle
define <8 x i16> @swizzle_one_i16x8(<8 x i16> %src, <8 x i16> %mask) {
; CHECK-LABEL: swizzle_one_i16x8:
; CHECK:         .functype swizzle_one_i16x8 (v128, v128) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    global.get $push7=, __stack_pointer
; CHECK-NEXT:    i32.const $push8=, 16
; CHECK-NEXT:    i32.sub $push10=, $pop7, $pop8
; CHECK-NEXT:    local.tee $push9=, $2=, $pop10
; CHECK-NEXT:    v128.store 0($pop9), $0
; CHECK-NEXT:    i16x8.extract_lane_u $push0=, $1, 0
; CHECK-NEXT:    i32.const $push1=, 7
; CHECK-NEXT:    i32.and $push2=, $pop0, $pop1
; CHECK-NEXT:    i32.const $push3=, 1
; CHECK-NEXT:    i32.shl $push4=, $pop2, $pop3
; CHECK-NEXT:    i32.or $push5=, $2, $pop4
; CHECK-NEXT:    v128.load16_splat $push6=, 0($pop5)
; CHECK-NEXT:    return $pop6
  %m0 = extractelement <8 x i16> %mask, i32 0
  %s0 = extractelement <8 x i16> %src, i16 %m0
  %v0 = insertelement <8 x i16> undef, i16 %s0, i32 0
  ret <8 x i16> %v0
}

define <4 x i32> @half_shuffle_i32x4(<4 x i32> %src) {
; CHECK-LABEL: half_shuffle_i32x4:
; CHECK:         .functype half_shuffle_i32x4 (v128) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    i8x16.shuffle $push0=, $0, $0, 0, 1, 2, 3, 8, 9, 10, 11, 0, 1, 2, 3, 0, 1, 2, 3
; CHECK-NEXT:    i32.const $push1=, 0
; CHECK-NEXT:    i32x4.replace_lane $push2=, $pop0, 0, $pop1
; CHECK-NEXT:    i32.const $push3=, 3
; CHECK-NEXT:    i32x4.replace_lane $push4=, $pop2, 3, $pop3
; CHECK-NEXT:    return $pop4
  %s0 = extractelement <4 x i32> %src, i32 0
  %s2 = extractelement <4 x i32> %src, i32 2
  %v0 = insertelement <4 x i32> undef, i32 0, i32 0
  %v1 = insertelement <4 x i32> %v0, i32 %s2, i32 1
  %v2 = insertelement <4 x i32> %v1, i32 %s0, i32 2
  %v3 = insertelement <4 x i32> %v2, i32 3, i32 3
  ret <4 x i32> %v3
}

define <16 x i8> @mashup_swizzle_i8x16(<16 x i8> %src, <16 x i8> %mask, i8 %splatted) {
  ; swizzle 0
; CHECK-LABEL: mashup_swizzle_i8x16:
; CHECK:         .functype mashup_swizzle_i8x16 (v128, v128, i32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    global.get $push12=, __stack_pointer
; CHECK-NEXT:    i32.const $push13=, 16
; CHECK-NEXT:    i32.sub $push16=, $pop12, $pop13
; CHECK-NEXT:    local.tee $push15=, $3=, $pop16
; CHECK-NEXT:    v128.store 0($pop15), $0
; CHECK-NEXT:    i8x16.extract_lane_u $push7=, $1, 7
; CHECK-NEXT:    i32.const $push1=, 15
; CHECK-NEXT:    i32.and $push8=, $pop7, $pop1
; CHECK-NEXT:    i32.or $push9=, $3, $pop8
; CHECK-NEXT:    i8x16.extract_lane_u $push0=, $1, 0
; CHECK-NEXT:    i32.const $push14=, 15
; CHECK-NEXT:    i32.and $push2=, $pop0, $pop14
; CHECK-NEXT:    i32.or $push3=, $3, $pop2
; CHECK-NEXT:    v128.const $push4=, 0, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0
; CHECK-NEXT:    v128.load8_lane $push5=, 0($pop3), $pop4, 0
; CHECK-NEXT:    i8x16.replace_lane $push6=, $pop5, 3, $2
; CHECK-NEXT:    v128.load8_lane $push10=, 0($pop9), $pop6, 7
; CHECK-NEXT:    i8x16.replace_lane $push11=, $pop10, 12, $2
; CHECK-NEXT:    return $pop11
  %m0 = extractelement <16 x i8> %mask, i32 0
  %s0 = extractelement <16 x i8> %src, i8 %m0
  %v0 = insertelement <16 x i8> undef, i8 %s0, i32 0
  ; swizzle 7
  %m1 = extractelement <16 x i8> %mask, i32 7
  %s1 = extractelement <16 x i8> %src, i8 %m1
  %v1 = insertelement <16 x i8> %v0, i8 %s1, i32 7
  ; splat 3
  %v2 = insertelement <16 x i8> %v1, i8 %splatted, i32 3
  ; splat 12
  %v3 = insertelement <16 x i8> %v2, i8 %splatted, i32 12
  ; const 4
  %v4 = insertelement <16 x i8> %v3, i8 42, i32 4
  ; const 14
  %v5 = insertelement <16 x i8> %v4, i8 42, i32 14
  ret <16 x i8> %v5
}

define <16 x i8> @mashup_const_i8x16(<16 x i8> %src, <16 x i8> %mask, i8 %splatted) {
  ; swizzle 0
; CHECK-LABEL: mashup_const_i8x16:
; CHECK:         .functype mashup_const_i8x16 (v128, v128, i32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    global.get $push8=, __stack_pointer
; CHECK-NEXT:    i32.const $push9=, 16
; CHECK-NEXT:    i32.sub $push11=, $pop8, $pop9
; CHECK-NEXT:    local.tee $push10=, $3=, $pop11
; CHECK-NEXT:    v128.store 0($pop10), $0
; CHECK-NEXT:    i8x16.extract_lane_u $push0=, $1, 0
; CHECK-NEXT:    i32.const $push1=, 15
; CHECK-NEXT:    i32.and $push2=, $pop0, $pop1
; CHECK-NEXT:    i32.or $push3=, $3, $pop2
; CHECK-NEXT:    v128.const $push4=, 0, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0
; CHECK-NEXT:    v128.load8_lane $push5=, 0($pop3), $pop4, 0
; CHECK-NEXT:    i8x16.replace_lane $push6=, $pop5, 3, $2
; CHECK-NEXT:    i8x16.replace_lane $push7=, $pop6, 12, $2
; CHECK-NEXT:    return $pop7
  %m0 = extractelement <16 x i8> %mask, i32 0
  %s0 = extractelement <16 x i8> %src, i8 %m0
  %v0 = insertelement <16 x i8> undef, i8 %s0, i32 0
  ; splat 3
  %v1 = insertelement <16 x i8> %v0, i8 %splatted, i32 3
  ; splat 12
  %v2 = insertelement <16 x i8> %v1, i8 %splatted, i32 12
  ; const 4
  %v3 = insertelement <16 x i8> %v2, i8 42, i32 4
  ; const 14
  %v4 = insertelement <16 x i8> %v3, i8 42, i32 14
  ret <16 x i8> %v4
}

define <16 x i8> @mashup_splat_i8x16(<16 x i8> %src, <16 x i8> %mask, i8 %splatted) {
  ; swizzle 0
; CHECK-LABEL: mashup_splat_i8x16:
; CHECK:         .functype mashup_splat_i8x16 (v128, v128, i32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    global.get $push8=, __stack_pointer
; CHECK-NEXT:    i32.const $push9=, 16
; CHECK-NEXT:    i32.sub $push11=, $pop8, $pop9
; CHECK-NEXT:    local.tee $push10=, $3=, $pop11
; CHECK-NEXT:    v128.store 0($pop10), $0
; CHECK-NEXT:    i8x16.extract_lane_u $push0=, $1, 0
; CHECK-NEXT:    i32.const $push1=, 15
; CHECK-NEXT:    i32.and $push2=, $pop0, $pop1
; CHECK-NEXT:    i32.or $push3=, $3, $pop2
; CHECK-NEXT:    i8x16.splat $push4=, $2
; CHECK-NEXT:    v128.load8_lane $push5=, 0($pop3), $pop4, 0
; CHECK-NEXT:    i32.const $push6=, 42
; CHECK-NEXT:    i8x16.replace_lane $push7=, $pop5, 4, $pop6
; CHECK-NEXT:    return $pop7
  %m0 = extractelement <16 x i8> %mask, i32 0
  %s0 = extractelement <16 x i8> %src, i8 %m0
  %v0 = insertelement <16 x i8> undef, i8 %s0, i32 0
  ; splat 3
  %v1 = insertelement <16 x i8> %v0, i8 %splatted, i32 3
  ; splat 12
  %v2 = insertelement <16 x i8> %v1, i8 %splatted, i32 12
  ; const 4
  %v3 = insertelement <16 x i8> %v2, i8 42, i32 4
  ret <16 x i8> %v3
}

define <4 x float> @undef_const_insert_f32x4() {
; CHECK-LABEL: undef_const_insert_f32x4:
; CHECK:         .functype undef_const_insert_f32x4 () -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    v128.const $push0=, 0x1.5p5, 0x1.5p5, 0x1.5p5, 0x1.5p5
; CHECK-NEXT:    return $pop0
  %v = insertelement <4 x float> undef, float 42., i32 1
  ret <4 x float> %v
}

define <4 x i32> @undef_arg_insert_i32x4(i32 %x) {
; CHECK-LABEL: undef_arg_insert_i32x4:
; CHECK:         .functype undef_arg_insert_i32x4 (i32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    i32x4.splat $push0=, $0
; CHECK-NEXT:    return $pop0
  %v = insertelement <4 x i32> undef, i32 %x, i32 3
  ret <4 x i32> %v
}

define <16 x i8> @all_undef_i8x16() {
; CHECK-LABEL: all_undef_i8x16:
; CHECK:         .functype all_undef_i8x16 () -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    return $0
  %v = insertelement <16 x i8> undef, i8 undef, i32 4
  ret <16 x i8> %v
}

define <2 x double> @all_undef_f64x2() {
; CHECK-LABEL: all_undef_f64x2:
; CHECK:         .functype all_undef_f64x2 () -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    return $0
  ret <2 x double> undef
}

define <4 x i32> @load_zero_lane_i32x4(ptr %addr.a, ptr %addr.b, ptr %addr.c, ptr %addr.d) {
; CHECK-LABEL: load_zero_lane_i32x4:
; CHECK:         .functype load_zero_lane_i32x4 (i32, i32, i32, i32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    v128.load32_zero $push0=, 0($0)
; CHECK-NEXT:    v128.load32_lane $push1=, 0($1), $pop0, 1
; CHECK-NEXT:    v128.load32_lane $push2=, 0($2), $pop1, 2
; CHECK-NEXT:    v128.load32_lane $push3=, 0($3), $pop2, 3
; CHECK-NEXT:    return $pop3
  %a = load i32, ptr %addr.a
  %b = load i32, ptr %addr.b
  %c = load i32, ptr %addr.c
  %d = load i32, ptr %addr.d
  %v = insertelement <4 x i32> undef, i32 %a, i32 0
  %v.1 = insertelement <4 x i32> %v, i32 %b, i32 1
  %v.2 = insertelement <4 x i32> %v.1, i32 %c, i32 2
  %v.3 = insertelement <4 x i32> %v.2, i32 %d, i32 3
  ret <4 x i32> %v.3
}

define <2 x i64> @load_zero_lane_i64x2(ptr %addr.a, ptr %addr.b) {
; CHECK-LABEL: load_zero_lane_i64x2:
; CHECK:         .functype load_zero_lane_i64x2 (i32, i32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    v128.load64_zero $push0=, 0($0)
; CHECK-NEXT:    v128.load64_lane $push1=, 0($1), $pop0, 1
; CHECK-NEXT:    return $pop1
  %a = load i64, ptr %addr.a
  %b = load i64, ptr %addr.b
  %v = insertelement <2 x i64> undef, i64 %a, i32 0
  %v.1 = insertelement <2 x i64> %v, i64 %b, i32 1
  ret <2 x i64> %v.1
}

define <4 x float> @load_zero_lane_f32x4(ptr %addr.a, ptr %addr.b, ptr %addr.c, ptr %addr.d) {
; CHECK-LABEL: load_zero_lane_f32x4:
; CHECK:         .functype load_zero_lane_f32x4 (i32, i32, i32, i32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    v128.load32_zero $push0=, 0($0)
; CHECK-NEXT:    v128.load32_lane $push1=, 0($1), $pop0, 1
; CHECK-NEXT:    v128.load32_lane $push2=, 0($2), $pop1, 2
; CHECK-NEXT:    v128.load32_lane $push3=, 0($3), $pop2, 3
; CHECK-NEXT:    return $pop3
  %a = load float, ptr %addr.a
  %b = load float, ptr %addr.b
  %c = load float, ptr %addr.c
  %d = load float, ptr %addr.d
  %v = insertelement <4 x float> undef, float %a, i32 0
  %v.1 = insertelement <4 x float> %v, float %b, i32 1
  %v.2 = insertelement <4 x float> %v.1, float %c, i32 2
  %v.3 = insertelement <4 x float> %v.2, float %d, i32 3
  ret <4 x float> %v.3
}

define <4 x float> @load_zero_undef_lane_f32x4(ptr %addr.a, ptr %addr.b) {
; CHECK-LABEL: load_zero_undef_lane_f32x4:
; CHECK:         .functype load_zero_undef_lane_f32x4 (i32, i32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    v128.load32_splat $push0=, 0($0)
; CHECK-NEXT:    v128.load32_lane $push1=, 0($1), $pop0, 3
; CHECK-NEXT:    return $pop1
  %a = load float, ptr %addr.a
  %b = load float, ptr %addr.b
  %v = insertelement <4 x float> undef, float %a, i32 1
  %v.1 = insertelement <4 x float> %v, float %b, i32 3
  ret <4 x float> %v.1
}

define <2 x double> @load_zero_lane_f64x2(ptr %addr.a, ptr %addr.b) {
; CHECK-LABEL: load_zero_lane_f64x2:
; CHECK:         .functype load_zero_lane_f64x2 (i32, i32) -> (v128)
; CHECK-NEXT:  # %bb.0:
; CHECK-NEXT:    v128.load64_zero $push0=, 0($0)
; CHECK-NEXT:    v128.load64_lane $push1=, 0($1), $pop0, 1
; CHECK-NEXT:    return $pop1
  %a = load double, ptr %addr.a
  %b = load double, ptr %addr.b
  %v = insertelement <2 x double> undef, double %a, i32 0
  %v.1 = insertelement <2 x double> %v, double %b, i32 1
  ret <2 x double> %v.1
}