Lines Matching defs:NewSel
2493 SelectInst *NewSel =
2497 NewSel->copyMetadata(cast<Instruction>(*Select));
2498 return NewSel;
2500 if (Instruction *NewSel = SinkSubIntoSelect(
2506 return NewSel;
2507 if (Instruction *NewSel = SinkSubIntoSelect(
2513 return NewSel;
2789 SelectInst *NewSel = SelectInst::Create(Cond, P, NegY);
2790 propagateSelectFMF(NewSel, P == Y);
2791 return NewSel;
2796 SelectInst *NewSel = SelectInst::Create(Cond, NegX, P);
2797 propagateSelectFMF(NewSel, P == X);
2798 return NewSel;
2806 SelectInst *NewSel = SelectInst::Create(Cond, NegX, NegY);
2807 propagateSelectFMF(NewSel, /*CommonOperand=*/true);
2808 return NewSel;