Lines Matching refs:ResVT
8640 EVT ResVT = N->getValueType(0); in performExtendCombine() local
8641 if (!ResVT.isVector() || TLI.isTypeLegal(ResVT)) in performExtendCombine()
8648 if (!ResVT.isSimple() || !SrcVT.isSimple()) in performExtendCombine()
8666 unsigned NumElements = ResVT.getVectorNumElements(); in performExtendCombine()
8669 ResVT.getVectorElementType(), NumElements / 2); in performExtendCombine()
8682 return DAG.getNode(ISD::CONCAT_VECTORS, DL, ResVT, Lo, Hi); in performExtendCombine()
9754 EVT ResVT = N->getValueType(0); in performVSelectCombine() local
9758 if (ResVT.getSizeInBits() != CmpVT.getSizeInBits()) in performVSelectCombine()
9767 return DAG.getNode(ISD::VSELECT, SDLoc(N), ResVT, SetCC, in performVSelectCombine()
9779 EVT ResVT = N->getValueType(0); in performSelectCombine() local
9800 int NumMaskElts = ResVT.getSizeInBits() / SrcVT.getSizeInBits(); in performSelectCombine()
9801 if (!ResVT.isVector() || NumMaskElts == 0) in performSelectCombine()
9810 if (CCVT.getSizeInBits() != ResVT.getSizeInBits()) in performSelectCombine()
9830 ResVT.changeVectorElementTypeToInteger(), Mask); in performSelectCombine()
9832 return DAG.getSelect(DL, ResVT, Mask, N->getOperand(1), N->getOperand(2)); in performSelectCombine()