-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
Copy pathcodegen_spirv.cc
615 lines (556 loc) · 23.3 KB
/
codegen_spirv.cc
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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*!
* \file codegen_spirv.cc
* \brief Generate SPIRV block
*/
#include "codegen_spirv.h"
#include <tvm/runtime/container.h>
#include <tvm/tir/builtin.h>
#include <tvm/tir/expr.h>
#include <tvm/tir/op.h>
#include <string>
namespace tvm {
namespace codegen {
std::vector<uint32_t> CodeGenSPIRV::BuildFunction(const PrimFunc& f, const std::string& name) {
this->InitFuncState();
ICHECK(f->HasNonzeroAttr(tir::attr::kNoAlias)) << "SPIRV only takes restricted memory model";
std::vector<Var> pod_args;
uint32_t num_buffer = 0;
for (Var arg : f->params) {
DataType t = arg.dtype();
if (t.is_handle()) {
if (auto* ptr = arg->type_annotation.as<PointerTypeNode>()) {
auto* prim = ptr->element_type.as<PrimTypeNode>();
ICHECK(prim);
DataType value_type = prim->dtype;
spirv::Value arg_value =
builder_->BufferArgument(builder_->GetSType(value_type), 0, num_buffer);
storage_info_[arg.get()].UpdateContentType(value_type);
var_map_[arg.get()] = arg_value;
} else {
LOG(FATAL) << "require all handles to be typed";
}
++num_buffer;
} else {
pod_args.push_back(arg);
}
}
spirv::Value func_ptr = builder_->NewFunction();
builder_->StartFunction(func_ptr);
// All the POD arguments are passed in through PushConstant
if (pod_args.size() != 0) {
std::vector<spirv::SType> value_types;
for (size_t i = 0; i < pod_args.size(); ++i) {
value_types.push_back(builder_->GetSType(pod_args[i].dtype()));
}
spirv::Value ptr = builder_->DeclarePushConstant(value_types);
for (size_t i = 0; i < pod_args.size(); ++i) {
spirv::Value value = builder_->GetPushConstant(ptr, value_types[i], static_cast<uint32_t>(i));
var_map_[pod_args[i].get()] = value;
}
}
this->VisitStmt(f->body);
builder_->SetLocalSize(func_ptr, workgroup_size_);
builder_->MakeInst(spv::OpReturn);
builder_->MakeInst(spv::OpFunctionEnd);
builder_->CommitKernelFunction(func_ptr, name);
return builder_->Finalize();
}
void CodeGenSPIRV::InitFuncState() {
std::fill(workgroup_size_, workgroup_size_ + 3, 1);
var_map_.clear();
storage_info_.clear();
analyzer_.reset(new arith::Analyzer());
builder_.reset(new spirv::IRBuilder());
builder_->InitHeader();
}
spirv::Value CodeGenSPIRV::GetThreadIndex(const IterVar& iv, const PrimExpr& extent) {
runtime::ThreadScope ts = runtime::ThreadScope::Create(iv->thread_tag);
spirv::Value v;
if (ts.rank == 1) {
v = builder_->GetLocalID(ts.dim_index);
auto* sizeptr = extent.as<tir::IntImmNode>();
ICHECK(sizeptr) << "SPIRV only allows constant thread group size "
<< " get " << extent;
ICHECK_LT(ts.dim_index, 3);
workgroup_size_[ts.dim_index] = static_cast<uint32_t>(sizeptr->value);
} else {
v = builder_->GetWorkgroupID(ts.dim_index);
}
return builder_->Cast(builder_->GetSType(iv->var.dtype()), v);
}
spirv::Value CodeGenSPIRV::CreateStorageSync(const CallNode* op) {
const std::string& sync = op->args[0].as<StringImmNode>()->value;
spirv::Value value;
if (sync == "warp") {
return value;
} else if (sync == "shared") {
auto type_int = builder_->GetSType(DataType::Int(32));
builder_->MakeInst(
spv::OpControlBarrier,
builder_->IntImm(type_int, static_cast<int64_t>(spv::ScopeWorkgroup)),
builder_->IntImm(type_int, static_cast<int64_t>(spv::ScopeWorkgroup)),
builder_->IntImm(type_int,
static_cast<int64_t>(spv::MemorySemanticsSequentiallyConsistentMask |
spv::MemorySemanticsWorkgroupMemoryMask)));
} else {
LOG(FATAL) << "Do not support sync " << sync;
}
return value;
}
spirv::Value CodeGenSPIRV::VisitExpr_(const VarNode* op) {
auto it = var_map_.find(op);
ICHECK(it != var_map_.end()) << "cannot find variable " << op->name_hint;
return it->second;
}
spirv::Value CodeGenSPIRV::VisitExpr_(const IntImmNode* op) {
return builder_->IntImm(builder_->GetSType(op->dtype), op->value);
}
spirv::Value CodeGenSPIRV::VisitExpr_(const FloatImmNode* op) {
return builder_->FloatImm(builder_->GetSType(op->dtype), op->value);
}
spirv::Value CodeGenSPIRV::VisitExpr_(const StringImmNode* op) {
LOG(FATAL) << "StringImm is not supported in Device code";
return spirv::Value();
}
spirv::Value CodeGenSPIRV::VisitExpr_(const CastNode* op) {
return builder_->Cast(builder_->GetSType(op->dtype), MakeValue(op->value));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const AddNode* op) {
return builder_->Add(MakeValue(op->a), MakeValue(op->b));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const SubNode* op) {
return builder_->Sub(MakeValue(op->a), MakeValue(op->b));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const MulNode* op) {
return builder_->Mul(MakeValue(op->a), MakeValue(op->b));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const DivNode* op) {
return builder_->Div(MakeValue(op->a), MakeValue(op->b));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const ModNode* op) {
return builder_->Mod(MakeValue(op->a), MakeValue(op->b));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const MinNode* op) {
spirv::Value a = MakeValue(op->a);
spirv::Value b = MakeValue(op->b);
return builder_->Select(builder_->LT(a, b), a, b);
}
spirv::Value CodeGenSPIRV::VisitExpr_(const MaxNode* op) {
spirv::Value a = MakeValue(op->a);
spirv::Value b = MakeValue(op->b);
return builder_->Select(builder_->GT(a, b), a, b);
}
spirv::Value CodeGenSPIRV::VisitExpr_(const LTNode* op) {
return builder_->LT(MakeValue(op->a), MakeValue(op->b));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const LENode* op) {
return builder_->LE(MakeValue(op->a), MakeValue(op->b));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const GTNode* op) {
return builder_->GT(MakeValue(op->a), MakeValue(op->b));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const GENode* op) {
return builder_->GE(MakeValue(op->a), MakeValue(op->b));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const EQNode* op) {
return builder_->EQ(MakeValue(op->a), MakeValue(op->b));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const NENode* op) {
return builder_->NE(MakeValue(op->a), MakeValue(op->b));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const AndNode* op) {
spirv::Value a = MakeValue(op->a);
spirv::Value b = MakeValue(op->b);
return builder_->MakeValue(spv::OpLogicalAnd, a.stype, a, b);
}
spirv::Value CodeGenSPIRV::VisitExpr_(const OrNode* op) {
spirv::Value a = MakeValue(op->a);
spirv::Value b = MakeValue(op->b);
return builder_->MakeValue(spv::OpLogicalOr, a.stype, a, b);
}
spirv::Value CodeGenSPIRV::VisitExpr_(const NotNode* op) {
spirv::Value a = MakeValue(op->a);
return builder_->MakeValue(spv::OpLogicalNot, a.stype, a);
}
spirv::Value CodeGenSPIRV::VisitExpr_(const SelectNode* op) {
return builder_->Select(MakeValue(op->condition), MakeValue(op->true_value),
MakeValue(op->false_value));
}
spirv::Value CodeGenSPIRV::VisitExpr_(const LetNode* op) {
auto it = let_binding_.find(op->var);
if (it != let_binding_.end()) {
ICHECK(deep_equal_(it->second->value, op->value))
<< "Let cannot bind the same var to two different values";
} else {
let_binding_[op->var] = op;
}
var_map_[op->var.get()] = MakeValue(op->value);
analyzer_->Bind(op->var, op->value);
return MakeValue(op->body);
}
spirv::Value CodeGenSPIRV::VisitExpr_(const CallNode* op) {
if (op->op.same_as(builtin::call_spirv_pure_glsl450())) {
ICHECK_GE(op->args.size(), 2U);
uint32_t inst_id = static_cast<uint32_t>(op->args[0].as<IntImmNode>()->value);
std::vector<spirv::Value> values;
for (size_t i = 1; i < op->args.size(); ++i) {
values.push_back(MakeValue(op->args[i]));
}
return builder_->CallGLSL450(builder_->GetSType(op->dtype), inst_id, values);
} else if (op->op.same_as(builtin::bitwise_and())) {
ICHECK_EQ(op->args.size(), 2U);
spirv::Value a = MakeValue(op->args[0]);
spirv::Value b = MakeValue(op->args[1]);
return builder_->MakeValue(spv::OpBitwiseAnd, a.stype, a, b);
} else if (op->op.same_as(builtin::bitwise_xor())) {
ICHECK_EQ(op->args.size(), 2U);
spirv::Value a = MakeValue(op->args[0]);
spirv::Value b = MakeValue(op->args[1]);
return builder_->MakeValue(spv::OpBitwiseXor, a.stype, a, b);
} else if (op->op.same_as(builtin::bitwise_or())) {
ICHECK_EQ(op->args.size(), 2U);
spirv::Value a = MakeValue(op->args[0]);
spirv::Value b = MakeValue(op->args[1]);
return builder_->MakeValue(spv::OpBitwiseOr, a.stype, a, b);
} else if (op->op.same_as(builtin::bitwise_not())) {
ICHECK_EQ(op->args.size(), 1U);
spirv::Value a = MakeValue(op->args[0]);
return builder_->MakeValue(spv::OpNot, a.stype, a);
} else if (op->op.same_as(builtin::shift_left())) {
ICHECK_EQ(op->args.size(), 2U);
spirv::Value a = MakeValue(op->args[0]);
spirv::Value b = MakeValue(op->args[1]);
return builder_->MakeValue(spv::OpShiftLeftLogical, a.stype, a, b);
} else if (op->op.same_as(builtin::shift_right())) {
ICHECK_EQ(op->args.size(), 2U);
spirv::Value a = MakeValue(op->args[0]);
spirv::Value b = MakeValue(op->args[1]);
if (op->args[0].dtype().is_int()) {
return builder_->MakeValue(spv::OpShiftRightArithmetic, a.stype, a, b);
} else {
return builder_->MakeValue(spv::OpShiftRightLogical, a.stype, a, b);
}
} else if (op->op.same_as(builtin::reinterpret())) {
return builder_->MakeValue(spv::OpBitcast, builder_->GetSType(op->dtype),
MakeValue(op->args[0]));
} else if (op->op.same_as(builtin::large_uint_imm())) {
ICHECK_EQ(op->args.size(), 2U);
uint64_t low = static_cast<uint64_t>(Downcast<IntImm>(op->args[0])->value);
uint64_t high = static_cast<uint64_t>(Downcast<IntImm>(op->args[1])->value);
uint64_t val = (high << 32U) | low;
return builder_->UIntImm(builder_->GetSType(op->dtype), val);
} else if (op->op.same_as(builtin::tvm_storage_sync())) {
return this->CreateStorageSync(op);
} else if (op->op.same_as(builtin::if_then_else())) {
ICHECK_EQ(op->args.size(), 3U);
spirv::Value cond = MakeValue(op->args[0]);
spirv::Label then_label = builder_->NewLabel();
spirv::Label else_label = builder_->NewLabel();
spirv::Label merge_label = builder_->NewLabel();
builder_->MakeInst(spv::OpSelectionMerge, merge_label, spv::SelectionControlMaskNone);
builder_->MakeInst(spv::OpBranchConditional, cond, then_label, else_label);
// then block, must get label after we see the value
builder_->StartLabel(then_label);
spirv::Value then_value = MakeValue(op->args[1]);
spirv::Label then_value_label = builder_->CurrentLabel();
builder_->MakeInst(spv::OpBranch, merge_label);
// else block
builder_->StartLabel(else_label);
spirv::Value else_value = MakeValue(op->args[2]);
spirv::Label else_value_label = builder_->CurrentLabel();
builder_->MakeInst(spv::OpBranch, merge_label);
// merge block
builder_->StartLabel(merge_label);
spirv::PhiValue phi = builder_->MakePhi(then_value.stype, 2);
phi.SetIncoming(0, then_value, then_value_label);
phi.SetIncoming(1, else_value, else_value_label);
return phi;
} else if (op->op.same_as(builtin::popcount())) {
return builder_->MakeValue(spv::OpBitCount, builder_->GetSType(op->dtype),
MakeValue(op->args[0]));
} else {
LOG(FATAL) << "Unresolved call " << op->op;
return spirv::Value();
}
}
spirv::Value CodeGenSPIRV::VisitExpr_(const RampNode* op) {
std::vector<spirv::Value> values;
spirv::Value base = MakeValue(op->base);
for (int i = 0; i < op->lanes; ++i) {
spirv::Value v = base;
if (i != 0) {
spirv::Value offset = MakeValue(make_const(op->stride.dtype(), i) * op->stride);
v = builder_->Add(v, offset);
}
values.push_back(v);
}
return builder_->Concat(values);
}
spirv::Value CodeGenSPIRV::VisitExpr_(const BroadcastNode* op) {
std::vector<spirv::Value> values;
spirv::Value v = MakeValue(op->value);
for (int i = 0; i < op->lanes; i++) {
values.push_back(v);
}
return builder_->Concat(values);
}
spirv::Value CodeGenSPIRV::VisitExpr_(const LoadNode* op) {
ICHECK(is_one(op->predicate));
auto it = storage_info_.find(op->buffer_var.get());
ICHECK(it != storage_info_.end());
StorageInfo& info = it->second;
if (!info.content_fixed) {
info.UpdateContentType(op->dtype);
}
spirv::SType content_type = builder_->GetSType(info.content_type);
spirv::Value buffer = MakeValue(op->buffer_var);
spirv::SType ptr_type = builder_->GetPointerType(content_type, buffer.stype.storage_class);
uint32_t mask = spv::MemoryAccessMaskNone;
if (info.is_volatile) {
mask |= spv::MemoryAccessVolatileMask;
}
if (op->dtype.lanes() == 1) {
ICHECK_EQ(info.content_type, op->dtype)
<< "Vulkan only allow one type access to the same buffer";
spirv::Value index = MakeValue(op->index);
spirv::Value ptr = builder_->StructArrayAccess(ptr_type, buffer, index);
return builder_->MakeValue(spv::OpLoad, content_type, ptr, mask);
} else {
if (op->dtype.element_of() == info.content_type) {
// because content type is element type, we can only do scalarize load.
std::vector<spirv::Value> values;
auto f = [&](int i, spirv::Value index) {
spirv::Value ptr = builder_->StructArrayAccess(ptr_type, buffer, index);
values.emplace_back(builder_->MakeValue(spv::OpLoad, content_type, ptr, mask));
};
this->Scalarize(op->index, f);
return builder_->Concat(values);
} else {
if (const RampNode* ramp = op->index.as<RampNode>()) {
if (is_one(ramp->stride)) {
ICHECK_EQ(ramp->lanes, op->dtype.lanes());
arith::ModularSet me = analyzer_->modular_set(ramp->base);
ICHECK((me->coeff % ramp->lanes) == 0 && (me->base % ramp->lanes) == 0)
<< "Only aligned vector access is allowed in SPIRV";
PrimExpr vec_index =
analyzer_->Simplify(ramp->base / make_const(ramp->base.dtype(), ramp->lanes));
spirv::Value ptr = builder_->StructArrayAccess(ptr_type, buffer, MakeValue(vec_index));
return builder_->MakeValue(spv::OpLoad, content_type, ptr, mask);
}
}
}
LOG(FATAL) << "Only aligned continuous vector access is allowed in SPIRV";
}
LOG(FATAL) << "Only aligned continuous vector access is allowed in SPIRV";
return spirv::Value();
}
void CodeGenSPIRV::Scalarize(const PrimExpr& e, std::function<void(int i, spirv::Value v)> f) {
if (const RampNode* ramp = e.as<RampNode>()) {
for (int i = 0; i < ramp->dtype.lanes(); ++i) {
PrimExpr offset = ramp->base + ramp->stride * i;
f(i, MakeValue(offset));
}
} else {
spirv::SType etype = builder_->GetSType(e.dtype().element_of());
spirv::Value value = MakeValue(e);
for (int i = 0; i < e.dtype().lanes(); ++i) {
f(i, builder_->MakeValue(spv::OpCompositeExtract, etype, value, i));
}
}
}
void CodeGenSPIRV::VisitStmt_(const StoreNode* op) {
ICHECK(is_one(op->predicate));
auto it = storage_info_.find(op->buffer_var.get());
ICHECK(it != storage_info_.end());
StorageInfo& info = it->second;
if (!info.content_fixed) {
info.UpdateContentType(op->value.dtype());
}
spirv::SType content_type = builder_->GetSType(info.content_type);
spirv::Value buffer = MakeValue(op->buffer_var);
spirv::Value value = MakeValue(op->value);
spirv::SType ptr_type = builder_->GetPointerType(content_type, buffer.stype.storage_class);
uint32_t mask = spv::MemoryAccessMaskNone;
if (info.is_volatile) {
mask |= spv::MemoryAccessVolatileMask;
}
if (op->value.dtype().lanes() == 1) {
ICHECK_EQ(info.content_type, op->value.dtype())
<< "Vulkan only allow one type access to the same buffer";
spirv::Value index = MakeValue(op->index);
spirv::Value ptr = builder_->StructArrayAccess(ptr_type, buffer, index);
builder_->MakeInst(spv::OpStore, ptr, value, mask);
} else {
if (op->value.dtype().element_of() == info.content_type) {
// because content type is element type, we can only do scalarize load.
auto f = [&](int i, spirv::Value index) {
spirv::Value elem = builder_->MakeValue(spv::OpCompositeExtract, content_type, value, i);
spirv::Value ptr = builder_->StructArrayAccess(ptr_type, buffer, index);
builder_->MakeInst(spv::OpStore, ptr, elem, mask);
};
this->Scalarize(op->index, f);
} else {
if (const RampNode* ramp = op->index.as<RampNode>()) {
if (is_one(ramp->stride)) {
ICHECK_EQ(ramp->lanes, op->value.dtype().lanes());
arith::ModularSet me = analyzer_->modular_set(ramp->base);
ICHECK((me->coeff % ramp->lanes) == 0 && (me->base % ramp->lanes) == 0)
<< "Only aligned vector access is allowed in SPIRV";
PrimExpr vec_index =
analyzer_->Simplify(ramp->base / make_const(ramp->base.dtype(), ramp->lanes));
spirv::Value ptr = builder_->StructArrayAccess(ptr_type, buffer, MakeValue(vec_index));
builder_->MakeInst(spv::OpStore, ptr, value, mask);
return;
}
}
LOG(FATAL) << "Only aligned continuous vector access is allowed in SPIRV";
}
}
}
void CodeGenSPIRV::VisitStmt_(const ForNode* op) {
ICHECK(is_zero(op->min));
analyzer_->Bind(op->loop_var, Range::FromMinExtent(op->min, op->extent));
spirv::Value init_value = MakeValue(op->min);
spirv::Value extent_value = MakeValue(op->extent);
// Must get init label after making value(to make sure they are correct)
spirv::Label init_label = builder_->CurrentLabel();
spirv::Label head_label = builder_->NewLabel();
spirv::Label body_label = builder_->NewLabel();
spirv::Label continue_label = builder_->NewLabel();
spirv::Label merge_label = builder_->NewLabel();
builder_->MakeInst(spv::OpBranch, head_label);
// Loop head
builder_->StartLabel(head_label);
spirv::PhiValue loop_var = builder_->MakePhi(init_value.stype, 2);
loop_var.SetIncoming(0, init_value, init_label);
spirv::Value loop_cond = builder_->LT(loop_var, extent_value);
uint32_t control =
(op->kind == ForKind::kUnrolled ? spv::LoopControlUnrollMask : spv::LoopControlMaskNone);
builder_->MakeInst(spv::OpLoopMerge, merge_label, continue_label, control);
builder_->MakeInst(spv::OpBranchConditional, loop_cond, body_label, merge_label,
weight_likely_branch_, 1);
// loop body
builder_->StartLabel(body_label);
var_map_[op->loop_var.get()] = spirv::Value(loop_var);
this->VisitStmt(op->body);
builder_->MakeInst(spv::OpBranch, continue_label);
// loop continue
builder_->StartLabel(continue_label);
spirv::Value one = op->loop_var.dtype().is_int() ? builder_->IntImm(loop_var.stype, 1)
: builder_->UIntImm(loop_var.stype, 1);
spirv::Value next_value = builder_->Add(loop_var, one);
loop_var.SetIncoming(1, next_value, builder_->CurrentLabel());
builder_->MakeInst(spv::OpBranch, head_label);
// loop merge
builder_->StartLabel(merge_label);
}
void CodeGenSPIRV::VisitStmt_(const IfThenElseNode* op) {
spirv::Value cond = MakeValue(op->condition);
spirv::Label then_label = builder_->NewLabel();
spirv::Label merge_label = builder_->NewLabel();
if (op->else_case.defined()) {
spirv::Label else_label = builder_->NewLabel();
builder_->MakeInst(spv::OpSelectionMerge, merge_label, spv::SelectionControlMaskNone);
builder_->MakeInst(spv::OpBranchConditional, cond, then_label, else_label);
// then block
builder_->StartLabel(then_label);
this->VisitStmt(op->then_case);
builder_->MakeInst(spv::OpBranch, merge_label);
// else block
builder_->StartLabel(else_label);
this->VisitStmt(op->else_case);
builder_->MakeInst(spv::OpBranch, merge_label);
} else {
builder_->MakeInst(spv::OpSelectionMerge, merge_label, spv::SelectionControlMaskNone);
builder_->MakeInst(spv::OpBranchConditional, cond, then_label, merge_label,
weight_likely_branch_, 1);
// then block
builder_->StartLabel(then_label);
this->VisitStmt(op->then_case);
builder_->MakeInst(spv::OpBranch, merge_label);
}
// start merge label;
builder_->StartLabel(merge_label);
}
void CodeGenSPIRV::VisitStmt_(const AllocateNode* op) {
ICHECK(!is_zero(op->condition));
ICHECK(!op->dtype.is_handle());
int32_t constant_size = op->constant_allocation_size();
ICHECK_GT(constant_size, 0) << "Can only handle constant size stack allocation in GPU";
spirv::Value buf;
StorageInfo& info = storage_info_[op->buffer_var.get()];
spirv::SType etype = builder_->GetSType(op->dtype);
if (info.scope.rank == runtime::StorageRank::kLocal) {
buf =
builder_->Allocate(etype, static_cast<uint32_t>(constant_size), spv::StorageClassFunction);
} else {
// shared memory
ICHECK(info.scope.rank == runtime::StorageRank::kShared)
<< "Can only allocate shared or local memory inside kernel";
// Shared memory
buf =
builder_->Allocate(etype, static_cast<uint32_t>(constant_size), spv::StorageClassWorkgroup);
}
ICHECK(!info.content_fixed);
info.UpdateContentType(op->dtype);
ICHECK(!var_map_.count(op->buffer_var.get()));
var_map_[op->buffer_var.get()] = buf;
this->VisitStmt(op->body);
}
void CodeGenSPIRV::VisitStmt_(const AttrStmtNode* op) {
if (op->attr_key == tir::attr::thread_extent) {
IterVar iv = Downcast<IterVar>(op->node);
if (iv->thread_tag.length() != 0) {
if (!var_map_.count(iv->var.get())) {
var_map_[iv->var.get()] = GetThreadIndex(iv, op->value);
analyzer_->Bind(iv->var, Range::FromMinExtent(0, op->value));
}
}
} else if (op->attr_key == tir::attr::storage_scope) {
const VarNode* v = op->node.as<VarNode>();
ICHECK(v);
storage_info_[v].scope = runtime::StorageScope::Create(op->value.as<StringImmNode>()->value);
} else if (op->attr_key == tir::attr::volatile_scope) {
const VarNode* v = op->node.as<VarNode>();
ICHECK(v);
storage_info_[v].is_volatile = true;
}
this->VisitStmt(op->body);
}
void CodeGenSPIRV::VisitStmt_(const AssertStmtNode* op) {
With<arith::ConstraintContext> cctx(analyzer_.get(), op->condition);
this->VisitStmt(op->body);
}
void CodeGenSPIRV::VisitStmt_(const LetStmtNode* op) {
ICHECK(!var_map_.count(op->var.get()));
ICHECK(!op->var.dtype().is_handle());
var_map_[op->var.get()] = MakeValue(op->value);
analyzer_->Bind(op->var, op->value);
this->VisitStmt(op->body);
}
void CodeGenSPIRV::VisitStmt_(const SeqStmtNode* op) {
for (Stmt stmt : op->seq) {
this->VisitStmt(stmt);
}
}
void CodeGenSPIRV::VisitStmt_(const EvaluateNode* op) { MakeValue(op->value); }
} // namespace codegen
} // namespace tvm