Lines Matching refs:LoadSize
186 uint64_t LoadSize = DL.getTypeSizeInBits(LoadTy).getFixedSize(); in analyzeLoadFromClobberingWrite() local
188 if ((WriteSizeInBits & 7) | (LoadSize & 7)) in analyzeLoadFromClobberingWrite()
191 LoadSize /= 8; in analyzeLoadFromClobberingWrite()
198 StoreOffset + int64_t(StoreSize) < LoadOffset + int64_t(LoadSize)) in analyzeLoadFromClobberingWrite()
334 unsigned LoadSize = DL.getTypeStoreSize(LoadTy).getFixedSize(); in analyzeLoadFromClobberingLoad() local
337 getLoadLoadClobberFullWidthSize(LoadBase, LoadOffs, LoadSize, DepLI); in analyzeLoadFromClobberingLoad()
412 uint64_t LoadSize = (DL.getTypeSizeInBits(LoadTy).getFixedSize() + 7) / 8; in getStoreValueForLoadHelper() local
427 ShiftAmt = (StoreSize - LoadSize - Offset) * 8; in getStoreValueForLoadHelper()
432 if (LoadSize != StoreSize) in getStoreValueForLoadHelper()
434 IntegerType::get(Ctx, LoadSize * 8)); in getStoreValueForLoadHelper()
466 unsigned LoadSize = DL.getTypeStoreSize(LoadTy).getFixedSize(); in getLoadValueForLoad() local
467 if (Offset + LoadSize > SrcValStoreSize) { in getLoadValueForLoad()
472 unsigned NewLoadSize = Offset + LoadSize; in getLoadValueForLoad()
511 unsigned LoadSize = DL.getTypeStoreSize(LoadTy).getFixedSize(); in getConstantLoadValueForLoad() local
512 if (Offset + LoadSize > SrcValStoreSize) in getConstantLoadValueForLoad()
523 uint64_t LoadSize = DL.getTypeSizeInBits(LoadTy).getFixedSize() / 8; in getMemInstValueForLoad() local
532 if (LoadSize != 1) in getMemInstValueForLoad()
534 Builder.CreateZExtOrBitCast(Val, IntegerType::get(Ctx, LoadSize * 8)); in getMemInstValueForLoad()
538 for (unsigned NumBytesSet = 1; NumBytesSet != LoadSize;) { in getMemInstValueForLoad()
540 if (NumBytesSet * 2 <= LoadSize) { in getMemInstValueForLoad()
569 uint64_t LoadSize = DL.getTypeSizeInBits(LoadTy).getFixedSize() / 8; in getConstantMemInstValueForLoad() local
578 Val = ConstantInt::get(Ctx, APInt::getSplat(LoadSize * 8, Val->getValue())); in getConstantMemInstValueForLoad()