Lines Matching defs:Operand2
6229 static bool arebothOperandsNotSNan(SDValue Operand1, SDValue Operand2,
6231 return DAG.isKnownNeverSNaN(Operand2) && DAG.isKnownNeverSNaN(Operand1);
6234 static bool arebothOperandsNotNan(SDValue Operand1, SDValue Operand2,
6236 return DAG.isKnownNeverNaN(Operand2) && DAG.isKnownNeverNaN(Operand1);
6240 static unsigned getMinMaxOpcodeForFP(SDValue Operand1, SDValue Operand2,
6254 return arebothOperandsNotNan(Operand1, Operand2, DAG) &&
6262 return arebothOperandsNotNan(Operand1, Operand2, DAG) &&
6280 : arebothOperandsNotSNan(Operand1, Operand2, DAG) &&
6289 : arebothOperandsNotSNan(Operand1, Operand2, DAG) &&
6352 SDValue CommonValue, Operand1, Operand2;
6358 Operand2 = RHS1;
6363 Operand2 = RHS0;
6371 Operand2 = RHS0;
6376 Operand2 = RHS1;
6401 getMinMaxOpcodeForFP(Operand1, Operand2, CC, LogicOp->getOpcode(),
6406 DAG.getNode(NewOpcode, DL, OpVT, Operand1, Operand2);