[llvm] [MCA] New option to report scheduling information: -scheduling-info (PR #126703)
Cullen Rhodes via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 11 07:59:40 PST 2025
================
@@ -174,3 +174,40 @@ MCSchedModel::getForwardingDelayCycles(ArrayRef<MCReadAdvanceEntry> Entries,
return std::abs(DelayCycles);
}
+
+unsigned
+MCSchedModel::getForwardingDelayCycles(const MCSubtargetInfo &STI,
+ const MCSchedClassDesc &SCDesc) {
+
+ ArrayRef<MCReadAdvanceEntry> Entries = STI.getReadAdvanceEntries(SCDesc);
+ if (Entries.empty())
+ return 0;
+
+ unsigned Latency = 0;
+ unsigned maxLatency = 0;
+ unsigned WriteResourceID = 0;
+ unsigned DefEnd = SCDesc.NumWriteLatencyEntries;
+
+ for (unsigned DefIdx = 0; DefIdx != DefEnd; ++DefIdx) {
+ // Lookup the definition's write latency in SubtargetInfo.
+ const MCWriteLatencyEntry *WLEntry =
+ STI.getWriteLatencyEntry(&SCDesc, DefIdx);
+ // Early exit if we found an invalid latency.
+ // Consider no bypass
+ if (WLEntry->Cycles < 0)
+ return 0;
+ maxLatency = std::max(Latency, static_cast<unsigned>(WLEntry->Cycles));
+ if (maxLatency > Latency) {
+ WriteResourceID = WLEntry->WriteResourceID;
+ }
+ Latency = maxLatency;
----------------
c-rhodes wrote:
nit: might just be me but I find this hard to follow, I think the following is clearer
```suggestion
if (WLEntry->Cycles > MaxLatency) {
MaxLatency = WLEntry->Cycles;
WriteResourceID = WLEntry->WriteResourceID;
}
```
https://github.com/llvm/llvm-project/pull/126703
More information about the llvm-commits
mailing list