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

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h503 std::map<SUnit *, int> InstrToCycle; member in class:llvm::SMSchedule
529 InstrToCycle.clear();
570 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU);
571 if (it == InstrToCycle.end())
579 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU);
580 assert(it != InstrToCycle.end() && "Instruction hasn't been scheduled.");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2416 InstrToCycle.insert(std::make_pair(SU, curCycle));
2442 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(PrevSU);
2443 if (it == InstrToCycle.end())
2465 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SuccSU);
2466 if (it == InstrToCycle.end())

Completed in 75 milliseconds