#include "TestDialect.h"
#include "TestOps.h"
#include "mlir/Dialect/Func/IR/FuncOps.h"
#include "mlir/IR/BuiltinOps.h"
#include "mlir/IR/IRMapping.h"
#include "mlir/Pass/Pass.h"
#include "mlir/Transforms/InliningUtils.h"
#include "llvm/ADT/StringSet.h"
using namespace mlir;
using namespace test;
namespace {
struct Inliner : public PassWrapper<Inliner, OperationPass<func::FuncOp>> {
MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(Inliner)
StringRef getArgument() const final { return "test-inline"; }
StringRef getDescription() const final {
return "Test inlining region calls";
}
void runOnOperation() override {
auto function = getOperation();
SmallVector<func::CallIndirectOp, 16> callers;
function.walk(
[&](func::CallIndirectOp caller) { callers.push_back(caller); });
InlinerInterface interface(&getContext());
for (auto caller : callers) {
auto callee = dyn_cast_or_null<FunctionalRegionOp>(
caller.getCallee().getDefiningOp());
if (!callee)
continue;
if (failed(inlineRegion(
interface, &callee.getBody(), caller, caller.getArgOperands(),
caller.getResults(), caller.getLoc(),
!callee.getResult().hasOneUse())))
continue;
caller.erase();
if (callee.use_empty())
callee.erase();
}
}
};
}
namespace mlir {
namespace test {
void registerInliner() { PassRegistration<Inliner>(); }
}
}