Guray Ozen
3d41197d68
[MLIR] Introduce RemarkEngine + pluggable remark streaming (YAML/Bitstream) (#152474)
This PR implements structured, tooling-friendly optimization remarks
with zero cost unless enabled. It implements:
- `RemarkEngine` collects finalized remarks within `MLIRContext`.
- `MLIRRemarkStreamerBase` abstract class streams them to a backend.
- Backends: `MLIRLLVMRemarkStreamer` (bridges to llvm::remarks →
YAML/Bitstream) or your own custom streamer.
- Optional mirroring to DiagnosticEngine (printAsEmitRemarks +
categories).
- Off by default; no behavior change unless enabled. Thread-safe;
ordering best-effort.
## Overview
```
Passes (reportOptimization*)
│
▼
+-------------------+
| RemarkEngine | collects
+-------------------+
│ │
│ mirror │ stream
▼ ▼
emitRemark MLIRRemarkStreamerBase (abstract)
│
├── MLIRLLVMRemarkStreamer → llvm::remarks → YAML | Bitstream
└── CustomStreamer → your sink
```
## Enable Remark engine and Plug LLVM's Remark streamer
```
// Enable once per MLIRContext. This uses `MLIRLLVMRemarkStreamer`
mlir::remark::enableOptimizationRemarksToFile(
ctx, path, llvm::remarks::Format::YAML, cats);
```
## API to emit remark
```
// Emit from a pass
remark::passed(loc, categoryVectorizer, myPassname1)
<< "vectorized loop";
remark::missed(loc, categoryUnroll, "MyPass")
<< remark::reason("not profitable at this size") // Creates structured reason arg
<< remark::suggest("increase unroll factor to >=4"); // Creates structured suggestion arg
remark::passed(loc, categoryVectorizer, myPassname1)
<< "vectorized loop"
<< remark::metric("tripCount", 128); // Create structured metric on-the-fly
```
2025-08-21 16:02:31 +02:00
..
2025-08-15 09:55:13 -07:00
2025-02-12 14:17:30 -08:00
2025-07-25 11:48:17 -05:00
2025-07-18 13:32:56 -07:00
2025-07-25 11:48:17 -05:00
2025-08-17 23:07:24 +02:00
2025-05-28 11:07:03 -07:00
2025-08-21 16:02:31 +02:00
2024-12-16 12:01:39 +01:00
2025-06-24 07:03:59 -07:00
2024-12-16 12:01:39 +01:00
2024-12-16 12:01:39 +01:00
2025-07-25 11:48:17 -05:00
2025-07-29 18:15:33 +03:00
2024-12-16 12:01:39 +01:00
2025-07-18 13:32:56 -07:00
2024-05-25 17:32:42 +02:00