Lines Matching refs:InputVector
45187 SDValue InputVector = N->getOperand(0); in combineExtractVectorElt() local
45191 EVT SrcVT = InputVector.getValueType(); in combineExtractVectorElt()
45193 SDLoc dl(InputVector); in combineExtractVectorElt()
45207 if (getTargetConstantBitsFromNode(InputVector, VecEltBitWidth, UndefVecElts, in combineExtractVectorElt()
45218 if (InputVector.getOpcode() == ISD::BITCAST && (NumEltBits % 8) == 0) { in combineExtractVectorElt()
45219 SDValue Src = peekThroughBitcasts(InputVector); in combineExtractVectorElt()
45236 if ((InputVector.getOpcode() == X86ISD::PINSRB || in combineExtractVectorElt()
45237 InputVector.getOpcode() == X86ISD::PINSRW) && in combineExtractVectorElt()
45238 InputVector.getOperand(2) == EltIdx) { in combineExtractVectorElt()
45239 assert(SrcVT == InputVector.getOperand(0).getValueType() && in combineExtractVectorElt()
45241 SDValue Scl = InputVector.getOperand(1); in combineExtractVectorElt()
45254 InputVector.getOpcode() == ISD::BITCAST && in combineExtractVectorElt()
45255 InputVector.getOperand(0).getValueType() == MVT::x86mmx && in combineExtractVectorElt()
45256 isNullConstant(EltIdx) && InputVector.hasOneUse()) in combineExtractVectorElt()
45257 return DAG.getBitcast(VT, InputVector); in combineExtractVectorElt()
45261 InputVector.getOpcode() == ISD::BITCAST && in combineExtractVectorElt()
45262 InputVector.getOperand(0).getValueType() == MVT::x86mmx && in combineExtractVectorElt()
45263 isNullConstant(EltIdx) && InputVector.hasOneUse()) in combineExtractVectorElt()
45265 InputVector.getOperand(0)); in combineExtractVectorElt()
45293 N, InputVector.getValueType(), InputVector, CIdx->getZExtValue(), in combineExtractVectorElt()
45310 unsigned ResNo = InputVector.getResNo(); in combineExtractVectorElt()
45322 if (all_of(InputVector->uses(), IsBoolExtract) && in combineExtractVectorElt()
45326 combineBitcastvxi1(DAG, BCVT, InputVector, dl, Subtarget)) { in combineExtractVectorElt()
45343 if (CIdx && InputVector.getOpcode() == ISD::TRUNCATE) { in combineExtractVectorElt()
45344 SDValue TruncSrc = InputVector.getOperand(0); in combineExtractVectorElt()