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