#include "mlir/Dialect/Math/IR/Math.h"
#include "mlir/Dialect/Math/Transforms/Passes.h"
#include "mlir/IR/PatternMatch.h"
#include "mlir/Transforms/GreedyPatternRewriteDriver.h"
using namespace mlir;
using namespace mlir::math;
namespace {
struct SincosFusionPattern : OpRewritePattern<math::SinOp> {
using Base::Base;
LogicalResult matchAndRewrite(math::SinOp sinOp,
PatternRewriter &rewriter) const override {
Value operand = sinOp.getOperand();
mlir::arith::FastMathFlags sinFastMathFlags = sinOp.getFastmath();
math::CosOp cosOp = nullptr;
sinOp->getBlock()->walk([&](math::CosOp op) {
if (op.getOperand() == operand && op.getFastmath() == sinFastMathFlags) {
cosOp = op;
return WalkResult::interrupt();
}
return WalkResult::advance();
});
if (!cosOp)
return failure();
Operation *firstOp = sinOp->isBeforeInBlock(cosOp) ? sinOp.getOperation()
: cosOp.getOperation();
rewriter.setInsertionPoint(firstOp);
Type elemType = sinOp.getType();
auto sincos = math::SincosOp::create(rewriter, firstOp->getLoc(),
TypeRange{elemType, elemType}, operand,
sinOp.getFastmathAttr());
rewriter.replaceOp(sinOp, sincos.getSin());
rewriter.replaceOp(cosOp, sincos.getCos());
return success();
}
};
}
namespace mlir::math {
#define GEN_PASS_DEF_MATHSINCOSFUSIONPASS
#include "mlir/Dialect/Math/Transforms/Passes.h.inc"
}
namespace {
struct MathSincosFusionPass final
: math::impl::MathSincosFusionPassBase<MathSincosFusionPass> {
using MathSincosFusionPassBase::MathSincosFusionPassBase;
void runOnOperation() override {
RewritePatternSet patterns(&getContext());
patterns.add<SincosFusionPattern>(&getContext());
GreedyRewriteConfig config;
if (failed(
applyPatternsGreedily(getOperation(), std::move(patterns), config)))
return signalPassFailure();
}
};
}