Lines Matching defs:Cond1
5102 // select (and Cond0, Cond1), X, Y
5103 // -> select Cond0, (select Cond1, X, Y), Y
5106 SDValue Cond1 = N0->getOperand(1);
5108 N1.getValueType(), Cond1, N1, N2);
5113 // select (or Cond0, Cond1), X, Y -> select Cond0, X, (select Cond1, X, Y)
5116 SDValue Cond1 = N0->getOperand(1);
5118 N1.getValueType(), Cond1, N1, N2);
5124 // select Cond0, (select Cond1, X, Y), Y -> select (and Cond0, Cond1), X, Y
5143 // select Cond0, X, (select Cond1, X, Y) -> select (or Cond0, Cond1), X, Y