Searched refs:InstrToCycle (Results 1 – 2 of 2) sorted by relevance
540 std::map<SUnit *, int> InstrToCycle; variable567 InstrToCycle.clear(); in reset()614 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); in stageScheduled()615 if (it == InstrToCycle.end()) in stageScheduled()623 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); in cycleScheduled()624 assert(it != InstrToCycle.end() && "Instruction hasn't been scheduled."); in cycleScheduled()
2785 InstrToCycle.insert(std::make_pair(SU, curCycle)); in insert()2811 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(PrevSU); in earliestCycleInChain()2812 if (it == InstrToCycle.end()) in earliestCycleInChain()2834 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SuccSU); in latestCycleInChain()2835 if (it == InstrToCycle.end()) in latestCycleInChain()3135 NewLastCycle = std::max(NewLastCycle, InstrToCycle[&SU]); in normalizeNonPipelinedInstructions()3142 NewCycle = std::max(InstrToCycle[Dep.getSUnit()], NewCycle); in normalizeNonPipelinedInstructions()3144 int OldCycle = InstrToCycle[&SU]; in normalizeNonPipelinedInstructions()3146 InstrToCycle[&SU] = NewCycle; in normalizeNonPipelinedInstructions()3173 int CycleDef = InstrToCycle[&SU]; in isValidSchedule()[all …]