Lines Matching defs:NewSel
2602 SelectInst *NewSel =
2606 NewSel->copyMetadata(cast<Instruction>(*Select));
2607 return NewSel;
2609 if (Instruction *NewSel = SinkSubIntoSelect(
2615 return NewSel;
2616 if (Instruction *NewSel = SinkSubIntoSelect(
2622 return NewSel;
2916 SelectInst *NewSel = SelectInst::Create(Cond, P, NegY);
2917 propagateSelectFMF(NewSel, P == Y);
2918 return NewSel;
2923 SelectInst *NewSel = SelectInst::Create(Cond, NegX, P);
2924 propagateSelectFMF(NewSel, P == X);
2925 return NewSel;
2933 SelectInst *NewSel = SelectInst::Create(Cond, NegX, NegY);
2934 propagateSelectFMF(NewSel, /*CommonOperand=*/true);
2935 return NewSel;