1 //===- RuntimeOpVerification.cpp - Op Verification ------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 #include "mlir/Transforms/Passes.h"
11 #include "mlir/IR/Builders.h"
12 #include "mlir/IR/Operation.h"
13 #include "mlir/Interfaces/RuntimeVerifiableOpInterface.h"
16 #define GEN_PASS_DEF_GENERATERUNTIMEVERIFICATION
17 #include "mlir/Transforms/Passes.h.inc"
23 struct GenerateRuntimeVerificationPass
24 : public impl::GenerateRuntimeVerificationBase
<
25 GenerateRuntimeVerificationPass
> {
26 void runOnOperation() override
;
30 void GenerateRuntimeVerificationPass::runOnOperation() {
31 getOperation()->walk([&](RuntimeVerifiableOpInterface verifiableOp
) {
32 OpBuilder
builder(getOperation()->getContext());
33 builder
.setInsertionPoint(verifiableOp
);
34 verifiableOp
.generateRuntimeVerification(builder
, verifiableOp
.getLoc());
38 std::unique_ptr
<Pass
> mlir::createGenerateRuntimeVerificationPass() {
39 return std::make_unique
<GenerateRuntimeVerificationPass
>();