-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwnt_MathsFuncs.cpp
372 lines (323 loc) · 10.2 KB
/
wnt_MathsFuncs.cpp
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
/*=====================================================================
wnt_MathsFuncs.cpp
------------------
Copyright Glare Technologies Limited 2018 -
=====================================================================*/
#include "wnt_MathsFuncs.h"
#include "Value.h"
#include "maths/mathstypes.h"
using std::vector;
using std::string;
namespace Winter
{
static int getIntArg(const vector<ValueRef>& arg_values, int i)
{
return (int)checkedCast<const IntValue>(arg_values[i])->value;
}
static ValueRef makeInt(int x)
{
return new IntValue(x, /*signed=*/true);
}
static ValueRef intModInterpreted(const vector<ValueRef>& args)
{
return makeInt(Maths::intMod(getIntArg(args, 0), getIntArg(args, 1)));
}
void MathsFuncs::appendExternalMathsFuncs(std::vector<Winter::ExternalFunctionRef>& external_functions)
{
TypeVRef float_type = new Float();
TypeVRef double_type = new Double();
TypeVRef int_type = new Int();
TypeVRef bool_type = new Bool();
// NOTE: for maths functions, Using e.g. tanf is faster than std::tan.
// This is because (with MSVC at least), Using std::tan just results in a call to std::tan from the winter code,
// which then in turn calls tanf, resulting in an extra call.
const size_t MATHS_FUNC_STACK_BOUND = 1024;
external_functions.push_back(new ExternalFunction(
(void*)tanf, // func
NULL, // interpreted func. Can be null here since this is a float -> float function which can be called directly from the interpreter.
FunctionSignature("tan", vector<TypeVRef>(1, float_type)), // function signature
float_type, // return type
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(double(*)(double))tan, // func - Use cast to pick the correct overload.
NULL, // interpreted func
FunctionSignature("tan", vector<TypeVRef>(1, double_type)), // function signature
double_type, // return type
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)asinf,
NULL,
FunctionSignature("asin", vector<TypeVRef>(1, float_type)),
float_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(double(*)(double))asin,
NULL,
FunctionSignature("asin", vector<TypeVRef>(1, double_type)),
double_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)acosf,
NULL,
FunctionSignature("acos", vector<TypeVRef>(1, float_type)),
float_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(double(*)(double))acos,
NULL,
FunctionSignature("acos", vector<TypeVRef>(1, double_type)),
double_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)atanf,
NULL,
FunctionSignature("atan", vector<TypeVRef>(1, float_type)),
float_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(double(*)(double))atan,
NULL,
FunctionSignature("atan", vector<TypeVRef>(1, double_type)),
double_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)sinhf,
NULL,
FunctionSignature("sinh", vector<TypeVRef>(1, float_type)),
float_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(double(*)(double))sinh,
NULL,
FunctionSignature("sinh", vector<TypeVRef>(1, double_type)),
double_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
// asinh etc.. are only available in Visual Studio 2013+
#if !defined(_MSC_VER) || _MSC_VER >= 1800
external_functions.push_back(new ExternalFunction(
(void*)asinhf,
NULL,
FunctionSignature("asinh", vector<TypeVRef>(1, float_type)),
float_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(double(*)(double))asinh,
NULL,
FunctionSignature("asinh", vector<TypeVRef>(1, double_type)),
double_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
#endif
external_functions.push_back(new ExternalFunction(
(void*)coshf,
NULL,
FunctionSignature("cosh", vector<TypeVRef>(1, float_type)),
float_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(double(*)(double))cosh,
NULL,
FunctionSignature("cosh", vector<TypeVRef>(1, double_type)),
double_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
#if !defined(_MSC_VER) || _MSC_VER >= 1800
external_functions.push_back(new ExternalFunction(
(void*)acoshf,
NULL,
FunctionSignature("acosh", vector<TypeVRef>(1, float_type)),
float_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(double(*)(double))acosh,
NULL,
FunctionSignature("acosh", vector<TypeVRef>(1, double_type)),
double_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
#endif
external_functions.push_back(new ExternalFunction(
(void*)tanhf,
NULL,
FunctionSignature("tanh", vector<TypeVRef>(1, float_type)),
float_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(double(*)(double))tanh,
NULL,
FunctionSignature("tanh", vector<TypeVRef>(1, double_type)),
double_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
#if !defined(_MSC_VER) || _MSC_VER >= 1800
external_functions.push_back(new ExternalFunction(
(void*)atanhf,
NULL,
FunctionSignature("atanh", vector<TypeVRef>(1, float_type)),
float_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(double(*)(double))atanh,
NULL,
FunctionSignature("atanh", vector<TypeVRef>(1, double_type)),
double_type,
30, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
#endif
external_functions.push_back(new ExternalFunction(
(void*)atan2f,
NULL,
FunctionSignature("atan2", vector<TypeVRef>(2, float_type)),
float_type,
60, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(double(*)(double, double))atan2,
NULL,
FunctionSignature("atan2", vector<TypeVRef>(2, double_type)),
double_type,
60, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)Maths::floatMod,
NULL,
FunctionSignature("mod", vector<TypeVRef>(2, float_type)),
float_type,
10, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)Maths::doubleMod,
NULL,
FunctionSignature("mod", vector<TypeVRef>(2, double_type)),
double_type,
10, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)Maths::intMod,
intModInterpreted,
FunctionSignature("mod", vector<TypeVRef>(2, int_type)),
int_type,
10, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(bool(*)(float))::isFinite,
NULL,
FunctionSignature("isFinite", vector<TypeVRef>(1, float_type)),
bool_type, // return type
10, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(bool(*)(double))::isFinite,
NULL,
FunctionSignature("isFinite", vector<TypeVRef>(1, double_type)),
bool_type, // return type
10, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
// The old function name was isNAN, but isNaN is better. Keep the old one around for now though.
external_functions.push_back(new ExternalFunction(
(void*)(bool(*)(float))::isNAN,
NULL,
FunctionSignature("isNaN", vector<TypeVRef>(1, float_type)),
bool_type, // return type
10, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(bool(*)(float))::isNAN,
NULL,
FunctionSignature("isNAN", vector<TypeVRef>(1, float_type)),
bool_type, // return type
10, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(bool(*)(double))::isNAN,
NULL,
FunctionSignature("isNaN", vector<TypeVRef>(1, double_type)),
bool_type, // return type
10, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
external_functions.push_back(new ExternalFunction(
(void*)(bool(*)(double))::isNAN,
NULL,
FunctionSignature("isNAN", vector<TypeVRef>(1, double_type)),
bool_type, // return type
10, // time_bound
MATHS_FUNC_STACK_BOUND, // stack size bound
0 // heap size bound
));
}
} // end namespace Winter