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