Lines Matching defs:Xor
1417 SDValue Xor = TLO.DAG.getNode(ISD::XOR, dl, VT, Op0.getOperand(0), Op1);
1418 return TLO.CombineTo(Op, Xor);
4339 SDValue Xor = DAG.getNode(ISD::XOR, dl, CTVT, CTOp, Add);
4341 return DAG.getSetCC(dl, VT, Xor, Add, CmpCond);
9247 SDValue Xor = DAG.getNode(ISD::XOR, dl, VT, Op, Shift);
9251 return DAG.getNode(ISD::SUB, dl, VT, Xor, Shift);
9254 return DAG.getNode(ISD::SUB, dl, VT, Shift, Xor);
9289 SDValue Xor = DAG.getNode(ISD::XOR, dl, VT, Diff, Cmp);
9290 return DAG.getNode(ISD::SUB, dl, VT, Cmp, Xor);
9355 SDValue Xor = DAG.getNode(ISD::XOR, dl, VT, LHS, RHS);
9357 DAG.getNode(ShiftOpc, dl, VT, Xor, DAG.getShiftAmountConstant(1, VT, dl));
10667 // Xor the inputs, if resulting sign bit is 0 the product will be
10669 SDValue Xor = DAG.getNode(ISD::XOR, dl, VT, LHS, RHS);
10670 SDValue ProdNeg = DAG.getSetCC(dl, BoolVT, Xor, Zero, ISD::SETLT);