13 #ifndef MLIR_TRANSFORMS_INLININGUTILS_H
14 #define MLIR_TRANSFORMS_INLININGUTILS_H
27 class CallableOpInterface;
28 class CallOpInterface;
60 bool wouldBeCloned)
const {
107 llvm_unreachable(
"must implement handleTerminator in the case of multiple "
122 "must implement handleTerminator in the case of one inlined block");
156 DictionaryAttr argumentAttrs)
const {
171 DictionaryAttr resultAttrs)
const {
210 bool wouldBeCloned)
const;
226 DictionaryAttr argumentAttrs)
const;
229 DictionaryAttr resultAttrs)
const;
256 LogicalResult
inlineRegion(InlinerInterface &interface, Region *src,
257 Operation *inlinePoint, IRMapping &mapper,
258 ValueRange resultsToReplace,
259 TypeRange regionResultTypes,
260 std::optional<Location> inlineLoc = std::nullopt,
261 bool shouldCloneInlinedRegion =
true);
262 LogicalResult
inlineRegion(InlinerInterface &interface, Region *src,
264 IRMapping &mapper, ValueRange resultsToReplace,
265 TypeRange regionResultTypes,
266 std::optional<Location> inlineLoc = std::nullopt,
267 bool shouldCloneInlinedRegion =
true);
272 LogicalResult
inlineRegion(InlinerInterface &interface, Region *src,
273 Operation *inlinePoint, ValueRange inlinedOperands,
274 ValueRange resultsToReplace,
275 std::optional<Location> inlineLoc = std::nullopt,
276 bool shouldCloneInlinedRegion =
true);
277 LogicalResult
inlineRegion(InlinerInterface &interface, Region *src,
279 ValueRange inlinedOperands,
280 ValueRange resultsToReplace,
281 std::optional<Location> inlineLoc = std::nullopt,
282 bool shouldCloneInlinedRegion =
true);
290 LogicalResult
inlineCall(InlinerInterface &interface, CallOpInterface call,
291 CallableOpInterface callable, Region *src,
292 bool shouldCloneInlinedRegion =
true);
Block represents an ordered list of Operations.
OpListType::iterator iterator
This is the interface that must be implemented by the dialects of operations to be inlined.
virtual Value handleResult(OpBuilder &builder, Operation *call, Operation *callable, Value result, DictionaryAttr resultAttrs) const
Hook to transform the callee results before using them to replace the call results.
virtual bool isLegalToInline(Operation *call, Operation *callable, bool wouldBeCloned) const
Returns true if the given operation 'callable', that implements the 'CallableOpInterface',...
virtual Operation * materializeCallConversion(OpBuilder &builder, Value input, Type resultType, Location conversionLoc) const
Attempt to materialize a conversion for a type mismatch between a call from this dialect,...
virtual bool shouldAnalyzeRecursively(Operation *op) const
This hook is invoked on an operation that contains regions.
virtual bool isLegalToInline(Region *dest, Region *src, bool wouldBeCloned, IRMapping &valueMapping) const
Returns true if the given region 'src' can be inlined into the region 'dest' that is attached to an o...
virtual Value handleArgument(OpBuilder &builder, Operation *call, Operation *callable, Value argument, DictionaryAttr argumentAttrs) const
Hook to transform the call arguments before using them to replace the callee arguments.
DialectInlinerInterface(Dialect *dialect)
virtual void processInlinedCallBlocks(Operation *call, iterator_range< Region::iterator > inlinedBlocks) const
Process a set of blocks that have been inlined for a call.
virtual bool allowSingleBlockOptimization(iterator_range< Region::iterator > inlinedBlocks) const
Returns true if the inliner can assume a fast path of not creating a new block, if there is only one ...
virtual void handleTerminator(Operation *op, ValueRange valuesToReplace) const
Handle the given inlined terminator by replacing it with a new operation as necessary.
virtual void handleTerminator(Operation *op, Block *newDest) const
Handle the given inlined terminator by replacing it with a new operation as necessary.
virtual bool isLegalToInline(Operation *op, Region *dest, bool wouldBeCloned, IRMapping &valueMapping) const
Returns true if the given operation 'op', that is registered to this dialect, can be inlined into the...
A collection of dialect interfaces within a context, for a given concrete interface type.
DialectInterfaceCollection< DialectInlinerInterface > Base
Dialects are groups of MLIR operations, types and attributes, as well as behavior associated with the...
This is a utility class for mapping one set of IR entities to another.
This interface provides the hooks into the inlining interface.
virtual Value handleResult(OpBuilder &builder, Operation *call, Operation *callable, Value result, DictionaryAttr resultAttrs) const
virtual Value handleArgument(OpBuilder &builder, Operation *call, Operation *callable, Value argument, DictionaryAttr argumentAttrs) const
virtual bool shouldAnalyzeRecursively(Operation *op) const
virtual bool allowSingleBlockOptimization(iterator_range< Region::iterator > inlinedBlocks) const
Returns true if the inliner can assume a fast path of not creating a new block, if there is only one ...
virtual void handleTerminator(Operation *op, Block *newDest) const
Handle the given inlined terminator by replacing it with a new operation as necessary.
virtual void processInlinedCallBlocks(Operation *call, iterator_range< Region::iterator > inlinedBlocks) const
virtual void processInlinedBlocks(iterator_range< Region::iterator > inlinedBlocks)
Process a set of blocks that have been inlined.
virtual bool isLegalToInline(Operation *call, Operation *callable, bool wouldBeCloned) const
These hooks mirror the hooks for the DialectInlinerInterface, with default implementations that call ...
This class defines the main interface for locations in MLIR and acts as a non-nullable wrapper around...
This class helps build Operations.
Operation is the basic unit of execution within MLIR.
This class contains a list of basic blocks and a link to the parent operation it is attached to.
Instances of the Type class are uniqued, have an immutable identifier and an optional mutable compone...
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...
The base class used for all derived interface types.
Include the generated interface declarations.
LogicalResult inlineRegion(InlinerInterface &interface, Region *src, Operation *inlinePoint, IRMapping &mapper, ValueRange resultsToReplace, TypeRange regionResultTypes, std::optional< Location > inlineLoc=std::nullopt, bool shouldCloneInlinedRegion=true)
This function inlines a region, 'src', into another.
LogicalResult inlineCall(InlinerInterface &interface, CallOpInterface call, CallableOpInterface callable, Region *src, bool shouldCloneInlinedRegion=true)
This function inlines a given region, 'src', of a callable operation, 'callable', into the location d...