Lines Matching refs:MemTy
1012 LLT MemTy = LLT::pointer(AddrSpace, PtrSize); in createResetStateLibcall() local
1014 DstOp Dest(MRI.createGenericVirtualRegister(MemTy)); in createResetStateLibcall()
3475 LLT MemTy = MMO.getMemoryType(); in lowerLoad() local
3478 unsigned MemSizeInBits = MemTy.getSizeInBits(); in lowerLoad()
3479 unsigned MemStoreSizeInBits = 8 * MemTy.getSizeInBytes(); in lowerLoad()
3482 if (MemTy.isVector()) in lowerLoad()
3551 if (TLI.allowsMemoryAccess(Ctx, MIRBuilder.getDataLayout(), MemTy, MMO)) in lowerLoad()
3557 if (MemTy.isVector()) { in lowerLoad()
3559 if (MemTy != DstTy) in lowerLoad()
3618 LLT MemTy = MMO.getMemoryType(); in lowerStore() local
3620 unsigned StoreWidth = MemTy.getSizeInBits(); in lowerStore()
3621 unsigned StoreSizeInBits = 8 * MemTy.getSizeInBytes(); in lowerStore()
3647 if (MemTy.isVector()) { in lowerStore()
3649 if (MemTy != SrcTy) in lowerStore()
3657 unsigned MemSizeInBits = MemTy.getSizeInBits(); in lowerStore()
3661 LargeSplitSize = llvm::bit_floor<uint64_t>(MemTy.getSizeInBits()); in lowerStore()
3662 SmallSplitSize = MemTy.getSizeInBits() - LargeSplitSize; in lowerStore()
3665 if (TLI.allowsMemoryAccess(Ctx, MIRBuilder.getDataLayout(), MemTy, MMO)) in lowerStore()
3674 unsigned AnyExtSize = PowerOf2Ceil(MemTy.getSizeInBits()); in lowerStore()