Lines Matching defs:ShOp
5912 SDValue ShOp = N0.getOperand(1);
5913 if (LogicOpcode == ISD::XOR && !ShOp.isUndef())
5914 ShOp = tryFoldToZero(DL, TLI, VT, DAG, LegalOperations);
5917 if (N0.getOperand(1) == N1.getOperand(1) && ShOp.getNode()) {
5920 return DAG.getVectorShuffle(VT, DL, Logic, ShOp, SVN0->getMask());
5925 ShOp = N0.getOperand(0);
5926 if (LogicOpcode == ISD::XOR && !ShOp.isUndef())
5927 ShOp = tryFoldToZero(DL, TLI, VT, DAG, LegalOperations);
5930 if (N0.getOperand(0) == N1.getOperand(0) && ShOp.getNode()) {
5933 return DAG.getVectorShuffle(VT, DL, ShOp, Logic, SVN0->getMask());