blob: eb1e1cab2505b5f3ff638b599a2c3b9bdc9ecac0 [file] [log] [blame]
/* Copyright (C) 2004 Free Software Foundation.
Verify that built-in folding of various math "power" functions is
correctly performed by the compiler.
Written by Kaveh Ghazi, 2004-03-11. */
/* { dg-do link } */
/* { dg-options "-ffast-math" } */
/* APPLE LOCAL begin mainline 2005-09-01 3449986 */
/* { dg-options "-ffast-math -mmacosx-version-min=10.3" { target powerpc-*-darwin* } } */
/* APPLE LOCAL end mainline 2005-09-01 3449986 */
#include "../builtins-config.h"
#ifdef HAVE_C99_RUNTIME
#define C99CODE(CODE) CODE
#else
#define C99CODE(CODE) 0
#endif
#define PROTOTYPE(FN) extern double FN(double); extern float FN##f(float); \
extern long double FN##l(long double);
#define PROTOTYPE2(FN) extern double FN(double, double); \
extern float FN##f(float, float); \
extern long double FN##l(long double, long double);
PROTOTYPE(sqrt)
PROTOTYPE(cbrt)
PROTOTYPE2(pow)
void test(double d1, double d2, double d3,
float f1, float f2, float f3,
long double ld1, long double ld2, long double ld3)
{
/* Test N1root(N2root(x)) -> pow(x,1/(N1*N2)). */
/* E.g. sqrt(cbrt(x)) -> pow(x,1/6). */
#define ROOT_ROOT(FN1,N1,FN2,N2) \
extern void link_failure_##FN1##_##FN2(void); \
if (FN1(FN2(d1)) != pow(d1,1.0/(N1*N2)) \
|| C99CODE (FN1##f(FN2##f(f1)) != powf(f1,1.0F/(N1*N2))) \
|| C99CODE (FN1##l(FN2##l(ld1)) != powl(ld1,1.0L/(N1*N2)))) \
link_failure_##FN1##_##FN2()
ROOT_ROOT(sqrt,2,sqrt,2);
ROOT_ROOT(sqrt,2,cbrt,3);
ROOT_ROOT(cbrt,3,sqrt,2);
/*ROOT_ROOT(cbrt,3,cbrt,3); Intentionally not implemented. */
/* Test pow(Nroot(x),y) -> pow(x,y/N). */
#define POW_ROOT(FN,N) \
extern void link_failure_pow_##FN(void); \
if (pow(FN(d1), d2) != pow(d1,d2/N) \
|| powf(FN##f(f1),f2) != powf(f1,f2/N) \
|| powl(FN##l(ld1),ld2) != powl(ld1,ld2/N)) \
link_failure_pow_##FN()
POW_ROOT(sqrt,2);
/*POW_ROOT(cbrt,3); Intentionally not implemented. */
/* Test Nroot(pow(x,y)) -> pow(x,y/N). */
#define ROOT_POW(FN,N) \
extern void link_failure_##FN##_pow(void); \
if (FN(pow(d1, d2)) != pow(d1,d2/N) \
|| FN##f(powf(f1,f2)) != powf(f1,f2/N) \
|| FN##l(powl(ld1,ld2)) != powl(ld1,ld2/N)) \
link_failure_##FN##_pow()
/*ROOT_POW(sqrt,2); Invalid. */
/*ROOT_POW(cbrt,3); Intentionally not implemented. */
/* Test pow(pow(x,y),z) -> pow(x,y*z). */
#define POW_POW \
extern void link_failure_pow_pow(void); \
if (pow(pow(d1, d2), d3) != pow(d1,d2*d3) \
|| powf(powf(f1,f2),f3) != powf(f1,f2*f3) \
|| powl(powl(ld1,ld2),ld3) != powl(ld1,ld2*ld3)) \
link_failure_pow_pow()
POW_POW;
/* Test Nroot(x)*Nroot(y) -> Nroot(x*y). */
#define ROOT_X_ROOT(FN) \
extern void link_failure_root_x_root(void); \
if (FN(d1)*FN(d2) != FN(d1*d2) \
|| FN##f(f1)*FN##f(f2) != FN##f(f1*f2) \
|| FN##l(ld1)*FN##l(ld2) != FN##l(ld1*ld2)) \
link_failure_root_x_root()
ROOT_X_ROOT(sqrt);
ROOT_X_ROOT(cbrt);
/* Test pow(x,y)*pow(x,z) -> pow(x,y+z). */
#define POW_X_POW \
extern void link_failure_pow_x_pow(void); \
if (pow(d1,d2)*pow(d1,d3) != pow(d1,d2+d3) \
|| powf(f1,f2)*powf(f1,f3) != powf(f1,f2+f3) \
|| powl(ld1,ld2)*powl(ld1,ld3) != powl(ld1,ld2+ld3)) \
link_failure_pow_x_pow()
POW_X_POW;
}
int main (void)
{
return 0;
}