Lines Matching refs:getSizeInBytes

2936   unsigned MemStoreSizeInBits = 8 * MemTy.getSizeInBytes();  in lowerLoad()
3078 unsigned StoreSizeInBits = 8 * MemTy.getSizeInBytes(); in lowerStore()
3545 return std::max(Align(PowerOf2Ceil(Ty.getSizeInBytes())), MinAlign); in getStackTemporaryAlignment()
6599 unsigned EltBytes = EltTy.getSizeInBytes(); in lowerExtractInsertVectorElt()
6604 auto StackTemp = createStackTemporary(TypeSize::Fixed(VecTy.getSizeInBytes()), in lowerExtractInsertVectorElt()
7357 while (Op.getDstAlign() < Ty.getSizeInBytes() && in findGISelOptimalMemOpLowering()
7359 Ty = LLT::scalar(Ty.getSizeInBytes()); in findGISelOptimalMemOpLowering()
7367 unsigned TySize = Ty.getSizeInBytes(); in findGISelOptimalMemOpLowering()
7376 unsigned NewTySize = NewTy.getSizeInBytes(); in findGISelOptimalMemOpLowering()
7518 unsigned TySize = Ty.getSizeInBytes(); in lowerMemset()
7551 DstOff += Ty.getSizeInBytes(); in lowerMemset()
7673 if (CopyTy.getSizeInBytes() > Size) in lowerMemcpy()
7674 CurrOffset -= CopyTy.getSizeInBytes() - Size; in lowerMemcpy()
7678 MF.getMachineMemOperand(&SrcMMO, CurrOffset, CopyTy.getSizeInBytes()); in lowerMemcpy()
7680 MF.getMachineMemOperand(&DstMMO, CurrOffset, CopyTy.getSizeInBytes()); in lowerMemcpy()
7700 CurrOffset += CopyTy.getSizeInBytes(); in lowerMemcpy()
7701 Size -= CopyTy.getSizeInBytes(); in lowerMemcpy()
7779 MF.getMachineMemOperand(&SrcMMO, CurrOffset, CopyTy.getSizeInBytes()); in lowerMemmove()
7790 CurrOffset += CopyTy.getSizeInBytes(); in lowerMemmove()
7798 MF.getMachineMemOperand(&DstMMO, CurrOffset, CopyTy.getSizeInBytes()); in lowerMemmove()
7808 CurrOffset += CopyTy.getSizeInBytes(); in lowerMemmove()