Lines Matching refs:DstSize

1140                                    uint64_t DstSize, CodeGenFunction &CGF) {  in EnterStructPointerForCoercedAccess()  argument
1152 if (FirstEltSize < DstSize && in EnterStructPointerForCoercedAccess()
1162 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF); in EnterStructPointerForCoercedAccess()
1199 uint64_t DstSize = DL.getTypeSizeInBits(DestIntTy); in CoerceIntOrPtrToIntOrPtr() local
1201 if (SrcSize > DstSize) { in CoerceIntOrPtrToIntOrPtr()
1202 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits"); in CoerceIntOrPtrToIntOrPtr()
1206 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits"); in CoerceIntOrPtrToIntOrPtr()
1236 llvm::TypeSize DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty); in CreateCoercedLoad() local
1240 DstSize.getFixedSize(), CGF); in CreateCoercedLoad()
1255 if (!SrcSize.isScalable() && !DstSize.isScalable() && in CreateCoercedLoad()
1256 SrcSize.getFixedSize() >= DstSize.getFixedSize()) { in CreateCoercedLoad()
1354 llvm::TypeSize DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(DstTy); in CreateCoercedStore() local
1359 SrcSize.getFixedSize() <= DstSize.getFixedSize()) { in CreateCoercedStore()
1377 llvm::ConstantInt::get(CGF.IntPtrTy, DstSize.getFixedSize())); in CreateCoercedStore()
2882 uint64_t DstSize = CGM.getDataLayout().getTypeAllocSize(DstTy); in EmitFunctionProlog() local
2885 if (SrcSize <= DstSize) { in EmitFunctionProlog()
2900 if (SrcSize > DstSize) { in EmitFunctionProlog()
2901 Builder.CreateMemCpy(Ptr, AddrToStoreInto, DstSize); in EmitFunctionProlog()
4938 uint64_t DstSize = CGM.getDataLayout().getTypeAllocSize(STy); in EmitCall() local
4944 if (SrcSize < DstSize) { in EmitCall()