|
class | mlir::OptionalParseResult |
| This class implements Optional functionality for ParseResult. More...
|
|
struct | mlir::EmptyProperties |
| Structure used by default as a "marker" when no "Properties" are set on an Operation. More...
|
|
struct | mlir::PropertiesSelector< Op, class > |
| Traits to detect whether an Operation defined a Properties type, otherwise it'll default to EmptyProperties . More...
|
|
struct | mlir::PropertiesSelector< Op, std::void_t< typename Op::Properties > > |
|
class | mlir::OpState |
| This is the concrete base class that holds the operation pointer and has non-generic methods that only depend on State (to avoid having them instantiated on template types that don't affect them. More...
|
|
class | mlir::OpFoldResult |
| This class represents a single result from folding an operation. More...
|
|
struct | llvm::CastInfo< To, mlir::OpFoldResult > |
|
struct | llvm::CastInfo< To, const mlir::OpFoldResult > |
|
class | mlir::OpTrait::TraitBase< ConcreteType, TraitType > |
| Helper class for implementing traits. More...
|
|
struct | mlir::OpTrait::detail::MultiOperandTraitBase< ConcreteType, TraitType > |
| Utility trait base that provides accessors for derived traits that have multiple operands. More...
|
|
class | mlir::OpTrait::OpInvariants< ConcreteType > |
| verifyInvariantsImpl verifies the invariants like the types, attrs, .etc. More...
|
|
class | mlir::OpTrait::ZeroOperands< ConcreteType > |
| This class provides the API for ops that are known to have no SSA operand. More...
|
|
class | mlir::OpTrait::OneOperand< ConcreteType > |
| This class provides the API for ops that are known to have exactly one SSA operand. More...
|
|
class | mlir::OpTrait::NOperands< N > |
| This class provides the API for ops that are known to have a specified number of operands. More...
|
|
class | mlir::OpTrait::NOperands< N >::Impl< ConcreteType > |
|
class | mlir::OpTrait::AtLeastNOperands< N > |
| This class provides the API for ops that are known to have a at least a specified number of operands. More...
|
|
class | mlir::OpTrait::AtLeastNOperands< N >::Impl< ConcreteType > |
|
class | mlir::OpTrait::VariadicOperands< ConcreteType > |
| This class provides the API for ops which have an unknown number of SSA operands. More...
|
|
class | mlir::OpTrait::ZeroRegions< ConcreteType > |
| This class provides verification for ops that are known to have zero regions. More...
|
|
struct | mlir::OpTrait::detail::MultiRegionTraitBase< ConcreteType, TraitType > |
| Utility trait base that provides accessors for derived traits that have multiple regions. More...
|
|
class | mlir::OpTrait::OneRegion< ConcreteType > |
| This class provides APIs for ops that are known to have a single region. More...
|
|
class | mlir::OpTrait::NRegions< N > |
| This class provides the API for ops that are known to have a specified number of regions. More...
|
|
class | mlir::OpTrait::NRegions< N >::Impl< ConcreteType > |
|
class | mlir::OpTrait::AtLeastNRegions< N > |
| This class provides APIs for ops that are known to have at least a specified number of regions. More...
|
|
class | mlir::OpTrait::AtLeastNRegions< N >::Impl< ConcreteType > |
|
class | mlir::OpTrait::VariadicRegions< ConcreteType > |
| This class provides the API for ops which have an unknown number of regions. More...
|
|
class | mlir::OpTrait::ZeroResults< ConcreteType > |
| This class provides return value APIs for ops that are known to have zero results. More...
|
|
struct | mlir::OpTrait::detail::MultiResultTraitBase< ConcreteType, TraitType > |
| Utility trait base that provides accessors for derived traits that have multiple results. More...
|
|
class | mlir::OpTrait::OneResult< ConcreteType > |
| This class provides return value APIs for ops that are known to have a single result. More...
|
|
class | mlir::OpTrait::OneTypedResult< ResultType > |
| This trait is used for return value APIs for ops that are known to have a specific type other than Type . More...
|
|
class | mlir::OpTrait::OneTypedResult< ResultType >::Impl< ConcreteType > |
| This class provides return value APIs for ops that are known to have a single result. More...
|
|
class | mlir::OpTrait::NResults< N > |
| This class provides the API for ops that are known to have a specified number of results. More...
|
|
class | mlir::OpTrait::NResults< N >::Impl< ConcreteType > |
|
class | mlir::OpTrait::AtLeastNResults< N > |
| This class provides the API for ops that are known to have at least a specified number of results. More...
|
|
class | mlir::OpTrait::AtLeastNResults< N >::Impl< ConcreteType > |
|
class | mlir::OpTrait::VariadicResults< ConcreteType > |
| This class provides the API for ops which have an unknown number of results. More...
|
|
class | mlir::OpTrait::NoTerminator< ConcreteType > |
| This class indicates that the regions associated with this op don't have terminators. More...
|
|
class | mlir::OpTrait::IsTerminator< ConcreteType > |
| This class provides the API for ops that are known to be terminators. More...
|
|
class | mlir::OpTrait::ZeroSuccessors< ConcreteType > |
| This class provides verification for ops that are known to have zero successors. More...
|
|
struct | mlir::OpTrait::detail::MultiSuccessorTraitBase< ConcreteType, TraitType > |
| Utility trait base that provides accessors for derived traits that have multiple successors. More...
|
|
class | mlir::OpTrait::OneSuccessor< ConcreteType > |
| This class provides APIs for ops that are known to have a single successor. More...
|
|
class | mlir::OpTrait::NSuccessors< N > |
| This class provides the API for ops that are known to have a specified number of successors. More...
|
|
class | mlir::OpTrait::NSuccessors< N >::Impl< ConcreteType > |
|
class | mlir::OpTrait::AtLeastNSuccessors< N > |
| This class provides APIs for ops that are known to have at least a specified number of successors. More...
|
|
class | mlir::OpTrait::AtLeastNSuccessors< N >::Impl< ConcreteType > |
|
class | mlir::OpTrait::VariadicSuccessors< ConcreteType > |
| This class provides the API for ops which have an unknown number of successors. More...
|
|
struct | mlir::OpTrait::SingleBlock< ConcreteType > |
| This class provides APIs and verifiers for ops with regions having a single block. More...
|
|
struct | mlir::OpTrait::SingleBlockImplicitTerminator< TerminatorOpType > |
| This class provides APIs and verifiers for ops with regions having a single block that must terminate with TerminatorOpType . More...
|
|
class | mlir::OpTrait::SingleBlockImplicitTerminator< TerminatorOpType >::Impl< ConcreteType > |
|
struct | mlir::OpTrait::hasSingleBlockImplicitTerminator< Op, hasTerminator > |
| Support to check if an operation has the SingleBlockImplicitTerminator trait. More...
|
|
struct | mlir::OpTrait::hasSingleBlockImplicitTerminator< Op, false > |
|
class | mlir::OpTrait::SameOperandsShape< ConcreteType > |
| This class provides verification for ops that are known to have the same operand shape: all operands are scalars, vectors/tensors of the same shape. More...
|
|
class | mlir::OpTrait::SameOperandsAndResultShape< ConcreteType > |
| This class provides verification for ops that are known to have the same operand and result shape: both are scalars, vectors/tensors of the same shape. More...
|
|
class | mlir::OpTrait::SameOperandsElementType< ConcreteType > |
| This class provides verification for ops that are known to have the same operand element type (or the type itself if it is scalar). More...
|
|
class | mlir::OpTrait::SameOperandsAndResultElementType< ConcreteType > |
| This class provides verification for ops that are known to have the same operand and result element type (or the type itself if it is scalar). More...
|
|
class | mlir::OpTrait::SameOperandsAndResultType< ConcreteType > |
| This class provides verification for ops that are known to have the same operand and result type. More...
|
|
class | mlir::OpTrait::SameOperandsAndResultRank< ConcreteType > |
| This class verifies that op has same ranks for all operands and results types, if known. More...
|
|
class | mlir::OpTrait::ResultsAreBoolLike< ConcreteType > |
| This class verifies that any results of the specified op have a boolean type, a vector thereof, or a tensor thereof. More...
|
|
class | mlir::OpTrait::ResultsAreFloatLike< ConcreteType > |
| This class verifies that any results of the specified op have a floating point type, a vector thereof, or a tensor thereof. More...
|
|
class | mlir::OpTrait::ResultsAreSignlessIntegerLike< ConcreteType > |
| This class verifies that any results of the specified op have a signless integer or index type, a vector thereof, or a tensor thereof. More...
|
|
class | mlir::OpTrait::IsCommutative< ConcreteType > |
| This class adds property that the operation is commutative. More...
|
|
class | mlir::OpTrait::IsInvolution< ConcreteType > |
| This class adds property that the operation is an involution. More...
|
|
class | mlir::OpTrait::IsIdempotent< ConcreteType > |
| This class adds property that the operation is idempotent. More...
|
|
class | mlir::OpTrait::OperandsAreFloatLike< ConcreteType > |
| This class verifies that all operands of the specified op have a float type, a vector thereof, or a tensor thereof. More...
|
|
class | mlir::OpTrait::OperandsAreSignlessIntegerLike< ConcreteType > |
| This class verifies that all operands of the specified op have a signless integer or index type, a vector thereof, or a tensor thereof. More...
|
|
class | mlir::OpTrait::SameTypeOperands< ConcreteType > |
| This class verifies that all operands of the specified op have the same type. More...
|
|
class | mlir::OpTrait::ConstantLike< ConcreteType > |
| This class provides the API for a sub-set of ops that are known to be constant-like. More...
|
|
class | mlir::OpTrait::IsIsolatedFromAbove< ConcreteType > |
| This class provides the API for ops that are known to be isolated from above. More...
|
|
class | mlir::OpTrait::AffineScope< ConcreteType > |
| A trait of region holding operations that defines a new scope for polyhedral optimization purposes. More...
|
|
class | mlir::OpTrait::AutomaticAllocationScope< ConcreteType > |
| A trait of region holding operations that define a new scope for automatic allocations, i.e., allocations that are freed when control is transferred back from the operation's region. More...
|
|
struct | mlir::OpTrait::HasParent< ParentOpTypes > |
| This class provides a verifier for ops that are expecting their parent to be one of the given parent ops. More...
|
|
class | mlir::OpTrait::HasParent< ParentOpTypes >::Impl< ConcreteType > |
|
class | mlir::OpTrait::AttrSizedOperandSegments< ConcreteType > |
| A trait for operations that have an attribute specifying operand segments. More...
|
|
class | mlir::OpTrait::AttrSizedResultSegments< ConcreteType > |
| Similar to AttrSizedOperandSegments but used for results. More...
|
|
struct | mlir::OpTrait::NoRegionArguments< ConcrentType > |
| This trait provides a verifier for ops that are expecting their regions to not have any arguments. More...
|
|
struct | mlir::OpTrait::MemRefsNormalizable< ConcrentType > |
|
struct | mlir::OpTrait::Elementwise< ConcreteType > |
| This trait tags element-wise ops on vectors or tensors. More...
|
|
struct | mlir::OpTrait::Scalarizable< ConcreteType > |
| This trait tags Elementwise operatons that can be systematically scalarized. More...
|
|
struct | mlir::OpTrait::Vectorizable< ConcreteType > |
| This trait tags Elementwise operatons that can be systematically vectorized. More...
|
|
struct | mlir::OpTrait::Tensorizable< ConcreteType > |
| This trait tags Elementwise operatons that can be systematically tensorized. More...
|
|
class | mlir::Op< ConcreteType, Traits > |
| This provides public APIs that all operations should have. More...
|
|
class | mlir::OpInterface< ConcreteType, Traits > |
| This class represents the base of an operation interface. More...
|
|
struct | llvm::DenseMapInfo< T, std::enable_if_t< std::is_base_of< mlir::OpState, T >::value &&!mlir::detail::IsInterface< T >::value > > |
|