Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h474 void setMII(unsigned ResMII, unsigned RecMII);
484 unsigned RecMII = 0; variable
568 void setRecMII(unsigned mii) { RecMII = mii; }; in setRecMII()
576 int compareRecMII(NodeSet &RHS) { return RecMII - RHS.RecMII; } in compareRecMII()
578 int getRecMII() { return RecMII; } in getRecMII()
594 RecMII = 0; in clear()
609 if (RecMII == RHS.RecMII) {
616 return RecMII > RHS.RecMII;
620 return RecMII == RHS.RecMII && MaxMOV == RHS.MaxMOV &&
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp685 void SwingSchedulerDAG::setMII(unsigned ResMII, unsigned RecMII) { in setMII() argument
691 MII = std::max(ResMII, RecMII); in setMII()
727 unsigned RecMII = calculateRecMII(NodeSets); in schedule() local
733 RecMII = 0; in schedule()
735 setMII(ResMII, RecMII); in schedule()
739 << " (rec=" << RecMII << ", res=" << ResMII << ")\n"); in schedule()
1824 unsigned RecMII = 0; in calculateRecMII() local
1836 if (CurMII > RecMII) in calculateRecMII()
1837 RecMII = CurMII; in calculateRecMII()
1840 return RecMII; in calculateRecMII()
[all …]