MLIR  19.0.0git
Public Member Functions | Public Attributes | List of all members
mlir::detail::OpPassManagerImpl Struct Reference

Public Member Functions

 OpPassManagerImpl (OperationName opName, OpPassManager::Nesting nesting)
 
 OpPassManagerImpl (StringRef name, OpPassManager::Nesting nesting)
 
 OpPassManagerImpl (OpPassManager::Nesting nesting)
 
 OpPassManagerImpl (const OpPassManagerImpl &rhs)
 
void mergeInto (OpPassManagerImpl &rhs)
 Merge the passes of this pass manager into the one provided. More...
 
OpPassManagernest (OperationName nestedName)
 Nest a new operation pass manager for the given operation kind under this pass manager. More...
 
OpPassManagernest (StringRef nestedName)
 
OpPassManagernestAny ()
 
OpPassManagernest (OpPassManager &&nested)
 Nest the given pass manager under this pass manager. More...
 
void addPass (std::unique_ptr< Pass > pass)
 Add the given pass to this pass manager. More...
 
void clear ()
 Clear the list of passes in this pass manager, other options are preserved. More...
 
LogicalResult finalizePassList (MLIRContext *ctx)
 Finalize the pass list in preparation for execution. More...
 
std::optional< OperationNamegetOpName (MLIRContext &context)
 Return the operation name of this pass manager. More...
 
std::optional< StringRef > getOpName () const
 
StringRef getOpAnchorName () const
 Return the name used to anchor this pass manager. More...
 
bool canScheduleOn (MLIRContext &context, OperationName opName)
 Indicate if the current pass manager can be scheduled on the given operation type. More...
 

Public Attributes

std::string name
 The name of the operation that passes of this pass manager operate on. More...
 
std::optional< OperationNameopName
 The cached OperationName (internalized in the context) for the name of the operation that passes of this pass manager operate on. More...
 
std::vector< std::unique_ptr< Pass > > passes
 The set of passes to run as part of this pass manager. More...
 
unsigned initializationGeneration
 The current initialization generation of this pass manager. More...
 
OpPassManager::Nesting nesting
 Control the implicit nesting of passes that mismatch the name set for this OpPassManager. More...
 

Detailed Description

Definition at line 109 of file Pass.cpp.

Constructor & Destructor Documentation

◆ OpPassManagerImpl() [1/4]

mlir::detail::OpPassManagerImpl::OpPassManagerImpl ( OperationName  opName,
OpPassManager::Nesting  nesting 
)
inline

Definition at line 110 of file Pass.cpp.

◆ OpPassManagerImpl() [2/4]

mlir::detail::OpPassManagerImpl::OpPassManagerImpl ( StringRef  name,
OpPassManager::Nesting  nesting 
)
inline

Definition at line 113 of file Pass.cpp.

◆ OpPassManagerImpl() [3/4]

mlir::detail::OpPassManagerImpl::OpPassManagerImpl ( OpPassManager::Nesting  nesting)
inline

Definition at line 116 of file Pass.cpp.

◆ OpPassManagerImpl() [4/4]

mlir::detail::OpPassManagerImpl::OpPassManagerImpl ( const OpPassManagerImpl rhs)
inline

Definition at line 118 of file Pass.cpp.

References passes.

Member Function Documentation

◆ addPass()

void OpPassManagerImpl::addPass ( std::unique_ptr< Pass pass)

Add the given pass to this pass manager.

If this pass has a concrete operation type, it must be the same type as this pass manager.

Definition at line 214 of file Pass.cpp.

References mlir::OpPassManager::Implicit.

◆ canScheduleOn()

bool OpPassManagerImpl::canScheduleOn ( MLIRContext context,
OperationName  opName 
)

Indicate if the current pass manager can be scheduled on the given operation type.

Definition at line 295 of file Pass.cpp.

References mlir::OperationName::getRegisteredInfo().

Referenced by mlir::detail::OpToOpPassAdaptor::tryMergeInto().

◆ clear()

