Searched refs:InstrToCycle (Results 1 – 2 of 2) sorted by relevance
539 std::map<SUnit *, int> InstrToCycle; variable566 InstrToCycle.clear(); in reset()613 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); in stageScheduled()614 if (it == InstrToCycle.end()) in stageScheduled()622 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); in cycleScheduled()623 assert(it != InstrToCycle.end() && "Instruction hasn't been scheduled."); in cycleScheduled()
2353 InstrToCycle.insert(std::make_pair(SU, curCycle)); in insert()2379 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(PrevSU); in earliestCycleInChain()2380 if (it == InstrToCycle.end()) in earliestCycleInChain()2402 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SuccSU); in latestCycleInChain()2403 if (it == InstrToCycle.end()) in latestCycleInChain()2704 NewLastCycle = std::max(NewLastCycle, InstrToCycle[&SU]); in normalizeNonPipelinedInstructions()2711 NewCycle = std::max(InstrToCycle[Dep.getSUnit()], NewCycle); in normalizeNonPipelinedInstructions()2713 int OldCycle = InstrToCycle[&SU]; in normalizeNonPipelinedInstructions()2715 InstrToCycle[&SU] = NewCycle; in normalizeNonPipelinedInstructions()2742 int CycleDef = InstrToCycle[&SU]; in isValidSchedule()[all …]