OLD | NEW |
1 #include <stdint.h> | 1 #include <stdint.h> |
2 #include "test_arith.def" | 2 #include "test_arith.def" |
3 | 3 |
4 #define X(inst, op, isdiv) \ | 4 #define X(inst, op, isdiv) \ |
5 bool test##inst(bool a, bool b); \ | 5 bool test##inst(bool a, bool b); \ |
6 uint8_t test##inst(uint8_t a, uint8_t b); \ | 6 uint8_t test##inst(uint8_t a, uint8_t b); \ |
7 uint16_t test##inst(uint16_t a, uint16_t b); \ | 7 uint16_t test##inst(uint16_t a, uint16_t b); \ |
8 uint32_t test##inst(uint32_t a, uint32_t b); \ | 8 uint32_t test##inst(uint32_t a, uint32_t b); \ |
9 uint64_t test##inst(uint64_t a, uint64_t b); | 9 uint64_t test##inst(uint64_t a, uint64_t b); |
10 UINTOP_TABLE | 10 UINTOP_TABLE |
11 #undef X | 11 #undef X |
12 | 12 |
13 #define X(inst, op, isdiv) \ | 13 #define X(inst, op, isdiv) \ |
14 bool test##inst(bool a, bool b); \ | 14 bool test##inst(bool a, bool b); \ |
15 int8_t test##inst(int8_t a, int8_t b); \ | 15 int8_t test##inst(int8_t a, int8_t b); \ |
16 int16_t test##inst(int16_t a, int16_t b); \ | 16 int16_t test##inst(int16_t a, int16_t b); \ |
17 int32_t test##inst(int32_t a, int32_t b); \ | 17 int32_t test##inst(int32_t a, int32_t b); \ |
18 int64_t test##inst(int64_t a, int64_t b); | 18 int64_t test##inst(int64_t a, int64_t b); |
19 SINTOP_TABLE | 19 SINTOP_TABLE |
20 #undef X | 20 #undef X |
21 | 21 |
22 float myFrem(float a, float b); | 22 float myFrem(float a, float b); |
23 double myFrem(double a, double b); | 23 double myFrem(double a, double b); |
24 | 24 |
25 #define X(inst, op, func) \ | 25 #define X(inst, op, func) \ |
26 float test##inst(float a, float b); \ | 26 float test##inst(float a, float b); \ |
27 double test##inst(double a, double b); | 27 double test##inst(double a, double b); |
28 FPOP_TABLE | 28 FPOP_TABLE |
29 #undef X | 29 #undef X |
| 30 |
| 31 float mySqrt(float a); |
| 32 double mySqrt(double a); |
OLD | NEW |