void OpPassManagerImpl::clear ( )

Clear the list of passes in this pass manager, other options are preserved.

Definition at line 231 of file Pass.cpp.

◆ finalizePassList()

LogicalResult OpPassManagerImpl::finalizePassList ( MLIRContext ctx)

Finalize the pass list in preparation for execution.

This includes coalescing adjacent pass managers when possible, verifying scheduled passes, etc.

Definition at line 233 of file Pass.cpp.

References mlir::emitError(), mlir::failed(), mlir::failure(), mlir::get(), mlir::succeeded(), and mlir::success().

◆ getOpAnchorName()

StringRef mlir::detail::OpPassManagerImpl::getOpAnchorName ( ) const
inline

Return the name used to anchor this pass manager.

This is either the name of an operation, or the result of getAnyOpAnchorName() in the case of an op-agnostic pass manager.

Definition at line 172 of file Pass.cpp.

References mlir::OpPassManager::getAnyOpAnchorName(), and getOpName().

◆ getOpName() [1/2]

std::optional<StringRef> mlir::detail::OpPassManagerImpl::getOpName ( ) const
inline

Definition at line 164 of file Pass.cpp.

References name.

Referenced by getOpAnchorName().

◆ getOpName() [2/2]

std::optional<OperationName> mlir::detail::OpPassManagerImpl::getOpName ( MLIRContext context)
inline

Return the operation name of this pass manager.

Definition at line 159 of file Pass.cpp.

References name, and opName.

◆ mergeInto()

void OpPassManagerImpl::mergeInto ( OpPassManagerImpl rhs)

Merge the passes of this pass manager into the one provided.

Definition at line 201 of file Pass.cpp.

References name, and passes.

Referenced by mlir::detail::OpToOpPassAdaptor::tryMergeInto().

◆ nest() [1/3]

OpPassManager& mlir::detail::OpPassManagerImpl::nest ( OperationName  nestedName)
inline

Nest a new operation pass manager for the given operation kind under this pass manager.

Definition at line 134 of file Pass.cpp.

References nesting.

Referenced by nest(), and nestAny().

◆ nest() [2/3]

OpPassManager & OpPassManagerImpl::nest ( OpPassManager &&  nested)

Nest the given pass manager under this pass manager.

Definition at line 208 of file Pass.cpp.

◆ nest() [3/3]

OpPassManager& mlir::detail::OpPassManagerImpl::nest ( StringRef  nestedName)
inline

Definition at line 137 of file Pass.cpp.

References nest(), and nesting.

◆ nestAny()

OpPassManager& mlir::detail::OpPassManagerImpl::nestAny ( )
inline

Definition at line 140 of file Pass.cpp.

References nest(), and nesting.

Member Data Documentation

◆ initializationGeneration

unsigned mlir::detail::OpPassManagerImpl::initializationGeneration

The current initialization generation of this pass manager.

This is used to indicate when a pass manager should be reinitialized.

Definition at line 192 of file Pass.cpp.

◆ name

std::string mlir::detail::OpPassManagerImpl::name

The name of the operation that passes of this pass manager operate on.

Definition at line 181 of file Pass.cpp.

Referenced by getOpName(), and mergeInto().

◆ nesting

OpPassManager::Nesting mlir::detail::OpPassManagerImpl::nesting

Control the implicit nesting of passes that mismatch the name set for this OpPassManager.

Definition at line 196 of file Pass.cpp.

Referenced by nest(), and nestAny().

◆ opName

std::optional<OperationName> mlir::detail::OpPassManagerImpl::opName

The cached OperationName (internalized in the context) for the name of the operation that passes of this pass manager operate on.

Definition at line 185 of file Pass.cpp.

Referenced by getOpName().

◆ passes

std::vector<std::unique_ptr<Pass> > mlir::detail::OpPassManagerImpl::passes

The set of passes to run as part of this pass manager.

Definition at line 188 of file Pass.cpp.

Referenced by mergeInto(), and OpPassManagerImpl().


The documentation for this struct was generated from the following file: