blob: dec93dea1d09d669e1e858f335c23b24c53b667e [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.comf0ad0862010-02-09 19:18:38 +0000173static void test_copysign(skiatest::Reporter* reporter) {
174 static const int32_t gTriples[] = {
175 // x, y, expected result
176 0, 0, 0,
177 0, 1, 0,
178 0, -1, 0,
179 1, 0, 1,
180 1, 1, 1,
181 1, -1, -1,
182 -1, 0, 1,
183 -1, 1, 1,
184 -1, -1, -1,
185 };
186 for (size_t i = 0; i < SK_ARRAY_COUNT(gTriples); i += 3) {
187 REPORTER_ASSERT(reporter,
188 SkCopySign32(gTriples[i], gTriples[i+1]) == gTriples[i+2]);
189#ifdef SK_CAN_USE_FLOAT
190 float x = (float)gTriples[i];
191 float y = (float)gTriples[i+1];
192 float expected = (float)gTriples[i+2];
193 REPORTER_ASSERT(reporter, sk_float_copysign(x, y) == expected);
194#endif
195 }
196
197 SkRandom rand;
198 for (int j = 0; j < 1000; j++) {
199 int ix = rand.nextS();
200 REPORTER_ASSERT(reporter, SkCopySign32(ix, ix) == ix);
201 REPORTER_ASSERT(reporter, SkCopySign32(ix, -ix) == -ix);
202 REPORTER_ASSERT(reporter, SkCopySign32(-ix, ix) == ix);
203 REPORTER_ASSERT(reporter, SkCopySign32(-ix, -ix) == -ix);
204
205 SkScalar sx = rand.nextSScalar1();
206 REPORTER_ASSERT(reporter, SkScalarCopySign(sx, sx) == sx);
207 REPORTER_ASSERT(reporter, SkScalarCopySign(sx, -sx) == -sx);
208 REPORTER_ASSERT(reporter, SkScalarCopySign(-sx, sx) == sx);
209 REPORTER_ASSERT(reporter, SkScalarCopySign(-sx, -sx) == -sx);
210 }
211}
212
reed@android.com80e39a72009-04-02 16:59:40 +0000213static void TestMath(skiatest::Reporter* reporter) {
reed@android.comed673312009-02-27 16:24:51 +0000214 int i;
215 int32_t x;
216 SkRandom rand;
reed@android.com80e39a72009-04-02 16:59:40 +0000217
reed@android.comed673312009-02-27 16:24:51 +0000218 // these should assert
219#if 0
220 SkToS8(128);
221 SkToS8(-129);
222 SkToU8(256);
223 SkToU8(-5);
reed@android.com80e39a72009-04-02 16:59:40 +0000224
reed@android.comed673312009-02-27 16:24:51 +0000225 SkToS16(32768);
226 SkToS16(-32769);
227 SkToU16(65536);
228 SkToU16(-5);
reed@android.com80e39a72009-04-02 16:59:40 +0000229
reed@android.comed673312009-02-27 16:24:51 +0000230 if (sizeof(size_t) > 4) {
231 SkToS32(4*1024*1024);
232 SkToS32(-4*1024*1024);
233 SkToU32(5*1024*1024);
234 SkToU32(-5);
235 }
236#endif
reed@android.com80e39a72009-04-02 16:59:40 +0000237
reed@android.comed673312009-02-27 16:24:51 +0000238 test_muldiv255(reporter);
reed@android.comf0ad0862010-02-09 19:18:38 +0000239 test_copysign(reporter);
reed@android.com80e39a72009-04-02 16:59:40 +0000240
reed@android.comed673312009-02-27 16:24:51 +0000241 {
242 SkScalar x = SK_ScalarNaN;
243 REPORTER_ASSERT(reporter, SkScalarIsNaN(x));
244 }
reed@android.com80e39a72009-04-02 16:59:40 +0000245
reed@android.comed673312009-02-27 16:24:51 +0000246 for (i = 1; i <= 10; i++) {
247 x = SkCubeRootBits(i*i*i, 11);
248 REPORTER_ASSERT(reporter, x == i);
249 }
reed@android.com80e39a72009-04-02 16:59:40 +0000250
reed@android.comed673312009-02-27 16:24:51 +0000251 x = SkFixedSqrt(SK_Fixed1);
252 REPORTER_ASSERT(reporter, x == SK_Fixed1);
253 x = SkFixedSqrt(SK_Fixed1/4);
254 REPORTER_ASSERT(reporter, x == SK_Fixed1/2);
255 x = SkFixedSqrt(SK_Fixed1*4);
256 REPORTER_ASSERT(reporter, x == SK_Fixed1*2);
reed@android.com80e39a72009-04-02 16:59:40 +0000257
reed@android.comed673312009-02-27 16:24:51 +0000258 x = SkFractSqrt(SK_Fract1);
259 REPORTER_ASSERT(reporter, x == SK_Fract1);
260 x = SkFractSqrt(SK_Fract1/4);
261 REPORTER_ASSERT(reporter, x == SK_Fract1/2);
262 x = SkFractSqrt(SK_Fract1/16);
263 REPORTER_ASSERT(reporter, x == SK_Fract1/4);
reed@android.com80e39a72009-04-02 16:59:40 +0000264
reed@android.comed673312009-02-27 16:24:51 +0000265 for (i = 1; i < 100; i++) {
266 x = SkFixedSqrt(SK_Fixed1 * i * i);
267 REPORTER_ASSERT(reporter, x == SK_Fixed1 * i);
268 }
reed@android.com80e39a72009-04-02 16:59:40 +0000269
reed@android.comed673312009-02-27 16:24:51 +0000270 for (i = 0; i < 1000; i++) {
271 int value = rand.nextS16();
272 int max = rand.nextU16();
reed@android.com80e39a72009-04-02 16:59:40 +0000273
reed@android.comed673312009-02-27 16:24:51 +0000274 int clamp = SkClampMax(value, max);
275 int clamp2 = value < 0 ? 0 : (value > max ? max : value);
276 REPORTER_ASSERT(reporter, clamp == clamp2);
277 }
reed@android.com80e39a72009-04-02 16:59:40 +0000278
reed@android.come72fee52009-11-16 14:52:01 +0000279 for (i = 0; i < 10000; i++) {
reed@android.comed673312009-02-27 16:24:51 +0000280 SkPoint p;
reed@android.com80e39a72009-04-02 16:59:40 +0000281
reed@android.comed673312009-02-27 16:24:51 +0000282 p.setLength(rand.nextS(), rand.nextS(), SK_Scalar1);
283 check_length(reporter, p, SK_Scalar1);
284 p.setLength(rand.nextS() >> 13, rand.nextS() >> 13, SK_Scalar1);
285 check_length(reporter, p, SK_Scalar1);
286 }
reed@android.com80e39a72009-04-02 16:59:40 +0000287
reed@android.comed673312009-02-27 16:24:51 +0000288 {
289 SkFixed result = SkFixedDiv(100, 100);
290 REPORTER_ASSERT(reporter, result == SK_Fixed1);
291 result = SkFixedDiv(1, SK_Fixed1);
292 REPORTER_ASSERT(reporter, result == 1);
293 }
reed@android.com80e39a72009-04-02 16:59:40 +0000294
reed@android.comed673312009-02-27 16:24:51 +0000295#ifdef SK_CAN_USE_FLOAT
296 unittest_fastfloat(reporter);
297#endif
reed@android.com80e39a72009-04-02 16:59:40 +0000298
reed@android.comed673312009-02-27 16:24:51 +0000299#ifdef SkLONGLONG
reed@android.come72fee52009-11-16 14:52:01 +0000300 for (i = 0; i < 10000; i++) {
reed@android.comed673312009-02-27 16:24:51 +0000301 SkFixed numer = rand.nextS();
302 SkFixed denom = rand.nextS();
303 SkFixed result = SkFixedDiv(numer, denom);
304 SkLONGLONG check = ((SkLONGLONG)numer << 16) / denom;
reed@android.com80e39a72009-04-02 16:59:40 +0000305
reed@android.comed673312009-02-27 16:24:51 +0000306 (void)SkCLZ(numer);
307 (void)SkCLZ(denom);
reed@android.com80e39a72009-04-02 16:59:40 +0000308
reed@android.comed673312009-02-27 16:24:51 +0000309 REPORTER_ASSERT(reporter, result != (SkFixed)SK_NaN32);
310 if (check > SK_MaxS32) {
311 check = SK_MaxS32;
312 } else if (check < -SK_MaxS32) {
313 check = SK_MinS32;
314 }
315 REPORTER_ASSERT(reporter, result == (int32_t)check);
reed@android.com80e39a72009-04-02 16:59:40 +0000316
reed@android.comed673312009-02-27 16:24:51 +0000317 result = SkFractDiv(numer, denom);
318 check = ((SkLONGLONG)numer << 30) / denom;
reed@android.com80e39a72009-04-02 16:59:40 +0000319
reed@android.comed673312009-02-27 16:24:51 +0000320 REPORTER_ASSERT(reporter, result != (SkFixed)SK_NaN32);
321 if (check > SK_MaxS32) {
322 check = SK_MaxS32;
323 } else if (check < -SK_MaxS32) {
324 check = SK_MinS32;
325 }
326 REPORTER_ASSERT(reporter, result == (int32_t)check);
reed@android.com80e39a72009-04-02 16:59:40 +0000327
reed@android.comed673312009-02-27 16:24:51 +0000328 // make them <= 2^24, so we don't overflow in fixmul
329 numer = numer << 8 >> 8;
330 denom = denom << 8 >> 8;
reed@android.com80e39a72009-04-02 16:59:40 +0000331
reed@android.comed673312009-02-27 16:24:51 +0000332 result = SkFixedMul(numer, denom);
333 SkFixed r2 = symmetric_fixmul(numer, denom);
334 // SkASSERT(result == r2);
reed@android.com80e39a72009-04-02 16:59:40 +0000335
reed@android.comed673312009-02-27 16:24:51 +0000336 result = SkFixedMul(numer, numer);
337 r2 = SkFixedSquare(numer);
338 REPORTER_ASSERT(reporter, result == r2);
reed@android.com80e39a72009-04-02 16:59:40 +0000339
reed@android.comed673312009-02-27 16:24:51 +0000340#ifdef SK_CAN_USE_FLOAT
341 if (numer >= 0 && denom >= 0) {
342 SkFixed mean = SkFixedMean(numer, denom);
reed@android.com80e39a72009-04-02 16:59:40 +0000343 float prod = SkFixedToFloat(numer) * SkFixedToFloat(denom);
344 float fm = sk_float_sqrt(sk_float_abs(prod));
reed@android.comed673312009-02-27 16:24:51 +0000345 SkFixed mean2 = SkFloatToFixed(fm);
346 int diff = SkAbs32(mean - mean2);
347 REPORTER_ASSERT(reporter, diff <= 1);
348 }
reed@android.com80e39a72009-04-02 16:59:40 +0000349
reed@android.comed673312009-02-27 16:24:51 +0000350 {
351 SkFixed mod = SkFixedMod(numer, denom);
352 float n = SkFixedToFloat(numer);
353 float d = SkFixedToFloat(denom);
354 float m = sk_float_mod(n, d);
reed@android.com80e39a72009-04-02 16:59:40 +0000355 // ensure the same sign
356 REPORTER_ASSERT(reporter, mod == 0 || (mod < 0) == (m < 0));
reed@android.comed673312009-02-27 16:24:51 +0000357 int diff = SkAbs32(mod - SkFloatToFixed(m));
358 REPORTER_ASSERT(reporter, (diff >> 7) == 0);
359 }
360#endif
361 }
362#endif
reed@android.com80e39a72009-04-02 16:59:40 +0000363
reed@android.comed673312009-02-27 16:24:51 +0000364#ifdef SK_CAN_USE_FLOAT
reed@android.come72fee52009-11-16 14:52:01 +0000365 for (i = 0; i < 10000; i++) {
reed@android.comed673312009-02-27 16:24:51 +0000366 SkFract x = rand.nextU() >> 1;
367 double xx = (double)x / SK_Fract1;
368 SkFract xr = SkFractSqrt(x);
369 SkFract check = SkFloatToFract(sqrt(xx));
reed@android.com80e39a72009-04-02 16:59:40 +0000370 REPORTER_ASSERT(reporter, xr == check ||
371 xr == check-1 ||
372 xr == check+1);
373
reed@android.comed673312009-02-27 16:24:51 +0000374 xr = SkFixedSqrt(x);
375 xx = (double)x / SK_Fixed1;
376 check = SkFloatToFixed(sqrt(xx));
377 REPORTER_ASSERT(reporter, xr == check || xr == check-1);
reed@android.com80e39a72009-04-02 16:59:40 +0000378
reed@android.comed673312009-02-27 16:24:51 +0000379 xr = SkSqrt32(x);
380 xx = (double)x;
381 check = (int32_t)sqrt(xx);
382 REPORTER_ASSERT(reporter, xr == check || xr == check-1);
383 }
384#endif
reed@android.com80e39a72009-04-02 16:59:40 +0000385
reed@android.comed673312009-02-27 16:24:51 +0000386#if !defined(SK_SCALAR_IS_FLOAT) && defined(SK_CAN_USE_FLOAT)
387 {
388 SkFixed s, c;
389 s = SkFixedSinCos(0, &c);
390 REPORTER_ASSERT(reporter, s == 0);
391 REPORTER_ASSERT(reporter, c == SK_Fixed1);
392 }
reed@android.com80e39a72009-04-02 16:59:40 +0000393
reed@android.comed673312009-02-27 16:24:51 +0000394 int maxDiff = 0;
reed@android.come72fee52009-11-16 14:52:01 +0000395 for (i = 0; i < 1000; i++) {
reed@android.comed673312009-02-27 16:24:51 +0000396 SkFixed rads = rand.nextS() >> 10;
397 double frads = SkFixedToFloat(rads);
reed@android.com80e39a72009-04-02 16:59:40 +0000398
reed@android.comed673312009-02-27 16:24:51 +0000399 SkFixed s, c;
400 s = SkScalarSinCos(rads, &c);
reed@android.com80e39a72009-04-02 16:59:40 +0000401
reed@android.comed673312009-02-27 16:24:51 +0000402 double fs = sin(frads);
403 double fc = cos(frads);
reed@android.com80e39a72009-04-02 16:59:40 +0000404
reed@android.comed673312009-02-27 16:24:51 +0000405 SkFixed is = SkFloatToFixed(fs);
406 SkFixed ic = SkFloatToFixed(fc);
reed@android.com80e39a72009-04-02 16:59:40 +0000407
reed@android.comed673312009-02-27 16:24:51 +0000408 maxDiff = SkMax32(maxDiff, SkAbs32(is - s));
409 maxDiff = SkMax32(maxDiff, SkAbs32(ic - c));
410 }
411 SkDebugf("SinCos: maximum error = %d\n", maxDiff);
412#endif
413}
414
reed@android.comd8730ea2009-02-27 22:06:06 +0000415#include "TestClassDef.h"
416DEFINE_TESTCLASS("Math", MathTestClass, TestMath)