Searched refs:InstrToCycle (Results 1 – 2 of 2) sorted by relevance
733 std::map<SUnit *, int> InstrToCycle; variable760 InstrToCycle.clear(); in reset()809 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); in stageScheduled()810 if (it == InstrToCycle.end()) in stageScheduled()818 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); in cycleScheduled()819 assert(it != InstrToCycle.end() && "Instruction hasn't been scheduled."); in cycleScheduled()
3176 InstrToCycle.insert(std::make_pair(SU, curCycle)); in insert()3203 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(PrevSU); in earliestCycleInChain()3204 if (it == InstrToCycle.end()) in earliestCycleInChain()3227 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SuccSU); in latestCycleInChain()3228 if (it == InstrToCycle.end()) in latestCycleInChain()3488 if (InstrToCycle.count(IE.getSrc())) in onlyHasLoopCarriedOutputOrOrderPreds()3533 NewLastCycle = std::max(NewLastCycle, InstrToCycle[&SU]); in normalizeNonPipelinedInstructions()3541 NewCycle = std::max(InstrToCycle[IE.getSrc()], NewCycle); in normalizeNonPipelinedInstructions()3547 NewCycle = std::max(InstrToCycle[OE.getDst()], NewCycle); in normalizeNonPipelinedInstructions()3549 int OldCycle = InstrToCycle[&SU]; in normalizeNonPipelinedInstructions()[all …]