Searched refs:Distance (Results 1 - 7 of 7) sorted by relevance

/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h97 const SCEV *Distance; // NULL implies no distance available. member in struct:llvm::Dependence::DVEntry
99 PeelLast(false), Splitable(false), Distance(NULL) { }
380 /// 3) Distance - The value d of the dependence distance;
386 enum ConstraintKind { Empty, Point, Distance, Line, Any } Kind; enumerator in enum:llvm::DependenceAnalysis::Constraint::ConstraintKind
399 /// isDistance - Return true if the constraint is of kind Distance.
400 bool isDistance() const { return Kind == Distance; }
403 /// Since Distance's can also be represented as Lines, we also return
404 /// true if the constraint is of kind Distance.
405 bool isLine() const { return Kind == Line || Kind == Distance; }
444 /// setDistance - Change a constraint to Distance
[all...]
/freebsd-10-stable/contrib/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp252 return DV[Level - 1].Distance;
310 assert((Kind == Line || Kind == Distance) &&
311 "Kind should be Line (or Distance)");
319 assert((Kind == Line || Kind == Distance) &&
320 "Kind should be Line (or Distance)");
328 assert((Kind == Line || Kind == Distance) &&
329 "Kind should be Line (or Distance)");
337 assert(Kind == Distance && "Kind should be Distance");
344 assert((Kind == Distance || Kin
597 const SCEV *Distance = getDistance(II); local
599 OS << *Distance; local
1051 APInt Distance = ConstDelta; // these need to be initialized local
1245 APInt Distance = APDelta; // these need to be initialzed local
[all...]
H A DScalarEvolution.cpp5582 const SCEV *Distance = CountDown ? Start : getNegativeSCEV(Start);
5586 // N = Distance (as unsigned)
5598 return ExitLimit(Distance, MaxBECount);
5614 return getUDivExpr(Distance, CountDown ? getNegativeSCEV(Step) : Step);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/
H A DDiagnosticIDs.cpp572 unsigned Distance = i->getName().edit_distance(Group, true, BestDistance); local
573 if (Distance == BestDistance) {
576 } else if (Distance < BestDistance) {
579 BestDistance = Distance;
/freebsd-10-stable/contrib/llvm/lib/Support/
H A DCommandLine.cpp233 unsigned Distance = StringRef(Name).edit_distance( local
235 if (!Best || Distance < BestDistance) {
237 BestDistance = Distance;
H A DYAMLParser.cpp389 /// @brief Skip \a Distance UTF-8 code units. Updates \a Cur and \a Column.
390 void skip(uint32_t Distance);
927 void Scanner::skip(uint32_t Distance) { argument
928 Current += Distance;
929 Column += Distance;
/freebsd-10-stable/contrib/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3553 bool couldPreventStoreLoadForward(unsigned Distance, unsigned TypeByteSize);
3644 bool MemoryDepChecker::couldPreventStoreLoadForward(unsigned Distance, argument
3663 if (Distance % vf && Distance / vf < NumCyclesForStoreLoadThroughMemory) {
3670 DEBUG(dbgs() << "LV: Distance " << Distance <<
3719 DEBUG(dbgs() << "LV: Distance for " << *InstMap[AIdx] << " to "
3772 unsigned Distance = (unsigned) Val.getZExtValue(); local
3781 if (Distance < 2*TypeByteSize ||
3783 Distance < TypeByteSiz
[all...]

Completed in 202 milliseconds