reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Utils/SimplifyLibCalls.cpp
 1663   if (match(Base, m_FPOne()))
 1664     return Base;
 1673     return B.CreateFDiv(ConstantFP::get(Ty, 1.0), Base, "reciprocal");
 1681     return Base;
 1685     return B.CreateFMul(Base, Base, "square");
 1685     return B.CreateFMul(Base, Base, "square");
 1716         Sqrt = getSqrtCall(Base, Pow->getCalledFunction()->getAttributes(),
 1722       InnerChain[1] = Base;
 1723       InnerChain[2] = B.CreateFMul(Base, Base, "square");
 1723       InnerChain[2] = B.CreateFMul(Base, Base, "square");
 1747           Base, ConstantInt::get(B.getInt32Ty(), IntExpo), M, B);
 1754       return createPowWithIntegerExponent(Base, ExpoI, M, B);