This commit defines a dataflow analysis for integer ranges, which uses a newly-added InferIntRangeInterface to compute the lower and upper bounds on the results of an operation from the bounds on the arguments. The range inference is a flow-insensitive dataflow analysis that can be used to simplify code, such as by statically identifying bounds checks that cannot fail in order to eliminate them. The InferIntRangeInterface has one method, inferResultRanges(), which takes a vector of inferred ranges for each argument to an op implementing the interface and a callback allowing the implementation to define the ranges for each result. These ranges are stored as ConstantIntRanges, which hold the lower and upper bounds for a value. Bounds are tracked separately for the signed and unsigned interpretations of a value, which ensures that the impact of arithmetic overflows is correctly tracked during the analysis. The commit also adds a -test-int-range-inference pass to test the analysis until it is integrated into SCCP or otherwise exposed. Finally, this commit fixes some bugs relating to the handling of region iteration arguments and terminators in the data flow analysis framework. Depends on D124020 Depends on D124021 Reviewed By: rriddle, Mogball Differential Revision: https://reviews.llvm.org/D124023
116 lines
4.0 KiB
C++
116 lines
4.0 KiB
C++
//===- TestIntRangeInference.cpp - Create consts from range inference ---===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
// TODO: This pass is needed to test integer range inference until that
|
|
// functionality has been integrated into SCCP.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "mlir/Analysis/IntRangeAnalysis.h"
|
|
#include "mlir/Interfaces/SideEffectInterfaces.h"
|
|
#include "mlir/Pass/Pass.h"
|
|
#include "mlir/Pass/PassRegistry.h"
|
|
#include "mlir/Support/TypeID.h"
|
|
#include "mlir/Transforms/FoldUtils.h"
|
|
|
|
using namespace mlir;
|
|
|
|
/// Patterned after SCCP
|
|
static LogicalResult replaceWithConstant(IntRangeAnalysis &analysis,
|
|
OpBuilder &b, OperationFolder &folder,
|
|
Value value) {
|
|
Optional<ConstantIntRanges> maybeInferredRange = analysis.getResult(value);
|
|
if (!maybeInferredRange)
|
|
return failure();
|
|
const ConstantIntRanges &inferredRange = maybeInferredRange.getValue();
|
|
Optional<APInt> maybeConstValue = inferredRange.getConstantValue();
|
|
if (!maybeConstValue.hasValue())
|
|
return failure();
|
|
|
|
Operation *maybeDefiningOp = value.getDefiningOp();
|
|
Dialect *valueDialect =
|
|
maybeDefiningOp ? maybeDefiningOp->getDialect()
|
|
: value.getParentRegion()->getParentOp()->getDialect();
|
|
Attribute constAttr = b.getIntegerAttr(value.getType(), *maybeConstValue);
|
|
Value constant = folder.getOrCreateConstant(b, valueDialect, constAttr,
|
|
value.getType(), value.getLoc());
|
|
if (!constant)
|
|
return failure();
|
|
|
|
value.replaceAllUsesWith(constant);
|
|
return success();
|
|
}
|
|
|
|
static void rewrite(IntRangeAnalysis &analysis, MLIRContext *context,
|
|
MutableArrayRef<Region> initialRegions) {
|
|
SmallVector<Block *> worklist;
|
|
auto addToWorklist = [&](MutableArrayRef<Region> regions) {
|
|
for (Region ®ion : regions)
|
|
for (Block &block : llvm::reverse(region))
|
|
worklist.push_back(&block);
|
|
};
|
|
|
|
OpBuilder builder(context);
|
|
OperationFolder folder(context);
|
|
|
|
addToWorklist(initialRegions);
|
|
while (!worklist.empty()) {
|
|
Block *block = worklist.pop_back_val();
|
|
|
|
for (Operation &op : llvm::make_early_inc_range(*block)) {
|
|
builder.setInsertionPoint(&op);
|
|
|
|
// Replace any result with constants.
|
|
bool replacedAll = op.getNumResults() != 0;
|
|
for (Value res : op.getResults())
|
|
replacedAll &=
|
|
succeeded(replaceWithConstant(analysis, builder, folder, res));
|
|
|
|
// If all of the results of the operation were replaced, try to erase
|
|
// the operation completely.
|
|
if (replacedAll && wouldOpBeTriviallyDead(&op)) {
|
|
assert(op.use_empty() && "expected all uses to be replaced");
|
|
op.erase();
|
|
continue;
|
|
}
|
|
|
|
// Add any the regions of this operation to the worklist.
|
|
addToWorklist(op.getRegions());
|
|
}
|
|
|
|
// Replace any block arguments with constants.
|
|
builder.setInsertionPointToStart(block);
|
|
for (BlockArgument arg : block->getArguments())
|
|
(void)replaceWithConstant(analysis, builder, folder, arg);
|
|
}
|
|
}
|
|
|
|
namespace {
|
|
struct TestIntRangeInference
|
|
: PassWrapper<TestIntRangeInference, OperationPass<>> {
|
|
MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestIntRangeInference)
|
|
|
|
StringRef getArgument() const final { return "test-int-range-inference"; }
|
|
StringRef getDescription() const final {
|
|
return "Test integer range inference analysis";
|
|
}
|
|
|
|
void runOnOperation() override {
|
|
Operation *op = getOperation();
|
|
IntRangeAnalysis analysis(op);
|
|
rewrite(analysis, op->getContext(), op->getRegions());
|
|
}
|
|
};
|
|
} // end anonymous namespace
|
|
|
|
namespace mlir {
|
|
namespace test {
|
|
void registerTestIntRangeInference() {
|
|
PassRegistration<TestIntRangeInference>();
|
|
}
|
|
} // end namespace test
|
|
} // end namespace mlir
|