blob: 2555d7386681d7ec82259c5bf184acd5e88ffa00 [file] [log] [blame]
reed@android.comed673312009-02-27 16:24:51 +00001#include "Test.h"
reed@android.comc846ede2010-04-13 15:29:15 +00002#include "SkFloatingPoint.h"
reed@android.comed673312009-02-27 16:24:51 +00003#include "SkPoint.h"
4#include "SkRandom.h"
5
6#if defined(SkLONGLONG)
7static int symmetric_fixmul(int a, int b) {
8 int sa = SkExtractSign(a);
9 int sb = SkExtractSign(b);
reed@android.com80e39a72009-04-02 16:59:40 +000010
reed@android.comed673312009-02-27 16:24:51 +000011 a = SkApplySign(a, sa);
12 b = SkApplySign(b, sb);
reed@android.com80e39a72009-04-02 16:59:40 +000013
reed@android.comed673312009-02-27 16:24:51 +000014#if 1
15 int c = (int)(((SkLONGLONG)a * b) >> 16);
reed@android.com80e39a72009-04-02 16:59:40 +000016
reed@android.comed673312009-02-27 16:24:51 +000017 return SkApplySign(c, sa ^ sb);
18#else
19 SkLONGLONG ab = (SkLONGLONG)a * b;
20 if (sa ^ sb) {
21 ab = -ab;
22 }
23 return ab >> 16;
24#endif
25}
26#endif
27
28static void check_length(skiatest::Reporter* reporter,
29 const SkPoint& p, SkScalar targetLen) {
30#ifdef SK_CAN_USE_FLOAT
31 float x = SkScalarToFloat(p.fX);
32 float y = SkScalarToFloat(p.fY);
33 float len = sk_float_sqrt(x*x + y*y);
reed@android.com80e39a72009-04-02 16:59:40 +000034
reed@android.comed673312009-02-27 16:24:51 +000035 len /= SkScalarToFloat(targetLen);
reed@android.com80e39a72009-04-02 16:59:40 +000036
reed@android.comed673312009-02-27 16:24:51 +000037 REPORTER_ASSERT(reporter, len > 0.999f && len < 1.001f);
38#endif
39}
40
41#if defined(SK_CAN_USE_FLOAT)
42
43static float nextFloat(SkRandom& rand) {
44 SkFloatIntUnion data;
45 data.fSignBitInt = rand.nextU();
46 return data.fFloat;
47}
48
49/* returns true if a == b as resulting from (int)x. Since it is undefined
50 what to do if the float exceeds 2^32-1, we check for that explicitly.
51 */
52static bool equal_float_native_skia(float x, uint32_t ni, uint32_t si) {
53 if (!(x == x)) { // NAN
54 return si == SK_MaxS32 || si == SK_MinS32;
55 }
56 // for out of range, C is undefined, but skia always should return NaN32
57 if (x > SK_MaxS32) {
58 return si == SK_MaxS32;
59 }
60 if (x < -SK_MaxS32) {
61 return si == SK_MinS32;
62 }
63 return si == ni;
64}
65
66static void assert_float_equal(skiatest::Reporter* reporter, const char op[],
67 float x, uint32_t ni, uint32_t si) {
68 if (!equal_float_native_skia(x, ni, si)) {
69 SkString desc;
70 desc.printf("%s float %g bits %x native %x skia %x\n", op, x, ni, si);
71 reporter->reportFailed(desc);
72 }
73}
74
75static void test_float_cast(skiatest::Reporter* reporter, float x) {
76 int ix = (int)x;
77 int iix = SkFloatToIntCast(x);
78 assert_float_equal(reporter, "cast", x, ix, iix);
79}
80
81static void test_float_floor(skiatest::Reporter* reporter, float x) {
82 int ix = (int)floor(x);
83 int iix = SkFloatToIntFloor(x);
84 assert_float_equal(reporter, "floor", x, ix, iix);
85}
86
87static void test_float_round(skiatest::Reporter* reporter, float x) {
88 double xx = x + 0.5; // need intermediate double to avoid temp loss
89 int ix = (int)floor(xx);
90 int iix = SkFloatToIntRound(x);
91 assert_float_equal(reporter, "round", x, ix, iix);
92}
93
94static void test_float_ceil(skiatest::Reporter* reporter, float x) {
95 int ix = (int)ceil(x);
96 int iix = SkFloatToIntCeil(x);
97 assert_float_equal(reporter, "ceil", x, ix, iix);
98}
99
100static void test_float_conversions(skiatest::Reporter* reporter, float x) {
101 test_float_cast(reporter, x);
102 test_float_floor(reporter, x);
103 test_float_round(reporter, x);
104 test_float_ceil(reporter, x);
105}
106
107static void test_int2float(skiatest::Reporter* reporter, int ival) {
108 float x0 = (float)ival;
109 float x1 = SkIntToFloatCast(ival);
110 float x2 = SkIntToFloatCast_NoOverflowCheck(ival);
111 REPORTER_ASSERT(reporter, x0 == x1);
112 REPORTER_ASSERT(reporter, x0 == x2);
113}
114
115static void unittest_fastfloat(skiatest::Reporter* reporter) {
116 SkRandom rand;
117 size_t i;
reed@android.com80e39a72009-04-02 16:59:40 +0000118
reed@android.comed673312009-02-27 16:24:51 +0000119 static const float gFloats[] = {
120 0.f, 1.f, 0.5f, 0.499999f, 0.5000001f, 1.f/3,
121 0.000000001f, 1000000000.f, // doesn't overflow
122 0.0000000001f, 10000000000.f // does overflow
123 };
124 for (i = 0; i < SK_ARRAY_COUNT(gFloats); i++) {
reed@android.comed673312009-02-27 16:24:51 +0000125 test_float_conversions(reporter, gFloats[i]);
126 test_float_conversions(reporter, -gFloats[i]);
127 }
reed@android.com80e39a72009-04-02 16:59:40 +0000128
reed@android.comed673312009-02-27 16:24:51 +0000129 for (int outer = 0; outer < 100; outer++) {
130 rand.setSeed(outer);
131 for (i = 0; i < 100000; i++) {
132 float x = nextFloat(rand);
133 test_float_conversions(reporter, x);
134 }
reed@android.com80e39a72009-04-02 16:59:40 +0000135
reed@android.comed673312009-02-27 16:24:51 +0000136 test_int2float(reporter, 0);
137 test_int2float(reporter, 1);
138 test_int2float(reporter, -1);
139 for (i = 0; i < 100000; i++) {
140 // for now only test ints that are 24bits or less, since we don't
141 // round (down) large ints the same as IEEE...
142 int ival = rand.nextU() & 0xFFFFFF;
143 test_int2float(reporter, ival);
144 test_int2float(reporter, -ival);
145 }
146 }
147}
148
149#endif
150
151static void test_muldiv255(skiatest::Reporter* reporter) {
152#ifdef SK_CAN_USE_FLOAT
153 for (int a = 0; a <= 255; a++) {
154 for (int b = 0; b <= 255; b++) {
155 int ab = a * b;
156 float s = ab / 255.0f;
157 int round = (int)floorf(s + 0.5f);
158 int trunc = (int)floorf(s);
reed@android.com80e39a72009-04-02 16:59:40 +0000159
reed@android.comed673312009-02-27 16:24:51 +0000160 int iround = SkMulDiv255Round(a, b);
161 int itrunc = SkMulDiv255Trunc(a, b);
reed@android.com80e39a72009-04-02 16:59:40 +0000162
reed@android.comed673312009-02-27 16:24:51 +0000163 REPORTER_ASSERT(reporter, iround == round);
164 REPORTER_ASSERT(reporter, itrunc == trunc);
reed@android.com80e39a72009-04-02 16:59:40 +0000165
reed@android.comed673312009-02-27 16:24:51 +0000166 REPORTER_ASSERT(reporter, itrunc <= iround);
167 REPORTER_ASSERT(reporter, iround <= a);
168 REPORTER_ASSERT(reporter, iround <= b);
169 }
170 }
171#endif
172}
173
senorblanco@chromium.orgec7a30c2010-12-07 21:07:56 +0000174static void test_muldiv255ceiling(skiatest::Reporter* reporter) {
175 for (int c = 0; c <= 255; c++) {
176 for (int a = 0; a <= 255; a++) {
177 int product = (c * a + 255);
178 int expected_ceiling = (product + (product >> 8)) >> 8;
179 int webkit_ceiling = (c * a + 254) / 255;
180 REPORTER_ASSERT(reporter, expected_ceiling == webkit_ceiling);
181 int skia_ceiling = SkMulDiv255Ceiling(c, a);
182 REPORTER_ASSERT(reporter, skia_ceiling == webkit_ceiling);
183 }
184 }
185}
186
reed@android.comf0ad0862010-02-09 19:18:38 +0000187static void test_copysign(skiatest::Reporter* reporter) {
188 static const int32_t gTriples[] = {
189 // x, y, expected result
190 0, 0, 0,
191 0, 1, 0,
192 0, -1, 0,
193 1, 0, 1,
194 1, 1, 1,
195 1, -1, -1,
196 -1, 0, 1,
197 -1, 1, 1,
198 -1, -1, -1,
199 };
200 for (size_t i = 0; i < SK_ARRAY_COUNT(gTriples); i += 3) {
201 REPORTER_ASSERT(reporter,
202 SkCopySign32(gTriples[i], gTriples[i+1]) == gTriples[i+2]);
203#ifdef SK_CAN_USE_FLOAT
204 float x = (float)gTriples[i];
205 float y = (float)gTriples[i+1];
206 float expected = (float)gTriples[i+2];
207 REPORTER_ASSERT(reporter, sk_float_copysign(x, y) == expected);
208#endif
209 }
210
211 SkRandom rand;
212 for (int j = 0; j < 1000; j++) {
213 int ix = rand.nextS();
214 REPORTER_ASSERT(reporter, SkCopySign32(ix, ix) == ix);
215 REPORTER_ASSERT(reporter, SkCopySign32(ix, -ix) == -ix);
216 REPORTER_ASSERT(reporter, SkCopySign32(-ix, ix) == ix);
217 REPORTER_ASSERT(reporter, SkCopySign32(-ix, -ix) == -ix);
218
219 SkScalar sx = rand.nextSScalar1();
220 REPORTER_ASSERT(reporter, SkScalarCopySign(sx, sx) == sx);
221 REPORTER_ASSERT(reporter, SkScalarCopySign(sx, -sx) == -sx);
222 REPORTER_ASSERT(reporter, SkScalarCopySign(-sx, sx) == sx);
223 REPORTER_ASSERT(reporter, SkScalarCopySign(-sx, -sx) == -sx);
224 }
225}
226
reed@android.com80e39a72009-04-02 16:59:40 +0000227static void TestMath(skiatest::Reporter* reporter) {
reed@android.comed673312009-02-27 16:24:51 +0000228 int i;
229 int32_t x;
230 SkRandom rand;
reed@android.com80e39a72009-04-02 16:59:40 +0000231
reed@android.comed673312009-02-27 16:24:51 +0000232 // these should assert
233#if 0
234 SkToS8(128);
235 SkToS8(-129);
236 SkToU8(256);
237 SkToU8(-5);
reed@android.com80e39a72009-04-02 16:59:40 +0000238
reed@android.comed673312009-02-27 16:24:51 +0000239 SkToS16(32768);
240 SkToS16(-32769);
241 SkToU16(65536);
242 SkToU16(-5);
reed@android.com80e39a72009-04-02 16:59:40 +0000243
reed@android.comed673312009-02-27 16:24:51 +0000244 if (sizeof(size_t) > 4) {
245 SkToS32(4*1024*1024);
246 SkToS32(-4*1024*1024);
247 SkToU32(5*1024*1024);
248 SkToU32(-5);
249 }
250#endif
reed@android.com80e39a72009-04-02 16:59:40 +0000251
reed@android.comed673312009-02-27 16:24:51 +0000252 test_muldiv255(reporter);
senorblanco@chromium.orgec7a30c2010-12-07 21:07:56 +0000253 test_muldiv255ceiling(reporter);
reed@android.comf0ad0862010-02-09 19:18:38 +0000254 test_copysign(reporter);
reed@android.com80e39a72009-04-02 16:59:40 +0000255
reed@android.comed673312009-02-27 16:24:51 +0000256 {
257 SkScalar x = SK_ScalarNaN;
258 REPORTER_ASSERT(reporter, SkScalarIsNaN(x));
259 }
reed@android.com80e39a72009-04-02 16:59:40 +0000260
reed@android.comed673312009-02-27 16:24:51 +0000261 for (i = 1; i <= 10; i++) {
262 x = SkCubeRootBits(i*i*i, 11);
263 REPORTER_ASSERT(reporter, x == i);
264 }
reed@android.com80e39a72009-04-02 16:59:40 +0000265
reed@android.comed673312009-02-27 16:24:51 +0000266 x = SkFixedSqrt(SK_Fixed1);
267 REPORTER_ASSERT(reporter, x == SK_Fixed1);
268 x = SkFixedSqrt(SK_Fixed1/4);
269 REPORTER_ASSERT(reporter, x == SK_Fixed1/2);
270 x = SkFixedSqrt(SK_Fixed1*4);
271 REPORTER_ASSERT(reporter, x == SK_Fixed1*2);
reed@android.com80e39a72009-04-02 16:59:40 +0000272
reed@android.comed673312009-02-27 16:24:51 +0000273 x = SkFractSqrt(SK_Fract1);
274 REPORTER_ASSERT(reporter, x == SK_Fract1);
275 x = SkFractSqrt(SK_Fract1/4);
276 REPORTER_ASSERT(reporter, x == SK_Fract1/2);
277 x = SkFractSqrt(SK_Fract1/16);
278 REPORTER_ASSERT(reporter, x == SK_Fract1/4);
reed@android.com80e39a72009-04-02 16:59:40 +0000279
reed@android.comed673312009-02-27 16:24:51 +0000280 for (i = 1; i < 100; i++) {
281 x = SkFixedSqrt(SK_Fixed1 * i * i);
282 REPORTER_ASSERT(reporter, x == SK_Fixed1 * i);
283 }
reed@android.com80e39a72009-04-02 16:59:40 +0000284
reed@android.comed673312009-02-27 16:24:51 +0000285 for (i = 0; i < 1000; i++) {
286 int value = rand.nextS16();
287 int max = rand.nextU16();
reed@android.com80e39a72009-04-02 16:59:40 +0000288
reed@android.comed673312009-02-27 16:24:51 +0000289 int clamp = SkClampMax(value, max);
290 int clamp2 = value < 0 ? 0 : (value > max ? max : value);
291 REPORTER_ASSERT(reporter, clamp == clamp2);
292 }
reed@android.com80e39a72009-04-02 16:59:40 +0000293
reed@android.come72fee52009-11-16 14:52:01 +0000294 for (i = 0; i < 10000; i++) {
reed@android.comed673312009-02-27 16:24:51 +0000295 SkPoint p;
reed@android.com80e39a72009-04-02 16:59:40 +0000296
reed@android.comed673312009-02-27 16:24:51 +0000297 p.setLength(rand.nextS(), rand.nextS(), SK_Scalar1);
298 check_length(reporter, p, SK_Scalar1);
299 p.setLength(rand.nextS() >> 13, rand.nextS() >> 13, SK_Scalar1);
300 check_length(reporter, p, SK_Scalar1);
301 }
reed@android.com80e39a72009-04-02 16:59:40 +0000302
reed@android.comed673312009-02-27 16:24:51 +0000303 {
304 SkFixed result = SkFixedDiv(100, 100);
305 REPORTER_ASSERT(reporter, result == SK_Fixed1);
306 result = SkFixedDiv(1, SK_Fixed1);
307 REPORTER_ASSERT(reporter, result == 1);
308 }
reed@android.com80e39a72009-04-02 16:59:40 +0000309
reed@android.comed673312009-02-27 16:24:51 +0000310#ifdef SK_CAN_USE_FLOAT
311 unittest_fastfloat(reporter);
312#endif
reed@android.com80e39a72009-04-02 16:59:40 +0000313
reed@android.comed673312009-02-27 16:24:51 +0000314#ifdef SkLONGLONG
reed@android.come72fee52009-11-16 14:52:01 +0000315 for (i = 0; i < 10000; i++) {
reed@android.comed673312009-02-27 16:24:51 +0000316 SkFixed numer = rand.nextS();
317 SkFixed denom = rand.nextS();
318 SkFixed result = SkFixedDiv(numer, denom);
319 SkLONGLONG check = ((SkLONGLONG)numer << 16) / denom;
reed@android.com80e39a72009-04-02 16:59:40 +0000320
reed@android.comed673312009-02-27 16:24:51 +0000321 (void)SkCLZ(numer);
322 (void)SkCLZ(denom);
reed@android.com80e39a72009-04-02 16:59:40 +0000323
reed@android.comed673312009-02-27 16:24:51 +0000324 REPORTER_ASSERT(reporter, result != (SkFixed)SK_NaN32);
325 if (check > SK_MaxS32) {
326 check = SK_MaxS32;
327 } else if (check < -SK_MaxS32) {
328 check = SK_MinS32;
329 }
330 REPORTER_ASSERT(reporter, result == (int32_t)check);
reed@android.com80e39a72009-04-02 16:59:40 +0000331
reed@android.comed673312009-02-27 16:24:51 +0000332 result = SkFractDiv(numer, denom);
333 check = ((SkLONGLONG)numer << 30) / denom;
reed@android.com80e39a72009-04-02 16:59:40 +0000334
reed@android.comed673312009-02-27 16:24:51 +0000335 REPORTER_ASSERT(reporter, result != (SkFixed)SK_NaN32);
336 if (check > SK_MaxS32) {
337 check = SK_MaxS32;
338 } else if (check < -SK_MaxS32) {
339 check = SK_MinS32;
340 }
341 REPORTER_ASSERT(reporter, result == (int32_t)check);
reed@android.com80e39a72009-04-02 16:59:40 +0000342
reed@android.comed673312009-02-27 16:24:51 +0000343 // make them <= 2^24, so we don't overflow in fixmul
344 numer = numer << 8 >> 8;
345 denom = denom << 8 >> 8;
reed@android.com80e39a72009-04-02 16:59:40 +0000346
reed@android.comed673312009-02-27 16:24:51 +0000347 result = SkFixedMul(numer, denom);
348 SkFixed r2 = symmetric_fixmul(numer, denom);
349 // SkASSERT(result == r2);
reed@android.com80e39a72009-04-02 16:59:40 +0000350
reed@android.comed673312009-02-27 16:24:51 +0000351 result = SkFixedMul(numer, numer);
352 r2 = SkFixedSquare(numer);
353 REPORTER_ASSERT(reporter, result == r2);
reed@android.com80e39a72009-04-02 16:59:40 +0000354
reed@android.comed673312009-02-27 16:24:51 +0000355#ifdef SK_CAN_USE_FLOAT
356 if (numer >= 0 && denom >= 0) {
357 SkFixed mean = SkFixedMean(numer, denom);
reed@android.com80e39a72009-04-02 16:59:40 +0000358 float prod = SkFixedToFloat(numer) * SkFixedToFloat(denom);
359 float fm = sk_float_sqrt(sk_float_abs(prod));
reed@android.comed673312009-02-27 16:24:51 +0000360 SkFixed mean2 = SkFloatToFixed(fm);
361 int diff = SkAbs32(mean - mean2);
362 REPORTER_ASSERT(reporter, diff <= 1);
363 }
reed@android.com80e39a72009-04-02 16:59:40 +0000364
reed@android.comed673312009-02-27 16:24:51 +0000365 {
366 SkFixed mod = SkFixedMod(numer, denom);
367 float n = SkFixedToFloat(numer);
368 float d = SkFixedToFloat(denom);
369 float m = sk_float_mod(n, d);
reed@android.com80e39a72009-04-02 16:59:40 +0000370 // ensure the same sign
371 REPORTER_ASSERT(reporter, mod == 0 || (mod < 0) == (m < 0));
reed@android.comed673312009-02-27 16:24:51 +0000372 int diff = SkAbs32(mod - SkFloatToFixed(m));
373 REPORTER_ASSERT(reporter, (diff >> 7) == 0);
374 }
375#endif
376 }
377#endif
reed@android.com80e39a72009-04-02 16:59:40 +0000378
reed@android.comed673312009-02-27 16:24:51 +0000379#ifdef SK_CAN_USE_FLOAT
reed@android.come72fee52009-11-16 14:52:01 +0000380 for (i = 0; i < 10000; i++) {
reed@android.comed673312009-02-27 16:24:51 +0000381 SkFract x = rand.nextU() >> 1;
382 double xx = (double)x / SK_Fract1;
383 SkFract xr = SkFractSqrt(x);
384 SkFract check = SkFloatToFract(sqrt(xx));
reed@android.com80e39a72009-04-02 16:59:40 +0000385 REPORTER_ASSERT(reporter, xr == check ||
386 xr == check-1 ||
387 xr == check+1);
388
reed@android.comed673312009-02-27 16:24:51 +0000389 xr = SkFixedSqrt(x);
390 xx = (double)x / SK_Fixed1;
391 check = SkFloatToFixed(sqrt(xx));
392 REPORTER_ASSERT(reporter, xr == check || xr == check-1);
reed@android.com80e39a72009-04-02 16:59:40 +0000393
reed@android.comed673312009-02-27 16:24:51 +0000394 xr = SkSqrt32(x);
395 xx = (double)x;
396 check = (int32_t)sqrt(xx);
397 REPORTER_ASSERT(reporter, xr == check || xr == check-1);
398 }
399#endif
reed@android.com80e39a72009-04-02 16:59:40 +0000400
reed@android.comed673312009-02-27 16:24:51 +0000401#if !defined(SK_SCALAR_IS_FLOAT) && defined(SK_CAN_USE_FLOAT)
402 {
403 SkFixed s, c;
404 s = SkFixedSinCos(0, &c);
405 REPORTER_ASSERT(reporter, s == 0);
406 REPORTER_ASSERT(reporter, c == SK_Fixed1);
407 }
reed@android.com80e39a72009-04-02 16:59:40 +0000408
reed@android.comed673312009-02-27 16:24:51 +0000409 int maxDiff = 0;
reed@android.come72fee52009-11-16 14:52:01 +0000410 for (i = 0; i < 1000; i++) {
reed@android.comed673312009-02-27 16:24:51 +0000411 SkFixed rads = rand.nextS() >> 10;
412 double frads = SkFixedToFloat(rads);
reed@android.com80e39a72009-04-02 16:59:40 +0000413
reed@android.comed673312009-02-27 16:24:51 +0000414 SkFixed s, c;
415 s = SkScalarSinCos(rads, &c);
reed@android.com80e39a72009-04-02 16:59:40 +0000416
reed@android.comed673312009-02-27 16:24:51 +0000417 double fs = sin(frads);
418 double fc = cos(frads);
reed@android.com80e39a72009-04-02 16:59:40 +0000419
reed@android.comed673312009-02-27 16:24:51 +0000420 SkFixed is = SkFloatToFixed(fs);
421 SkFixed ic = SkFloatToFixed(fc);
reed@android.com80e39a72009-04-02 16:59:40 +0000422
reed@android.comed673312009-02-27 16:24:51 +0000423 maxDiff = SkMax32(maxDiff, SkAbs32(is - s));
424 maxDiff = SkMax32(maxDiff, SkAbs32(ic - c));
425 }
426 SkDebugf("SinCos: maximum error = %d\n", maxDiff);
427#endif
428}
429
reed@android.comd8730ea2009-02-27 22:06:06 +0000430#include "TestClassDef.h"
431DEFINE_TESTCLASS("Math", MathTestClass, TestMath)