Lines Matching defs:NewPow
609 Instruction *NewPow = Builder.CreateIntrinsic(
612 return NewPow;
627 Instruction *NewPow = createPowiExpr(I, *this, X, Y, One);
628 return replaceInstUsesWith(I, NewPow);
641 Instruction *NewPow = createPowiExpr(I, *this, X, Y, Z);
642 return replaceInstUsesWith(I, NewPow);
654 Instruction *NewPow = createPowiExpr(I, *this, Op1, Y, NegOne);
655 return replaceInstUsesWith(I, NewPow);
667 auto *NewPow = createPowiExpr(I, *this, X, Y, NegOne);
668 return BinaryOperator::CreateFDivFMF(NewPow, Z, &I);
809 auto *NewPow = Builder.CreateBinaryIntrinsic(Intrinsic::pow, X, YZ, &I);
810 return replaceInstUsesWith(I, NewPow);
816 auto *NewPow = Builder.CreateBinaryIntrinsic(Intrinsic::pow, XZ, Y, &I);
817 return replaceInstUsesWith(I, NewPow);