Home | History | Annotate | Download | only in Scalar

Lines Matching refs:StoreSize

765   uint64_t StoreSize = TD.getTypeSizeInBits(StoredValTy);
769 if (StoreSize == LoadSize) {
798 assert(StoreSize >= LoadSize && "CanCoerceMustAliasedValueToLoad fail");
808 StoredValTy = IntegerType::get(StoredValTy->getContext(), StoreSize);
815 Constant *Val = ConstantInt::get(StoredVal->getType(), StoreSize-LoadSize);
879 uint64_t StoreSize = WriteSizeInBits >> 3; // Convert to bytes.
885 isAAFailure = StoreOffset+int64_t(StoreSize) <= LoadOffset;
906 StoreOffset+StoreSize < LoadOffset+LoadSize)
925 uint64_t StoreSize =TD.getTypeSizeInBits(DepSI->getValueOperand()->getType());
927 StorePtr, StoreSize, TD);
1015 uint64_t StoreSize = (TD.getTypeSizeInBits(SrcVal->getType()) + 7) / 8;
1026 SrcVal = Builder.CreateBitCast(SrcVal, IntegerType::get(Ctx, StoreSize*8));
1033 ShiftAmt = (StoreSize-LoadSize-Offset)*8;
1038 if (LoadSize != StoreSize)