File: bf16.ll

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.6-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,304 kB
  • sloc: cpp: 7,438,677; ansic: 1,393,822; asm: 1,012,926; python: 241,650; f90: 86,635; objc: 75,479; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
file content (243 lines) | stat: -rw-r--r-- 7,459 bytes parent folder | download | duplicates (6)
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
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
; RUN: llc < %s -mtriple=arm64-eabi -mattr=+bf16 | FileCheck %s
; RUN: llc < %s -mtriple=aarch64 -mattr=+bf16 | FileCheck %s

; test argument passing and simple load/store

define bfloat @test_load(ptr %p) nounwind {
; CHECK-LABEL: test_load:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldr h0, [x0]
; CHECK-NEXT:    ret
  %tmp1 = load bfloat, ptr %p, align 16
  ret bfloat %tmp1
}

define bfloat @test_load_offset1(ptr %p) nounwind {
; CHECK-LABEL: test_load_offset1:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldur h0, [x0, #1]
; CHECK-NEXT:    ret
  %g = getelementptr inbounds i8, ptr %p, i64 1
  %tmp1 = load bfloat, ptr %g, align 2
  ret bfloat %tmp1
}

define bfloat @test_load_offset2(ptr %p) nounwind {
; CHECK-LABEL: test_load_offset2:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldr h0, [x0, #2]
; CHECK-NEXT:    ret
  %g = getelementptr inbounds i8, ptr %p, i64 2
  %tmp1 = load bfloat, ptr %g, align 2
  ret bfloat %tmp1
}

define <4 x bfloat> @test_vec_load(ptr %p) nounwind {
; CHECK-LABEL: test_vec_load:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldr d0, [x0]
; CHECK-NEXT:    ret
  %tmp1 = load <4 x bfloat>, ptr %p, align 16
  ret <4 x bfloat> %tmp1
}

define void @test_store(ptr %a, bfloat %b) nounwind {
; CHECK-LABEL: test_store:
; CHECK:       // %bb.0:
; CHECK-NEXT:    str h0, [x0]
; CHECK-NEXT:    ret
  store bfloat %b, ptr %a, align 16
  ret void
}

define void @test_store_negative_offset(ptr %a, bfloat %b) nounwind {
; CHECK-LABEL: test_store_negative_offset:
; CHECK:       // %bb.0: // %entry
; CHECK-NEXT:    stur h0, [x0, #-4]
; CHECK-NEXT:    ret
entry:
  %0 = getelementptr inbounds bfloat, ptr %a, i64 -2
  store bfloat %b, ptr %0, align 2
  ret void
}

; Simple store of v4bf16
define void @test_vec_store(ptr %a, <4 x bfloat> %b) nounwind {
; CHECK-LABEL: test_vec_store:
; CHECK:       // %bb.0: // %entry
; CHECK-NEXT:    str d0, [x0]
; CHECK-NEXT:    ret
entry:
  store <4 x bfloat> %b, ptr %a, align 16
  ret void
}

define <8 x bfloat> @test_build_vector_const() {
; CHECK-LABEL: test_build_vector_const:
; CHECK:       // %bb.0:
; CHECK-NEXT:    mov w8, #16256 // =0x3f80
; CHECK-NEXT:    dup v0.8h, w8
; CHECK-NEXT:    ret
  ret  <8 x bfloat> <bfloat 0xR3F80, bfloat 0xR3F80, bfloat 0xR3F80, bfloat 0xR3F80, bfloat 0xR3F80, bfloat 0xR3F80, bfloat 0xR3F80, bfloat 0xR3F80>
}

define ptr @test_store_post(bfloat %val, ptr %ptr) {
; CHECK-LABEL: test_store_post:
; CHECK:       // %bb.0:
; CHECK-NEXT:    str h0, [x0], #2
; CHECK-NEXT:    ret
  store bfloat %val, ptr %ptr
  %next = getelementptr bfloat, ptr %ptr, i32 1
  ret ptr %next
}

define ptr @test_store_post_v4bf16(<4 x bfloat> %val, ptr %ptr) {
; CHECK-LABEL: test_store_post_v4bf16:
; CHECK:       // %bb.0:
; CHECK-NEXT:    str d0, [x0], #8
; CHECK-NEXT:    ret
  store <4 x bfloat> %val, ptr %ptr
  %next = getelementptr <4 x bfloat>, ptr %ptr, i32 1
  ret ptr %next
}

define ptr @test_store_post_v8bf16(<8 x bfloat> %val, ptr %ptr) {
; CHECK-LABEL: test_store_post_v8bf16:
; CHECK:       // %bb.0:
; CHECK-NEXT:    str q0, [x0], #16
; CHECK-NEXT:    ret
  store <8 x bfloat> %val, ptr %ptr
  %next = getelementptr <8 x bfloat>, ptr %ptr, i32 1
  ret ptr %next
}

define { bfloat, ptr } @test_load_post(ptr %ptr) {
; CHECK-LABEL: test_load_post:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldr h0, [x0], #2
; CHECK-NEXT:    ret
  %val = load bfloat, ptr %ptr
  %res.tmp = insertvalue { bfloat, ptr } undef, bfloat %val, 0
  %next = getelementptr bfloat, ptr %ptr, i32 1
  %res = insertvalue { bfloat, ptr } %res.tmp, ptr %next, 1
  ret { bfloat, ptr } %res
}

define { <4 x bfloat>, ptr } @test_load_post_v4bf16(ptr %ptr) {
; CHECK-LABEL: test_load_post_v4bf16:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldr d0, [x0], #8
; CHECK-NEXT:    ret
  %val = load <4 x bfloat>, ptr %ptr
  %res.tmp = insertvalue { <4 x bfloat>, ptr } undef, <4 x bfloat> %val, 0
  %next = getelementptr <4 x bfloat>, ptr %ptr, i32 1
  %res = insertvalue { <4 x bfloat>, ptr } %res.tmp, ptr %next, 1
  ret { <4 x bfloat>, ptr } %res
}

define { <8 x bfloat>, ptr } @test_load_post_v8bf16(ptr %ptr) {
; CHECK-LABEL: test_load_post_v8bf16:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldr q0, [x0], #16
; CHECK-NEXT:    ret
  %val = load <8 x bfloat>, ptr %ptr
  %res.tmp = insertvalue { <8 x bfloat>, ptr } undef, <8 x bfloat> %val, 0
  %next = getelementptr <8 x bfloat>, ptr %ptr, i32 1
  %res = insertvalue { <8 x bfloat>, ptr } %res.tmp, ptr %next, 1
  ret { <8 x bfloat>, ptr } %res
}

define ptr @test_store_pre(bfloat %val, ptr %ptr) {
; CHECK-LABEL: test_store_pre:
; CHECK:       // %bb.0:
; CHECK-NEXT:    str h0, [x0, #2]!
; CHECK-NEXT:    ret
  %next = getelementptr bfloat, ptr %ptr, i32 1
  store bfloat %val, ptr %next
  ret ptr %next
}

define ptr @test_store_pre_v4bf16(<4 x bfloat> %val, ptr %ptr) {
; CHECK-LABEL: test_store_pre_v4bf16:
; CHECK:       // %bb.0:
; CHECK-NEXT:    str d0, [x0, #8]!
; CHECK-NEXT:    ret
  %next = getelementptr <4 x bfloat>, ptr %ptr, i32 1
  store <4 x bfloat> %val, ptr %next
  ret ptr %next
}

define ptr @test_store_pre_v8bf16(<8 x bfloat> %val, ptr %ptr) {
; CHECK-LABEL: test_store_pre_v8bf16:
; CHECK:       // %bb.0:
; CHECK-NEXT:    str q0, [x0, #16]!
; CHECK-NEXT:    ret
  %next = getelementptr <8 x bfloat>, ptr %ptr, i32 1
  store <8 x bfloat> %val, ptr %next
  ret ptr %next
}

define ptr @test_store_pre_v8bf16_trunc(ptr %ptr) {
; CHECK-LABEL: test_store_pre_v8bf16_trunc:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldr q0, [x0]
; CHECK-NEXT:    str q0, [x0, #16]!
; CHECK-NEXT:    ret
  %t = load <8 x bfloat>, ptr %ptr
  %next = getelementptr <8 x bfloat>, ptr %ptr, i32 1
  store <8 x bfloat> %t, ptr %next
  ret ptr %next
}

define { bfloat, ptr } @test_load_pre(ptr %ptr) {
; CHECK-LABEL: test_load_pre:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldr h0, [x0, #2]!
; CHECK-NEXT:    ret
  %next = getelementptr bfloat, ptr %ptr, i32 1
  %val = load bfloat, ptr %next
  %res.tmp = insertvalue { bfloat, ptr } undef, bfloat %val, 0
  %res = insertvalue { bfloat, ptr } %res.tmp, ptr %next, 1
  ret { bfloat, ptr } %res
}

define { <4 x bfloat>, ptr } @test_load_pre_v4bf16(ptr %ptr) {
; CHECK-LABEL: test_load_pre_v4bf16:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldr d0, [x0, #8]!
; CHECK-NEXT:    ret
  %next = getelementptr <4 x bfloat>, ptr %ptr, i32 1
  %val = load <4 x bfloat>, ptr %next
  %res.tmp = insertvalue { <4 x bfloat>, ptr } undef, <4 x bfloat> %val, 0
  %res = insertvalue { <4 x bfloat>, ptr } %res.tmp, ptr %next, 1
  ret { <4 x bfloat>, ptr } %res
}

define { <8 x bfloat>, ptr } @test_load_pre_v8bf16(ptr %ptr) {
; CHECK-LABEL: test_load_pre_v8bf16:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ldr q0, [x0, #16]!
; CHECK-NEXT:    ret
  %next = getelementptr <8 x bfloat>, ptr %ptr, i32 1
  %val = load <8 x bfloat>, ptr %next
  %res.tmp = insertvalue { <8 x bfloat>, ptr } undef, <8 x bfloat> %val, 0
  %res = insertvalue { <8 x bfloat>, ptr } %res.tmp, ptr %next, 1
  ret { <8 x bfloat>, ptr } %res
}

define bfloat @test_bitcast_halftobfloat(half %a) nounwind {
; CHECK-LABEL: test_bitcast_halftobfloat:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ret
  %r = bitcast half %a to bfloat
  ret bfloat %r
}

define half @test_bitcast_bfloattohalf(bfloat %a) nounwind {
; CHECK-LABEL: test_bitcast_bfloattohalf:
; CHECK:       // %bb.0:
; CHECK-NEXT:    ret
  %r = bitcast bfloat %a to half
  ret half %r
}