Lines Matching refs:SrcTy
640 llvm::Type *SrcTy = in EnterStructPointerForCoercedAccess() local
642 if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) in EnterStructPointerForCoercedAccess()
710 llvm::Type *SrcTy = in CreateCoercedLoad() local
714 if (SrcTy == Ty) in CreateCoercedLoad()
719 if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) { in CreateCoercedLoad()
721 SrcTy = cast<llvm::PointerType>(SrcPtr->getType())->getElementType(); in CreateCoercedLoad()
724 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy); in CreateCoercedLoad()
729 (isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy))) { in CreateCoercedLoad()
797 llvm::Type *SrcTy = Src->getType(); in CreateCoercedStore() local
800 if (SrcTy == DstTy) { in CreateCoercedStore()
805 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy); in CreateCoercedStore()
814 if ((isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy)) && in CreateCoercedStore()
826 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy)); in CreateCoercedStore()
839 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy); in CreateCoercedStore()
2417 llvm::Type *SrcTy = in EmitCall() local
2419 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(SrcTy); in EmitCall()