Home
last modified time | relevance | path

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

/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/
H A DGenericCycleImpl.h212 std::unique_ptr<CycleT> NewCycle = std::make_unique<CycleT>(); in run() local
213 NewCycle->appendEntry(HeaderCandidate); in run()
214 NewCycle->appendBlock(HeaderCandidate); in run()
215 Info.BlockMap.try_emplace(HeaderCandidate, NewCycle.get()); in run()
233 assert(!NewCycle->isEntry(Block)); in run()
235 NewCycle->appendEntry(Block); in run()
252 if (BlockParent != NewCycle.get()) { in run()
257 Info.moveTopLevelCycleToNewParent(NewCycle.get(), BlockParent); in run()
267 Info.BlockMap.try_emplace(Block, NewCycle.get()); in run()
268 assert(!is_contained(NewCycle->Blocks, Block)); in run()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ADT/
DGenericCycleImpl.h229 std::unique_ptr<CycleT> NewCycle = std::make_unique<CycleT>(); in run() local
230 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()
274 Info.moveTopLevelCycleToNewParent(NewCycle.get(), BlockParent); in run()
284 Info.BlockMap.try_emplace(Block, NewCycle.get()); in run()
285 assert(!is_contained(NewCycle->Blocks, Block)); in run()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ADT/
DGenericCycleImpl.h229 std::unique_ptr<CycleT> NewCycle = std::make_unique<CycleT>(); in run() local
230 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()
274 Info.moveTopLevelCycleToNewParent(NewCycle.get(), BlockParent); in run()
284 Info.BlockMap.try_emplace(Block, NewCycle.get()); in run()
285 assert(!is_contained(NewCycle->Blocks, Block)); in run()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ADT/
DGenericCycleImpl.h229 std::unique_ptr<CycleT> NewCycle = std::make_unique<CycleT>(); in run() local
230 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()
274 Info.moveTopLevelCycleToNewParent(NewCycle.get(), BlockParent); in run()
284 Info.BlockMap.try_emplace(Block, NewCycle.get()); in run()
285 assert(!is_contained(NewCycle->Blocks, Block)); in run()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ADT/
DGenericCycleImpl.h229 std::unique_ptr<CycleT> NewCycle = std::make_unique<CycleT>(); in run() local
230 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()
274 Info.moveTopLevelCycleToNewParent(NewCycle.get(), BlockParent); in run()
284 Info.BlockMap.try_emplace(Block, NewCycle.get()); in run()
285 assert(!is_contained(NewCycle->Blocks, Block)); in run()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2709 int NewCycle = getFirstCycle(); in normalizeNonPipelinedInstructions() local
2711 NewCycle = std::max(InstrToCycle[Dep.getSUnit()], NewCycle); in normalizeNonPipelinedInstructions()
2714 if (OldCycle != NewCycle) { in normalizeNonPipelinedInstructions()
2715 InstrToCycle[&SU] = NewCycle; in normalizeNonPipelinedInstructions()
2718 getInstructions(NewCycle).emplace_back(&SU); in normalizeNonPipelinedInstructions()
2721 << " to " << NewCycle << " Instr:" << *SU.getInstr()); in normalizeNonPipelinedInstructions()
2723 NewLastCycle = std::max(NewLastCycle, NewCycle); in normalizeNonPipelinedInstructions()