Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Scalar/
DLoopInstSimplify.cpp40 bool runOnLoop(Loop*, LPPassManager&) override;
68 bool LoopInstSimplify::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopInstSimplify
DLoopDeletion.cpp38 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
133 bool LoopDeletion::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopDeletion
DLoopUnrollPass.cpp99 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
319 bool LoopUnroll::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopUnroll
DLoopRotation.cpp67 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
92 bool LoopRotate::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopRotate
DLICM.cpp81 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
223 bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LICM
DLoopRerollPass.cpp129 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
1130 bool LoopReroll::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopReroll
DLoopIdiomRecognize.cpp145 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
703 bool LoopIdiomRecognize::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopIdiomRecognize
DLoopUnswitch.cpp160 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
375 bool LoopUnswitch::runOnLoop(Loop *L, LPPassManager &LPM_Ref) { in runOnLoop() function in LoopUnswitch
DIndVarSimplify.cpp88 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
1799 bool IndVarSimplify::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in IndVarSimplify
DLoopStrengthReduce.cpp5037 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/
DLoopExtractor.cpp46 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
82 bool LoopExtractor::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function in LoopExtractor
/external/llvm/lib/Analysis/
DLoopPass.cpp43 bool runOnLoop(Loop *L, LPPassManager &) override { in runOnLoop() function in __anon3baece0d0111::PrintLoopPass
238 Changed |= P->runOnLoop(CurrentLoop, *this); in runOnFunction()
DIVUsers.cpp250 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.h134 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.cpp217 virtual bool runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() function
/external/llvm/docs/
DWritingAnLLVMPass.rst546 .. _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.