/external/llvm/lib/Transforms/Scalar/ |
D | LoopInstSimplify.cpp | 40 bool runOnLoop(Loop*, LPPassManager&) override; 68 bool LoopInstSimplify::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopInstSimplify
|
D | LoopDeletion.cpp | 38 bool runOnLoop(Loop *L, LPPassManager &LPM) override; 133 bool LoopDeletion::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopDeletion
|
D | LoopUnrollPass.cpp | 99 bool runOnLoop(Loop *L, LPPassManager &LPM) override; 319 bool LoopUnroll::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopUnroll
|
D | LoopRotation.cpp | 67 bool runOnLoop(Loop *L, LPPassManager &LPM) override; 92 bool LoopRotate::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopRotate
|
D | LICM.cpp | 81 bool runOnLoop(Loop *L, LPPassManager &LPM) override; 223 bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LICM
|
D | LoopRerollPass.cpp | 129 bool runOnLoop(Loop *L, LPPassManager &LPM) override; 1130 bool LoopReroll::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopReroll
|
D | LoopIdiomRecognize.cpp | 145 bool runOnLoop(Loop *L, LPPassManager &LPM) override; 703 bool LoopIdiomRecognize::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopIdiomRecognize
|
D | LoopUnswitch.cpp | 160 bool runOnLoop(Loop *L, LPPassManager &LPM) override; 375 bool LoopUnswitch::runOnLoop(Loop *L, LPPassManager &LPM_Ref) { in runOnLoop() function in LoopUnswitch
|
D | IndVarSimplify.cpp | 88 bool runOnLoop(Loop *L, LPPassManager &LPM) override; 1799 bool IndVarSimplify::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in IndVarSimplify
|
D | LoopStrengthReduce.cpp | 5037 bool runOnLoop(Loop *L, LPPassManager &LPM) override; 5084 bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) { in runOnLoop() function in LoopStrengthReduce
|
/external/llvm/lib/Transforms/IPO/ |
D | LoopExtractor.cpp | 46 bool runOnLoop(Loop *L, LPPassManager &LPM) override; 82 bool LoopExtractor::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopExtractor
|
/external/llvm/lib/Analysis/ |
D | LoopPass.cpp | 43 bool runOnLoop(Loop *L, LPPassManager &) override { in runOnLoop() function in __anon3baece0d0111::PrintLoopPass 238 Changed |= P->runOnLoop(CurrentLoop, *this); in runOnFunction()
|
D | IVUsers.cpp | 250 bool IVUsers::runOnLoop(Loop *l, LPPassManager &LPM) { in runOnLoop() function in IVUsers
|
/external/llvm/include/llvm/Analysis/ |
D | LoopPass.h | 40 virtual bool runOnLoop(Loop *L, LPPassManager &LPM) = 0;
|
D | IVUsers.h | 134 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
|
/external/llvm/tools/opt/ |
D | PassPrinters.cpp | 141 bool runOnLoop(Loop *L, LPPassManager &LPM) override { in runOnLoop() function
|
/external/llvm/unittests/IR/ |
D | LegacyPassManagerTest.cpp | 217 virtual bool runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function
|
/external/llvm/docs/ |
D | WritingAnLLVMPass.rst | 546 .. _writing-an-llvm-pass-runOnLoop: 548 The ``runOnLoop`` method 553 virtual bool runOnLoop(Loop *, LPPassManager &LPM) = 0; 555 The ``runOnLoop`` method must be implemented by your subclass to do the 568 when the pass framework has finished calling :ref:`runOnLoop 569 <writing-an-llvm-pass-runOnLoop>` for every loop in the program being compiled.
|