aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/math.c
blob: 23b1ca408e585cd9556d4a736124164fcc09c51b (plain) (blame)
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
// MIT License, Copyright (c) 2020 Marvin Borner

#include <math.h>

f32 powf(f32 base, f32 exp)
{
	return (f32)pow(base, exp);
}

f64 pow(f64 base, f64 exp)
{
	f64 out;
	__asm__ volatile("fyl2x;"
			 "fld %%st;"
			 "frndint;"
			 "fsub %%st,%%st(1);"
			 "fxch;"
			 "fchs;"
			 "f2xm1;"
			 "fld1;"
			 "faddp;"
			 "fxch;"
			 "fld1;"
			 "fscale;"
			 "fstp %%st(1);"
			 "fmulp;"
			 : "=t"(out)
			 : "0"(base), "u"(exp)
			 : "st(1)");
	return out;
}

// TODO: More efficient sqrt?

f32 sqrtf(f64 num)
{
	return powf(num, .5);
}

f64 sqrt(f64 num)
{
	return pow(num, .5);
}

/**
 * Trigonometric functions
 */

f32 sinf(f32 angle)
{
	f32 ret = 0.0;
	__asm__ volatile("fsin" : "=t"(ret) : "0"(angle));
	return ret;
}

f64 sin(f64 angle)
{
	f64 ret = 0.0;
	__asm__ volatile("fsin" : "=t"(ret) : "0"(angle));
	return ret;
}

f32 cosf(f32 angle)
{
	return sinf(angle + (f32)M_PI_2);
}

f64 cos(f64 angle)
{
	return sin(angle + (f64)M_PI_2);
}

f32 tanf(f32 angle)
{
	return (f32)tan(angle);
}

f64 tan(f64 angle)
{
	f64 ret = 0.0, one;
	__asm__ volatile("fptan" : "=t"(one), "=u"(ret) : "0"(angle));

	return ret;
}