Lines Matching defs:DestSize
1306 Value *DestSize = MemSet->getLength();
1313 if (DestSize == SrcSize) {
1340 if (DestSize->getType() != SrcSize->getType()) {
1341 if (DestSize->getType()->getIntegerBitWidth() >
1343 SrcSize = Builder.CreateZExt(SrcSize, DestSize->getType());
1345 DestSize = Builder.CreateZExt(DestSize, SrcSize->getType());
1348 Value *Ule = Builder.CreateICmpULE(DestSize, SrcSize);
1349 Value *SizeDiff = Builder.CreateSub(DestSize, SrcSize);
1351 Ule, ConstantInt::getNullValue(DestSize->getType()), SizeDiff);
1504 std::optional<TypeSize> DestSize = DestAlloca->getAllocationSize(DL);
1505 if (!DestSize || Size != *DestSize) {
1569 if (Size < 0 || Size == DestSize) {