HomeSort by relevance Sort by last modified time
    Searched refs:LPM (Results 1 - 24 of 24) sorted by null

  /external/llvm/include/llvm/Transforms/Utils/
UnrollLoop.h 26 unsigned TripMultiple, LoopInfo* LI, LPPassManager* LPM);
29 LPPassManager* LPM);
SimplifyIndVar.h 44 bool simplifyUsersOfIV(PHINode *CurrIV, ScalarEvolution *SE, LPPassManager *LPM,
49 bool simplifyLoopIVs(Loop *L, ScalarEvolution *SE, LPPassManager *LPM,
  /external/llvm/include/llvm/Analysis/
LoopPass.h 40 virtual bool runOnLoop(Loop *L, LPPassManager &LPM) = 0;
43 virtual bool doInitialization(Loop *L, LPPassManager &LPM) {
IVUsers.h 135 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
  /external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp 64 LPPassManager *LPM) {
98 if (LPM) {
99 if (ScalarEvolution *SE = LPM->getAnalysisIfAvailable<ScalarEvolution>()) {
135 /// removed from the LoopPassManager as well. LPM can also be NULL.
141 LoopInfo *LI, LPPassManager *LPM) {
204 if (RuntimeTripCount && !UnrollRuntimeLoopProlog(L, Count, LI, LPM))
209 if (LPM) {
210 ScalarEvolution *SE = LPM->getAnalysisIfAvailable<ScalarEvolution>();
407 if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest, LI, LPM))
412 if (LPM) {
    [all...]
SimplifyIndVar.cpp 54 SimplifyIndvar(Loop *Loop, ScalarEvolution *SE, LPPassManager *LPM,
57 LI(LPM->getAnalysisIfAvailable<LoopInfo>()),
59 TD(LPM->getAnalysisIfAvailable<TargetData>()),
373 bool simplifyUsersOfIV(PHINode *CurrIV, ScalarEvolution *SE, LPPassManager *LPM,
376 LoopInfo *LI = &LPM->getAnalysis<LoopInfo>();
377 SimplifyIndvar SIV(LI->getLoopFor(CurrIV->getParent()), SE, LPM, Dead);
384 bool simplifyLoopIVs(Loop *L, ScalarEvolution *SE, LPPassManager *LPM,
388 Changed |= simplifyUsersOfIV(cast<PHINode>(I), SE, LPM, Dead);
LoopUnrollRuntime.cpp 228 LPPassManager *LPM) {
240 if (!LPM)
242 ScalarEvolution *SE = LPM->getAnalysisIfAvailable<ScalarEvolution>();
273 BasicBlock *PEnd = SplitEdge(PH, Header, LPM->getAsPass());
274 BasicBlock *NewPH = SplitBlock(PEnd, PEnd->getTerminator(), LPM->getAsPass());
371 LPM->getAsPass());
LoopSimplify.cpp 80 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
99 bool ProcessLoop(Loop *L, LPPassManager &LPM);
102 Loop *SeparateNestedLoop(Loop *L, LPPassManager &LPM,
126 bool LoopSimplify::runOnLoop(Loop *l, LPPassManager &LPM) {
134 Changed |= ProcessLoop(L, LPM);
142 bool LoopSimplify::ProcessLoop(Loop *L, LPPassManager &LPM) {
244 if (SeparateNestedLoop(L, LPM, Preheader)) {
539 Loop *LoopSimplify::SeparateNestedLoop(Loop *L, LPPassManager &LPM,
594 LPM.insertLoopIntoQueue(NewOuter);
LCSSA.cpp 60 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
116 bool LCSSA::runOnLoop(Loop *TheLoop, LPPassManager &LPM) {
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 79 bool runOnLoop(Loop *L, LPPassManager &LPM);
133 bool LoopUnroll::runOnLoop(Loop *L, LPPassManager &LPM) {
220 if (!UnrollLoop(L, Count, TripCount, UnrollRuntime, TripMultiple, LI, &LPM))
LoopUnswitch.cpp 126 LPPassManager *LPM;
158 bool runOnLoop(Loop *L, LPPassManager &LPM);
378 LPM = &LPM_Ref;
651 LoopInfo *LI, LPPassManager *LPM) {
653 LPM->insertLoop(New, PL);
663 CloneLoop(*I, New, VM, LI, LPM);
727 LPM->deleteSimpleAnalysisValue(loopPreheader->getTerminator(), L);
811 LPM->cloneBasicBlockSimpleAnalysis(LoopBlocks[i], NewBB, L);
820 Loop *NewLoop = CloneLoop(L, L->getParentLoop(), VMap, LI, LPM);
    [all...]
LoopDeletion.cpp 37 bool runOnLoop(Loop* L, LPPassManager& LPM);
130 bool LoopDeletion::runOnLoop(Loop* L, LPPassManager& LPM) {
242 LPM.deleteLoopFromQueue(L);
LoopInstSimplify.cpp 66 bool LoopInstSimplify::runOnLoop(Loop *L, LPPassManager &LPM) {
LoopRotation.cpp 56 bool runOnLoop(Loop *L, LPPassManager &LPM);
76 bool LoopRotate::runOnLoop(Loop *L, LPPassManager &LPM) {
IndVarSimplify.cpp 84 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
108 void SimplifyAndExtend(Loop *L, SCEVExpander &Rewriter, LPPassManager &LPM);
    [all...]
LICM.cpp 76 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
202 bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
    [all...]
LoopIdiomRecognize.cpp 78 bool runOnLoop(Loop *L, LPPassManager &LPM);
175 bool LoopIdiomRecognize::runOnLoop(Loop *L, LPPassManager &LPM) {
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
LoopExtractor.cpp 45 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
81 bool LoopExtractor::runOnLoop(Loop *L, LPPassManager &LPM) {
140 LPM.deleteLoopFromQueue(L);
PassManagerBuilder.cpp 365 PassManagerBase *LPM = unwrap(PM);
366 Builder->populateLTOPassManager(*LPM, Internalize, RunInliner);
  /external/llvm/unittests/VMCore/
PassManagerTest.cpp 201 virtual bool doInitialization(Loop* L, LPPassManager &LPM) {
206 virtual bool runOnLoop(Loop *L, LPPassManager &LPM) {
  /external/grub/netboot/
sis900.h 59 LPM = 0x00000004,
  /external/llvm/lib/Analysis/
IVUsers.cpp 232 bool IVUsers::runOnLoop(Loop *l, LPPassManager &LPM) {
  /external/llvm/tools/opt/
opt.cpp 270 virtual bool runOnLoop(Loop *L, LPPassManager &LPM) {

Completed in 320 milliseconds