Home
last modified time | relevance | path

Searched refs:RecMII (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h316 void setMII(unsigned ResMII, unsigned RecMII);
326 unsigned RecMII = 0; variable
375 void setRecMII(unsigned mii) { RecMII = mii; }; in setRecMII()
383 int compareRecMII(NodeSet &RHS) { return RecMII - RHS.RecMII; } in compareRecMII()
385 int getRecMII() { return RecMII; } in getRecMII()
401 RecMII = 0; in clear()
416 if (RecMII == RHS.RecMII) {
423 return RecMII > RHS.RecMII;
427 return RecMII == RHS.RecMII && MaxMOV == RHS.MaxMOV &&
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp490 void SwingSchedulerDAG::setMII(unsigned ResMII, unsigned RecMII) { in setMII() argument
496 MII = std::max(ResMII, RecMII); in setMII()
526 unsigned RecMII = calculateRecMII(NodeSets); in schedule() local
532 RecMII = 0; in schedule()
534 setMII(ResMII, RecMII); in schedule()
538 << " (rec=" << RecMII << ", res=" << ResMII << ")\n"); in schedule()
1549 unsigned RecMII = 0; in calculateRecMII() local
1561 if (CurMII > RecMII) in calculateRecMII()
1562 RecMII = CurMII; in calculateRecMII()
1565 return RecMII; in calculateRecMII()
[all …]