|
using | OperationT = SPIRVOp |
|
using | OpAdaptor = typename SourceOp::Adaptor |
|
using | OneToNOpAdaptor = typename SourceOp::template GenericAdaptor< ArrayRef< ValueRange > > |
|
using | SplitMatchAndRewrite = detail::ConversionSplitMatchAndRewriteImpl< OpConversionPattern< SPIRVOp > > |
| SplitMatchAndRewrite is deprecated. More...
|
|
using | OperationT = Operation * |
|
using | OpAdaptor = ArrayRef< Value > |
|
using | OneToNOpAdaptor = ArrayRef< ValueRange > |
|
using | SplitMatchAndRewrite = detail::ConversionSplitMatchAndRewriteImpl< ConversionPattern > |
| SplitMatchAndRewrite is deprecated. More...
|
|
using | OperationT = Operation * |
|
using | SplitMatchAndRewrite = detail::SplitMatchAndRewriteImpl< RewritePattern > |
| SplitMatchAndRewrite is deprecated. More...
|
|
template<typename T , typename... Args> |
static std::unique_ptr< T > | create (Args &&...args) |
| This method provides a convenient interface for creating and initializing derived rewrite patterns of the given type T . More...
|
|
template<typename... Args> |
| ConversionPattern (const TypeConverter &typeConverter, Args &&...args) |
| Construct a conversion pattern with the given converter, and forward the remaining arguments to RewritePattern. More...
|
|
SmallVector< Value > | getOneToOneAdaptorOperands (ArrayRef< ValueRange > operands) const |
| Given an array of value ranges, which are the inputs to a 1:N adaptor, try to extract the single value of each range to construct a the inputs for a 1:1 adaptor. More...
|
|
| Pattern (StringRef rootName, PatternBenefit benefit, MLIRContext *context, ArrayRef< StringRef > generatedNames={}) |
| Inherit the base constructors from Pattern . More...
|
|
| Pattern (MatchAnyOpTypeTag tag, PatternBenefit benefit, MLIRContext *context, ArrayRef< StringRef > generatedNames={}) |
| Inherit the base constructors from Pattern . More...
|
|
| Pattern (MatchInterfaceOpTypeTag tag, TypeID interfaceID, PatternBenefit benefit, MLIRContext *context, ArrayRef< StringRef > generatedNames={}) |
| Inherit the base constructors from Pattern . More...
|
|
| Pattern (MatchTraitOpTypeTag tag, TypeID traitID, PatternBenefit benefit, MLIRContext *context, ArrayRef< StringRef > generatedNames={}) |
| Inherit the base constructors from Pattern . More...
|
|
| Pattern (StringRef rootName, PatternBenefit benefit, MLIRContext *context, ArrayRef< StringRef > generatedNames={}) |
| Construct a pattern with a certain benefit that matches the operation with the given root name. More...
|
|
| Pattern (MatchAnyOpTypeTag tag, PatternBenefit benefit, MLIRContext *context, ArrayRef< StringRef > generatedNames={}) |
| Construct a pattern that may match any operation type. More...
|
|
| Pattern (MatchInterfaceOpTypeTag tag, TypeID interfaceID, PatternBenefit benefit, MLIRContext *context, ArrayRef< StringRef > generatedNames={}) |
| Construct a pattern that may match any operation that implements the interface defined by the provided interfaceID . More...
|
|
| Pattern (MatchTraitOpTypeTag tag, TypeID traitID, PatternBenefit benefit, MLIRContext *context, ArrayRef< StringRef > generatedNames={}) |
| Construct a pattern that may match any operation that implements the trait defined by the provided traitID . More...
|
|
void | setHasBoundedRewriteRecursion (bool hasBoundedRecursionArg=true) |
| Set the flag detailing if this pattern has bounded rewrite recursion or not. More...
|
|
const TypeConverter * | typeConverter = nullptr |
| An optional type converter for use by this pattern. More...
|
|