MLIR  20.0.0git
IntegerRangeAnalysis.cpp
Go to the documentation of this file.
1 //===- IntegerRangeAnalysis.cpp - Integer range analysis --------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file defines the dataflow analysis class for integer range inference
10 // which is used in transformations over the `arith` dialect such as
11 // branch elimination or signed->unsigned rewriting
12 //
13 //===----------------------------------------------------------------------===//
14 
20 #include "mlir/IR/Dialect.h"
21 #include "mlir/IR/OpDefinition.h"
22 #include "mlir/IR/Value.h"
26 #include "mlir/Support/LLVM.h"
27 #include "llvm/ADT/STLExtras.h"
28 #include "llvm/Support/Casting.h"
29 #include "llvm/Support/Debug.h"
30 #include <cassert>
31 #include <optional>
32 #include <utility>
33 
34 #define DEBUG_TYPE "int-range-analysis"
35 
36 using namespace mlir;
37 using namespace mlir::dataflow;
38 
40  Lattice::onUpdate(solver);
41 
42  // If the integer range can be narrowed to a constant, update the constant
43  // value of the SSA value.
44  std::optional<APInt> constant = getValue().getValue().getConstantValue();
45  auto value = point.get<Value>();
46  auto *cv = solver->getOrCreateState<Lattice<ConstantValue>>(value);
47  if (!constant)
48  return solver->propagateIfChanged(
49  cv, cv->join(ConstantValue::getUnknownConstant()));
50 
51  Dialect *dialect;
52  if (auto *parent = value.getDefiningOp())
53  dialect = parent->getDialect();
54  else
55  dialect = value.getParentBlock()->getParentOp()->getDialect();
56  solver->propagateIfChanged(
57  cv, cv->join(ConstantValue(IntegerAttr::get(value.getType(), *constant),
58  dialect)));
59 }
60 
64  auto inferrable = dyn_cast<InferIntRangeInterface>(op);
65  if (!inferrable)
66  return setAllToEntryStates(results);
67 
68  LLVM_DEBUG(llvm::dbgs() << "Inferring ranges for " << *op << "\n");
69  auto argRanges = llvm::map_to_vector(
70  operands, [](const IntegerValueRangeLattice *lattice) {
71  return lattice->getValue();
72  });
73 
74  auto joinCallback = [&](Value v, const IntegerValueRange &attrs) {
75  auto result = dyn_cast<OpResult>(v);
76  if (!result)
77  return;
78  assert(llvm::is_contained(op->getResults(), result));
79 
80  LLVM_DEBUG(llvm::dbgs() << "Inferred range " << attrs << "\n");
81  IntegerValueRangeLattice *lattice = results[result.getResultNumber()];
82  IntegerValueRange oldRange = lattice->getValue();
83 
84  ChangeResult changed = lattice->join(attrs);
85 
86  // Catch loop results with loop variant bounds and conservatively make
87  // them [-inf, inf] so we don't circle around infinitely often (because
88  // the dataflow analysis in MLIR doesn't attempt to work out trip counts
89  // and often can't).
90  bool isYieldedResult = llvm::any_of(v.getUsers(), [](Operation *op) {
91  return op->hasTrait<OpTrait::IsTerminator>();
92  });
93  if (isYieldedResult && !oldRange.isUninitialized() &&
94  !(lattice->getValue() == oldRange)) {
95  LLVM_DEBUG(llvm::dbgs() << "Loop variant loop result detected\n");
96  changed |= lattice->join(IntegerValueRange::getMaxRange(v));
97  }
98  propagateIfChanged(lattice, changed);
99  };
100 
101  inferrable.inferResultRangesFromOptional(argRanges, joinCallback);
102 }
103 
105  Operation *op, const RegionSuccessor &successor,
106  ArrayRef<IntegerValueRangeLattice *> argLattices, unsigned firstIndex) {
107  if (auto inferrable = dyn_cast<InferIntRangeInterface>(op)) {
108  LLVM_DEBUG(llvm::dbgs() << "Inferring ranges for " << *op << "\n");
109 
110  auto argRanges = llvm::map_to_vector(op->getOperands(), [&](Value value) {
111  return getLatticeElementFor(op, value)->getValue();
112  });
113 
114  auto joinCallback = [&](Value v, const IntegerValueRange &attrs) {
115  auto arg = dyn_cast<BlockArgument>(v);
116  if (!arg)
117  return;
118  if (!llvm::is_contained(successor.getSuccessor()->getArguments(), arg))
119  return;
120 
121  LLVM_DEBUG(llvm::dbgs() << "Inferred range " << attrs << "\n");
122  IntegerValueRangeLattice *lattice = argLattices[arg.getArgNumber()];
123  IntegerValueRange oldRange = lattice->getValue();
124 
125  ChangeResult changed = lattice->join(attrs);
126 
127  // Catch loop results with loop variant bounds and conservatively make
128  // them [-inf, inf] so we don't circle around infinitely often (because
129  // the dataflow analysis in MLIR doesn't attempt to work out trip counts
130  // and often can't).
131  bool isYieldedValue = llvm::any_of(v.getUsers(), [](Operation *op) {
132  return op->hasTrait<OpTrait::IsTerminator>();
133  });
134  if (isYieldedValue && !oldRange.isUninitialized() &&
135  !(lattice->getValue() == oldRange)) {
136  LLVM_DEBUG(llvm::dbgs() << "Loop variant loop result detected\n");
137  changed |= lattice->join(IntegerValueRange::getMaxRange(v));
138  }
139  propagateIfChanged(lattice, changed);
140  };
141 
142  inferrable.inferResultRangesFromOptional(argRanges, joinCallback);
143  return;
144  }
145 
146  /// Given the results of getConstant{Lower,Upper}Bound() or getConstantStep()
147  /// on a LoopLikeInterface return the lower/upper bound for that result if
148  /// possible.
149  auto getLoopBoundFromFold = [&](std::optional<OpFoldResult> loopBound,
150  Type boundType, bool getUpper) {
151  unsigned int width = ConstantIntRanges::getStorageBitwidth(boundType);
152  if (loopBound.has_value()) {
153  if (loopBound->is<Attribute>()) {
154  if (auto bound =
155  dyn_cast_or_null<IntegerAttr>(loopBound->get<Attribute>()))
156  return bound.getValue();
157  } else if (auto value = llvm::dyn_cast_if_present<Value>(*loopBound)) {
158  const IntegerValueRangeLattice *lattice =
159  getLatticeElementFor(op, value);
160  if (lattice != nullptr && !lattice->getValue().isUninitialized())
161  return getUpper ? lattice->getValue().getValue().smax()
162  : lattice->getValue().getValue().smin();
163  }
164  }
165  // Given the results of getConstant{Lower,Upper}Bound()
166  // or getConstantStep() on a LoopLikeInterface return the lower/upper
167  // bound
168  return getUpper ? APInt::getSignedMaxValue(width)
169  : APInt::getSignedMinValue(width);
170  };
171 
172  // Infer bounds for loop arguments that have static bounds
173  if (auto loop = dyn_cast<LoopLikeOpInterface>(op)) {
174  std::optional<Value> iv = loop.getSingleInductionVar();
175  if (!iv) {
177  op, successor, argLattices, firstIndex);
178  }
179  std::optional<OpFoldResult> lowerBound = loop.getSingleLowerBound();
180  std::optional<OpFoldResult> upperBound = loop.getSingleUpperBound();
181  std::optional<OpFoldResult> step = loop.getSingleStep();
182  APInt min = getLoopBoundFromFold(lowerBound, iv->getType(),
183  /*getUpper=*/false);
184  APInt max = getLoopBoundFromFold(upperBound, iv->getType(),
185  /*getUpper=*/true);
186  // Assume positivity for uniscoverable steps by way of getUpper = true.
187  APInt stepVal =
188  getLoopBoundFromFold(step, iv->getType(), /*getUpper=*/true);
189 
190  if (stepVal.isNegative()) {
191  std::swap(min, max);
192  } else {
193  // Correct the upper bound by subtracting 1 so that it becomes a <=
194  // bound, because loops do not generally include their upper bound.
195  max -= 1;
196  }
197 
198  // If we infer the lower bound to be larger than the upper bound, the
199  // resulting range is meaningless and should not be used in further
200  // inferences.
201  if (max.sge(min)) {
203  auto ivRange = ConstantIntRanges::fromSigned(min, max);
204  propagateIfChanged(ivEntry, ivEntry->join(IntegerValueRange{ivRange}));
205  }
206  return;
207  }
208 
210  op, successor, argLattices, firstIndex);
211 }
static Value max(ImplicitLocOpBuilder &builder, Value value, Value bound)
static Value min(ImplicitLocOpBuilder &builder, Value value, Value bound)
ProgramPoint point
The program point to which the state belongs.
Attributes are known-constant values of operations.
Definition: Attributes.h:25
const APInt & smax() const
The maximum value of an integer when it is interpreted as signed.
const APInt & smin() const
The minimum value of an integer when it is interpreted as signed.
static ConstantIntRanges fromSigned(const APInt &smin, const APInt &smax)
Create an ConstantIntRanges with the signed minimum and maximum equal to smin and smax,...
static unsigned getStorageBitwidth(Type type)
Return the bitwidth that should be used for integer ranges describing type.
std::optional< APInt > getConstantValue() const
If either the signed or unsigned interpretations of the range indicate that the value it bounds is a ...
void propagateIfChanged(AnalysisState *state, ChangeResult changed)
Propagate an update to a state if it changed.
The general data-flow analysis solver.
StateT * getOrCreateState(PointT point)
Get the state associated with the given program point.
void propagateIfChanged(AnalysisState *state, ChangeResult changed)
Propagate an update to an analysis state if it changed by pushing dependent work items to the back of...
Dialects are groups of MLIR operations, types and attributes, as well as behavior associated with the...
Definition: Dialect.h:38
This lattice value represents the integer range of an SSA value.
const ConstantIntRanges & getValue() const
Get the known integer value range.
bool isUninitialized() const
Whether the range is uninitialized.
static IntegerValueRange getMaxRange(Value value)
Create a maximal range ([0, uint_max(t)] / [int_min(t), int_max(t)]) range that is used to mark the v...
Operation is the basic unit of execution within MLIR.
Definition: Operation.h:88
operand_range getOperands()
Returns an iterator on the underlying Value's.
Definition: Operation.h:373
result_range getResults()
Definition: Operation.h:410
This class represents a successor of a region.
Region * getSuccessor() const
Return the given region successor.
BlockArgListType getArguments()
Definition: Region.h:81
Instances of the Type class are uniqued, have an immutable identifier and an optional mutable compone...
Definition: Types.h:74
This class represents an instance of an SSA value in the MLIR system, representing a computable value...
Definition: Value.h:96
user_range getUsers() const
Definition: Value.h:228
void onUpdate(DataFlowSolver *solver) const override
When the lattice gets updated, propagate an update to users of the value using its use-def chain to s...
This lattice value represents a known constant value of a lattice.
static ConstantValue getUnknownConstant()
The state where the constant value is unknown.
void visitOperation(Operation *op, ArrayRef< const IntegerValueRangeLattice * > operands, ArrayRef< IntegerValueRangeLattice * > results) override
Visit an operation.
void visitNonControlFlowArguments(Operation *op, const RegionSuccessor &successor, ArrayRef< IntegerValueRangeLattice * > argLattices, unsigned firstIndex) override
Visit block arguments or operation results of an operation with region control-flow for which values ...
This lattice element represents the integer value range of an SSA value.
void onUpdate(DataFlowSolver *solver) const override
If the range can be narrowed to an integer constant, update the constant value of the SSA value.
This class represents a lattice holding a specific value of type ValueT.
IntegerValueRange & getValue()
Return the value held by this lattice.
ChangeResult join(const AbstractSparseLattice &rhs) override
Join the information contained in the 'rhs' lattice into this lattice.
const IntegerValueRangeLattice * getLatticeElementFor(ProgramPoint point, Value value)
Get the lattice element for a value and create a dependency on the provided program point.
IntegerValueRangeLattice * getLatticeElement(Value value) override
Get the lattice element for a value.
void setAllToEntryStates(ArrayRef< IntegerValueRangeLattice * > lattices)
virtual void visitNonControlFlowArguments(Operation *op, const RegionSuccessor &successor, ArrayRef< StateT * > argLattices, unsigned firstIndex)
Given an operation with possible region control-flow, the lattices of the operands,...
Include the generated interface declarations.
ChangeResult
A result type used to indicate if a change happened.
auto get(MLIRContext *context, Ts &&...params)
Helper method that injects context only if needed, this helps unify some of the attribute constructio...