Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h503 std::map<SUnit *, int> InstrToCycle; variable
529 InstrToCycle.clear(); in reset()
573 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); in stageScheduled()
574 if (it == InstrToCycle.end()) in stageScheduled()
582 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); in cycleScheduled()
583 assert(it != InstrToCycle.end() && "Instruction hasn't been scheduled."); in cycleScheduled()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2395 InstrToCycle.insert(std::make_pair(SU, curCycle)); in insert()
2421 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(PrevSU); in earliestCycleInChain()
2422 if (it == InstrToCycle.end()) in earliestCycleInChain()
2444 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SuccSU); in latestCycleInChain()
2445 if (it == InstrToCycle.end()) in latestCycleInChain()
2746 NewLastCycle = std::max(NewLastCycle, InstrToCycle[&SU]); in normalizeNonPipelinedInstructions()
2753 NewCycle = std::max(InstrToCycle[Dep.getSUnit()], NewCycle); in normalizeNonPipelinedInstructions()
2755 int OldCycle = InstrToCycle[&SU]; in normalizeNonPipelinedInstructions()
2757 InstrToCycle[&SU] = NewCycle; in normalizeNonPipelinedInstructions()
2784 int CycleDef = InstrToCycle[&SU]; in isValidSchedule()
[all …]