MLIR 24.0.0git
SCFToSPIRV.cpp
Go to the documentation of this file.
1//===- SCFToSPIRV.cpp - SCF to SPIR-V Patterns ----------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements patterns to convert SCF dialect to SPIR-V dialect.
10//
11//===----------------------------------------------------------------------===//
12
19#include "llvm/Support/FormatVariadic.h"
20
21using namespace mlir;
22
23//===----------------------------------------------------------------------===//
24// Context
25//===----------------------------------------------------------------------===//
26
27namespace mlir {
29 // Map between the spirv region control flow operation (spirv.mlir.loop or
30 // spirv.mlir.selection) to the VariableOp created to store the region
31 // results. The order of the VariableOp matches the order of the results.
33};
34} // namespace mlir
35
36/// We use ScfToSPIRVContext to store information about the lowering of the scf
37/// region that need to be used later on. When we lower scf.for/scf.if we create
38/// VariableOp to store the results. We need to keep track of the VariableOp
39/// created as we need to insert stores into them when lowering Yield. Those
40/// StoreOp cannot be created earlier as they may use a different type than
41/// yield operands.
43 impl = std::make_unique<::ScfToSPIRVContextImpl>();
44}
45
47
48namespace {
49
50//===----------------------------------------------------------------------===//
51// Helper Functions
52//===----------------------------------------------------------------------===//
53
54/// Replaces SCF op outputs with SPIR-V variable loads.
55/// We create VariableOp to handle the results value of the control flow region.
56/// spirv.mlir.loop/spirv.mlir.selection currently don't yield value. Right
57/// after the loop we load the value from the allocation and use it as the SCF
58/// op result.
59template <typename ScfOp, typename OpTy>
60void replaceSCFOutputValue(ScfOp scfOp, OpTy newOp,
61 ConversionPatternRewriter &rewriter,
62 ScfToSPIRVContextImpl *scfToSPIRVContext,
63 ArrayRef<Type> returnTypes) {
64
65 Location loc = scfOp.getLoc();
66 auto &allocas = scfToSPIRVContext->outputVars[newOp];
67 // Clearing the allocas is necessary in case a dialect conversion path failed
68 // previously, and this is the second attempt of this conversion.
69 allocas.clear();
70 SmallVector<Value, 8> resultValue;
71 for (Type convertedType : returnTypes) {
72 auto pointerType =
73 spirv::PointerType::get(convertedType, spirv::StorageClass::Function);
74 rewriter.setInsertionPoint(newOp);
75 auto alloc = spirv::VariableOp::create(rewriter, loc, pointerType,
76 spirv::StorageClass::Function,
77 /*initializer=*/nullptr);
78 allocas.push_back(alloc);
79 rewriter.setInsertionPointAfter(newOp);
80 Value loadResult = spirv::LoadOp::create(rewriter, loc, alloc);
81 resultValue.push_back(loadResult);
82 }
83 rewriter.replaceOp(scfOp, resultValue);
84}
85
86Region::iterator getBlockIt(Region &region, unsigned index) {
87 return std::next(region.begin(), index);
88}
89
90//===----------------------------------------------------------------------===//
91// Conversion Patterns
92//===----------------------------------------------------------------------===//
93
94/// Common class for all vector to GPU patterns.
95template <typename OpTy>
96class SCFToSPIRVPattern : public OpConversionPattern<OpTy> {
97public:
98 SCFToSPIRVPattern(MLIRContext *context, const SPIRVTypeConverter &converter,
99 ScfToSPIRVContextImpl *scfToSPIRVContext)
100 : OpConversionPattern<OpTy>::OpConversionPattern(converter, context),
101 scfToSPIRVContext(scfToSPIRVContext), typeConverter(converter) {}
102
103protected:
104 ScfToSPIRVContextImpl *scfToSPIRVContext;
105 // FIXME: We explicitly keep a reference of the type converter here instead of
106 // passing it to OpConversionPattern during construction. This effectively
107 // bypasses the conversion framework's automation on type conversion. This is
108 // needed right now because the conversion framework will unconditionally
109 // legalize all types used by SCF ops upon discovering them, for example, the
110 // types of loop carried values. We use SPIR-V variables for those loop
111 // carried values. Depending on the available capabilities, the SPIR-V
112 // variable can be different, for example, cooperative matrix or normal
113 // variable. We'd like to detach the conversion of the loop carried values
114 // from the SCF ops (which is mainly a region). So we need to "mark" types
115 // used by SCF ops as legal, if to use the conversion framework for type
116 // conversion. There isn't a straightforward way to do that yet, as when
117 // converting types, ops aren't taken into consideration. Therefore, we just
118 // bypass the framework's type conversion for now.
119 const SPIRVTypeConverter &typeConverter;
120};
121
122//===----------------------------------------------------------------------===//
123// scf::ForOp
124//===----------------------------------------------------------------------===//
125
126/// Pattern to convert a scf::ForOp within kernel functions into spirv::LoopOp.
127struct ForOpConversion final : SCFToSPIRVPattern<scf::ForOp> {
128 using SCFToSPIRVPattern::SCFToSPIRVPattern;
129
130 LogicalResult
131 matchAndRewrite(scf::ForOp forOp, OpAdaptor adaptor,
132 ConversionPatternRewriter &rewriter) const override {
133 // scf::ForOp can be lowered to the structured control flow represented by
134 // spirv::LoopOp by making the continue block of the spirv::LoopOp the loop
135 // latch and the merge block the exit block. The resulting spirv::LoopOp has
136 // a single back edge from the continue to header block, and a single exit
137 // from header to merge.
138 auto loc = forOp.getLoc();
139 auto loopControl = spirv::LoopControl::None;
140 if (auto attr = forOp->getAttrOfType<spirv::LoopControlAttr>(
142 loopControl = attr.getValue();
143 auto loopOp = spirv::LoopOp::create(rewriter, loc, loopControl);
144 loopOp.addEntryAndMergeBlock(rewriter);
145
146 OpBuilder::InsertionGuard guard(rewriter);
147 // Create the block for the header.
148 Block *header = rewriter.createBlock(&loopOp.getBody(),
149 getBlockIt(loopOp.getBody(), 1));
150 rewriter.setInsertionPointAfter(loopOp);
151
152 // Create the new induction variable to use.
153 Value adapLowerBound = adaptor.getLowerBound();
154 BlockArgument newIndVar =
155 header->addArgument(adapLowerBound.getType(), adapLowerBound.getLoc());
156 for (Value arg : adaptor.getInitArgs())
157 header->addArgument(arg.getType(), arg.getLoc());
158 Block *body = forOp.getBody();
159
160 // Apply signature conversion to the body of the forOp. It has a single
161 // block, with argument which is the induction variable. That has to be
162 // replaced with the new induction variable.
163 TypeConverter::SignatureConversion signatureConverter(
164 body->getNumArguments());
165 signatureConverter.remapInput(0, newIndVar);
166 for (unsigned i = 1, e = body->getNumArguments(); i < e; i++)
167 signatureConverter.remapInput(i, header->getArgument(i));
168 body = rewriter.applySignatureConversion(&forOp.getRegion().front(),
169 signatureConverter);
170
171 // Move the blocks from the forOp into the loopOp. This is the body of the
172 // loopOp.
173 rewriter.inlineRegionBefore(forOp->getRegion(0), loopOp.getBody(),
174 getBlockIt(loopOp.getBody(), 2));
175
176 SmallVector<Value, 8> args(1, adaptor.getLowerBound());
177 args.append(adaptor.getInitArgs().begin(), adaptor.getInitArgs().end());
178 // Branch into it from the entry.
179 rewriter.setInsertionPointToEnd(&(loopOp.getBody().front()));
180 spirv::BranchOp::create(rewriter, loc, header, args);
181
182 // Generate the rest of the loop header.
183 rewriter.setInsertionPointToEnd(header);
184 auto *mergeBlock = loopOp.getMergeBlock();
185 Value cmpOp;
186 if (forOp.getUnsignedCmp()) {
187 cmpOp = spirv::ULessThanOp::create(rewriter, loc, rewriter.getI1Type(),
188 newIndVar, adaptor.getUpperBound());
189 } else {
190 cmpOp = spirv::SLessThanOp::create(rewriter, loc, rewriter.getI1Type(),
191 newIndVar, adaptor.getUpperBound());
192 }
193
194 spirv::BranchConditionalOp::create(rewriter, loc, cmpOp, body,
195 ArrayRef<Value>(), mergeBlock,
196 ArrayRef<Value>());
197
198 // Generate instructions to increment the step of the induction variable and
199 // branch to the header.
200 Block *continueBlock = loopOp.getContinueBlock();
201 rewriter.setInsertionPointToEnd(continueBlock);
202
203 // Add the step to the induction variable and branch to the header.
204 Value updatedIndVar = spirv::IAddOp::create(
205 rewriter, loc, newIndVar.getType(), newIndVar, adaptor.getStep());
206 spirv::BranchOp::create(rewriter, loc, header, updatedIndVar);
207
208 // Infer the return types from the init operands. Vector type may get
209 // converted to CooperativeMatrix or to Vector type, to avoid having complex
210 // extra logic to figure out the right type we just infer it from the Init
211 // operands.
212 SmallVector<Type, 8> initTypes;
213 for (auto arg : adaptor.getInitArgs())
214 initTypes.push_back(arg.getType());
215 replaceSCFOutputValue(forOp, loopOp, rewriter, scfToSPIRVContext,
216 initTypes);
217
218 // Store init values so a zero-trip loop returns them instead of undef.
219 // Skip the stores if the loop is known to always execute at least once.
220 std::optional<APInt> tripCount = forOp.getStaticTripCount();
221 if (!tripCount || tripCount->isZero()) {
222 auto &allocas = scfToSPIRVContext->outputVars[loopOp];
223 rewriter.setInsertionPoint(loopOp);
224 for (auto [alloca, init] : llvm::zip(allocas, adaptor.getInitArgs()))
225 spirv::StoreOp::create(rewriter, loc, alloca, init);
226 }
227 return success();
228 }
229};
230
231//===----------------------------------------------------------------------===//
232// scf::IfOp
233//===----------------------------------------------------------------------===//
234
235/// Pattern to convert a scf::IfOp within kernel functions into
236/// spirv::SelectionOp.
237struct IfOpConversion : SCFToSPIRVPattern<scf::IfOp> {
238 using SCFToSPIRVPattern::SCFToSPIRVPattern;
239
240 LogicalResult
241 matchAndRewrite(scf::IfOp ifOp, OpAdaptor adaptor,
242 ConversionPatternRewriter &rewriter) const override {
243 // When lowering `scf::IfOp` we explicitly create a selection header block
244 // before the control flow diverges and a merge block where control flow
245 // subsequently converges.
246 auto loc = ifOp.getLoc();
247
248 // Compute return types.
249 SmallVector<Type, 8> returnTypes;
250 for (auto result : ifOp.getResults()) {
251 auto convertedType = typeConverter.convertType(result.getType());
252 if (!convertedType)
253 return rewriter.notifyMatchFailure(
254 loc,
255 llvm::formatv("failed to convert type '{0}'", result.getType()));
256
257 returnTypes.push_back(convertedType);
258 }
259
260 // Create `spirv.selection` operation, selection header block and merge
261 // block.
262 auto selectionControl = spirv::SelectionControl::None;
263 if (auto attr = ifOp->getAttrOfType<spirv::SelectionControlAttr>(
265 selectionControl = attr.getValue();
266 auto selectionOp =
267 spirv::SelectionOp::create(rewriter, loc, selectionControl);
268 auto *mergeBlock = rewriter.createBlock(&selectionOp.getBody(),
269 selectionOp.getBody().end());
270 spirv::MergeOp::create(rewriter, loc);
271
272 OpBuilder::InsertionGuard guard(rewriter);
273 auto *selectionHeaderBlock =
274 rewriter.createBlock(&selectionOp.getBody().front());
275
276 // Inline `then` region before the merge block and branch to it.
277 auto &thenRegion = ifOp.getThenRegion();
278 auto *thenBlock = &thenRegion.front();
279 rewriter.setInsertionPointToEnd(&thenRegion.back());
280 spirv::BranchOp::create(rewriter, loc, mergeBlock);
281 rewriter.inlineRegionBefore(thenRegion, mergeBlock);
282
283 auto *elseBlock = mergeBlock;
284 // If `else` region is not empty, inline that region before the merge block
285 // and branch to it.
286 if (!ifOp.getElseRegion().empty()) {
287 auto &elseRegion = ifOp.getElseRegion();
288 elseBlock = &elseRegion.front();
289 rewriter.setInsertionPointToEnd(&elseRegion.back());
290 spirv::BranchOp::create(rewriter, loc, mergeBlock);
291 rewriter.inlineRegionBefore(elseRegion, mergeBlock);
292 }
293
294 // Create a `spirv.BranchConditional` operation for selection header block.
295 rewriter.setInsertionPointToEnd(selectionHeaderBlock);
296 spirv::BranchConditionalOp::create(rewriter, loc, adaptor.getCondition(),
297 thenBlock, ArrayRef<Value>(), elseBlock,
298 ArrayRef<Value>());
299
300 replaceSCFOutputValue(ifOp, selectionOp, rewriter, scfToSPIRVContext,
301 returnTypes);
302 return success();
303 }
304};
305
306//===----------------------------------------------------------------------===//
307// scf::IndexSwitchOp
308//===----------------------------------------------------------------------===//
309
310/// Pattern to convert a scf::IndexSwitchOp within kernel functions into
311/// spirv::SelectionOp with a spirv::SwitchOp header.
312struct IndexSwitchOpConversion final : SCFToSPIRVPattern<scf::IndexSwitchOp> {
313 using SCFToSPIRVPattern::SCFToSPIRVPattern;
314
315 LogicalResult
316 matchAndRewrite(scf::IndexSwitchOp switchOp, OpAdaptor adaptor,
317 ConversionPatternRewriter &rewriter) const override {
318 Location loc = switchOp.getLoc();
319
320 // Compute return types.
321 SmallVector<Type, 8> returnTypes;
322 for (Value result : switchOp.getResults()) {
323 Type convertedType = typeConverter.convertType(result.getType());
324 if (!convertedType)
325 return rewriter.notifyMatchFailure(
326 loc,
327 llvm::formatv("failed to convert type '{0}'", result.getType()));
328 returnTypes.push_back(convertedType);
329 }
330
331 // The selector must be a SPIR-V integer; spirv.Switch literals are
332 // interpreted with the selector's bit width.
333 Value selector = adaptor.getArg();
334 auto selectorType = dyn_cast<IntegerType>(selector.getType());
335 if (!selectorType)
336 return rewriter.notifyMatchFailure(loc,
337 "selector type is not an integer");
338 unsigned selectorWidth = selectorType.getWidth();
339
340 // Create the `spirv.mlir.selection` op, its header block, and merge block.
341 auto selectionControl = spirv::SelectionControl::None;
342 if (auto attr = switchOp->getAttrOfType<spirv::SelectionControlAttr>(
344 selectionControl = attr.getValue();
345 auto selectionOp =
346 spirv::SelectionOp::create(rewriter, loc, selectionControl);
347 auto *mergeBlock = rewriter.createBlock(&selectionOp.getBody(),
348 selectionOp.getBody().end());
349 spirv::MergeOp::create(rewriter, loc);
350
351 OpBuilder::InsertionGuard guard(rewriter);
352 auto *headerBlock = rewriter.createBlock(&selectionOp.getBody().front());
353
354 // Inline each case region before the merge block and branch to it.
355 SmallVector<APInt> caseLiterals;
356 SmallVector<Block *> caseBlocks;
357 ArrayRef<int64_t> cases = switchOp.getCases();
358 for (auto [caseValue, caseRegion] :
359 llvm::zip_equal(cases, switchOp.getCaseRegions())) {
360 Block *caseBlock = &caseRegion.front();
361 rewriter.setInsertionPointToEnd(&caseRegion.back());
362 spirv::BranchOp::create(rewriter, loc, mergeBlock);
363 rewriter.inlineRegionBefore(caseRegion, mergeBlock);
364 caseLiterals.push_back(
365 APInt(selectorWidth, caseValue, /*isSigned=*/true));
366 caseBlocks.push_back(caseBlock);
367 }
368
369 // Inline the default region before the merge block and branch to it.
370 Region &defaultRegion = switchOp.getDefaultRegion();
371 Block *defaultBlock = &defaultRegion.front();
372 rewriter.setInsertionPointToEnd(&defaultRegion.back());
373 spirv::BranchOp::create(rewriter, loc, mergeBlock);
374 rewriter.inlineRegionBefore(defaultRegion, mergeBlock);
375
376 // Create the `spirv.Switch` terminator for the header block. The case
377 // regions carry their results through variables, so the branches take no
378 // operands.
379 SmallVector<ValueRange> caseOperands(caseBlocks.size(), ValueRange());
380 rewriter.setInsertionPointToEnd(headerBlock);
381 spirv::SwitchOp::create(rewriter, loc, selector, defaultBlock, ValueRange(),
382 caseLiterals, caseBlocks, caseOperands);
383
384 replaceSCFOutputValue(switchOp, selectionOp, rewriter, scfToSPIRVContext,
385 returnTypes);
386 return success();
387 }
388};
389
390//===----------------------------------------------------------------------===//
391// scf::YieldOp
392//===----------------------------------------------------------------------===//
393
394struct TerminatorOpConversion final : SCFToSPIRVPattern<scf::YieldOp> {
395public:
396 using SCFToSPIRVPattern::SCFToSPIRVPattern;
397
398 LogicalResult
399 matchAndRewrite(scf::YieldOp terminatorOp, OpAdaptor adaptor,
400 ConversionPatternRewriter &rewriter) const override {
401 ValueRange operands = adaptor.getOperands();
402
403 Operation *parent = terminatorOp->getParentOp();
404
405 // TODO: Implement conversion for the remaining `scf` ops.
406 if (parent->getDialect()->getNamespace() ==
407 scf::SCFDialect::getDialectNamespace() &&
408 !isa<scf::IfOp, scf::ForOp, scf::WhileOp, scf::IndexSwitchOp>(parent))
409 return rewriter.notifyMatchFailure(
410 terminatorOp,
411 llvm::formatv("conversion not supported for parent op: '{0}'",
412 parent->getName()));
413
414 // If the region return values, store each value into the associated
415 // VariableOp created during lowering of the parent region.
416 if (!operands.empty()) {
417 auto &allocas = scfToSPIRVContext->outputVars[parent];
418 if (allocas.size() != operands.size())
419 return failure();
420
421 auto loc = terminatorOp.getLoc();
422 for (unsigned i = 0, e = operands.size(); i < e; i++)
423 spirv::StoreOp::create(rewriter, loc, allocas[i], operands[i]);
424 if (isa<spirv::LoopOp>(parent)) {
425 // For loops we also need to update the branch jumping back to the
426 // header.
427 auto br = cast<spirv::BranchOp>(
428 rewriter.getInsertionBlock()->getTerminator());
429 SmallVector<Value, 8> args(br.getBlockArguments());
430 args.append(operands.begin(), operands.end());
431 rewriter.setInsertionPoint(br);
432 spirv::BranchOp::create(rewriter, terminatorOp.getLoc(), br.getTarget(),
433 args);
434 rewriter.eraseOp(br);
435 }
436 }
437 rewriter.eraseOp(terminatorOp);
438 return success();
439 }
440};
441
442//===----------------------------------------------------------------------===//
443// scf::WhileOp
444//===----------------------------------------------------------------------===//
445
446struct WhileOpConversion final : SCFToSPIRVPattern<scf::WhileOp> {
447 using SCFToSPIRVPattern::SCFToSPIRVPattern;
448
449 LogicalResult
450 matchAndRewrite(scf::WhileOp whileOp, OpAdaptor adaptor,
451 ConversionPatternRewriter &rewriter) const override {
452 auto loc = whileOp.getLoc();
453 auto loopControl = spirv::LoopControl::None;
454 if (auto attr = whileOp->getAttrOfType<spirv::LoopControlAttr>(
456 loopControl = attr.getValue();
457 auto loopOp = spirv::LoopOp::create(rewriter, loc, loopControl);
458 loopOp.addEntryAndMergeBlock(rewriter);
459
460 Region &beforeRegion = whileOp.getBefore();
461 Region &afterRegion = whileOp.getAfter();
462
463 if (failed(rewriter.convertRegionTypes(&beforeRegion, typeConverter)) ||
464 failed(rewriter.convertRegionTypes(&afterRegion, typeConverter)))
465 return rewriter.notifyMatchFailure(whileOp,
466 "Failed to convert region types");
467
468 OpBuilder::InsertionGuard guard(rewriter);
469
470 Block &entryBlock = *loopOp.getEntryBlock();
471 Block &beforeBlock = beforeRegion.front();
472 Block &afterBlock = afterRegion.front();
473 Block &mergeBlock = *loopOp.getMergeBlock();
474
475 auto cond = cast<scf::ConditionOp>(beforeBlock.getTerminator());
476 SmallVector<Value> condArgs;
477 if (failed(rewriter.getRemappedValues(cond.getArgs(), condArgs)))
478 return failure();
479
480 Value conditionVal = rewriter.getRemappedValue(cond.getCondition());
481 if (!conditionVal)
482 return failure();
483
484 auto yield = cast<scf::YieldOp>(afterBlock.getTerminator());
485 SmallVector<Value> yieldArgs;
486 if (failed(rewriter.getRemappedValues(yield.getResults(), yieldArgs)))
487 return failure();
488
489 // Move the while before block as the initial loop header block.
490 rewriter.inlineRegionBefore(beforeRegion, loopOp.getBody(),
491 getBlockIt(loopOp.getBody(), 1));
492
493 // Move the while after block as the initial loop body block.
494 rewriter.inlineRegionBefore(afterRegion, loopOp.getBody(),
495 getBlockIt(loopOp.getBody(), 2));
496
497 // Jump from the loop entry block to the loop header block.
498 rewriter.setInsertionPointToEnd(&entryBlock);
499 spirv::BranchOp::create(rewriter, loc, &beforeBlock, adaptor.getInits());
500
501 auto condLoc = cond.getLoc();
502
503 SmallVector<Value> resultValues(condArgs.size());
504
505 // For other SCF ops, the scf.yield op yields the value for the whole SCF
506 // op. So we use the scf.yield op as the anchor to create/load/store SPIR-V
507 // local variables. But for the scf.while op, the scf.yield op yields a
508 // value for the before region, which may not matching the whole op's
509 // result. Instead, the scf.condition op returns values matching the whole
510 // op's results. So we need to create/load/store variables according to
511 // that.
512 for (const auto &it : llvm::enumerate(condArgs)) {
513 auto res = it.value();
514 auto i = it.index();
515 auto pointerType =
516 spirv::PointerType::get(res.getType(), spirv::StorageClass::Function);
517
518 // Create local variables before the scf.while op.
519 rewriter.setInsertionPoint(loopOp);
520 auto alloc = spirv::VariableOp::create(rewriter, condLoc, pointerType,
521 spirv::StorageClass::Function,
522 /*initializer=*/nullptr);
523
524 // Load the final result values after the scf.while op.
525 rewriter.setInsertionPointAfter(loopOp);
526 auto loadResult = spirv::LoadOp::create(rewriter, condLoc, alloc);
527 resultValues[i] = loadResult;
528
529 // Store the current iteration's result value.
530 rewriter.setInsertionPointToEnd(&beforeBlock);
531 spirv::StoreOp::create(rewriter, condLoc, alloc, res);
532 }
533
534 rewriter.setInsertionPointToEnd(&beforeBlock);
535 rewriter.replaceOpWithNewOp<spirv::BranchConditionalOp>(
536 cond, conditionVal, &afterBlock, condArgs, &mergeBlock, ValueRange());
537
538 // Convert the scf.yield op to a branch back to the header block.
539 rewriter.setInsertionPointToEnd(&afterBlock);
540 rewriter.replaceOpWithNewOp<spirv::BranchOp>(yield, &beforeBlock,
541 yieldArgs);
542
543 rewriter.replaceOp(whileOp, resultValues);
544 return success();
545 }
546};
547} // namespace
548
549//===----------------------------------------------------------------------===//
550// Public API
551//===----------------------------------------------------------------------===//
552
554 ScfToSPIRVContext &scfToSPIRVContext,
555 RewritePatternSet &patterns) {
556 patterns.add<ForOpConversion, IfOpConversion, IndexSwitchOpConversion,
557 TerminatorOpConversion, WhileOpConversion>(
558 patterns.getContext(), typeConverter, scfToSPIRVContext.getImpl());
559}
return success()
BlockArgument getArgument(unsigned i)
Definition Block.h:153
unsigned getNumArguments()
Definition Block.h:152
Operation * getTerminator()
Get the terminator operation of this block.
Definition Block.cpp:249
BlockArgument addArgument(Type type, Location loc)
Add one value to the argument list.
Definition Block.cpp:158
StringRef getNamespace() const
Definition Dialect.h:54
This class defines the main interface for locations in MLIR and acts as a non-nullable wrapper around...
Definition Location.h:76
Dialect * getDialect()
Return the dialect this operation is associated with, or nullptr if the associated dialect is not loa...
Definition Operation.h:237
OperationName getName()
The name of an operation is the key identifier for it.
Definition Operation.h:115
This class contains a list of basic blocks and a link to the parent operation it is attached to.
Definition Region.h:26
Block & front()
Definition Region.h:65
Block & back()
Definition Region.h:64
iterator begin()
Definition Region.h:55
BlockListType::iterator iterator
Definition Region.h:52
MLIRContext * getContext() const
RewritePatternSet & add(ConstructorArg &&arg, ConstructorArgs &&...args)
Add an instance of each of the pattern types 'Ts' to the pattern list with the given arguments.
Type conversion from builtin types to SPIR-V types for shader interface.
Instances of the Type class are uniqued, have an immutable identifier and an optional mutable compone...
Definition Types.h:74
This class represents an instance of an SSA value in the MLIR system, representing a computable value...
Definition Value.h:96
Type getType() const
Return the type of this value.
Definition Value.h:105
Location getLoc() const
Return the location of this value.
Definition Value.cpp:24
static PointerType get(Type pointeeType, StorageClass storageClass)
detail::InFlightRemark failed(Location loc, RemarkOpts opts)
Report an optimization remark that failed.
Definition Remarks.h:717
StringRef getLoopControlAttrName()
Returns the attribute name for specifying loop control.
StringRef getSelectionControlAttrName()
Returns the attribute name for specifying selection control.
Include the generated interface declarations.
void populateSCFToSPIRVPatterns(const SPIRVTypeConverter &typeConverter, ScfToSPIRVContext &scfToSPIRVContext, RewritePatternSet &patterns)
Collects a set of patterns to lower from scf.for, scf.if, and loop.terminator to CFG operations withi...
llvm::DenseMap< KeyT, ValueT, KeyInfoT, BucketT > DenseMap
Definition LLVM.h:120
DenseMap< Operation *, SmallVector< spirv::VariableOp, 8 > > outputVars
ScfToSPIRVContext()
We use ScfToSPIRVContext to store information about the lowering of the scf region that need to be us...
ScfToSPIRVContextImpl * getImpl()
Definition SCFToSPIRV.h:29