mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-30 01:26:06 +00:00

This patch introduces a (forward) sparse data-flow analysis implemented with the data-flow analysis framework. The analysis interacts with liveness information that can be provided by dead-code analysis to be conditional. This patch re-implements SCCP using dead-code analysis and (conditional) constant propagation analyses. Depends on D127064 Reviewed By: rriddle, phisiart Differential Revision: https://reviews.llvm.org/D127139
289 lines
11 KiB
C++
289 lines
11 KiB
C++
//===- SparseAnalysis.cpp - Sparse data-flow analysis ---------------------===//
|
|
//
|
|
// 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/Analysis/DataFlow/SparseAnalysis.h"
|
|
#include "mlir/Analysis/DataFlow/DeadCodeAnalysis.h"
|
|
#include "mlir/Interfaces/CallInterfaces.h"
|
|
#include "mlir/Interfaces/ControlFlowInterfaces.h"
|
|
|
|
using namespace mlir;
|
|
using namespace mlir::dataflow;
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// AbstractSparseLattice
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
void AbstractSparseLattice::onUpdate(DataFlowSolver *solver) const {
|
|
// Push all users of the value to the queue.
|
|
for (Operation *user : point.get<Value>().getUsers())
|
|
for (DataFlowAnalysis *analysis : useDefSubscribers)
|
|
solver->enqueue({user, analysis});
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// AbstractSparseDataFlowAnalysis
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
AbstractSparseDataFlowAnalysis::AbstractSparseDataFlowAnalysis(
|
|
DataFlowSolver &solver)
|
|
: DataFlowAnalysis(solver) {
|
|
registerPointKind<CFGEdge>();
|
|
}
|
|
|
|
LogicalResult AbstractSparseDataFlowAnalysis::initialize(Operation *top) {
|
|
// Mark the entry block arguments as having reached their pessimistic
|
|
// fixpoints.
|
|
for (Region ®ion : top->getRegions()) {
|
|
if (region.empty())
|
|
continue;
|
|
for (Value argument : region.front().getArguments())
|
|
markAllPessimisticFixpoint(getLatticeElement(argument));
|
|
}
|
|
|
|
return initializeRecursively(top);
|
|
}
|
|
|
|
LogicalResult
|
|
AbstractSparseDataFlowAnalysis::initializeRecursively(Operation *op) {
|
|
// Initialize the analysis by visiting every owner of an SSA value (all
|
|
// operations and blocks).
|
|
visitOperation(op);
|
|
for (Region ®ion : op->getRegions()) {
|
|
for (Block &block : region) {
|
|
getOrCreate<Executable>(&block)->blockContentSubscribe(this);
|
|
visitBlock(&block);
|
|
for (Operation &op : block)
|
|
if (failed(initializeRecursively(&op)))
|
|
return failure();
|
|
}
|
|
}
|
|
|
|
return success();
|
|
}
|
|
|
|
LogicalResult AbstractSparseDataFlowAnalysis::visit(ProgramPoint point) {
|
|
if (Operation *op = point.dyn_cast<Operation *>())
|
|
visitOperation(op);
|
|
else if (Block *block = point.dyn_cast<Block *>())
|
|
visitBlock(block);
|
|
else
|
|
return failure();
|
|
return success();
|
|
}
|
|
|
|
void AbstractSparseDataFlowAnalysis::visitOperation(Operation *op) {
|
|
// Exit early on operations with no results.
|
|
if (op->getNumResults() == 0)
|
|
return;
|
|
|
|
// If the containing block is not executable, bail out.
|
|
if (!getOrCreate<Executable>(op->getBlock())->isLive())
|
|
return;
|
|
|
|
// Get the result lattices.
|
|
SmallVector<AbstractSparseLattice *> resultLattices;
|
|
resultLattices.reserve(op->getNumResults());
|
|
// Track whether all results have reached their fixpoint.
|
|
bool allAtFixpoint = true;
|
|
for (Value result : op->getResults()) {
|
|
AbstractSparseLattice *resultLattice = getLatticeElement(result);
|
|
allAtFixpoint &= resultLattice->isAtFixpoint();
|
|
resultLattices.push_back(resultLattice);
|
|
}
|
|
// If all result lattices have reached a fixpoint, there is nothing to do.
|
|
if (allAtFixpoint)
|
|
return;
|
|
|
|
// The results of a region branch operation are determined by control-flow.
|
|
if (auto branch = dyn_cast<RegionBranchOpInterface>(op)) {
|
|
return visitRegionSuccessors({branch}, branch,
|
|
/*successorIndex=*/llvm::None, resultLattices);
|
|
}
|
|
|
|
// The results of a call operation are determined by the callgraph.
|
|
if (auto call = dyn_cast<CallOpInterface>(op)) {
|
|
const auto *predecessors = getOrCreateFor<PredecessorState>(op, call);
|
|
// If not all return sites are known, then conservatively assume we can't
|
|
// reason about the data-flow.
|
|
if (!predecessors->allPredecessorsKnown())
|
|
return markAllPessimisticFixpoint(resultLattices);
|
|
for (Operation *predecessor : predecessors->getKnownPredecessors())
|
|
for (auto it : llvm::zip(predecessor->getOperands(), resultLattices))
|
|
join(std::get<1>(it), *getLatticeElementFor(op, std::get<0>(it)));
|
|
return;
|
|
}
|
|
|
|
// Grab the lattice elements of the operands.
|
|
SmallVector<const AbstractSparseLattice *> operandLattices;
|
|
operandLattices.reserve(op->getNumOperands());
|
|
for (Value operand : op->getOperands()) {
|
|
AbstractSparseLattice *operandLattice = getLatticeElement(operand);
|
|
operandLattice->useDefSubscribe(this);
|
|
// If any of the operand states are not initialized, bail out.
|
|
if (operandLattice->isUninitialized())
|
|
return;
|
|
operandLattices.push_back(operandLattice);
|
|
}
|
|
|
|
// Invoke the operation transfer function.
|
|
visitOperationImpl(op, operandLattices, resultLattices);
|
|
}
|
|
|
|
void AbstractSparseDataFlowAnalysis::visitBlock(Block *block) {
|
|
// Exit early on blocks with no arguments.
|
|
if (block->getNumArguments() == 0)
|
|
return;
|
|
|
|
// If the block is not executable, bail out.
|
|
if (!getOrCreate<Executable>(block)->isLive())
|
|
return;
|
|
|
|
// Get the argument lattices.
|
|
SmallVector<AbstractSparseLattice *> argLattices;
|
|
argLattices.reserve(block->getNumArguments());
|
|
bool allAtFixpoint = true;
|
|
for (BlockArgument argument : block->getArguments()) {
|
|
AbstractSparseLattice *argLattice = getLatticeElement(argument);
|
|
allAtFixpoint &= argLattice->isAtFixpoint();
|
|
argLattices.push_back(argLattice);
|
|
}
|
|
// If all argument lattices have reached their fixpoints, then there is
|
|
// nothing to do.
|
|
if (allAtFixpoint)
|
|
return;
|
|
|
|
// The argument lattices of entry blocks are set by region control-flow or the
|
|
// callgraph.
|
|
if (block->isEntryBlock()) {
|
|
// Check if this block is the entry block of a callable region.
|
|
auto callable = dyn_cast<CallableOpInterface>(block->getParentOp());
|
|
if (callable && callable.getCallableRegion() == block->getParent()) {
|
|
const auto *callsites = getOrCreateFor<PredecessorState>(block, callable);
|
|
// If not all callsites are known, conservatively mark all lattices as
|
|
// having reached their pessimistic fixpoints.
|
|
if (!callsites->allPredecessorsKnown())
|
|
return markAllPessimisticFixpoint(argLattices);
|
|
for (Operation *callsite : callsites->getKnownPredecessors()) {
|
|
auto call = cast<CallOpInterface>(callsite);
|
|
for (auto it : llvm::zip(call.getArgOperands(), argLattices))
|
|
join(std::get<1>(it), *getLatticeElementFor(block, std::get<0>(it)));
|
|
}
|
|
return;
|
|
}
|
|
|
|
// Check if the lattices can be determined from region control flow.
|
|
if (auto branch = dyn_cast<RegionBranchOpInterface>(block->getParentOp())) {
|
|
return visitRegionSuccessors(
|
|
block, branch, block->getParent()->getRegionNumber(), argLattices);
|
|
}
|
|
|
|
// Otherwise, we can't reason about the data-flow.
|
|
return markAllPessimisticFixpoint(argLattices);
|
|
}
|
|
|
|
// Iterate over the predecessors of the non-entry block.
|
|
for (Block::pred_iterator it = block->pred_begin(), e = block->pred_end();
|
|
it != e; ++it) {
|
|
Block *predecessor = *it;
|
|
|
|
// If the edge from the predecessor block to the current block is not live,
|
|
// bail out.
|
|
auto *edgeExecutable =
|
|
getOrCreate<Executable>(getProgramPoint<CFGEdge>(predecessor, block));
|
|
edgeExecutable->blockContentSubscribe(this);
|
|
if (!edgeExecutable->isLive())
|
|
continue;
|
|
|
|
// Check if we can reason about the data-flow from the predecessor.
|
|
if (auto branch =
|
|
dyn_cast<BranchOpInterface>(predecessor->getTerminator())) {
|
|
SuccessorOperands operands =
|
|
branch.getSuccessorOperands(it.getSuccessorIndex());
|
|
for (auto &it : llvm::enumerate(argLattices)) {
|
|
if (Value operand = operands[it.index()]) {
|
|
join(it.value(), *getLatticeElementFor(block, operand));
|
|
} else {
|
|
// Conservatively mark internally produced arguments as having reached
|
|
// their pessimistic fixpoint.
|
|
markAllPessimisticFixpoint(it.value());
|
|
}
|
|
}
|
|
} else {
|
|
return markAllPessimisticFixpoint(argLattices);
|
|
}
|
|
}
|
|
}
|
|
|
|
void AbstractSparseDataFlowAnalysis::visitRegionSuccessors(
|
|
ProgramPoint point, RegionBranchOpInterface branch,
|
|
Optional<unsigned> successorIndex,
|
|
ArrayRef<AbstractSparseLattice *> lattices) {
|
|
const auto *predecessors = getOrCreateFor<PredecessorState>(point, point);
|
|
assert(predecessors->allPredecessorsKnown() &&
|
|
"unexpected unresolved region successors");
|
|
|
|
for (Operation *op : predecessors->getKnownPredecessors()) {
|
|
// Get the incoming successor operands.
|
|
Optional<OperandRange> operands;
|
|
|
|
// Check if the predecessor is the parent op.
|
|
if (op == branch) {
|
|
operands = branch.getSuccessorEntryOperands(successorIndex);
|
|
// Otherwise, try to deduce the operands from a region return-like op.
|
|
} else {
|
|
assert(op->hasTrait<OpTrait::IsTerminator>() && "expected a terminator");
|
|
if (isRegionReturnLike(op))
|
|
operands = getRegionBranchSuccessorOperands(op, successorIndex);
|
|
}
|
|
|
|
if (!operands) {
|
|
// We can't reason about the data-flow.
|
|
return markAllPessimisticFixpoint(lattices);
|
|
}
|
|
|
|
ValueRange inputs = predecessors->getSuccessorInputs(op);
|
|
assert(inputs.size() == operands->size() &&
|
|
"expected the same number of successor inputs as operands");
|
|
|
|
// TODO: This was updated to be exposed upstream.
|
|
unsigned firstIndex = 0;
|
|
if (inputs.size() != lattices.size()) {
|
|
if (inputs.empty()) {
|
|
markAllPessimisticFixpoint(lattices);
|
|
return;
|
|
}
|
|
firstIndex = inputs.front().cast<BlockArgument>().getArgNumber();
|
|
markAllPessimisticFixpoint(lattices.take_front(firstIndex));
|
|
markAllPessimisticFixpoint(
|
|
lattices.drop_front(firstIndex + inputs.size()));
|
|
}
|
|
|
|
for (auto it : llvm::zip(*operands, lattices.drop_front(firstIndex)))
|
|
join(std::get<1>(it), *getLatticeElementFor(point, std::get<0>(it)));
|
|
}
|
|
}
|
|
|
|
const AbstractSparseLattice *
|
|
AbstractSparseDataFlowAnalysis::getLatticeElementFor(ProgramPoint point,
|
|
Value value) {
|
|
AbstractSparseLattice *state = getLatticeElement(value);
|
|
addDependency(state, point);
|
|
return state;
|
|
}
|
|
|
|
void AbstractSparseDataFlowAnalysis::markAllPessimisticFixpoint(
|
|
ArrayRef<AbstractSparseLattice *> lattices) {
|
|
for (AbstractSparseLattice *lattice : lattices)
|
|
propagateIfChanged(lattice, lattice->markPessimisticFixpoint());
|
|
}
|
|
|
|
void AbstractSparseDataFlowAnalysis::join(AbstractSparseLattice *lhs,
|
|
const AbstractSparseLattice &rhs) {
|
|
propagateIfChanged(lhs, lhs->join(rhs));
|
|
}
|