Lines Matching defs:Distance
1749 bool MemoryDepChecker::couldPreventStoreLoadForward(uint64_t Distance,
1773 if (Distance % VF && Distance / VF < NumItersForStoreLoadThroughMemory) {
1781 dbgs() << "LAA: Distance " << Distance
1863 /// \p Distance is the positive distance and \p TypeByteSize is type size in
1867 static bool areStridedAccessesIndependent(uint64_t Distance, uint64_t Stride,
1871 assert(Distance > 0 && "The distance must be non-zero");
1874 if (Distance % TypeByteSize)
1877 uint64_t ScaledDist = Distance / TypeByteSize;
1941 LLVM_DEBUG(dbgs() << "LAA: Distance for " << *AInst << " to " << *BInst
2050 int64_t Distance = Val.getSExtValue();
2054 if (std::abs(Distance) > 0 && CommonStride && *CommonStride > 1 &&
2056 areStridedAccessesIndependent(std::abs(Distance), *CommonStride,