MLIR
20.0.0git
|
Public Member Functions | |
Impl (ReproducerStreamFactory &streamFactory, bool localReproducer) | |
Public Attributes | |
ReproducerStreamFactory | streamFactory |
The factory to use when generating a crash reproducer. More... | |
bool | localReproducer = false |
Flag indicating if reproducer generation should be localized to the failing pass. More... | |
SmallVector< std::unique_ptr< RecoveryReproducerContext > > | activeContexts |
A record of all of the currently active reproducer contexts. More... | |
SetVector< std::pair< Pass *, Operation * > > | runningPasses |
The set of all currently running passes. More... | |
bool | pmFlagVerifyPasses = false |
Various pass manager flags that get emitted when generating a reproducer. More... | |
Definition at line 185 of file PassCrashRecovery.cpp.
|
inline |
Definition at line 186 of file PassCrashRecovery.cpp.
SmallVector<std::unique_ptr<RecoveryReproducerContext> > mlir::detail::PassCrashReproducerGenerator::Impl::activeContexts |
A record of all of the currently active reproducer contexts.
Definition at line 197 of file PassCrashRecovery.cpp.
bool mlir::detail::PassCrashReproducerGenerator::Impl::localReproducer = false |
Flag indicating if reproducer generation should be localized to the failing pass.
Definition at line 194 of file PassCrashRecovery.cpp.
bool mlir::detail::PassCrashReproducerGenerator::Impl::pmFlagVerifyPasses = false |
Various pass manager flags that get emitted when generating a reproducer.
Definition at line 204 of file PassCrashRecovery.cpp.
SetVector<std::pair<Pass *, Operation *> > mlir::detail::PassCrashReproducerGenerator::Impl::runningPasses |
The set of all currently running passes.
Note: This is not populated when localReproducer
is true, as each pass will get its own recovery context.
Definition at line 201 of file PassCrashRecovery.cpp.
ReproducerStreamFactory mlir::detail::PassCrashReproducerGenerator::Impl::streamFactory |
The factory to use when generating a crash reproducer.
Definition at line 190 of file PassCrashRecovery.cpp.