Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h315 void setMII(unsigned ResMII, unsigned RecMII);
325 unsigned RecMII = 0; variable
374 void setRecMII(unsigned mii) { RecMII = mii; }; in setRecMII()
382 int compareRecMII(NodeSet &RHS) { return RecMII - RHS.RecMII; } in compareRecMII()
384 int getRecMII() { return RecMII; } in getRecMII()
400 RecMII = 0; in clear()
415 if (RecMII == RHS.RecMII) {
422 return RecMII > RHS.RecMII;
426 return RecMII == RHS.RecMII && MaxMOV == RHS.MaxMOV &&
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp472 void SwingSchedulerDAG::setMII(unsigned ResMII, unsigned RecMII) { in setMII() argument
478 MII = std::max(ResMII, RecMII); in setMII()
508 unsigned RecMII = calculateRecMII(NodeSets); in schedule() local
514 RecMII = 0; in schedule()
516 setMII(ResMII, RecMII); in schedule()
520 << " (rec=" << RecMII << ", res=" << ResMII << ")\n"); in schedule()
1128 unsigned RecMII = 0; in calculateRecMII() local
1140 if (CurMII > RecMII) in calculateRecMII()
1141 RecMII = CurMII; in calculateRecMII()
1144 return RecMII; in calculateRecMII()
[all …]