Lines Matching defs:DataTy
276 bool RISCVTTIImpl::hasActiveVectorLength(unsigned, Type *DataTy, Align) const {
714 unsigned Opcode, Type *DataTy, const Value *Ptr, bool VariableMask,
717 return BaseT::getGatherScatterOpCost(Opcode, DataTy, Ptr, VariableMask,
721 !isLegalMaskedGather(DataTy, Align(Alignment))) ||
723 !isLegalMaskedScatter(DataTy, Align(Alignment))))
724 return BaseT::getGatherScatterOpCost(Opcode, DataTy, Ptr, VariableMask,
730 auto &VTy = *cast<VectorType>(DataTy);
739 unsigned Opcode, Type *DataTy, const Value *Ptr, bool VariableMask,
742 !isLegalStridedLoadStore(DataTy, Alignment)) ||
744 return BaseT::getStridedMemoryOpCost(Opcode, DataTy, Ptr, VariableMask,
753 auto &VTy = *cast<VectorType>(DataTy);
1948 bool RISCVTTIImpl::isLegalMaskedCompressStore(Type *DataTy, Align Alignment) {
1949 auto *VTy = dyn_cast<VectorType>(DataTy);
1953 if (!isLegalMaskedLoadStore(DataTy, Alignment))