Home
last modified time | relevance | path

Searched refs:NewCycle (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DGenericCycleImpl.h230 NewCycle->appendEntry(HeaderCandidate); in run()
231 NewCycle->appendBlock(HeaderCandidate); in run()
232 Info.BlockMap.try_emplace(HeaderCandidate, NewCycle.get()); in run()
250 assert(!NewCycle->isEntry(Block)); in run()
252 NewCycle->appendEntry(Block); in run()
269 if (BlockParent != NewCycle.get()) { in run()
284 Info.BlockMap.try_emplace(Block, NewCycle.get()); in run()
285 assert(!is_contained(NewCycle->Blocks, Block)); in run()
286 NewCycle->Blocks.insert(Block); in run()
288 Info.BlockMapTopLevel.try_emplace(Block, NewCycle.get()); in run()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp3140 int NewCycle = getFirstCycle(); in normalizeNonPipelinedInstructions() local
3142 NewCycle = std::max(InstrToCycle[Dep.getSUnit()], NewCycle); in normalizeNonPipelinedInstructions()
3145 if (OldCycle != NewCycle) { in normalizeNonPipelinedInstructions()
3146 InstrToCycle[&SU] = NewCycle; in normalizeNonPipelinedInstructions()
3149 getInstructions(NewCycle).emplace_back(&SU); in normalizeNonPipelinedInstructions()
3152 << " to " << NewCycle << " Instr:" << *SU.getInstr()); in normalizeNonPipelinedInstructions()
3154 NewLastCycle = std::max(NewLastCycle, NewCycle); in normalizeNonPipelinedInstructions()