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/
SimplifyIndVar.cpp 56 SimplifyIndvar(Loop *Loop, ScalarEvolution *SE, LPPassManager *LPM,
59 LI(LPM->getAnalysisIfAvailable<LoopInfo>()),
61 TD(LPM->getAnalysisIfAvailable<TargetData>()),
375 bool simplifyUsersOfIV(PHINode *CurrIV, ScalarEvolution *SE, LPPassManager *LPM,
378 LoopInfo *LI = &LPM->getAnalysis<LoopInfo>();
379 SimplifyIndvar SIV(LI->getLoopFor(CurrIV->getParent()), SE, LPM, Dead);
386 bool simplifyLoopIVs(Loop *L, ScalarEvolution *SE, LPPassManager *LPM,
390 Changed |= simplifyUsersOfIV(cast<PHINode>(I), SE, LPM, Dead);
LoopUnroll.cpp 64 LPPassManager *LPM) {
98 if (ScalarEvolution *SE = LPM->getAnalysisIfAvailable<ScalarEvolution>()) {
133 /// removed from the LoopPassManager as well. LPM can also be NULL.
139 LoopInfo *LI, LPPassManager *LPM) {
202 if (RuntimeTripCount && !UnrollRuntimeLoopProlog(L, Count, LI, LPM))
207 ScalarEvolution *SE = LPM->getAnalysisIfAvailable<ScalarEvolution>();
403 if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest, LI, LPM))
410 if (DominatorTree *DT = LPM->getAnalysisIfAvailable<DominatorTree>())
416 simplifyLoopIVs(L, SE, LPM, DeadInsts);
447 if (CompletelyUnroll && LPM != NULL
    [all...]
LoopUnrollRuntime.cpp 228 LPPassManager *LPM) {
240 ScalarEvolution *SE = LPM->getAnalysisIfAvailable<ScalarEvolution>();
271 BasicBlock *PEnd = SplitEdge(PH, Header, LPM->getAsPass());
272 BasicBlock *NewPH = SplitBlock(PEnd, PEnd->getTerminator(), LPM->getAsPass());
369 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;
661 LoopInfo *LI, LPPassManager *LPM) {
663 LPM->insertLoop(New, PL);
673 CloneLoop(*I, New, VM, LI, LPM);
737 LPM->deleteSimpleAnalysisValue(loopPreheader->getTerminator(), L);
821 LPM->cloneBasicBlockSimpleAnalysis(LoopBlocks[i], NewBB, L);
830 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 55 bool runOnLoop(Loop *L, LPPassManager &LPM);
75 bool LoopRotate::runOnLoop(Loop *L, LPPassManager &LPM) {
IndVarSimplify.cpp 82 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
106 void SimplifyAndExtend(Loop *L, SCEVExpander &Rewriter, LPPassManager &LPM);
    [all...]
LICM.cpp 76 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
197 bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
LoopIdiomRecognize.cpp 78 bool runOnLoop(Loop *L, LPPassManager &LPM);
173 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) {
139 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 225 bool IVUsers::runOnLoop(Loop *l, LPPassManager &LPM) {
  /external/llvm/tools/opt/
opt.cpp 262 virtual bool runOnLoop(Loop *L, LPPassManager &LPM) {

Completed in 949 milliseconds