Home
last modified time | relevance | path

Searched refs:runOnLoop (Results 1 – 22 of 22) sorted by relevance

/external/llvm/lib/Target/PowerPC/
DPPCLoopDataPrefetch.cpp83 bool runOnLoop(Loop *L);
117 MadeChange |= runOnLoop(*L); in runOnFunction()
122 bool PPCLoopDataPrefetch::runOnLoop(Loop *L) { in runOnLoop() function in PPCLoopDataPrefetch
DPPCLoopPreIncPrep.cpp81 bool runOnLoop(Loop *L);
157 MadeChange |= runOnLoop(*L); in runOnFunction()
162 bool PPCLoopPreIncPrep::runOnLoop(Loop *L) { in runOnLoop() function in PPCLoopPreIncPrep
/external/llvm/lib/Transforms/Scalar/
DLoopInstSimplify.cpp42 bool runOnLoop(Loop*, LPPassManager&) override;
72 bool LoopInstSimplify::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopInstSimplify
DLoopDeletion.cpp39 bool runOnLoop(Loop *L, LPPassManager &) override;
135 bool LoopDeletion::runOnLoop(Loop *L, LPPassManager &) { in runOnLoop() function in LoopDeletion
DPlaceSafepoints.cpp138 bool runOnLoop(Loop *);
143 runOnLoop(L); in runOnLoopAndSubLoops()
321 bool PlaceBackedgeSafepointsImpl::runOnLoop(Loop *L) { in runOnLoop() function in PlaceBackedgeSafepointsImpl
DLoopIdiomRecognize.cpp84 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
186 bool LoopIdiomRecognize::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopIdiomRecognize
DLoopUnrollPass.cpp134 bool runOnLoop(Loop *L, LPPassManager &) override;
889 bool LoopUnroll::runOnLoop(Loop *L, LPPassManager &) { in runOnLoop() function in LoopUnroll
DLICM.cpp111 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
187 bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LICM
DLoopRerollPass.cpp147 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
1474 bool LoopReroll::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopReroll
DLoopUnswitch.cpp206 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
432 bool LoopUnswitch::runOnLoop(Loop *L, LPPassManager &LPM_Ref) { in runOnLoop() function in LoopUnswitch
DLoopRotation.cpp592 bool runOnLoop(Loop *L, LPPassManager &LPM) override { in runOnLoop() function in __anon53bb762b0111::LoopRotate
DInductiveRangeCheckElimination.cpp221 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
1394 bool InductiveRangeCheckElimination::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in InductiveRangeCheckElimination
DIndVarSimplify.cpp107 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
2077 bool IndVarSimplify::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in IndVarSimplify
DLoopStrengthReduce.cpp4941 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
4988 bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) { in runOnLoop() function in LoopStrengthReduce
/external/llvm/lib/Transforms/IPO/
DLoopExtractor.cpp46 bool runOnLoop(Loop *L, LPPassManager &) override;
83 bool LoopExtractor::runOnLoop(Loop *L, LPPassManager &) { in runOnLoop() function in LoopExtractor
/external/llvm/lib/Analysis/
DLoopPass.cpp44 bool runOnLoop(Loop *L, LPPassManager &) override { in runOnLoop() function in __anon5f0bc5620111::PrintLoopPassWrapper
193 Changed |= P->runOnLoop(CurrentLoop, *this); in runOnFunction()
DIVUsers.cpp262 bool IVUsers::runOnLoop(Loop *l, LPPassManager &LPM) { in runOnLoop() function in IVUsers
/external/llvm/include/llvm/Analysis/
DLoopPass.h40 virtual bool runOnLoop(Loop *L, LPPassManager &LPM) = 0;
DIVUsers.h138 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
/external/llvm/tools/opt/
DPassPrinters.cpp141 bool runOnLoop(Loop *L, LPPassManager &LPM) override { in runOnLoop() function
/external/llvm/unittests/IR/
DLegacyPassManagerTest.cpp214 bool runOnLoop(Loop *L, LPPassManager &LPM) override { in runOnLoop() function
/external/llvm/docs/
DWritingAnLLVMPass.rst541 .. _writing-an-llvm-pass-runOnLoop:
543 The ``runOnLoop`` method
548 virtual bool runOnLoop(Loop *, LPPassManager &LPM) = 0;
550 The ``runOnLoop`` method must be implemented by your subclass to do the
563 when the pass framework has finished calling :ref:`runOnLoop
564 <writing-an-llvm-pass-runOnLoop>` for every loop in the program being compiled.