Home | History | Annotate | Download | only in Scalar

Lines Matching refs:StoreSize

754   uint64_t StoreSize = TD.getTypeSizeInBits(StoredValTy);
758 if (StoreSize == LoadSize) {
786 assert(StoreSize >= LoadSize && "CanCoerceMustAliasedValueToLoad fail");
796 StoredValTy = IntegerType::get(StoredValTy->getContext(), StoreSize);
803 Constant *Val = ConstantInt::get(StoredVal->getType(), StoreSize-LoadSize);
867 uint64_t StoreSize = WriteSizeInBits >> 3; // Convert to bytes.
873 isAAFailure = StoreOffset+int64_t(StoreSize) <= LoadOffset;
894 StoreOffset+StoreSize < LoadOffset+LoadSize)
913 uint64_t StoreSize =TD.getTypeSizeInBits(DepSI->getValueOperand()->getType());
915 StorePtr, StoreSize, TD);
1003 uint64_t StoreSize = (TD.getTypeSizeInBits(SrcVal->getType()) + 7) / 8;
1013 SrcVal = Builder.CreateBitCast(SrcVal, IntegerType::get(Ctx, StoreSize*8));
1020 ShiftAmt = (StoreSize-LoadSize-Offset)*8;
1025 if (LoadSize != StoreSize)