Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h474 std::map<SUnit *, int> InstrToCycle; variable
507 InstrToCycle.clear(); in reset()
549 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); in stageScheduled()
550 if (it == InstrToCycle.end()) in stageScheduled()
558 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); in cycleScheduled()
559 assert(it != InstrToCycle.end() && "Instruction hasn't been scheduled."); in cycleScheduled()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp3152 InstrToCycle.insert(std::make_pair(SU, curCycle)); in insert()
3178 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(PrevSU); in earliestCycleInChain()
3179 if (it == InstrToCycle.end()) in earliestCycleInChain()
3201 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SuccSU); in latestCycleInChain()
3202 if (it == InstrToCycle.end()) in latestCycleInChain()
3643 for (auto &I : InstrToCycle) { in finalizeSchedule()