Home
last modified time | relevance | path

Searched refs:Loop (Results 1 – 25 of 304) sorted by relevance

12345678910>>...13

/external/llvm/test/Transforms/IndVarSimplify/
Dexit_value_tests.ll10 br label %Loop
12 Loop: ; preds = %Loop, %0
13 %A1 = phi i32 [ 0, %0 ], [ %A2, %Loop ] ; <i32> [#uses=3]
14 %B1 = phi i32 [ 0, %0 ], [ %B2, %Loop ] ; <i32> [#uses=1]
18 br i1 %C, label %Out, label %Loop
20 Out: ; preds = %Loop
26 br label %Loop
28 Loop: ; preds = %Loop, %0
29 %X = phi i32 [ 0, %0 ], [ %X2, %Loop ] ; <i32> [#uses=4]
32 br i1 %c, label %Out, label %Loop
[all …]
D2003-09-23-NotAtTop.ll8 br label %Loop
10 Loop: ; preds = %Loop, %0
11 ; CHECK: Loop:
13 %NonIndvar = phi i32 [ 200, %0 ], [ %NonIndvarNext, %Loop ] ; <i32> [#uses=1]
14 %Canonical = phi i32 [ 0, %0 ], [ %CanonicalNext, %Loop ] ; <i32> [#uses=2]
18 br label %Loop
/external/llvm/include/llvm/Analysis/
DLoopPass.h40 virtual bool runOnLoop(Loop *L, LPPassManager &LPM) = 0;
46 virtual bool doInitialization(Loop *L, LPPassManager &LPM) { in doInitialization()
80 virtual void cloneBasicBlockAnalysis(BasicBlock *F, BasicBlock *T, Loop *L) {} in cloneBasicBlockAnalysis()
83 virtual void deleteAnalysisValue(Value *V, Loop *L) {} in deleteAnalysisValue()
88 bool skipOptnoneFunction(const Loop *L) const;
126 void deleteLoopFromQueue(Loop *L);
130 void insertLoop(Loop *L, Loop *ParentLoop);
133 void insertLoopIntoQueue(Loop *L);
138 void redoLoop(Loop *L);
149 void cloneBasicBlockSimpleAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
[all …]
DDependenceAnalysis.h49 class Loop; variable
391 const Loop *AssociatedLoop;
435 const Loop *getAssociatedLoop() const;
438 void setPoint(const SCEV *X, const SCEV *Y, const Loop *CurrentLoop);
442 const SCEV *C, const Loop *CurrentLoop);
445 void setDistance(const SCEV *D, const Loop *CurrentLoop);
516 unsigned mapSrcLoop(const Loop *SrcLoop) const;
520 unsigned mapDstLoop(const Loop *DstLoop) const;
524 bool isLoopInvariant(const SCEV *Expression, const Loop *LoopNest) const;
535 const Loop *LoopNest,
[all …]
DBlockFrequencyInfoImpl.h146 class Loop;
250 LoopData *Loop; ///< The loop this block is inside.
253 WorkingData(const BlockNode &Node) : Node(Node), Loop(nullptr) {}
255 bool isLoopHeader() const { return Loop && Loop->isHeader(Node); }
257 return isLoopHeader() && Loop->Parent && Loop->Parent->isIrreducible() &&
258 Loop->Parent->isHeader(Node);
263 return Loop;
265 return Loop->Parent;
266 return Loop->Parent->Parent;
287 if (!Loop || !Loop->IsPackaged)
[all …]
DScalarEvolution.h46 class Loop; variable
363 DenseMap<const Loop*, BackedgeTakenInfo> BackedgeTakenCounts;
376 SmallVector<std::pair<const Loop *, const SCEV *>, 2> > ValuesAtScopes;
380 SmallVector<std::pair<const Loop *, LoopDisposition>, 2> > LoopDispositions;
383 LoopDisposition computeLoopDisposition(const SCEV *S, const Loop *L);
433 const SCEV *computeSCEVAtScope(const SCEV *S, const Loop *L);
444 const BackedgeTakenInfo &getBackedgeTakenInfo(const Loop *L);
448 BackedgeTakenInfo ComputeBackedgeTakenCount(const Loop *L);
452 ExitLimit ComputeExitLimit(const Loop *L, BasicBlock *ExitingBlock);
457 ExitLimit ComputeExitLimitFromCond(const Loop *L,
[all …]
DLoopInfo.h54 class Loop; variable
343 raw_ostream& operator<<(raw_ostream &OS, const LoopBase<BlockT, LoopT> &Loop) {
344 Loop.print(OS);
350 __extension__ extern template class LoopBase<BasicBlock, Loop>;
353 class Loop : public LoopBase<BasicBlock, Loop> {
355 Loop() {} in Loop() function
482 friend class LoopInfoBase<BasicBlock, Loop>;
483 explicit Loop(BasicBlock *BB) : LoopBase<BasicBlock, Loop>(BB) {} in Loop() function
626 __extension__ extern template class LoopInfoBase<BasicBlock, Loop>;
630 LoopInfoBase<BasicBlock, Loop> LI;
[all …]
/external/llvm/lib/Analysis/
DLoopInfo.cpp34 template class llvm::LoopBase<BasicBlock, Loop>;
35 template class llvm::LoopInfoBase<BasicBlock, Loop>;
61 bool Loop::isLoopInvariant(Value *V) const { in isLoopInvariant()
69 bool Loop::hasLoopInvariantOperands(Instruction *I) const { in hasLoopInvariantOperands()
86 bool Loop::makeLoopInvariant(Value *V, bool &Changed, in makeLoopInvariant()
102 bool Loop::makeLoopInvariant(Instruction *I, bool &Changed, in makeLoopInvariant()
141 PHINode *Loop::getCanonicalInductionVariable() const { in getCanonicalInductionVariable()
178 bool Loop::isLCSSAForm(DominatorTree &DT) const { in isLCSSAForm()
205 bool Loop::isLoopSimplifyForm() const { in isLoopSimplifyForm()
213 bool Loop::isSafeToClone() const { in isSafeToClone()
[all …]
DBlockFrequencyInfoImpl.cpp324 const LoopData *OuterLoop, LoopData &Loop, Distribution &Dist) { in addLoopSuccessorsToDist() argument
326 for (const auto &I : Loop.Exits) in addLoopSuccessorsToDist()
327 if (!addToDist(Dist, OuterLoop, Loop.getHeader(), I.first, in addLoopSuccessorsToDist()
342 void BlockFrequencyInfoImplBase::computeLoopScale(LoopData &Loop) { in computeLoopScale() argument
344 DEBUG(dbgs() << "compute-loop-scale: " << getLoopName(Loop) << "\n"); in computeLoopScale()
348 BlockMass ExitMass = BlockMass::getFull() - Loop.BackedgeMass; in computeLoopScale()
351 Loop.Scale = ExitMass.toScaled().inverse(); in computeLoopScale()
354 << " - " << Loop.BackedgeMass << ")\n" in computeLoopScale()
355 << " - scale = " << Loop.Scale << "\n"); in computeLoopScale()
357 if (Loop.Scale > getMaxLoopScale()) { in computeLoopScale()
[all …]
DLoopPass.cpp43 bool runOnLoop(Loop *L, LPPassManager &) override { in runOnLoop()
45 for (Loop::block_iterator b = L->block_begin(), be = L->block_end(); in runOnLoop()
75 void LPPassManager::deleteLoopFromQueue(Loop *L) { in deleteLoopFromQueue()
90 for (std::deque<Loop *>::iterator I = LQ.begin(), in deleteLoopFromQueue()
100 void LPPassManager::insertLoop(Loop *L, Loop *ParentLoop) { in insertLoop()
113 void LPPassManager::insertLoopIntoQueue(Loop *L) { in insertLoopIntoQueue()
122 for (std::deque<Loop *>::iterator I = LQ.begin(), in insertLoopIntoQueue()
137 void LPPassManager::redoLoop(Loop *L) { in redoLoop()
145 BasicBlock *To, Loop *L) { in cloneBasicBlockSimpleAnalysis()
153 void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) { in deleteSimpleAnalysisValue()
[all …]
/external/llvm/test/Analysis/BasicAA/
Dstore-promote.ll14 br label %Loop
16 Loop: ; preds = %Loop, %0
19 br i1 %c, label %Out, label %Loop
21 Out: ; preds = %Loop
25 ; The Loop block should be empty after the load/store are promoted.
28 ; CHECK: Loop:
29 ; CHECK-NEXT: br i1 %c, label %Out, label %Loop
35 br label %Loop
37 Loop: ; preds = %Loop, %0
44 br i1 %c, label %Out, label %Loop
[all …]
/external/llvm/test/Transforms/LoopStrengthReduce/
Ddont_insert_redundant_ops.ll12 br label %Loop
13 Loop: ; preds = %Loop, %0
14 %INDVAR = phi i32 [ 0, %0 ], [ %INDVAR2, %Loop ] ; <i32> [#uses=3]
21 br i1 %cond, label %Loop, label %Out
22 Out: ; preds = %Loop
28 br label %Loop
29 Loop: ; preds = %Loop, %0
30 %INDVAR = phi i32 [ 0, %0 ], [ %INDVAR2, %Loop ] ; <i32> [#uses=3]
37 br i1 %cond, label %Loop, label %Out
38 Out: ; preds = %Loop
Dremove_indvar.ll8 br label %Loop
9 Loop: ; preds = %Loop, %0
10 %i = phi i32 [ 0, %0 ], [ %i.next, %Loop ]
11 %INDVAR = phi i32 [ 0, %0 ], [ %INDVAR2, %Loop ] ; <i32> [#uses=2]
17 br i1 %cond, label %Loop, label %Out
18 Out: ; preds = %Loop
/external/llvm/test/Transforms/LICM/
Dsinking.ll9 br label %Loop
11 Loop: ; preds = %Loop, %0
13 br i1 false, label %Loop, label %Out
15 Out: ; preds = %Loop
27 br label %Loop
29 Loop: ; preds = %Loop, %0
32 br i1 true, label %Loop, label %Out
34 Out: ; preds = %Loop
46 br i1 false, label %Loop, label %Exit
47 Loop:
[all …]
Dscalar_promote.ll8 br label %Loop
12 ; CHECK-NEXT: br label %Loop
15 Loop: ; preds = %Loop, %0
16 %j = phi i32 [ 0, %Entry ], [ %Next, %Loop ] ; <i32> [#uses=1]
22 br i1 %cond, label %Out, label %Loop
35 br label %Loop
39 ; CHECK-NEXT: br label %Loop
41 Loop: ; preds = %Loop, %0
47 br i1 false, label %Loop, label %Exit
49 Exit: ; preds = %Loop
[all …]
D2003-02-27-StoreSinkPHIs.ll7 br i1 %c, label %Loop, label %Out
8 Loop: ; preds = %Loop, %0
10 br i1 %c, label %Loop, label %Out
11 Out: ; preds = %Loop, %0
12 %X = phi i1 [ %c, %0 ], [ true, %Loop ] ; <i1> [#uses=1]
/external/llvm/test/Transforms/LoopSimplify/
Dhardertest.ll6 br label %Loop
8 br label %Loop
9 Loop: ; preds = %L2, %Loop, %F, %T
10 %Val = phi i32 [ 0, %T ], [ 1, %F ], [ 2, %Loop ], [ 3, %L2 ] ; <i32> [#uses=0]
11 br i1 %C, label %Loop, label %L2
12 L2: ; preds = %Loop
13 br label %Loop
Dsingle-backedge.ll6 ; CHECK: Loop.backedge:
8 ; CHECK: br label %Loop
12 br label %Loop
13 Loop: ; preds = %BE2, %BE1, %0
18 BE1: ; preds = %Loop
19 br label %Loop
20 BE2: ; preds = %Loop
21 br label %Loop
/external/llvm/test/Assembler/
D2002-08-22-DominanceProblem.ll8 ret i32 7 ; Loop is unreachable
10 Loop: ; preds = %L2, %Loop
11 %B = phi i32 [ %B, %L2 ], [ %B, %Loop ] ;PHI has same value always.
12 br i1 %b, label %L2, label %Loop
14 L2: ; preds = %Loop
15 br label %Loop
/external/llvm/test/ExecutionEngine/MCJIT/
D2003-01-04-PhiTest.ll5 br label %Loop
6 Loop: ; preds = %Loop, %0
7 %X = phi i32 [ 0, %0 ], [ 1, %Loop ] ; <i32> [#uses=1]
8 br i1 true, label %Out, label %Loop
9 Out: ; preds = %Loop
Dtest-loop.ll5 br label %Loop
6 Loop: ; preds = %Loop, %0
7 %I = phi i32 [ 0, %0 ], [ %i2, %Loop ] ; <i32> [#uses=1]
10 br i1 %C, label %Out, label %Loop
11 Out: ; preds = %Loop
/external/llvm/test/ExecutionEngine/
D2003-01-04-PhiTest.ll5 br label %Loop
6 Loop: ; preds = %Loop, %0
7 %X = phi i32 [ 0, %0 ], [ 1, %Loop ] ; <i32> [#uses=1]
8 br i1 true, label %Out, label %Loop
9 Out: ; preds = %Loop
Dtest-loop.ll5 br label %Loop
6 Loop: ; preds = %Loop, %0
7 %I = phi i32 [ 0, %0 ], [ %i2, %Loop ] ; <i32> [#uses=1]
10 br i1 %C, label %Out, label %Loop
11 Out: ; preds = %Loop
/external/llvm/test/Analysis/ScalarEvolution/
Dtrip-count9.ll12 ; CHECK: Loop %loop: backedge-taken count is (-1 + %n)
13 ; CHECK: Loop %loop: max backedge-taken count is 6
28 ; CHECK: Loop %loop: Unpredictable backedge-taken count.
29 ; CHECK: Loop %loop: Unpredictable max backedge-taken count.
44 ; CHECK: Loop %loop: backedge-taken count is (-2 + (2 smax %n))
45 ; CHECK: Loop %loop: max backedge-taken count is 5
60 ; CHECK: Loop %loop: Unpredictable backedge-taken count.
61 ; CHECK: Loop %loop: Unpredictable max backedge-taken count.
76 ; CHECK: Loop %loop: backedge-taken count is (-1 + (-1 * %x) + ((1 + %x) smax %n))
77 ; CHECK: Loop %loop: max backedge-taken count is -1
[all …]
/external/llvm/test/Transforms/SCCP/
Dcalltest.ll10 br label %Loop
11 Loop: ; preds = %Loop, %entry
12 %I2 = phi i32 [ 0, %entry ], [ %I3, %Loop ] ; <i32> [#uses=1]
13 %V = phi double [ 1.000000e+00, %entry ], [ %V2, %Loop ] ; <double> [#uses=2]
17 br i1 %tmp.7, label %Loop, label %Exit
18 Exit: ; preds = %Loop

12345678910>>...13