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.h321 void setMII(unsigned ResMII, unsigned RecMII);
331 unsigned RecMII = 0; variable
380 void setRecMII(unsigned mii) { RecMII = mii; }; in setRecMII()
388 int compareRecMII(NodeSet &RHS) { return RecMII - RHS.RecMII; } in compareRecMII()
390 int getRecMII() { return RecMII; } in getRecMII()
406 RecMII = 0; in clear()
421 if (RecMII == RHS.RecMII) {
428 return RecMII > RHS.RecMII;
432 return RecMII == RHS.RecMII && MaxMOV == RHS.MaxMOV &&
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp545 void SwingSchedulerDAG::setMII(unsigned ResMII, unsigned RecMII) { in setMII() argument
551 MII = std::max(ResMII, RecMII); in setMII()
581 unsigned RecMII = calculateRecMII(NodeSets); in schedule() local
587 RecMII = 0; in schedule()
589 setMII(ResMII, RecMII); in schedule()
593 << " (rec=" << RecMII << ", res=" << ResMII << ")\n"); in schedule()
1609 unsigned RecMII = 0; in calculateRecMII() local
1621 if (CurMII > RecMII) in calculateRecMII()
1622 RecMII = CurMII; in calculateRecMII()
1625 return RecMII; in calculateRecMII()
[all …]