Lines Matching defs:MTI
3487 const auto *MTI = cast<MemTransferInst>(II);
3489 if (MTI->isVolatile())
3495 if (isa<ConstantInt>(MTI->getLength()) && IsMemCpy) {
3498 uint64_t Len = cast<ConstantInt>(MTI->getLength())->getZExtValue();
3500 if (MTI->getDestAlign() || MTI->getSourceAlign())
3501 Alignment = std::min(MTI->getDestAlign().valueOrOne(),
3502 MTI->getSourceAlign().valueOrOne());
3505 if (!computeAddress(MTI->getRawDest(), Dest) ||
3506 !computeAddress(MTI->getRawSource(), Src))
3513 if (!MTI->getLength()->getType()->isIntegerTy(64))
3516 if (MTI->getSourceAddressSpace() > 255 || MTI->getDestAddressSpace() > 255)