Searched refs:NewCycle (Results 1 – 2 of 2) sorted by relevance
244 std::unique_ptr<CycleT> NewCycle = std::make_unique<CycleT>(); in run() local245 NewCycle->appendEntry(HeaderCandidate); in run()246 NewCycle->appendBlock(HeaderCandidate); in run()247 Info.BlockMap.try_emplace(HeaderCandidate, NewCycle.get()); in run()265 assert(!NewCycle->isEntry(Block)); in run()267 NewCycle->appendEntry(Block); in run()284 if (BlockParent != NewCycle.get()) { in run()289 Info.moveTopLevelCycleToNewParent(NewCycle.get(), BlockParent); in run()299 Info.BlockMap.try_emplace(Block, NewCycle.get()); in run()300 assert(!is_contained(NewCycle->Blocks, Block)); in run()[all …]
3209 int NewCycle = getFirstCycle(); in normalizeNonPipelinedInstructions() local3211 NewCycle = std::max(InstrToCycle[Dep.getSUnit()], NewCycle); in normalizeNonPipelinedInstructions()3214 if (OldCycle != NewCycle) { in normalizeNonPipelinedInstructions()3215 InstrToCycle[&SU] = NewCycle; in normalizeNonPipelinedInstructions()3218 getInstructions(NewCycle).emplace_back(&SU); in normalizeNonPipelinedInstructions()3221 << " to " << NewCycle << " Instr:" << *SU.getInstr()); in normalizeNonPipelinedInstructions()3223 NewLastCycle = std::max(NewLastCycle, NewCycle); in normalizeNonPipelinedInstructions()