Searched refs:InstrToCycle (Results 1 – 2 of 2) sorted by relevance
503 std::map<SUnit *, int> InstrToCycle; variable529 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()
2395 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 …]