forked from OSchip/llvm-project
NFC: Update the PassInstrumentation section.
This section has grown stale as the pass infrastructure has been generalized. PiperOrigin-RevId: 269140863
This commit is contained in:
parent
bbc6d48d1c
commit
f22011ccba
|
@ -358,6 +358,12 @@ MLIR provides a customizable framework to instrument pass execution and analysis
|
||||||
computation. This is provided via the `PassInstrumentation` class. This class
|
computation. This is provided via the `PassInstrumentation` class. This class
|
||||||
provides hooks into the PassManager that observe various pass events:
|
provides hooks into the PassManager that observe various pass events:
|
||||||
|
|
||||||
|
* `runBeforePipeline`
|
||||||
|
* This callback is run just before a pass pipeline, i.e. pass manager, is
|
||||||
|
executed.
|
||||||
|
* `runAfterPipeline`
|
||||||
|
* This callback is run right after a pass pipeline has been executed,
|
||||||
|
successfully or not.
|
||||||
* `runBeforePass`
|
* `runBeforePass`
|
||||||
* This callback is run just before a pass is executed.
|
* This callback is run just before a pass is executed.
|
||||||
* `runAfterPass`
|
* `runAfterPass`
|
||||||
|
@ -389,15 +395,16 @@ struct DominanceCounterInstrumentation : public PassInstrumentation {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
PassManager pm;
|
MLIRContext *ctx = ...;
|
||||||
|
PassManager pm(ctx);
|
||||||
|
|
||||||
// Add the instrumentation to the pass manager.
|
// Add the instrumentation to the pass manager.
|
||||||
unsigned domInfoCount;
|
unsigned domInfoCount;
|
||||||
pm.addInstrumentation(
|
pm.addInstrumentation(
|
||||||
std::make_unique<DominanceCounterInstrumentation>(domInfoCount));
|
std::make_unique<DominanceCounterInstrumentation>(domInfoCount));
|
||||||
|
|
||||||
// Run the pass manager on a module.
|
// Run the pass manager on a module operation.
|
||||||
Module m = ...;
|
ModuleOp m = ...;
|
||||||
if (failed(pm.run(m)))
|
if (failed(pm.run(m)))
|
||||||
...
|
...
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue