Home | History | Annotate | Download | only in Scalar

Lines Matching refs:LoadSize

844   uint64_t LoadSize = DL.getTypeSizeInBits(LoadTy);
846 if ((WriteSizeInBits & 7) | (LoadSize & 7))
849 LoadSize >>= 3;
856 isAAFailure = LoadOffset+int64_t(LoadSize) <= StoreOffset;
875 StoreOffset+StoreSize < LoadOffset+LoadSize)
918 unsigned LoadSize = DL.getTypeStoreSize(LoadTy);
921 LoadBase, LoadOffs, LoadSize, DepLI);
992 uint64_t LoadSize = (DL.getTypeSizeInBits(LoadTy) + 7) / 8;
1009 ShiftAmt = (StoreSize-LoadSize-Offset)*8;
1014 if (LoadSize != StoreSize)
1015 SrcVal = Builder.CreateTrunc(SrcVal, IntegerType::get(Ctx, LoadSize*8));
1032 unsigned LoadSize = DL.getTypeStoreSize(LoadTy);
1033 if (Offset+LoadSize > SrcValStoreSize) {
1038 unsigned NewLoadSize = Offset+LoadSize;
1088 uint64_t LoadSize = DL.getTypeSizeInBits(LoadTy)/8;
1098 if (LoadSize != 1)
1099 Val = Builder.CreateZExt(Val, IntegerType::get(Ctx, LoadSize*8));
1104 for (unsigned NumBytesSet = 1; NumBytesSet != LoadSize; ) {
1106 if (NumBytesSet*2 <= LoadSize) {