Lines Matching defs:NewPow
595 Instruction *NewPow = Builder.CreateIntrinsic(
598 return NewPow;
613 Instruction *NewPow = createPowiExpr(I, *this, X, Y, One);
614 return replaceInstUsesWith(I, NewPow);
627 Instruction *NewPow = createPowiExpr(I, *this, X, Y, Z);
628 return replaceInstUsesWith(I, NewPow);
640 Instruction *NewPow = createPowiExpr(I, *this, Op1, Y, NegOne);
641 return replaceInstUsesWith(I, NewPow);
653 auto *NewPow = createPowiExpr(I, *this, X, Y, NegOne);
654 return BinaryOperator::CreateFDivFMF(NewPow, Z, &I);
879 auto *NewPow = Builder.CreateBinaryIntrinsic(Intrinsic::pow, X, YZ, &I);
880 return replaceInstUsesWith(I, NewPow);
886 auto *NewPow = Builder.CreateBinaryIntrinsic(Intrinsic::pow, XZ, Y, &I);
887 return replaceInstUsesWith(I, NewPow);