14 #ifndef MLIR_INTERFACES_CONTROLFLOWINTERFACES_H
15 #define MLIR_INTERFACES_CONTROLFLOWINTERFACES_H
19 #include "llvm/ADT/PointerUnion.h"
20 #include "llvm/ADT/STLExtras.h"
21 #include "llvm/Support/raw_ostream.h"
24 class BranchOpInterface;
25 class RegionBranchOpInterface;
26 class RegionBranchTerminatorOpInterface;
62 return producedOperandCount + forwardedOperands.
size();
75 return index < producedOperandCount;
84 return forwardedOperands[index - producedOperandCount].get();
92 return forwardedOperands;
99 "can't slice operands produced by the operation");
100 return forwardedOperands.
slice(subStart - producedOperandCount, subLen);
105 void erase(
unsigned subStart,
unsigned subLen = 1) {
107 "can't erase operands produced by the operation");
108 forwardedOperands.
erase(subStart - producedOperandCount, subLen);
119 "can't map operand produced by the operation");
122 (blockArgumentIndex - producedOperandCount);
128 unsigned producedOperandCount;
141 std::optional<BlockArgument>
143 unsigned operandIndex, Block *successor);
147 const SuccessorOperands &operands);
197 : successor(region), inputs(regionInputs) {
198 assert(region &&
"Region must not be null");
203 : successor(successorOp), inputs(
ValueRange(results)) {
204 assert(successorOp &&
"Successor op must not be null");
212 bool isParent()
const {
return isa<Operation *>(successor); }
219 return successor == rhs.successor && inputs == rhs.inputs;
223 return !(lhs == rhs);
250 bool isParent()
const {
return predecessor ==
nullptr; }
258 return lhs.predecessor == rhs.predecessor;
271 return !(lhs == rhs);
277 return os <<
"<from parent>";
278 return os <<
"<region #"
291 return os <<
"<to parent>";
304 : lower(lb), upper(ub) {
305 assert((!ub || ub >= lb) &&
"upper bound cannot be less than lower bound");
323 std::optional<unsigned> upper;
349 template <
typename ConcreteType>
352 static_assert(ConcreteType::template hasTrait<IsTerminator>(),
353 "expected operation to be a terminator");
354 static_assert(ConcreteType::template hasTrait<ZeroResults>(),
355 "expected operation to have zero results");
356 static_assert(ConcreteType::template hasTrait<ZeroSuccessors>(),
357 "expected operation to have zero successors");
370 #include "mlir/Interfaces/ControlFlowInterfaces.h.inc"
373 inline RegionBranchPoint::RegionBranchPoint(
374 RegionBranchTerminatorOpInterface predecessor)
375 : predecessor(predecessor.getOperation()) {}
MutableArrayRef< BlockArgument > BlockArgListType
This class represents upper and lower bounds on the number of times a region of a RegionBranchOpInter...
static InvocationBounds getUnknown()
Returns the unknown invocation bounds, i.e., there is no information on how many times a region may b...
std::optional< unsigned > getUpperBound() const
Return the upper bound.
InvocationBounds(unsigned lb, std::optional< unsigned > ub)
Create invocation bounds.
unsigned getLowerBound() const
Return the lower bound.
This class provides a mutable adaptor for a range of operands.
unsigned size() const
Returns the current size of the range.
MutableOperandRange slice(unsigned subStart, unsigned subLen, std::optional< OperandSegment > segment=std::nullopt) const
Slice this range into a sub range, with the additional operand segment.
void erase(unsigned subStart, unsigned subLen=1)
Erase the operands within the given sub-range.
void append(ValueRange values)
Append the given values to the range.
Set of flags used to control the behavior of the various IR print methods (e.g.
Helper class for implementing traits.
A wrapper class that allows for printing an operation with a set of flags, useful to act as a "stream...
This class implements the operand iterators for the Operation class.
unsigned getBeginOperandIndex() const
Return the operand index of the first element of this range.
Operation is the basic unit of execution within MLIR.
Region * getParentRegion()
Returns the region to which the instruction belongs.
This class represents a point being branched from in the methods of the RegionBranchOpInterface.
RegionBranchPoint(std::nullptr_t)=delete
Explicitly stops users from constructing with nullptr.
bool isParent() const
Returns true if branching from the parent op.
static constexpr RegionBranchPoint parent()
Returns an instance of RegionBranchPoint representing the parent operation.
friend bool operator==(RegionBranchPoint lhs, RegionBranchPoint rhs)
Returns true if the two branch points are equal.
Operation * getTerminatorPredecessorOrNull() const
Returns the terminator if branching from a region.
This class represents a successor of a region.
RegionSuccessor(Region *region, Block::BlockArgListType regionInputs={})
Initialize a successor that branches to another region of the parent operation.
bool operator==(RegionSuccessor rhs) const
ValueRange getSuccessorInputs() const
Return the inputs to the successor that are remapped by the exit values of the current region.
friend bool operator!=(RegionSuccessor lhs, RegionSuccessor rhs)
bool isParent() const
Return true if the successor is the parent operation.
Region * getSuccessor() const
Return the given region successor.
RegionSuccessor(Operation *successorOp, Operation::result_range results)
Initialize a successor that branches back to/out of the parent operation.
This class contains a list of basic blocks and a link to the parent operation it is attached to.
unsigned getRegionNumber()
Return the number of this region in the parent operation.
This class implements the result iterators for the Operation class.
This class models how operands are forwarded to block arguments in control flow.
SuccessorOperands(unsigned producedOperandCount, MutableOperandRange forwardedOperands)
Constructs a SuccessorOperands with the given amount of produced operands and forwarded operands.
MutableOperandRange slice(unsigned subStart, unsigned subLen) const
Get a slice of the operands forwarded to the successor.
void erase(unsigned subStart, unsigned subLen=1)
Erase operands forwarded to the successor.
MutableOperandRange getMutableForwardedOperands() const
Get the range of operands that are simply forwarded to the successor.
SuccessorOperands(MutableOperandRange forwardedOperands)
Constructs a SuccessorOperands with no produced operands that simply forwards operands to the success...
Value operator[](unsigned index) const
Returns the Value that is passed to the successors block argument denoted by index.
unsigned getOperandIndex(unsigned blockArgumentIndex) const
Gets the index of the forwarded operand within the operation which maps to the block argument denoted...
bool isOperandProduced(unsigned index) const
Returns true if the successor operand denoted by index is produced by the operation.
unsigned getProducedOperandCount() const
Returns the amount of operands that are produced internally by the operation.
bool empty() const
Returns true if there are no successor operands.
void append(ValueRange valueRange)
Add new operands that are forwarded to the successor.
unsigned size() const
Returns the amount of operands passed to the successor.
OperandRange getForwardedOperands() const
Get the range of operands that are simply forwarded to the successor.
This class provides an abstraction over the different types of ranges over Values.
This class represents an instance of an SSA value in the MLIR system, representing a computable value...
std::optional< BlockArgument > getBranchSuccessorArgument(const SuccessorOperands &operands, unsigned operandIndex, Block *successor)
Return the BlockArgument corresponding to operand operandIndex in some successor if operandIndex is w...
LogicalResult verifyRegionBranchWeights(Operation *op)
Verify that the region weights attached to an operation implementing WeightedRegiobBranchOpInterface ...
LogicalResult verifyBranchSuccessorOperands(Operation *op, unsigned succNo, const SuccessorOperands &operands)
Verify that the given operands match those of the given successor block.
LogicalResult verifyTypesAlongControlFlowEdges(Operation *op)
Verify that types match along control flow edges described the given op.
LogicalResult verifyBranchWeights(Operation *op)
Verify that the branch weights attached to an operation implementing WeightedBranchOpInterface are co...
Include the generated interface declarations.
bool insideMutuallyExclusiveRegions(Operation *a, Operation *b)
Return true if a and b are in mutually exclusive regions as per RegionBranchOpInterface.
Region * getEnclosingRepetitiveRegion(Operation *op)
Return the first enclosing region of the given op that may be executed repetitively as per RegionBran...
bool operator!=(RegionBranchPoint lhs, RegionBranchPoint rhs)
raw_ostream & operator<<(raw_ostream &os, const AliasResult &result)
This trait indicates that a terminator operation is "return-like".
static LogicalResult verifyTrait(Operation *op)