Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h494 std::map<SUnit *, int> InstrToCycle; variable
520 InstrToCycle.clear(); in reset()
564 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); in stageScheduled()
565 if (it == InstrToCycle.end()) in stageScheduled()
573 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); in cycleScheduled()
574 assert(it != InstrToCycle.end() && "Instruction hasn't been scheduled."); in cycleScheduled()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2401 InstrToCycle.insert(std::make_pair(SU, curCycle)); in insert()
2427 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(PrevSU); in earliestCycleInChain()
2428 if (it == InstrToCycle.end()) in earliestCycleInChain()
2450 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SuccSU); in latestCycleInChain()
2451 if (it == InstrToCycle.end()) in latestCycleInChain()