Home | History | Annotate | Download | only in Scalar

Lines Matching refs:LoadOffset

819   int64_t StoreOffset = 0, LoadOffset = 0;
822 Value *LoadBase = GetPointerBaseWithConstantOffset(LoadPtr, LoadOffset, DL);
831 if (LoadOffset == StoreOffset) {
853 if (StoreOffset < LoadOffset)
854 isAAFailure = StoreOffset+int64_t(StoreSize) <= LoadOffset;
856 isAAFailure = LoadOffset+int64_t(LoadSize) <= StoreOffset;
874 if (StoreOffset > LoadOffset ||
875 StoreOffset+StoreSize < LoadOffset+LoadSize)
880 return LoadOffset-StoreOffset;