Lines Matching defs:BaseTy
86 llvm::Type *BaseTy = CGF.ConvertType(Ty);
87 if (isa<llvm::ScalableVectorType>(BaseTy))
486 llvm::Type *BaseTy = llvm::Type::getIntNTy(getVMContext(), Alignment);
488 Size == Alignment ? BaseTy
489 : llvm::ArrayType::get(BaseTy, Size / Alignment));
572 llvm::Type *BaseTy = llvm::Type::getInt64Ty(getVMContext());
573 return ABIArgInfo::getDirect(llvm::ArrayType::get(BaseTy, Size / 64));
844 llvm::Type *BaseTy = CGF.ConvertType(Ty);
846 BaseTy = llvm::PointerType::getUnqual(BaseTy);
848 BaseTy = AI.getCoerceToType();
851 if (llvm::ArrayType *ArrTy = dyn_cast<llvm::ArrayType>(BaseTy)) {
852 BaseTy = ArrTy->getElementType();
856 !isSoftFloat() && (BaseTy->isFloatingPointTy() || BaseTy->isVectorTy());
977 llvm::Type *BaseTy = CGF.ConvertType(QualType(Base, 0));
978 llvm::Type *HFATy = llvm::ArrayType::get(BaseTy, NumMembers);
992 LoadAddr = LoadAddr.withElementType(BaseTy);