blob: ea85c20cd1f8f903ff3eecdd672f6ebbc461a382 [file] [log] [blame]
//===- DuplicateFunctionElimination.cpp - Duplicate function elimination --===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "mlir/Dialect/Func/IR/FuncOps.h"
#include "mlir/Dialect/Func/Transforms/Passes.h"
namespace mlir {
namespace func {
#define GEN_PASS_DEF_DUPLICATEFUNCTIONELIMINATIONPASS
#include "mlir/Dialect/Func/Transforms/Passes.h.inc"
} // namespace func
namespace {
// Define a notion of function equivalence that allows for reuse. Ignore the
// symbol name for this purpose.
struct DuplicateFuncOpEquivalenceInfo
: public llvm::DenseMapInfo<func::FuncOp> {
static unsigned getHashValue(const func::FuncOp cFunc) {
if (!cFunc) {
return DenseMapInfo<func::FuncOp>::getHashValue(cFunc);
}
// Aggregate attributes, ignoring the symbol name.
llvm::hash_code hash = {};
func::FuncOp func = const_cast<func::FuncOp &>(cFunc);
StringAttr symNameAttrName = func.getSymNameAttrName();
for (NamedAttribute namedAttr : cFunc->getAttrs()) {
StringAttr attrName = namedAttr.getName();
if (attrName == symNameAttrName)
continue;
hash = llvm::hash_combine(hash, namedAttr);
}
// Also hash the func body.
func.getBody().walk([&](Operation *op) {
hash = llvm::hash_combine(
hash, OperationEquivalence::computeHash(
op, /*hashOperands=*/OperationEquivalence::ignoreHashValue,
/*hashResults=*/OperationEquivalence::ignoreHashValue,
OperationEquivalence::IgnoreLocations));
});
return hash;
}
static bool isEqual(func::FuncOp lhs, func::FuncOp rhs) {
if (lhs == rhs)
return true;
if (lhs == getTombstoneKey() || lhs == getEmptyKey() ||
rhs == getTombstoneKey() || rhs == getEmptyKey())
return false;
if (lhs.isDeclaration() || rhs.isDeclaration())
return false;
// Check discardable attributes equivalence
if (lhs->getDiscardableAttrDictionary() !=
rhs->getDiscardableAttrDictionary())
return false;
// Check properties equivalence, ignoring the symbol name.
// Make a copy, so that we can erase the symbol name and perform the
// comparison.
auto pLhs = lhs.getProperties();
auto pRhs = rhs.getProperties();
pLhs.sym_name = nullptr;
pRhs.sym_name = nullptr;
if (pLhs != pRhs)
return false;
// Compare inner workings.
return OperationEquivalence::isRegionEquivalentTo(
&lhs.getBody(), &rhs.getBody(), OperationEquivalence::IgnoreLocations);
}
};
struct DuplicateFunctionEliminationPass
: public func::impl::DuplicateFunctionEliminationPassBase<
DuplicateFunctionEliminationPass> {
using DuplicateFunctionEliminationPassBase<
DuplicateFunctionEliminationPass>::DuplicateFunctionEliminationPassBase;
void runOnOperation() override {
auto module = getOperation();
// Find unique representant per equivalent func ops.
DenseSet<func::FuncOp, DuplicateFuncOpEquivalenceInfo> uniqueFuncOps;
DenseMap<StringAttr, func::FuncOp> getRepresentant;
DenseSet<func::FuncOp> toBeErased;
module.walk([&](func::FuncOp f) {
auto [repr, inserted] = uniqueFuncOps.insert(f);
getRepresentant[f.getSymNameAttr()] = *repr;
if (!inserted) {
toBeErased.insert(f);
}
});
// Update all symbol uses to reference unique func op
// representants and erase redundant func ops.
SymbolTableCollection symbolTable;
SymbolUserMap userMap(symbolTable, module);
for (auto it : toBeErased) {
StringAttr oldSymbol = it.getSymNameAttr();
StringAttr newSymbol = getRepresentant[oldSymbol].getSymNameAttr();
userMap.replaceAllUsesWith(it, newSymbol);
it.erase();
}
}
};
} // namespace
} // namespace mlir