Lines Matching refs:ResVT
8060 EVT ResVT = N->getValueType(0); in performExtendCombine() local
8061 if (!ResVT.isVector() || TLI.isTypeLegal(ResVT)) in performExtendCombine()
8068 if (!ResVT.isSimple() || !SrcVT.isSimple()) in performExtendCombine()
8086 unsigned NumElements = ResVT.getVectorNumElements(); in performExtendCombine()
8089 ResVT.getVectorElementType(), NumElements / 2); in performExtendCombine()
8102 return DAG.getNode(ISD::CONCAT_VECTORS, DL, ResVT, Lo, Hi); in performExtendCombine()
8790 EVT ResVT = N->getValueType(0); in performVSelectCombine() local
8794 if (ResVT.getSizeInBits() != CmpVT.getSizeInBits()) in performVSelectCombine()
8803 return DAG.getNode(ISD::VSELECT, SDLoc(N), ResVT, SetCC, in performVSelectCombine()
8815 EVT ResVT = N->getValueType(0); in performSelectCombine() local
8836 int NumMaskElts = ResVT.getSizeInBits() / SrcVT.getSizeInBits(); in performSelectCombine()
8837 if (!ResVT.isVector() || NumMaskElts == 0) in performSelectCombine()
8846 if (CCVT.getSizeInBits() != ResVT.getSizeInBits()) in performSelectCombine()
8866 ResVT.changeVectorElementTypeToInteger(), Mask); in performSelectCombine()
8868 return DAG.getSelect(DL, ResVT, Mask, N->getOperand(1), N->getOperand(2)); in performSelectCombine()