aboutsummaryrefslogtreecommitdiff
path: root/math/test/mathbench_wrappers.h
blob: 8311f0f4e1732dfe479239c912109b8268237439 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
 * Function wrappers for mathbench.
 *
 * Copyright (c) 2022, Arm Limited.
 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
 */
#if WANT_VMATH
#if __aarch64__

#ifdef __vpcs
__vpcs static v_float
xy__vn_powf (v_float x)
{
  return __vn_powf (x, x);
}

__vpcs static v_float
xy_Z_powf (v_float x)
{
  return _ZGVnN4vv_powf (x, x);
}

__vpcs static v_double
xy__vn_pow (v_double x)
{
  return __vn_pow (x, x);
}

__vpcs static v_double
xy_Z_pow (v_double x)
{
  return _ZGVnN2vv_pow (x, x);
}
#endif // __vpcs

static v_float
xy__v_powf (v_float x)
{
  return __v_powf (x, x);
}

static v_double
xy__v_pow (v_double x)
{
  return __v_pow (x, x);
}
#endif // __aarch64__

static float
xy__s_powf (float x)
{
  return __s_powf (x, x);
}

static double
xy__s_pow (double x)
{
  return __s_pow (x, x);
}
#endif // WANT_VMATH

static double
xypow (double x)
{
  return pow (x, x);
}

static float
xypowf (float x)
{
  return powf (x, x);
}

static double
xpow (double x)
{
  return pow (x, 23.4);
}

static float
xpowf (float x)
{
  return powf (x, 23.4f);
}

static double
ypow (double x)
{
  return pow (2.34, x);
}

static float
ypowf (float x)
{
  return powf (2.34f, x);
}

static float
sincosf_wrap (float x)
{
  float s, c;
  sincosf (x, &s, &c);
  return s + c;
}