Searched refs:Loops (Results 1 - 25 of 25) sorted by relevance

/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DCalcSpillWeights.h45 const MachineLoopInfo &Loops; member in class:llvm::VirtRegAuxInfo
50 MF(mf), LIS(lis), Loops(loops) {}
H A DMachineTraceMetrics.h72 const MachineLoopInfo *Loops; member in class:llvm::MachineTraceMetrics
/freebsd-10.0-release/contrib/llvm/include/llvm/Analysis/
H A DScalarEvolutionNormalization.h72 PostIncLoopSet &Loops,
H A DDependenceAnalysis.h315 SmallBitVector Loops; member in struct:llvm::DependenceAnalysis::Subscript
502 SmallBitVector &Loops) const;
508 SmallBitVector &Loops);
514 SmallBitVector &Loops);
543 SmallBitVector &Loops);
589 const SmallBitVector &Loops,
729 const SmallBitVector &Loops,
766 const SmallBitVector &Loops,
817 SmallBitVector &Loops,
H A DLoopInfoImpl.h10 // This is the generic implementation of LoopInfo used for both Loops and
328 DenseSet<const LoopT*> *Loops) const {
329 Loops->insert(static_cast<const LoopT *>(this));
334 (*I)->verifyLoopNest(Loops);
H A DLoopInfo.h65 // SubLoops - Loops contained entirely within this one.
301 void verifyLoopNest(DenseSet<const LoopT*> *Loops) const;
513 "Loops already embedded into a subloop!");
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DScalarEvolutionNormalization.cpp69 PostIncLoopSet &Loops; member in class:__anon2118::PostIncTransform
78 Kind(kind), Loops(loops), SE(se), DT(dt) {}
127 Loops.insert(L);
139 if (Loops.count(L)) {
152 if (Loops.count(L))
218 PostIncLoopSet &Loops,
221 PostIncTransform Transform(Kind, Loops, SE, DT);
214 TransformForPostIncUse(TransformKind Kind, const SCEV *S, Instruction *User, Value *OperandValToReplace, PostIncLoopSet &Loops, ScalarEvolution &SE, DominatorTree &DT) argument
H A DDependenceAnalysis.cpp771 SmallBitVector &Loops) const {
775 Loops.set(Level);
801 // Collect any loops mentioned in the set of "Loops".
804 SmallBitVector &Loops) {
812 Loops.set(mapSrcLoop(AddRec->getLoop()));
813 return checkSrcSubscript(Start, LoopNest, Loops);
819 // Collect any loops mentioned in the set of "Loops".
822 SmallBitVector &Loops) {
830 Loops.set(mapDstLoop(AddRec->getLoop()));
831 return checkDstSubscript(Start, LoopNest, Loops);
802 checkSrcSubscript(const SCEV *Src, const Loop *LoopNest, SmallBitVector &Loops) argument
820 checkDstSubscript(const SCEV *Dst, const Loop *LoopNest, SmallBitVector &Loops) argument
839 classifyPair(const SCEV *Src, const Loop *SrcLoopNest, const SCEV *Dst, const Loop *DstLoopNest, SmallBitVector &Loops) argument
2172 testMIV(const SCEV *Src, const SCEV *Dst, const SmallBitVector &Loops, FullDependence &Result) const argument
2428 banerjeeMIVtest(const SCEV *Src, const SCEV *Dst, const SmallBitVector &Loops, FullDependence &Result) const argument
2509 exploreDirections(unsigned Level, CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, const SmallBitVector &Loops, unsigned &DepthExpanded, const SCEV *Delta) const argument
2972 propagate(const SCEV *&Src, const SCEV *&Dst, SmallBitVector &Loops, SmallVector<Constraint, 4> &Constraints, bool &Consistent) argument
[all...]
H A DLoopInfo.cpp34 // Explicitly instantiate methods in LoopInfoImpl.h for IR-level Loops.
653 DenseSet<const Loop*> Loops;
656 (*I)->verifyLoopNest(&Loops);
662 assert(Loops.count(I->second) && "orphaned loop");
H A DScalarEvolutionExpander.cpp1167 PostIncLoopSet Loops; local
1168 Loops.insert(L);
1171 Loops, SE, *SE.DT));
/freebsd-10.0-release/contrib/llvm/lib/Target/R600/
H A DAMDGPUStructurizeCFG.cpp190 BB2BBMap Loops; member in class:__anon2474::AMDGPUStructurizeCFG
208 void insertConditions(bool Loops);
299 Loops[Exit] = N->getEntry();
310 Loops[Succ] = BB;
392 if (Visited.count(Other) && !Loops.count(Other) &&
434 Loops.clear();
455 void AMDGPUStructurizeCFG::insertConditions(bool Loops) { argument
456 BranchVector &Conds = Loops ? LoopConds : Conditions;
457 Value *Default = Loops ? BoolTrue : BoolFalse;
472 PhiInserter.AddAvailableValue(Loops
[all...]
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DEarlyIfConversion.cpp585 MachineLoopInfo *Loops; member in class:__anon2148::EarlyIfConverter
647 if (!Loops)
652 Loops->removeBlock(Removed[i]);
784 Loops = getAnalysisIfAvailable<MachineLoopInfo>();
H A DExecutionDepsFix.cpp679 SmallVector<MachineBasicBlock*, 16> Loops; local
685 Loops.push_back(MBB);
694 for (unsigned i = 0, e = Loops.size(); i != e; ++i) {
695 MachineBasicBlock *MBB = Loops[i];
H A DLiveRangeEdit.cpp378 const MachineLoopInfo &Loops) {
379 VirtRegAuxInfo VRAI(MF, LIS, Loops);
377 calculateRegClassAndHint(MachineFunction &MF, const MachineLoopInfo &Loops) argument
H A DMachineTraceMetrics.cpp40 : MachineFunctionPass(ID), MF(0), TII(0), TRI(0), MRI(0), Loops(0) {
56 Loops = &getAnalysis<MachineLoopInfo>();
160 return MTM.Loops->getLoopFor(MBB);
419 const MachineLoopInfo *Loops;
423 : Blocks(blocks), Loops(loops), Downward(false) {}
444 if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(From)) {
449 if (isExitingLoop(FromLoop, LB.Loops->getLoopFor(To)))
465 LoopBounds Bounds(BlockInfo, MTM.Loops);
H A DCalcSpillWeights.cpp142 loop = Loops.getLoopFor(mbb);
H A DSplitKit.h46 const MachineLoopInfo &Loops; member in class:llvm::SplitAnalysis
H A DInlineSpiller.cpp60 MachineLoopInfo &Loops; member in class:__anon2158::InlineSpiller
144 Loops(pass.getAnalysis<MachineLoopInfo>()),
433 SpillDepth = Loops.getLoopDepth(SV.SpillMBB);
438 if ((Loops.getLoopDepth(DepSV.SpillMBB) > SpillDepth) &&
1297 Edit->calculateRegClassAndHint(MF, Loops);
H A DSplitKit.cpp48 Loops(mli),
682 const MachineLoopInfo &Loops = SA.Loops; local
683 const MachineLoop *DefLoop = Loops.getLoopFor(DefMBB);
691 const MachineLoop *Loop = Loops.getLoopFor(MBB);
1122 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), SA.Loops);
H A DRegAllocGreedy.cpp75 MachineLoopInfo *Loops; member in class:__anon2201::RAGreedy
1775 Loops = &getAnalysis<MachineLoopInfo>();
1780 SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops));
H A DRegisterCoalescer.cpp85 const MachineLoopInfo* Loops; member in class:__anon2204::RegisterCoalescer
2103 MBBs.push_back(MBBPriorityInfo(MBB, Loops->getLoopDepth(MBB),
2141 Loops = &getAnalysis<MachineLoopInfo>();
/freebsd-10.0-release/contrib/llvm/lib/TableGen/
H A DTGParser.h60 /// Loops - Keep track of any foreach loops we are within.
63 LoopVector Loops; member in class:llvm::TGParser
H A DTGParser.cpp298 if (Loops.empty())
313 if (IterVals.size() != Loops.size()) {
314 assert(IterVals.size() < Loops.size());
315 ForeachLoop &CurLoop = Loops[IterVals.size()];
774 for (LoopVector::iterator i = Loops.begin(), iend = Loops.end();
1956 if (!CurMultiClass && Loops.empty()) {
2033 Loops.push_back(ForeachLoop(IterName, ListValue));
2057 Loops.pop_back();
/freebsd-10.0-release/contrib/gcc/config/arm/
H A Dlib1funcs.asm834 neg divisor, divisor @ Loops below use unsigned.
925 neg divisor, divisor @ Loops below use unsigned.
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1 //===- LoopStrengthReduce.cpp - Strength Reduce IVs in Loops --------------===//
4301 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops); local
4304 Loops, SE, DT);
4315 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops); local
4318 Loops, SE, DT);

Completed in 324 milliseconds