Lines Matching refs:NewOp
115 static void replaceOperation(Value &NewOp, VPIntrinsic &OldOp) { in replaceOperation() argument
116 transferDecorations(NewOp, OldOp); in replaceOperation()
117 OldOp.replaceAllUsesWith(&NewOp); in replaceOperation()
301 Value *NewOp = Builder.CreateCall(Fn, {Op0, Op1}, VPI.getName()); in expandPredicationToIntCall() local
302 replaceOperation(*NewOp, VPI); in expandPredicationToIntCall()
303 return NewOp; in expandPredicationToIntCall()
310 Value *NewOp = Builder.CreateCall(Fn, {Op}, VPI.getName()); in expandPredicationToIntCall() local
311 replaceOperation(*NewOp, VPI); in expandPredicationToIntCall()
312 return NewOp; in expandPredicationToIntCall()
329 Value *NewOp = Builder.CreateCall(Fn, {Op0}, VPI.getName()); in expandPredicationToFPCall() local
330 replaceOperation(*NewOp, VPI); in expandPredicationToFPCall()
331 return NewOp; in expandPredicationToFPCall()
339 Value *NewOp = Builder.CreateCall(Fn, {Op0, Op1}, VPI.getName()); in expandPredicationToFPCall() local
340 replaceOperation(*NewOp, VPI); in expandPredicationToFPCall()
341 return NewOp; in expandPredicationToFPCall()
352 Value *NewOp; in expandPredicationToFPCall() local
354 NewOp = in expandPredicationToFPCall()
357 NewOp = Builder.CreateCall(Fn, {Op0, Op1, Op2}, VPI.getName()); in expandPredicationToFPCall()
358 replaceOperation(*NewOp, VPI); in expandPredicationToFPCall()
359 return NewOp; in expandPredicationToFPCall()