[llvm] [MC] Account for AcquireAtCycle in getReciprocalThroughput (PR #132653)
Min-Yih Hsu via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 09:56:36 PDT 2025
================
@@ -96,19 +96,22 @@ int MCSchedModel::computeInstrLatency(const MCSubtargetInfo &STI,
double
MCSchedModel::getReciprocalThroughput(const MCSubtargetInfo &STI,
const MCSchedClassDesc &SCDesc) {
- std::optional<double> Throughput;
+ std::optional<double> MinThroughput;
const MCSchedModel &SM = STI.getSchedModel();
const MCWriteProcResEntry *I = STI.getWriteProcResBegin(&SCDesc);
const MCWriteProcResEntry *E = STI.getWriteProcResEnd(&SCDesc);
for (; I != E; ++I) {
- if (!I->ReleaseAtCycle)
+ if (!I->ReleaseAtCycle || I->ReleaseAtCycle == I->AcquireAtCycle)
continue;
+ assert(I->ReleaseAtCycle > I->AcquireAtCycle);
----------------
mshockwave wrote:
Done
https://github.com/llvm/llvm-project/pull/132653
More information about the llvm-commits
mailing list