blob: 09e3748860e9fed2db2010e8e315dcda88ee8fb2 [file] [log] [blame]
reed@android.comed673312009-02-27 16:24:51 +00001#include "Test.h"
2#include "SkPoint.h"
3#include "SkRandom.h"
4
5#if defined(SkLONGLONG)
6static int symmetric_fixmul(int a, int b) {
7 int sa = SkExtractSign(a);
8 int sb = SkExtractSign(b);
reed@android.com80e39a72009-04-02 16:59:40 +00009
reed@android.comed673312009-02-27 16:24:51 +000010 a = SkApplySign(a, sa);
11 b = SkApplySign(b, sb);
reed@android.com80e39a72009-04-02 16:59:40 +000012
reed@android.comed673312009-02-27 16:24:51 +000013#if 1
14 int c = (int)(((SkLONGLONG)a * b) >> 16);
reed@android.com80e39a72009-04-02 16:59:40 +000015
reed@android.comed673312009-02-27 16:24:51 +000016 return SkApplySign(c, sa ^ sb);
17#else
18 SkLONGLONG ab = (SkLONGLONG)a * b;
19 if (sa ^ sb) {
20 ab = -ab;
21 }
22 return ab >> 16;
23#endif
24}
25#endif
26
27static void check_length(skiatest::Reporter* reporter,
28 const SkPoint& p, SkScalar targetLen) {
29#ifdef SK_CAN_USE_FLOAT
30 float x = SkScalarToFloat(p.fX);
31 float y = SkScalarToFloat(p.fY);
32 float len = sk_float_sqrt(x*x + y*y);
reed@android.com80e39a72009-04-02 16:59:40 +000033
reed@android.comed673312009-02-27 16:24:51 +000034 len /= SkScalarToFloat(targetLen);
reed@android.com80e39a72009-04-02 16:59:40 +000035
reed@android.comed673312009-02-27 16:24:51 +000036 REPORTER_ASSERT(reporter, len > 0.999f && len < 1.001f);
37#endif
38}
39
40#if defined(SK_CAN_USE_FLOAT)
41
42static float nextFloat(SkRandom& rand) {
43 SkFloatIntUnion data;
44 data.fSignBitInt = rand.nextU();
45 return data.fFloat;
46}
47
48/* returns true if a == b as resulting from (int)x. Since it is undefined
49 what to do if the float exceeds 2^32-1, we check for that explicitly.
50 */
51static bool equal_float_native_skia(float x, uint32_t ni, uint32_t si) {
52 if (!(x == x)) { // NAN
53 return si == SK_MaxS32 || si == SK_MinS32;
54 }
55 // for out of range, C is undefined, but skia always should return NaN32
56 if (x > SK_MaxS32) {
57 return si == SK_MaxS32;
58 }
59 if (x < -SK_MaxS32) {
60 return si == SK_MinS32;
61 }
62 return si == ni;
63}
64
65static void assert_float_equal(skiatest::Reporter* reporter, const char op[],
66 float x, uint32_t ni, uint32_t si) {
67 if (!equal_float_native_skia(x, ni, si)) {
68 SkString desc;
69 desc.printf("%s float %g bits %x native %x skia %x\n", op, x, ni, si);
70 reporter->reportFailed(desc);
71 }
72}
73
74static void test_float_cast(skiatest::Reporter* reporter, float x) {
75 int ix = (int)x;
76 int iix = SkFloatToIntCast(x);
77 assert_float_equal(reporter, "cast", x, ix, iix);
78}
79
80static void test_float_floor(skiatest::Reporter* reporter, float x) {
81 int ix = (int)floor(x);
82 int iix = SkFloatToIntFloor(x);
83 assert_float_equal(reporter, "floor", x, ix, iix);
84}
85
86static void test_float_round(skiatest::Reporter* reporter, float x) {
87 double xx = x + 0.5; // need intermediate double to avoid temp loss
88 int ix = (int)floor(xx);
89 int iix = SkFloatToIntRound(x);
90 assert_float_equal(reporter, "round", x, ix, iix);
91}
92
93static void test_float_ceil(skiatest::Reporter* reporter, float x) {
94 int ix = (int)ceil(x);
95 int iix = SkFloatToIntCeil(x);
96 assert_float_equal(reporter, "ceil", x, ix, iix);
97}
98
99static void test_float_conversions(skiatest::Reporter* reporter, float x) {
100 test_float_cast(reporter, x);
101 test_float_floor(reporter, x);
102 test_float_round(reporter, x);
103 test_float_ceil(reporter, x);
104}
105
106static void test_int2float(skiatest::Reporter* reporter, int ival) {
107 float x0 = (float)ival;
108 float x1 = SkIntToFloatCast(ival);
109 float x2 = SkIntToFloatCast_NoOverflowCheck(ival);
110 REPORTER_ASSERT(reporter, x0 == x1);
111 REPORTER_ASSERT(reporter, x0 == x2);
112}
113
114static void unittest_fastfloat(skiatest::Reporter* reporter) {
115 SkRandom rand;
116 size_t i;
reed@android.com80e39a72009-04-02 16:59:40 +0000117
reed@android.comed673312009-02-27 16:24:51 +0000118 static const float gFloats[] = {
119 0.f, 1.f, 0.5f, 0.499999f, 0.5000001f, 1.f/3,
120 0.000000001f, 1000000000.f, // doesn't overflow
121 0.0000000001f, 10000000000.f // does overflow
122 };
123 for (i = 0; i < SK_ARRAY_COUNT(gFloats); i++) {
reed@android.comed673312009-02-27 16:24:51 +0000124 test_float_conversions(reporter, gFloats[i]);
125 test_float_conversions(reporter, -gFloats[i]);
126 }
reed@android.com80e39a72009-04-02 16:59:40 +0000127
reed@android.comed673312009-02-27 16:24:51 +0000128 for (int outer = 0; outer < 100; outer++) {
129 rand.setSeed(outer);
130 for (i = 0; i < 100000; i++) {
131 float x = nextFloat(rand);
132 test_float_conversions(reporter, x);
133 }
reed@android.com80e39a72009-04-02 16:59:40 +0000134
reed@android.comed673312009-02-27 16:24:51 +0000135 test_int2float(reporter, 0);
136 test_int2float(reporter, 1);
137 test_int2float(reporter, -1);
138 for (i = 0; i < 100000; i++) {
139 // for now only test ints that are 24bits or less, since we don't
140 // round (down) large ints the same as IEEE...
141 int ival = rand.nextU() & 0xFFFFFF;
142 test_int2float(reporter, ival);
143 test_int2float(reporter, -ival);
144 }
145 }
146}
147
148#endif
149
150static void test_muldiv255(skiatest::Reporter* reporter) {
151#ifdef SK_CAN_USE_FLOAT
152 for (int a = 0; a <= 255; a++) {
153 for (int b = 0; b <= 255; b++) {
154 int ab = a * b;
155 float s = ab / 255.0f;
156 int round = (int)floorf(s + 0.5f);
157 int trunc = (int)floorf(s);
reed@android.com80e39a72009-04-02 16:59:40 +0000158
reed@android.comed673312009-02-27 16:24:51 +0000159 int iround = SkMulDiv255Round(a, b);
160 int itrunc = SkMulDiv255Trunc(a, b);
reed@android.com80e39a72009-04-02 16:59:40 +0000161
reed@android.comed673312009-02-27 16:24:51 +0000162 REPORTER_ASSERT(reporter, iround == round);
163 REPORTER_ASSERT(reporter, itrunc == trunc);
reed@android.com80e39a72009-04-02 16:59:40 +0000164
reed@android.comed673312009-02-27 16:24:51 +0000165 REPORTER_ASSERT(reporter, itrunc <= iround);
166 REPORTER_ASSERT(reporter, iround <= a);
167 REPORTER_ASSERT(reporter, iround <= b);
168 }
169 }
170#endif
171}
172
reed@android.com80e39a72009-04-02 16:59:40 +0000173static void TestMath(skiatest::Reporter* reporter) {
reed@android.comed673312009-02-27 16:24:51 +0000174 int i;
175 int32_t x;
176 SkRandom rand;
reed@android.com80e39a72009-04-02 16:59:40 +0000177
reed@android.comed673312009-02-27 16:24:51 +0000178 // these should assert
179#if 0
180 SkToS8(128);
181 SkToS8(-129);
182 SkToU8(256);
183 SkToU8(-5);
reed@android.com80e39a72009-04-02 16:59:40 +0000184
reed@android.comed673312009-02-27 16:24:51 +0000185 SkToS16(32768);
186 SkToS16(-32769);
187 SkToU16(65536);
188 SkToU16(-5);
reed@android.com80e39a72009-04-02 16:59:40 +0000189
reed@android.comed673312009-02-27 16:24:51 +0000190 if (sizeof(size_t) > 4) {
191 SkToS32(4*1024*1024);
192 SkToS32(-4*1024*1024);
193 SkToU32(5*1024*1024);
194 SkToU32(-5);
195 }
196#endif
reed@android.com80e39a72009-04-02 16:59:40 +0000197
reed@android.comed673312009-02-27 16:24:51 +0000198 test_muldiv255(reporter);
reed@android.com80e39a72009-04-02 16:59:40 +0000199
reed@android.comed673312009-02-27 16:24:51 +0000200 {
201 SkScalar x = SK_ScalarNaN;
202 REPORTER_ASSERT(reporter, SkScalarIsNaN(x));
203 }
reed@android.com80e39a72009-04-02 16:59:40 +0000204
reed@android.comed673312009-02-27 16:24:51 +0000205 for (i = 1; i <= 10; i++) {
206 x = SkCubeRootBits(i*i*i, 11);
207 REPORTER_ASSERT(reporter, x == i);
208 }
reed@android.com80e39a72009-04-02 16:59:40 +0000209
reed@android.comed673312009-02-27 16:24:51 +0000210 x = SkFixedSqrt(SK_Fixed1);
211 REPORTER_ASSERT(reporter, x == SK_Fixed1);
212 x = SkFixedSqrt(SK_Fixed1/4);
213 REPORTER_ASSERT(reporter, x == SK_Fixed1/2);
214 x = SkFixedSqrt(SK_Fixed1*4);
215 REPORTER_ASSERT(reporter, x == SK_Fixed1*2);
reed@android.com80e39a72009-04-02 16:59:40 +0000216
reed@android.comed673312009-02-27 16:24:51 +0000217 x = SkFractSqrt(SK_Fract1);
218 REPORTER_ASSERT(reporter, x == SK_Fract1);
219 x = SkFractSqrt(SK_Fract1/4);
220 REPORTER_ASSERT(reporter, x == SK_Fract1/2);
221 x = SkFractSqrt(SK_Fract1/16);
222 REPORTER_ASSERT(reporter, x == SK_Fract1/4);
reed@android.com80e39a72009-04-02 16:59:40 +0000223
reed@android.comed673312009-02-27 16:24:51 +0000224 for (i = 1; i < 100; i++) {
225 x = SkFixedSqrt(SK_Fixed1 * i * i);
226 REPORTER_ASSERT(reporter, x == SK_Fixed1 * i);
227 }
reed@android.com80e39a72009-04-02 16:59:40 +0000228
reed@android.comed673312009-02-27 16:24:51 +0000229 for (i = 0; i < 1000; i++) {
230 int value = rand.nextS16();
231 int max = rand.nextU16();
reed@android.com80e39a72009-04-02 16:59:40 +0000232
reed@android.comed673312009-02-27 16:24:51 +0000233 int clamp = SkClampMax(value, max);
234 int clamp2 = value < 0 ? 0 : (value > max ? max : value);
235 REPORTER_ASSERT(reporter, clamp == clamp2);
236 }
reed@android.com80e39a72009-04-02 16:59:40 +0000237
reed@android.come72fee52009-11-16 14:52:01 +0000238 for (i = 0; i < 10000; i++) {
reed@android.comed673312009-02-27 16:24:51 +0000239 SkPoint p;
reed@android.com80e39a72009-04-02 16:59:40 +0000240
reed@android.comed673312009-02-27 16:24:51 +0000241 p.setLength(rand.nextS(), rand.nextS(), SK_Scalar1);
242 check_length(reporter, p, SK_Scalar1);
243 p.setLength(rand.nextS() >> 13, rand.nextS() >> 13, SK_Scalar1);
244 check_length(reporter, p, SK_Scalar1);
245 }
reed@android.com80e39a72009-04-02 16:59:40 +0000246
reed@android.comed673312009-02-27 16:24:51 +0000247 {
248 SkFixed result = SkFixedDiv(100, 100);
249 REPORTER_ASSERT(reporter, result == SK_Fixed1);
250 result = SkFixedDiv(1, SK_Fixed1);
251 REPORTER_ASSERT(reporter, result == 1);
252 }
reed@android.com80e39a72009-04-02 16:59:40 +0000253
reed@android.comed673312009-02-27 16:24:51 +0000254#ifdef SK_CAN_USE_FLOAT
255 unittest_fastfloat(reporter);
256#endif
reed@android.com80e39a72009-04-02 16:59:40 +0000257
reed@android.comed673312009-02-27 16:24:51 +0000258#ifdef SkLONGLONG
reed@android.come72fee52009-11-16 14:52:01 +0000259 for (i = 0; i < 10000; i++) {
reed@android.comed673312009-02-27 16:24:51 +0000260 SkFixed numer = rand.nextS();
261 SkFixed denom = rand.nextS();
262 SkFixed result = SkFixedDiv(numer, denom);
263 SkLONGLONG check = ((SkLONGLONG)numer << 16) / denom;
reed@android.com80e39a72009-04-02 16:59:40 +0000264
reed@android.comed673312009-02-27 16:24:51 +0000265 (void)SkCLZ(numer);
266 (void)SkCLZ(denom);
reed@android.com80e39a72009-04-02 16:59:40 +0000267
reed@android.comed673312009-02-27 16:24:51 +0000268 REPORTER_ASSERT(reporter, result != (SkFixed)SK_NaN32);
269 if (check > SK_MaxS32) {
270 check = SK_MaxS32;
271 } else if (check < -SK_MaxS32) {
272 check = SK_MinS32;
273 }
274 REPORTER_ASSERT(reporter, result == (int32_t)check);
reed@android.com80e39a72009-04-02 16:59:40 +0000275
reed@android.comed673312009-02-27 16:24:51 +0000276 result = SkFractDiv(numer, denom);
277 check = ((SkLONGLONG)numer << 30) / denom;
reed@android.com80e39a72009-04-02 16:59:40 +0000278
reed@android.comed673312009-02-27 16:24:51 +0000279 REPORTER_ASSERT(reporter, result != (SkFixed)SK_NaN32);
280 if (check > SK_MaxS32) {
281 check = SK_MaxS32;
282 } else if (check < -SK_MaxS32) {
283 check = SK_MinS32;
284 }
285 REPORTER_ASSERT(reporter, result == (int32_t)check);
reed@android.com80e39a72009-04-02 16:59:40 +0000286
reed@android.comed673312009-02-27 16:24:51 +0000287 // make them <= 2^24, so we don't overflow in fixmul
288 numer = numer << 8 >> 8;
289 denom = denom << 8 >> 8;
reed@android.com80e39a72009-04-02 16:59:40 +0000290
reed@android.comed673312009-02-27 16:24:51 +0000291 result = SkFixedMul(numer, denom);
292 SkFixed r2 = symmetric_fixmul(numer, denom);
293 // SkASSERT(result == r2);
reed@android.com80e39a72009-04-02 16:59:40 +0000294
reed@android.comed673312009-02-27 16:24:51 +0000295 result = SkFixedMul(numer, numer);
296 r2 = SkFixedSquare(numer);
297 REPORTER_ASSERT(reporter, result == r2);
reed@android.com80e39a72009-04-02 16:59:40 +0000298
reed@android.comed673312009-02-27 16:24:51 +0000299#ifdef SK_CAN_USE_FLOAT
300 if (numer >= 0 && denom >= 0) {
301 SkFixed mean = SkFixedMean(numer, denom);
reed@android.com80e39a72009-04-02 16:59:40 +0000302 float prod = SkFixedToFloat(numer) * SkFixedToFloat(denom);
303 float fm = sk_float_sqrt(sk_float_abs(prod));
reed@android.comed673312009-02-27 16:24:51 +0000304 SkFixed mean2 = SkFloatToFixed(fm);
305 int diff = SkAbs32(mean - mean2);
306 REPORTER_ASSERT(reporter, diff <= 1);
307 }
reed@android.com80e39a72009-04-02 16:59:40 +0000308
reed@android.comed673312009-02-27 16:24:51 +0000309 {
310 SkFixed mod = SkFixedMod(numer, denom);
311 float n = SkFixedToFloat(numer);
312 float d = SkFixedToFloat(denom);
313 float m = sk_float_mod(n, d);
reed@android.com80e39a72009-04-02 16:59:40 +0000314 // ensure the same sign
315 REPORTER_ASSERT(reporter, mod == 0 || (mod < 0) == (m < 0));
reed@android.comed673312009-02-27 16:24:51 +0000316 int diff = SkAbs32(mod - SkFloatToFixed(m));
317 REPORTER_ASSERT(reporter, (diff >> 7) == 0);
318 }
319#endif
320 }
321#endif
reed@android.com80e39a72009-04-02 16:59:40 +0000322
reed@android.comed673312009-02-27 16:24:51 +0000323#ifdef SK_CAN_USE_FLOAT
reed@android.come72fee52009-11-16 14:52:01 +0000324 for (i = 0; i < 10000; i++) {
reed@android.comed673312009-02-27 16:24:51 +0000325 SkFract x = rand.nextU() >> 1;
326 double xx = (double)x / SK_Fract1;
327 SkFract xr = SkFractSqrt(x);
328 SkFract check = SkFloatToFract(sqrt(xx));
reed@android.com80e39a72009-04-02 16:59:40 +0000329 REPORTER_ASSERT(reporter, xr == check ||
330 xr == check-1 ||
331 xr == check+1);
332
reed@android.comed673312009-02-27 16:24:51 +0000333 xr = SkFixedSqrt(x);
334 xx = (double)x / SK_Fixed1;
335 check = SkFloatToFixed(sqrt(xx));
336 REPORTER_ASSERT(reporter, xr == check || xr == check-1);
reed@android.com80e39a72009-04-02 16:59:40 +0000337
reed@android.comed673312009-02-27 16:24:51 +0000338 xr = SkSqrt32(x);
339 xx = (double)x;
340 check = (int32_t)sqrt(xx);
341 REPORTER_ASSERT(reporter, xr == check || xr == check-1);
342 }
343#endif
reed@android.com80e39a72009-04-02 16:59:40 +0000344
reed@android.comed673312009-02-27 16:24:51 +0000345#if !defined(SK_SCALAR_IS_FLOAT) && defined(SK_CAN_USE_FLOAT)
346 {
347 SkFixed s, c;
348 s = SkFixedSinCos(0, &c);
349 REPORTER_ASSERT(reporter, s == 0);
350 REPORTER_ASSERT(reporter, c == SK_Fixed1);
351 }
reed@android.com80e39a72009-04-02 16:59:40 +0000352
reed@android.comed673312009-02-27 16:24:51 +0000353 int maxDiff = 0;
reed@android.come72fee52009-11-16 14:52:01 +0000354 for (i = 0; i < 1000; i++) {
reed@android.comed673312009-02-27 16:24:51 +0000355 SkFixed rads = rand.nextS() >> 10;
356 double frads = SkFixedToFloat(rads);
reed@android.com80e39a72009-04-02 16:59:40 +0000357
reed@android.comed673312009-02-27 16:24:51 +0000358 SkFixed s, c;
359 s = SkScalarSinCos(rads, &c);
reed@android.com80e39a72009-04-02 16:59:40 +0000360
reed@android.comed673312009-02-27 16:24:51 +0000361 double fs = sin(frads);
362 double fc = cos(frads);
reed@android.com80e39a72009-04-02 16:59:40 +0000363
reed@android.comed673312009-02-27 16:24:51 +0000364 SkFixed is = SkFloatToFixed(fs);
365 SkFixed ic = SkFloatToFixed(fc);
reed@android.com80e39a72009-04-02 16:59:40 +0000366
reed@android.comed673312009-02-27 16:24:51 +0000367 maxDiff = SkMax32(maxDiff, SkAbs32(is - s));
368 maxDiff = SkMax32(maxDiff, SkAbs32(ic - c));
369 }
370 SkDebugf("SinCos: maximum error = %d\n", maxDiff);
371#endif
372}
373
reed@android.comd8730ea2009-02-27 22:06:06 +0000374#include "TestClassDef.h"
375DEFINE_TESTCLASS("Math", MathTestClass, TestMath)