aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/AArch64/insert-extend.ll
blob: 851fb0d03e8aa357002bfc598fb9b0a210820567 (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
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=aarch64--linux-gnu | FileCheck %s

define <8 x i8> @load4_v4i8_add(float %tmp, ptr %a, ptr %b) {
; CHECK-LABEL: load4_v4i8_add:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldp s0, s1, [x0]
; CHECK-NEXT:    ld1 { v0.s }[1], [x1], #4
; CHECK-NEXT:    ld1 { v1.s }[1], [x1]
; CHECK-NEXT:    add v0.8b, v0.8b, v1.8b
; CHECK-NEXT:    ret
  %la = load <4 x i8>, ptr %a
  %lb = load <4 x i8>, ptr %b
  %c = getelementptr <4 x i8>, ptr %a, i64 1
  %d = getelementptr <4 x i8>, ptr %b, i64 1
  %lc = load <4 x i8>, ptr %c
  %ld = load <4 x i8>, ptr %d
  %s1 = shufflevector <4 x i8> %la, <4 x i8> %lb, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7>
  %s2 = shufflevector <4 x i8> %lc, <4 x i8> %ld, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7>
  %add = add <8 x i8> %s1, %s2
  ret <8 x i8> %add
}

define <8 x i16> @load4_v4i8_zext_add(float %tmp, ptr %a, ptr %b) {
; CHECK-LABEL: load4_v4i8_zext_add:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldp s0, s1, [x0]
; CHECK-NEXT:    ld1 { v0.s }[1], [x1], #4
; CHECK-NEXT:    ld1 { v1.s }[1], [x1]
; CHECK-NEXT:    uaddl v0.8h, v0.8b, v1.8b
; CHECK-NEXT:    ret
  %la = load <4 x i8>, ptr %a
  %lb = load <4 x i8>, ptr %b
  %c = getelementptr <4 x i8>, ptr %a, i64 1
  %d = getelementptr <4 x i8>, ptr %b, i64 1
  %lc = load <4 x i8>, ptr %c
  %ld = load <4 x i8>, ptr %d
  %s1 = shufflevector <4 x i8> %la, <4 x i8> %lb, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7>
  %s2 = shufflevector <4 x i8> %lc, <4 x i8> %ld, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7>
  %z1 = zext <8 x i8> %s1 to <8 x i16>
  %z2 = zext <8 x i8> %s2 to <8 x i16>
  %add = add <8 x i16> %z1, %z2
  ret <8 x i16> %add
}

define i32 @large(ptr nocapture noundef readonly %p1, i32 noundef %st1, ptr nocapture noundef readonly %p2, i32 noundef %st2) {
; CHECK-LABEL: large:
; CHECK:       // %bb.0: // %entry
; CHECK-NEXT:    // kill: def $w3 killed $w3 def $x3
; CHECK-NEXT:    // kill: def $w1 killed $w1 def $x1
; CHECK-NEXT:    sxtw x8, w1
; CHECK-NEXT:    sxtw x9, w3
; CHECK-NEXT:    ldr d0, [x0]
; CHECK-NEXT:    ldr d1, [x2]
; CHECK-NEXT:    add x10, x0, x8
; CHECK-NEXT:    add x11, x2, x9
; CHECK-NEXT:    ldr d2, [x10]
; CHECK-NEXT:    ldr d3, [x11]
; CHECK-NEXT:    usubl v0.8h, v0.8b, v1.8b
; CHECK-NEXT:    add x10, x10, x8
; CHECK-NEXT:    add x11, x11, x9
; CHECK-NEXT:    usubl v1.8h, v2.8b, v3.8b
; CHECK-NEXT:    ldr d2, [x10]
; CHECK-NEXT:    ldr d3, [x11]
; CHECK-NEXT:    ldr d4, [x10, x8]
; CHECK-NEXT:    ldr d5, [x11, x9]
; CHECK-NEXT:    shll2 v6.4s, v0.8h, #16
; CHECK-NEXT:    usubl v2.8h, v2.8b, v3.8b
; CHECK-NEXT:    usubl v3.8h, v4.8b, v5.8b
; CHECK-NEXT:    shll2 v4.4s, v1.8h, #16
; CHECK-NEXT:    saddw v0.4s, v6.4s, v0.4h
; CHECK-NEXT:    shll2 v6.4s, v2.8h, #16
; CHECK-NEXT:    shll2 v5.4s, v3.8h, #16
; CHECK-NEXT:    saddw v1.4s, v4.4s, v1.4h
; CHECK-NEXT:    rev64 v4.4s, v0.4s
; CHECK-NEXT:    saddw v2.4s, v6.4s, v2.4h
; CHECK-NEXT:    saddw v3.4s, v5.4s, v3.4h
; CHECK-NEXT:    rev64 v5.4s, v1.4s
; CHECK-NEXT:    rev64 v6.4s, v2.4s
; CHECK-NEXT:    sub v4.4s, v0.4s, v4.4s
; CHECK-NEXT:    addp v0.4s, v1.4s, v0.4s
; CHECK-NEXT:    rev64 v7.4s, v3.4s
; CHECK-NEXT:    sub v5.4s, v1.4s, v5.4s
; CHECK-NEXT:    sub v6.4s, v2.4s, v6.4s
; CHECK-NEXT:    addp v2.4s, v3.4s, v2.4s
; CHECK-NEXT:    zip1 v16.4s, v5.4s, v4.4s
; CHECK-NEXT:    sub v7.4s, v3.4s, v7.4s
; CHECK-NEXT:    zip2 v3.4s, v6.4s, v7.4s
; CHECK-NEXT:    mov v6.s[1], v7.s[0]
; CHECK-NEXT:    ext v7.16b, v5.16b, v16.16b, #8
; CHECK-NEXT:    mov v5.s[3], v4.s[2]
; CHECK-NEXT:    ext v4.16b, v2.16b, v2.16b, #8
; CHECK-NEXT:    mov v6.d[1], v7.d[1]
; CHECK-NEXT:    mov v3.d[1], v5.d[1]
; CHECK-NEXT:    uzp1 v1.4s, v4.4s, v0.4s
; CHECK-NEXT:    uzp2 v4.4s, v4.4s, v0.4s
; CHECK-NEXT:    addp v0.4s, v2.4s, v0.4s
; CHECK-NEXT:    add v5.4s, v3.4s, v6.4s
; CHECK-NEXT:    sub v3.4s, v6.4s, v3.4s
; CHECK-NEXT:    rev64 v7.4s, v0.4s
; CHECK-NEXT:    sub v1.4s, v1.4s, v4.4s
; CHECK-NEXT:    rev64 v4.4s, v5.4s
; CHECK-NEXT:    rev64 v6.4s, v3.4s
; CHECK-NEXT:    addp v16.4s, v0.4s, v5.4s
; CHECK-NEXT:    rev64 v2.4s, v1.4s
; CHECK-NEXT:    sub v0.4s, v0.4s, v7.4s
; CHECK-NEXT:    zip1 v21.4s, v16.4s, v16.4s
; CHECK-NEXT:    sub v4.4s, v5.4s, v4.4s
; CHECK-NEXT:    addp v5.4s, v1.4s, v3.4s
; CHECK-NEXT:    sub v3.4s, v3.4s, v6.4s
; CHECK-NEXT:    sub v1.4s, v1.4s, v2.4s
; CHECK-NEXT:    ext v7.16b, v0.16b, v16.16b, #4
; CHECK-NEXT:    ext v2.16b, v16.16b, v4.16b, #4
; CHECK-NEXT:    ext v6.16b, v5.16b, v3.16b, #4
; CHECK-NEXT:    mov v19.16b, v4.16b
; CHECK-NEXT:    ext v17.16b, v1.16b, v5.16b, #8
; CHECK-NEXT:    mov v20.16b, v3.16b
; CHECK-NEXT:    trn2 v0.4s, v21.4s, v0.4s
; CHECK-NEXT:    ext v7.16b, v7.16b, v7.16b, #4
; CHECK-NEXT:    mov v19.s[2], v16.s[3]
; CHECK-NEXT:    zip2 v2.4s, v2.4s, v16.4s
; CHECK-NEXT:    zip2 v6.4s, v6.4s, v5.4s
; CHECK-NEXT:    mov v20.s[2], v5.s[3]
; CHECK-NEXT:    ext v18.16b, v17.16b, v1.16b, #4
; CHECK-NEXT:    mov v1.s[2], v5.s[1]
; CHECK-NEXT:    mov v21.16b, v7.16b
; CHECK-NEXT:    sub v7.4s, v0.4s, v7.4s
; CHECK-NEXT:    ext v2.16b, v4.16b, v2.16b, #12
; CHECK-NEXT:    ext v3.16b, v3.16b, v6.16b, #12
; CHECK-NEXT:    uzp2 v4.4s, v17.4s, v18.4s
; CHECK-NEXT:    mov v6.16b, v1.16b
; CHECK-NEXT:    mov v17.16b, v19.16b
; CHECK-NEXT:    mov v18.16b, v20.16b
; CHECK-NEXT:    mov v21.s[0], v16.s[1]
; CHECK-NEXT:    mov v6.s[1], v5.s[0]
; CHECK-NEXT:    mov v17.s[1], v16.s[2]
; CHECK-NEXT:    sub v16.4s, v19.4s, v2.4s
; CHECK-NEXT:    mov v18.s[1], v5.s[2]
; CHECK-NEXT:    sub v1.4s, v1.4s, v4.4s
; CHECK-NEXT:    sub v5.4s, v20.4s, v3.4s
; CHECK-NEXT:    add v0.4s, v0.4s, v21.4s
; CHECK-NEXT:    add v4.4s, v6.4s, v4.4s
; CHECK-NEXT:    add v2.4s, v17.4s, v2.4s
; CHECK-NEXT:    add v3.4s, v18.4s, v3.4s
; CHECK-NEXT:    mov v0.d[1], v7.d[1]
; CHECK-NEXT:    mov v4.d[1], v1.d[1]
; CHECK-NEXT:    mov v2.d[1], v16.d[1]
; CHECK-NEXT:    mov v3.d[1], v5.d[1]
; CHECK-NEXT:    cmlt v7.8h, v0.8h, #0
; CHECK-NEXT:    cmlt v1.8h, v4.8h, #0
; CHECK-NEXT:    cmlt v6.8h, v2.8h, #0
; CHECK-NEXT:    cmlt v5.8h, v3.8h, #0
; CHECK-NEXT:    add v0.4s, v7.4s, v0.4s
; CHECK-NEXT:    add v4.4s, v1.4s, v4.4s
; CHECK-NEXT:    add v2.4s, v6.4s, v2.4s
; CHECK-NEXT:    add v3.4s, v5.4s, v3.4s
; CHECK-NEXT:    eor v0.16b, v0.16b, v7.16b
; CHECK-NEXT:    eor v1.16b, v4.16b, v1.16b
; CHECK-NEXT:    eor v2.16b, v2.16b, v6.16b
; CHECK-NEXT:    eor v3.16b, v3.16b, v5.16b
; CHECK-NEXT:    add v0.4s, v0.4s, v1.4s
; CHECK-NEXT:    add v2.4s, v2.4s, v3.4s
; CHECK-NEXT:    add v0.4s, v0.4s, v2.4s
; CHECK-NEXT:    addv s0, v0.4s
; CHECK-NEXT:    fmov w8, s0
; CHECK-NEXT:    lsr w9, w8, #16
; CHECK-NEXT:    add w8, w9, w8, uxth
; CHECK-NEXT:    lsr w0, w8, #1
; CHECK-NEXT:    ret
entry:
  %idx.ext = sext i32 %st1 to i64
  %idx.ext63 = sext i32 %st2 to i64
  %arrayidx3 = getelementptr inbounds i8, ptr %p1, i64 4
  %arrayidx5 = getelementptr inbounds i8, ptr %p2, i64 4
  %0 = load <4 x i8>, ptr %p1, align 1
  %1 = load <4 x i8>, ptr %p2, align 1
  %2 = load <4 x i8>, ptr %arrayidx3, align 1
  %3 = load <4 x i8>, ptr %arrayidx5, align 1
  %add.ptr = getelementptr inbounds i8, ptr %p1, i64 %idx.ext
  %add.ptr64 = getelementptr inbounds i8, ptr %p2, i64 %idx.ext63
  %arrayidx3.1 = getelementptr inbounds i8, ptr %add.ptr, i64 4
  %arrayidx5.1 = getelementptr inbounds i8, ptr %add.ptr64, i64 4
  %4 = load <4 x i8>, ptr %add.ptr, align 1
  %5 = load <4 x i8>, ptr %add.ptr64, align 1
  %6 = load <4 x i8>, ptr %arrayidx3.1, align 1
  %7 = load <4 x i8>, ptr %arrayidx5.1, align 1
  %add.ptr.1 = getelementptr inbounds i8, ptr %add.ptr, i64 %idx.ext
  %add.ptr64.1 = getelementptr inbounds i8, ptr %add.ptr64, i64 %idx.ext63
  %arrayidx3.2 = getelementptr inbounds i8, ptr %add.ptr.1, i64 4
  %arrayidx5.2 = getelementptr inbounds i8, ptr %add.ptr64.1, i64 4
  %8 = load <4 x i8>, ptr %add.ptr.1, align 1
  %9 = load <4 x i8>, ptr %add.ptr64.1, align 1
  %10 = load <4 x i8>, ptr %arrayidx3.2, align 1
  %11 = load <4 x i8>, ptr %arrayidx5.2, align 1
  %add.ptr.2 = getelementptr inbounds i8, ptr %add.ptr.1, i64 %idx.ext
  %add.ptr64.2 = getelementptr inbounds i8, ptr %add.ptr64.1, i64 %idx.ext63
  %arrayidx3.3 = getelementptr inbounds i8, ptr %add.ptr.2, i64 4
  %arrayidx5.3 = getelementptr inbounds i8, ptr %add.ptr64.2, i64 4
  %12 = load <4 x i8>, ptr %add.ptr.2, align 1
  %13 = shufflevector <4 x i8> %12, <4 x i8> %8, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %14 = shufflevector <4 x i8> %4, <4 x i8> poison, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %15 = shufflevector <16 x i8> %13, <16 x i8> %14, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 16, i32 17, i32 18, i32 19, i32 undef, i32 undef, i32 undef, i32 undef>
  %16 = shufflevector <4 x i8> %0, <4 x i8> poison, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %17 = shufflevector <16 x i8> %15, <16 x i8> %16, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 16, i32 17, i32 18, i32 19>
  %18 = zext <16 x i8> %17 to <16 x i32>
  %19 = load <4 x i8>, ptr %add.ptr64.2, align 1
  %20 = shufflevector <4 x i8> %19, <4 x i8> %9, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %21 = shufflevector <4 x i8> %5, <4 x i8> poison, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %22 = shufflevector <16 x i8> %20, <16 x i8> %21, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 16, i32 17, i32 18, i32 19, i32 undef, i32 undef, i32 undef, i32 undef>
  %23 = shufflevector <4 x i8> %1, <4 x i8> poison, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %24 = shufflevector <16 x i8> %22, <16 x i8> %23, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 16, i32 17, i32 18, i32 19>
  %25 = zext <16 x i8> %24 to <16 x i32>
  %26 = sub nsw <16 x i32> %18, %25
  %27 = load <4 x i8>, ptr %arrayidx3.3, align 1
  %28 = shufflevector <4 x i8> %27, <4 x i8> %10, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %29 = shufflevector <4 x i8> %6, <4 x i8> poison, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %30 = shufflevector <16 x i8> %28, <16 x i8> %29, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 16, i32 17, i32 18, i32 19, i32 undef, i32 undef, i32 undef, i32 undef>
  %31 = shufflevector <4 x i8> %2, <4 x i8> poison, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %32 = shufflevector <16 x i8> %30, <16 x i8> %31, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 16, i32 17, i32 18, i32 19>
  %33 = zext <16 x i8> %32 to <16 x i32>
  %34 = load <4 x i8>, ptr %arrayidx5.3, align 1
  %35 = shufflevector <4 x i8> %34, <4 x i8> %11, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %36 = shufflevector <4 x i8> %7, <4 x i8> poison, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %37 = shufflevector <16 x i8> %35, <16 x i8> %36, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 16, i32 17, i32 18, i32 19, i32 undef, i32 undef, i32 undef, i32 undef>
  %38 = shufflevector <4 x i8> %3, <4 x i8> poison, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %39 = shufflevector <16 x i8> %37, <16 x i8> %38, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 16, i32 17, i32 18, i32 19>
  %40 = zext <16 x i8> %39 to <16 x i32>
  %41 = sub nsw <16 x i32> %33, %40
  %42 = shl nsw <16 x i32> %41, <i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16>
  %43 = add nsw <16 x i32> %42, %26
  %44 = shufflevector <16 x i32> %43, <16 x i32> undef, <16 x i32> <i32 1, i32 0, i32 3, i32 2, i32 5, i32 4, i32 7, i32 6, i32 9, i32 8, i32 11, i32 10, i32 13, i32 12, i32 15, i32 14>
  %45 = add nsw <16 x i32> %43, %44
  %46 = sub nsw <16 x i32> %43, %44
  %47 = shufflevector <16 x i32> %45, <16 x i32> %46, <16 x i32> <i32 3, i32 7, i32 11, i32 15, i32 22, i32 18, i32 26, i32 30, i32 5, i32 1, i32 9, i32 13, i32 20, i32 16, i32 24, i32 28>
  %48 = shufflevector <16 x i32> %45, <16 x i32> %46, <16 x i32> <i32 1, i32 5, i32 9, i32 13, i32 20, i32 16, i32 24, i32 28, i32 7, i32 3, i32 11, i32 15, i32 22, i32 18, i32 26, i32 30>
  %49 = add nsw <16 x i32> %47, %48
  %50 = sub nsw <16 x i32> %47, %48
  %51 = shufflevector <16 x i32> %49, <16 x i32> %50, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 24, i32 25, i32 26, i32 27, i32 28, i32 29, i32 30, i32 31>
  %52 = shufflevector <16 x i32> %49, <16 x i32> %50, <16 x i32> <i32 1, i32 0, i32 3, i32 2, i32 5, i32 4, i32 7, i32 6, i32 25, i32 24, i32 27, i32 26, i32 29, i32 28, i32 31, i32 30>
  %53 = add nsw <16 x i32> %51, %52
  %54 = sub nsw <16 x i32> %51, %52
  %55 = shufflevector <16 x i32> %53, <16 x i32> %54, <16 x i32> <i32 0, i32 17, i32 2, i32 19, i32 20, i32 5, i32 6, i32 23, i32 24, i32 9, i32 10, i32 27, i32 28, i32 13, i32 14, i32 31>
  %56 = shufflevector <16 x i32> %53, <16 x i32> %54, <16 x i32> <i32 2, i32 19, i32 0, i32 17, i32 23, i32 6, i32 5, i32 20, i32 27, i32 10, i32 9, i32 24, i32 31, i32 14, i32 13, i32 28>
  %57 = add nsw <16 x i32> %55, %56
  %58 = sub nsw <16 x i32> %55, %56
  %59 = shufflevector <16 x i32> %57, <16 x i32> %58, <16 x i32> <i32 0, i32 1, i32 18, i32 19, i32 4, i32 5, i32 22, i32 23, i32 8, i32 9, i32 26, i32 27, i32 12, i32 13, i32 30, i32 31>
  %60 = lshr <16 x i32> %59, <i32 15, i32 15, i32 15, i32 15, i32 15, i32 15, i32 15, i32 15, i32 15, i32 15, i32 15, i32 15, i32 15, i32 15, i32 15, i32 15>
  %61 = and <16 x i32> %60, <i32 65537, i32 65537, i32 65537, i32 65537, i32 65537, i32 65537, i32 65537, i32 65537, i32 65537, i32 65537, i32 65537, i32 65537, i32 65537, i32 65537, i32 65537, i32 65537>
  %62 = mul nuw <16 x i32> %61, <i32 65535, i32 65535, i32 65535, i32 65535, i32 65535, i32 65535, i32 65535, i32 65535, i32 65535, i32 65535, i32 65535, i32 65535, i32 65535, i32 65535, i32 65535, i32 65535>
  %63 = add <16 x i32> %62, %59
  %64 = xor <16 x i32> %63, %62
  %65 = call i32 @llvm.vector.reduce.add.v16i32(<16 x i32> %64)
  %conv118 = and i32 %65, 65535
  %shr = lshr i32 %65, 16
  %add119 = add nuw nsw i32 %conv118, %shr
  %shr120 = lshr i32 %add119, 1
  ret i32 %shr120
}

declare i32 @llvm.vector.reduce.add.v16i32(<16 x i32>)