Lines Matching refs:SrcTy
852 llvm::Type *SrcTy = in EnterStructPointerForCoercedAccess() local
854 if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) in EnterStructPointerForCoercedAccess()
923 llvm::Type *SrcTy = in CreateCoercedLoad() local
927 if (SrcTy == Ty) in CreateCoercedLoad()
932 if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) { in CreateCoercedLoad()
934 SrcTy = cast<llvm::PointerType>(SrcPtr->getType())->getElementType(); in CreateCoercedLoad()
937 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy); in CreateCoercedLoad()
942 (isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy))) { in CreateCoercedLoad()
1010 llvm::Type *SrcTy = Src->getType(); in CreateCoercedStore() local
1013 if (SrcTy == DstTy) { in CreateCoercedStore()
1018 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy); in CreateCoercedStore()
1027 if ((isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy)) && in CreateCoercedStore()
1039 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy)); in CreateCoercedStore()
1052 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy); in CreateCoercedStore()
3223 llvm::Type *SrcTy = in EmitCall() local
3225 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(SrcTy); in EmitCall()