blob: 38c3dc1319e5e2282266586a6ece5249d5d47ae0 [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);
9
10 a = SkApplySign(a, sa);
11 b = SkApplySign(b, sb);
12
13#if 1
14 int c = (int)(((SkLONGLONG)a * b) >> 16);
15
16 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);
33
34 len /= SkScalarToFloat(targetLen);
35
36 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;
117
118 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++) {
124 // SkDebugf("---- test floats %g %d\n", gFloats[i], (int)gFloats[i]);
125 test_float_conversions(reporter, gFloats[i]);
126 test_float_conversions(reporter, -gFloats[i]);
127 }
128
129 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 }
135
136 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);
159
160 int iround = SkMulDiv255Round(a, b);
161 int itrunc = SkMulDiv255Trunc(a, b);
162
163 REPORTER_ASSERT(reporter, iround == round);
164 REPORTER_ASSERT(reporter, itrunc == trunc);
165
166 REPORTER_ASSERT(reporter, itrunc <= iround);
167 REPORTER_ASSERT(reporter, iround <= a);
168 REPORTER_ASSERT(reporter, iround <= b);
169 }
170 }
171#endif
172}
173
174static void TestMath(skiatest::Reporter* reporter) {
175 int i;
176 int32_t x;
177 SkRandom rand;
178
reed@android.comed673312009-02-27 16:24:51 +0000179 // these should assert
180#if 0
181 SkToS8(128);
182 SkToS8(-129);
183 SkToU8(256);
184 SkToU8(-5);
185
186 SkToS16(32768);
187 SkToS16(-32769);
188 SkToU16(65536);
189 SkToU16(-5);
190
191 if (sizeof(size_t) > 4) {
192 SkToS32(4*1024*1024);
193 SkToS32(-4*1024*1024);
194 SkToU32(5*1024*1024);
195 SkToU32(-5);
196 }
197#endif
198
199 test_muldiv255(reporter);
200
201 {
202 SkScalar x = SK_ScalarNaN;
203 REPORTER_ASSERT(reporter, SkScalarIsNaN(x));
204 }
205
206 for (i = 1; i <= 10; i++) {
207 x = SkCubeRootBits(i*i*i, 11);
208 REPORTER_ASSERT(reporter, x == i);
209 }
210
reed@android.comed673312009-02-27 16:24:51 +0000211 x = SkFixedSqrt(SK_Fixed1);
212 REPORTER_ASSERT(reporter, x == SK_Fixed1);
213 x = SkFixedSqrt(SK_Fixed1/4);
214 REPORTER_ASSERT(reporter, x == SK_Fixed1/2);
215 x = SkFixedSqrt(SK_Fixed1*4);
216 REPORTER_ASSERT(reporter, x == SK_Fixed1*2);
217
218 x = SkFractSqrt(SK_Fract1);
219 REPORTER_ASSERT(reporter, x == SK_Fract1);
220 x = SkFractSqrt(SK_Fract1/4);
221 REPORTER_ASSERT(reporter, x == SK_Fract1/2);
222 x = SkFractSqrt(SK_Fract1/16);
223 REPORTER_ASSERT(reporter, x == SK_Fract1/4);
224
225 for (i = 1; i < 100; i++) {
226 x = SkFixedSqrt(SK_Fixed1 * i * i);
227 REPORTER_ASSERT(reporter, x == SK_Fixed1 * i);
228 }
229
230 for (i = 0; i < 1000; i++) {
231 int value = rand.nextS16();
232 int max = rand.nextU16();
233
234 int clamp = SkClampMax(value, max);
235 int clamp2 = value < 0 ? 0 : (value > max ? max : value);
236 REPORTER_ASSERT(reporter, clamp == clamp2);
237 }
238
239 for (i = 0; i < 100000; i++) {
240 SkPoint p;
241
242 p.setLength(rand.nextS(), rand.nextS(), SK_Scalar1);
243 check_length(reporter, p, SK_Scalar1);
244 p.setLength(rand.nextS() >> 13, rand.nextS() >> 13, SK_Scalar1);
245 check_length(reporter, p, SK_Scalar1);
246 }
247
248 {
249 SkFixed result = SkFixedDiv(100, 100);
250 REPORTER_ASSERT(reporter, result == SK_Fixed1);
251 result = SkFixedDiv(1, SK_Fixed1);
252 REPORTER_ASSERT(reporter, result == 1);
253 }
254
255#ifdef SK_CAN_USE_FLOAT
256 unittest_fastfloat(reporter);
257#endif
258
259#ifdef SkLONGLONG
260 for (i = 0; i < 100000; i++) {
261 SkFixed numer = rand.nextS();
262 SkFixed denom = rand.nextS();
263 SkFixed result = SkFixedDiv(numer, denom);
264 SkLONGLONG check = ((SkLONGLONG)numer << 16) / denom;
265
266 (void)SkCLZ(numer);
267 (void)SkCLZ(denom);
268
269 REPORTER_ASSERT(reporter, result != (SkFixed)SK_NaN32);
270 if (check > SK_MaxS32) {
271 check = SK_MaxS32;
272 } else if (check < -SK_MaxS32) {
273 check = SK_MinS32;
274 }
275 REPORTER_ASSERT(reporter, result == (int32_t)check);
276
277 result = SkFractDiv(numer, denom);
278 check = ((SkLONGLONG)numer << 30) / denom;
279
280 REPORTER_ASSERT(reporter, result != (SkFixed)SK_NaN32);
281 if (check > SK_MaxS32) {
282 check = SK_MaxS32;
283 } else if (check < -SK_MaxS32) {
284 check = SK_MinS32;
285 }
286 REPORTER_ASSERT(reporter, result == (int32_t)check);
287
288 // make them <= 2^24, so we don't overflow in fixmul
289 numer = numer << 8 >> 8;
290 denom = denom << 8 >> 8;
291
292 result = SkFixedMul(numer, denom);
293 SkFixed r2 = symmetric_fixmul(numer, denom);
294 // SkASSERT(result == r2);
295
296 result = SkFixedMul(numer, numer);
297 r2 = SkFixedSquare(numer);
298 REPORTER_ASSERT(reporter, result == r2);
299
300#ifdef SK_CAN_USE_FLOAT
301 if (numer >= 0 && denom >= 0) {
302 SkFixed mean = SkFixedMean(numer, denom);
303 float fm = sk_float_sqrt(sk_float_abs(SkFixedToFloat(numer) * SkFixedToFloat(denom)));
304 SkFixed mean2 = SkFloatToFixed(fm);
305 int diff = SkAbs32(mean - mean2);
306 REPORTER_ASSERT(reporter, diff <= 1);
307 }
308
309 {
310 SkFixed mod = SkFixedMod(numer, denom);
311 float n = SkFixedToFloat(numer);
312 float d = SkFixedToFloat(denom);
313 float m = sk_float_mod(n, d);
314 REPORTER_ASSERT(reporter, mod == 0 || (mod < 0) == (m < 0)); // ensure the same sign
315 int diff = SkAbs32(mod - SkFloatToFixed(m));
316 REPORTER_ASSERT(reporter, (diff >> 7) == 0);
317 }
318#endif
319 }
320#endif
321
322#ifdef SK_CAN_USE_FLOAT
323 for (i = 0; i < 100000; i++) {
324 SkFract x = rand.nextU() >> 1;
325 double xx = (double)x / SK_Fract1;
326 SkFract xr = SkFractSqrt(x);
327 SkFract check = SkFloatToFract(sqrt(xx));
328 REPORTER_ASSERT(reporter, xr == check || xr == check-1 || xr == check+1);
329
330 xr = SkFixedSqrt(x);
331 xx = (double)x / SK_Fixed1;
332 check = SkFloatToFixed(sqrt(xx));
333 REPORTER_ASSERT(reporter, xr == check || xr == check-1);
334
335 xr = SkSqrt32(x);
336 xx = (double)x;
337 check = (int32_t)sqrt(xx);
338 REPORTER_ASSERT(reporter, xr == check || xr == check-1);
339 }
340#endif
341
342#if !defined(SK_SCALAR_IS_FLOAT) && defined(SK_CAN_USE_FLOAT)
343 {
344 SkFixed s, c;
345 s = SkFixedSinCos(0, &c);
346 REPORTER_ASSERT(reporter, s == 0);
347 REPORTER_ASSERT(reporter, c == SK_Fixed1);
348 }
349
350 int maxDiff = 0;
351 for (i = 0; i < 10000; i++) {
352 SkFixed rads = rand.nextS() >> 10;
353 double frads = SkFixedToFloat(rads);
354
355 SkFixed s, c;
356 s = SkScalarSinCos(rads, &c);
357
358 double fs = sin(frads);
359 double fc = cos(frads);
360
361 SkFixed is = SkFloatToFixed(fs);
362 SkFixed ic = SkFloatToFixed(fc);
363
364 maxDiff = SkMax32(maxDiff, SkAbs32(is - s));
365 maxDiff = SkMax32(maxDiff, SkAbs32(ic - c));
366 }
367 SkDebugf("SinCos: maximum error = %d\n", maxDiff);
368#endif
369}
370
reed@android.comd8730ea2009-02-27 22:06:06 +0000371#include "TestClassDef.h"
372DEFINE_TESTCLASS("Math", MathTestClass, TestMath)