]>
Commit | Line | Data |
---|---|---|
9dae56ea A |
1 | /* |
2 | * Copyright (C) 1999-2000 Harri Porten (porten@kde.org) | |
3 | * Copyright (C) 2007, 2008 Apple Inc. All Rights Reserved. | |
4 | * | |
5 | * This library is free software; you can redistribute it and/or | |
6 | * modify it under the terms of the GNU Lesser General Public | |
7 | * License as published by the Free Software Foundation; either | |
8 | * version 2 of the License, or (at your option) any later version. | |
9 | * | |
10 | * This library is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | * Lesser General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU Lesser General Public | |
16 | * License along with this library; if not, write to the Free Software | |
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | * | |
19 | */ | |
20 | ||
21 | #include "config.h" | |
22 | #include "MathObject.h" | |
23 | ||
4e4e5a6f | 24 | #include "Lookup.h" |
9dae56ea A |
25 | #include "ObjectPrototype.h" |
26 | #include "Operations.h" | |
27 | #include <time.h> | |
28 | #include <wtf/Assertions.h> | |
29 | #include <wtf/MathExtras.h> | |
30 | #include <wtf/RandomNumber.h> | |
31 | #include <wtf/RandomNumberSeed.h> | |
32 | ||
33 | namespace JSC { | |
34 | ||
93a37866 | 35 | ASSERT_HAS_TRIVIAL_DESTRUCTOR(MathObject); |
9dae56ea | 36 | |
14957cd0 A |
37 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncAbs(ExecState*); |
38 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncACos(ExecState*); | |
39 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncASin(ExecState*); | |
40 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncATan(ExecState*); | |
41 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncATan2(ExecState*); | |
42 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncCeil(ExecState*); | |
43 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncCos(ExecState*); | |
44 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncExp(ExecState*); | |
45 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncFloor(ExecState*); | |
46 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncLog(ExecState*); | |
47 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncMax(ExecState*); | |
48 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncMin(ExecState*); | |
49 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncPow(ExecState*); | |
50 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncRandom(ExecState*); | |
51 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncRound(ExecState*); | |
52 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncSin(ExecState*); | |
53 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncSqrt(ExecState*); | |
54 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncTan(ExecState*); | |
93a37866 | 55 | static EncodedJSValue JSC_HOST_CALL mathProtoFuncIMul(ExecState*); |
9dae56ea A |
56 | |
57 | } | |
58 | ||
59 | #include "MathObject.lut.h" | |
60 | ||
61 | namespace JSC { | |
62 | ||
93a37866 | 63 | const ClassInfo MathObject::s_info = { "Math", &Base::s_info, 0, ExecState::mathTable, CREATE_METHOD_TABLE(MathObject) }; |
9dae56ea A |
64 | |
65 | /* Source for MathObject.lut.h | |
66 | @begin mathTable | |
67 | abs mathProtoFuncAbs DontEnum|Function 1 | |
68 | acos mathProtoFuncACos DontEnum|Function 1 | |
69 | asin mathProtoFuncASin DontEnum|Function 1 | |
70 | atan mathProtoFuncATan DontEnum|Function 1 | |
71 | atan2 mathProtoFuncATan2 DontEnum|Function 2 | |
72 | ceil mathProtoFuncCeil DontEnum|Function 1 | |
73 | cos mathProtoFuncCos DontEnum|Function 1 | |
74 | exp mathProtoFuncExp DontEnum|Function 1 | |
75 | floor mathProtoFuncFloor DontEnum|Function 1 | |
76 | log mathProtoFuncLog DontEnum|Function 1 | |
77 | max mathProtoFuncMax DontEnum|Function 2 | |
78 | min mathProtoFuncMin DontEnum|Function 2 | |
79 | pow mathProtoFuncPow DontEnum|Function 2 | |
80 | random mathProtoFuncRandom DontEnum|Function 0 | |
81 | round mathProtoFuncRound DontEnum|Function 1 | |
82 | sin mathProtoFuncSin DontEnum|Function 1 | |
83 | sqrt mathProtoFuncSqrt DontEnum|Function 1 | |
84 | tan mathProtoFuncTan DontEnum|Function 1 | |
93a37866 | 85 | imul mathProtoFuncIMul DontEnum|Function 2 |
9dae56ea A |
86 | @end |
87 | */ | |
88 | ||
6fe7ccc8 | 89 | MathObject::MathObject(JSGlobalObject* globalObject, Structure* structure) |
93a37866 | 90 | : JSNonFinalObject(globalObject->vm(), structure) |
6fe7ccc8 A |
91 | { |
92 | } | |
93 | ||
94 | void MathObject::finishCreation(ExecState* exec, JSGlobalObject* globalObject) | |
9dae56ea | 95 | { |
93a37866 | 96 | Base::finishCreation(globalObject->vm()); |
14957cd0 | 97 | ASSERT(inherits(&s_info)); |
9dae56ea | 98 | |
93a37866 A |
99 | putDirectWithoutTransition(exec->vm(), Identifier(exec, "E"), jsNumber(exp(1.0)), DontDelete | DontEnum | ReadOnly); |
100 | putDirectWithoutTransition(exec->vm(), Identifier(exec, "LN2"), jsNumber(log(2.0)), DontDelete | DontEnum | ReadOnly); | |
101 | putDirectWithoutTransition(exec->vm(), Identifier(exec, "LN10"), jsNumber(log(10.0)), DontDelete | DontEnum | ReadOnly); | |
102 | putDirectWithoutTransition(exec->vm(), Identifier(exec, "LOG2E"), jsNumber(1.0 / log(2.0)), DontDelete | DontEnum | ReadOnly); | |
103 | putDirectWithoutTransition(exec->vm(), Identifier(exec, "LOG10E"), jsNumber(0.4342944819032518), DontDelete | DontEnum | ReadOnly); // See ECMA-262 15.8.1.5 | |
104 | putDirectWithoutTransition(exec->vm(), Identifier(exec, "PI"), jsNumber(piDouble), DontDelete | DontEnum | ReadOnly); | |
105 | putDirectWithoutTransition(exec->vm(), Identifier(exec, "SQRT1_2"), jsNumber(sqrt(0.5)), DontDelete | DontEnum | ReadOnly); | |
106 | putDirectWithoutTransition(exec->vm(), Identifier(exec, "SQRT2"), jsNumber(sqrt(2.0)), DontDelete | DontEnum | ReadOnly); | |
14957cd0 | 107 | } |
9dae56ea | 108 | |
93a37866 | 109 | bool MathObject::getOwnPropertySlot(JSCell* cell, ExecState* exec, PropertyName propertyName, PropertySlot &slot) |
9dae56ea | 110 | { |
6fe7ccc8 | 111 | return getStaticFunctionSlot<JSObject>(exec, ExecState::mathTable(exec), jsCast<MathObject*>(cell), propertyName, slot); |
f9bf01c6 | 112 | } |
9dae56ea | 113 | |
93a37866 | 114 | bool MathObject::getOwnPropertyDescriptor(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor) |
f9bf01c6 | 115 | { |
6fe7ccc8 | 116 | return getStaticFunctionDescriptor<JSObject>(exec, ExecState::mathTable(exec), jsCast<MathObject*>(object), propertyName, descriptor); |
9dae56ea A |
117 | } |
118 | ||
119 | // ------------------------------ Functions -------------------------------- | |
120 | ||
14957cd0 | 121 | EncodedJSValue JSC_HOST_CALL mathProtoFuncAbs(ExecState* exec) |
9dae56ea | 122 | { |
14957cd0 | 123 | return JSValue::encode(jsNumber(fabs(exec->argument(0).toNumber(exec)))); |
9dae56ea A |
124 | } |
125 | ||
14957cd0 | 126 | EncodedJSValue JSC_HOST_CALL mathProtoFuncACos(ExecState* exec) |
9dae56ea | 127 | { |
14957cd0 | 128 | return JSValue::encode(jsDoubleNumber(acos(exec->argument(0).toNumber(exec)))); |
9dae56ea A |
129 | } |
130 | ||
14957cd0 | 131 | EncodedJSValue JSC_HOST_CALL mathProtoFuncASin(ExecState* exec) |
9dae56ea | 132 | { |
14957cd0 | 133 | return JSValue::encode(jsDoubleNumber(asin(exec->argument(0).toNumber(exec)))); |
9dae56ea A |
134 | } |
135 | ||
14957cd0 | 136 | EncodedJSValue JSC_HOST_CALL mathProtoFuncATan(ExecState* exec) |
9dae56ea | 137 | { |
14957cd0 | 138 | return JSValue::encode(jsDoubleNumber(atan(exec->argument(0).toNumber(exec)))); |
9dae56ea A |
139 | } |
140 | ||
14957cd0 | 141 | EncodedJSValue JSC_HOST_CALL mathProtoFuncATan2(ExecState* exec) |
9dae56ea | 142 | { |
14957cd0 A |
143 | double arg0 = exec->argument(0).toNumber(exec); |
144 | double arg1 = exec->argument(1).toNumber(exec); | |
145 | return JSValue::encode(jsDoubleNumber(atan2(arg0, arg1))); | |
9dae56ea A |
146 | } |
147 | ||
14957cd0 | 148 | EncodedJSValue JSC_HOST_CALL mathProtoFuncCeil(ExecState* exec) |
9dae56ea | 149 | { |
14957cd0 | 150 | return JSValue::encode(jsNumber(ceil(exec->argument(0).toNumber(exec)))); |
9dae56ea A |
151 | } |
152 | ||
14957cd0 | 153 | EncodedJSValue JSC_HOST_CALL mathProtoFuncCos(ExecState* exec) |
9dae56ea | 154 | { |
14957cd0 | 155 | return JSValue::encode(jsDoubleNumber(cos(exec->argument(0).toNumber(exec)))); |
9dae56ea A |
156 | } |
157 | ||
14957cd0 | 158 | EncodedJSValue JSC_HOST_CALL mathProtoFuncExp(ExecState* exec) |
9dae56ea | 159 | { |
14957cd0 | 160 | return JSValue::encode(jsDoubleNumber(exp(exec->argument(0).toNumber(exec)))); |
9dae56ea A |
161 | } |
162 | ||
14957cd0 | 163 | EncodedJSValue JSC_HOST_CALL mathProtoFuncFloor(ExecState* exec) |
9dae56ea | 164 | { |
14957cd0 | 165 | return JSValue::encode(jsNumber(floor(exec->argument(0).toNumber(exec)))); |
9dae56ea A |
166 | } |
167 | ||
14957cd0 | 168 | EncodedJSValue JSC_HOST_CALL mathProtoFuncLog(ExecState* exec) |
9dae56ea | 169 | { |
14957cd0 | 170 | return JSValue::encode(jsDoubleNumber(log(exec->argument(0).toNumber(exec)))); |
9dae56ea A |
171 | } |
172 | ||
14957cd0 | 173 | EncodedJSValue JSC_HOST_CALL mathProtoFuncMax(ExecState* exec) |
9dae56ea | 174 | { |
14957cd0 | 175 | unsigned argsCount = exec->argumentCount(); |
6fe7ccc8 | 176 | double result = -std::numeric_limits<double>::infinity(); |
9dae56ea | 177 | for (unsigned k = 0; k < argsCount; ++k) { |
14957cd0 | 178 | double val = exec->argument(k).toNumber(exec); |
93a37866 A |
179 | if (std::isnan(val)) { |
180 | result = QNaN; | |
9dae56ea A |
181 | break; |
182 | } | |
93a37866 | 183 | if (val > result || (!val && !result && !std::signbit(val))) |
9dae56ea A |
184 | result = val; |
185 | } | |
14957cd0 | 186 | return JSValue::encode(jsNumber(result)); |
9dae56ea A |
187 | } |
188 | ||
14957cd0 | 189 | EncodedJSValue JSC_HOST_CALL mathProtoFuncMin(ExecState* exec) |
9dae56ea | 190 | { |
14957cd0 | 191 | unsigned argsCount = exec->argumentCount(); |
6fe7ccc8 | 192 | double result = +std::numeric_limits<double>::infinity(); |
9dae56ea | 193 | for (unsigned k = 0; k < argsCount; ++k) { |
14957cd0 | 194 | double val = exec->argument(k).toNumber(exec); |
93a37866 A |
195 | if (std::isnan(val)) { |
196 | result = QNaN; | |
9dae56ea A |
197 | break; |
198 | } | |
93a37866 | 199 | if (val < result || (!val && !result && std::signbit(val))) |
9dae56ea A |
200 | result = val; |
201 | } | |
14957cd0 | 202 | return JSValue::encode(jsNumber(result)); |
9dae56ea A |
203 | } |
204 | ||
93a37866 | 205 | #if PLATFORM(IOS) && CPU(ARM_THUMB2) |
6fe7ccc8 A |
206 | |
207 | static double fdlibmPow(double x, double y); | |
208 | ||
209 | static ALWAYS_INLINE bool isDenormal(double x) | |
210 | { | |
211 | static const uint64_t signbit = 0x8000000000000000ULL; | |
212 | static const uint64_t minNormal = 0x0001000000000000ULL; | |
213 | return (bitwise_cast<uint64_t>(x) & ~signbit) - 1 < minNormal - 1; | |
214 | } | |
215 | ||
216 | static ALWAYS_INLINE bool isEdgeCase(double x) | |
217 | { | |
218 | static const uint64_t signbit = 0x8000000000000000ULL; | |
219 | static const uint64_t infinity = 0x7fffffffffffffffULL; | |
220 | return (bitwise_cast<uint64_t>(x) & ~signbit) - 1 >= infinity - 1; | |
221 | } | |
222 | ||
223 | static ALWAYS_INLINE double mathPow(double x, double y) | |
224 | { | |
225 | if (!isDenormal(x) && !isDenormal(y)) { | |
226 | double libmResult = pow(x,y); | |
227 | if (libmResult || isEdgeCase(x) || isEdgeCase(y)) | |
228 | return libmResult; | |
229 | } | |
230 | return fdlibmPow(x,y); | |
231 | } | |
232 | ||
233 | #else | |
234 | ||
235 | ALWAYS_INLINE double mathPow(double x, double y) | |
236 | { | |
237 | return pow(x, y); | |
238 | } | |
239 | ||
240 | #endif | |
241 | ||
14957cd0 | 242 | EncodedJSValue JSC_HOST_CALL mathProtoFuncPow(ExecState* exec) |
9dae56ea A |
243 | { |
244 | // ECMA 15.8.2.1.13 | |
245 | ||
14957cd0 A |
246 | double arg = exec->argument(0).toNumber(exec); |
247 | double arg2 = exec->argument(1).toNumber(exec); | |
9dae56ea | 248 | |
93a37866 | 249 | if (std::isnan(arg2)) |
14957cd0 | 250 | return JSValue::encode(jsNaN()); |
93a37866 | 251 | if (std::isinf(arg2) && fabs(arg) == 1) |
14957cd0 | 252 | return JSValue::encode(jsNaN()); |
6fe7ccc8 | 253 | return JSValue::encode(jsNumber(mathPow(arg, arg2))); |
9dae56ea A |
254 | } |
255 | ||
14957cd0 | 256 | EncodedJSValue JSC_HOST_CALL mathProtoFuncRandom(ExecState* exec) |
9dae56ea | 257 | { |
14957cd0 | 258 | return JSValue::encode(jsDoubleNumber(exec->lexicalGlobalObject()->weakRandomNumber())); |
9dae56ea A |
259 | } |
260 | ||
14957cd0 | 261 | EncodedJSValue JSC_HOST_CALL mathProtoFuncRound(ExecState* exec) |
9dae56ea | 262 | { |
14957cd0 | 263 | double arg = exec->argument(0).toNumber(exec); |
4e4e5a6f | 264 | double integer = ceil(arg); |
14957cd0 | 265 | return JSValue::encode(jsNumber(integer - (integer - arg > 0.5))); |
9dae56ea A |
266 | } |
267 | ||
14957cd0 | 268 | EncodedJSValue JSC_HOST_CALL mathProtoFuncSin(ExecState* exec) |
9dae56ea | 269 | { |
93a37866 | 270 | return JSValue::encode(exec->vm().cachedSin(exec->argument(0).toNumber(exec))); |
9dae56ea A |
271 | } |
272 | ||
14957cd0 | 273 | EncodedJSValue JSC_HOST_CALL mathProtoFuncSqrt(ExecState* exec) |
9dae56ea | 274 | { |
14957cd0 | 275 | return JSValue::encode(jsDoubleNumber(sqrt(exec->argument(0).toNumber(exec)))); |
9dae56ea A |
276 | } |
277 | ||
14957cd0 | 278 | EncodedJSValue JSC_HOST_CALL mathProtoFuncTan(ExecState* exec) |
9dae56ea | 279 | { |
14957cd0 | 280 | return JSValue::encode(jsDoubleNumber(tan(exec->argument(0).toNumber(exec)))); |
9dae56ea A |
281 | } |
282 | ||
93a37866 A |
283 | EncodedJSValue JSC_HOST_CALL mathProtoFuncIMul(ExecState* exec) |
284 | { | |
285 | int32_t left = exec->argument(0).toInt32(exec); | |
286 | if (exec->hadException()) | |
287 | return JSValue::encode(jsNull()); | |
288 | int32_t right = exec->argument(1).toInt32(exec); | |
289 | return JSValue::encode(jsNumber(left * right)); | |
290 | } | |
291 | ||
292 | #if PLATFORM(IOS) && CPU(ARM_THUMB2) | |
6fe7ccc8 A |
293 | |
294 | // The following code is taken from netlib.org: | |
295 | // http://www.netlib.org/fdlibm/fdlibm.h | |
296 | // http://www.netlib.org/fdlibm/e_pow.c | |
297 | // http://www.netlib.org/fdlibm/s_scalbn.c | |
298 | // | |
299 | // And was originally distributed under the following license: | |
300 | ||
301 | /* | |
302 | * ==================================================== | |
303 | * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. | |
304 | * | |
305 | * Developed at SunSoft, a Sun Microsystems, Inc. business. | |
306 | * Permission to use, copy, modify, and distribute this | |
307 | * software is freely granted, provided that this notice | |
308 | * is preserved. | |
309 | * ==================================================== | |
310 | */ | |
311 | /* | |
312 | * ==================================================== | |
313 | * Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved. | |
314 | * | |
315 | * Permission to use, copy, modify, and distribute this | |
316 | * software is freely granted, provided that this notice | |
317 | * is preserved. | |
318 | * ==================================================== | |
319 | */ | |
320 | ||
321 | /* __ieee754_pow(x,y) return x**y | |
322 | * | |
93a37866 | 323 | * n |
6fe7ccc8 | 324 | * Method: Let x = 2 * (1+f) |
93a37866 A |
325 | * 1. Compute and return log2(x) in two pieces: |
326 | * log2(x) = w1 + w2, | |
327 | * where w1 has 53-24 = 29 bit trailing zeros. | |
328 | * 2. Perform y*log2(x) = n+y' by simulating muti-precision | |
329 | * arithmetic, where |y'|<=0.5. | |
330 | * 3. Return x**y = 2**n*exp(y'*log2) | |
6fe7ccc8 A |
331 | * |
332 | * Special cases: | |
93a37866 A |
333 | * 1. (anything) ** 0 is 1 |
334 | * 2. (anything) ** 1 is itself | |
335 | * 3. (anything) ** NAN is NAN | |
336 | * 4. NAN ** (anything except 0) is NAN | |
337 | * 5. +-(|x| > 1) ** +INF is +INF | |
338 | * 6. +-(|x| > 1) ** -INF is +0 | |
339 | * 7. +-(|x| < 1) ** +INF is +0 | |
340 | * 8. +-(|x| < 1) ** -INF is +INF | |
341 | * 9. +-1 ** +-INF is NAN | |
342 | * 10. +0 ** (+anything except 0, NAN) is +0 | |
343 | * 11. -0 ** (+anything except 0, NAN, odd integer) is +0 | |
344 | * 12. +0 ** (-anything except 0, NAN) is +INF | |
345 | * 13. -0 ** (-anything except 0, NAN, odd integer) is +INF | |
346 | * 14. -0 ** (odd integer) = -( +0 ** (odd integer) ) | |
347 | * 15. +INF ** (+anything except 0,NAN) is +INF | |
348 | * 16. +INF ** (-anything except 0,NAN) is +0 | |
349 | * 17. -INF ** (anything) = -0 ** (-anything) | |
350 | * 18. (-anything) ** (integer) is (-1)**(integer)*(+anything**integer) | |
351 | * 19. (-anything except 0 and inf) ** (non-integer) is NAN | |
6fe7ccc8 A |
352 | * |
353 | * Accuracy: | |
93a37866 A |
354 | * pow(x,y) returns x**y nearly rounded. In particular |
355 | * pow(integer,integer) | |
356 | * always returns the correct integer provided it is | |
357 | * representable. | |
6fe7ccc8 A |
358 | * |
359 | * Constants : | |
360 | * The hexadecimal values are the intended ones for the following | |
361 | * constants. The decimal values may be used, provided that the | |
362 | * compiler will convert from decimal to binary accurately enough | |
363 | * to produce the hexadecimal values shown. | |
364 | */ | |
365 | ||
366 | #define __HI(x) *(1+(int*)&x) | |
367 | #define __LO(x) *(int*)&x | |
368 | ||
369 | static const double | |
370 | bp[] = {1.0, 1.5,}, | |
371 | dp_h[] = { 0.0, 5.84962487220764160156e-01,}, /* 0x3FE2B803, 0x40000000 */ | |
372 | dp_l[] = { 0.0, 1.35003920212974897128e-08,}, /* 0x3E4CFDEB, 0x43CFD006 */ | |
373 | zero = 0.0, | |
93a37866 A |
374 | one = 1.0, |
375 | two = 2.0, | |
376 | two53 = 9007199254740992.0, /* 0x43400000, 0x00000000 */ | |
377 | huge = 1.0e300, | |
6fe7ccc8 A |
378 | tiny = 1.0e-300, |
379 | /* for scalbn */ | |
380 | two54 = 1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */ | |
381 | twom54 = 5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */ | |
93a37866 | 382 | /* poly coefs for (3/2)*(log(x)-2s-2/3*s**3 */ |
6fe7ccc8 A |
383 | L1 = 5.99999999999994648725e-01, /* 0x3FE33333, 0x33333303 */ |
384 | L2 = 4.28571428578550184252e-01, /* 0x3FDB6DB6, 0xDB6FABFF */ | |
385 | L3 = 3.33333329818377432918e-01, /* 0x3FD55555, 0x518F264D */ | |
386 | L4 = 2.72728123808534006489e-01, /* 0x3FD17460, 0xA91D4101 */ | |
387 | L5 = 2.30660745775561754067e-01, /* 0x3FCD864A, 0x93C9DB65 */ | |
388 | L6 = 2.06975017800338417784e-01, /* 0x3FCA7E28, 0x4A454EEF */ | |
389 | P1 = 1.66666666666666019037e-01, /* 0x3FC55555, 0x5555553E */ | |
390 | P2 = -2.77777777770155933842e-03, /* 0xBF66C16C, 0x16BEBD93 */ | |
391 | P3 = 6.61375632143793436117e-05, /* 0x3F11566A, 0xAF25DE2C */ | |
392 | P4 = -1.65339022054652515390e-06, /* 0xBEBBBD41, 0xC5D26BF1 */ | |
393 | P5 = 4.13813679705723846039e-08, /* 0x3E663769, 0x72BEA4D0 */ | |
394 | lg2 = 6.93147180559945286227e-01, /* 0x3FE62E42, 0xFEFA39EF */ | |
395 | lg2_h = 6.93147182464599609375e-01, /* 0x3FE62E43, 0x00000000 */ | |
396 | lg2_l = -1.90465429995776804525e-09, /* 0xBE205C61, 0x0CA86C39 */ | |
397 | ovt = 8.0085662595372944372e-0017, /* -(1024-log2(ovfl+.5ulp)) */ | |
398 | cp = 9.61796693925975554329e-01, /* 0x3FEEC709, 0xDC3A03FD =2/(3ln2) */ | |
399 | cp_h = 9.61796700954437255859e-01, /* 0x3FEEC709, 0xE0000000 =(float)cp */ | |
400 | cp_l = -7.02846165095275826516e-09, /* 0xBE3E2FE0, 0x145B01F5 =tail of cp_h*/ | |
401 | ivln2 = 1.44269504088896338700e+00, /* 0x3FF71547, 0x652B82FE =1/ln2 */ | |
402 | ivln2_h = 1.44269502162933349609e+00, /* 0x3FF71547, 0x60000000 =24b 1/ln2*/ | |
403 | ivln2_l = 1.92596299112661746887e-08; /* 0x3E54AE0B, 0xF85DDF44 =1/ln2 tail*/ | |
404 | ||
405 | inline double fdlibmScalbn (double x, int n) | |
406 | { | |
93a37866 A |
407 | int k,hx,lx; |
408 | hx = __HI(x); | |
409 | lx = __LO(x); | |
410 | k = (hx&0x7ff00000)>>20; /* extract exponent */ | |
411 | if (k==0) { /* 0 or subnormal x */ | |
6fe7ccc8 | 412 | if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */ |
93a37866 A |
413 | x *= two54; |
414 | hx = __HI(x); | |
415 | k = ((hx&0x7ff00000)>>20) - 54; | |
416 | if (n< -50000) return tiny*x; /*underflow*/ | |
417 | } | |
418 | if (k==0x7ff) return x+x; /* NaN or Inf */ | |
6fe7ccc8 A |
419 | k = k+n; |
420 | if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */ | |
93a37866 A |
421 | if (k > 0) /* normal result */ |
422 | {__HI(x) = (hx&0x800fffff)|(k<<20); return x;} | |
6fe7ccc8 | 423 | if (k <= -54) { |
93a37866 A |
424 | if (n > 50000) /* in case integer overflow in n+k */ |
425 | return huge*copysign(huge,x); /*overflow*/ | |
426 | else return tiny*copysign(tiny,x); /*underflow*/ | |
6fe7ccc8 | 427 | } |
93a37866 | 428 | k += 54; /* subnormal result */ |
6fe7ccc8 A |
429 | __HI(x) = (hx&0x800fffff)|(k<<20); |
430 | return x*twom54; | |
431 | } | |
432 | ||
433 | double fdlibmPow(double x, double y) | |
434 | { | |
93a37866 A |
435 | double z,ax,z_h,z_l,p_h,p_l; |
436 | double y1,t1,t2,r,s,t,u,v,w; | |
437 | int i0,i1,i,j,k,yisint,n; | |
438 | int hx,hy,ix,iy; | |
439 | unsigned lx,ly; | |
6fe7ccc8 | 440 | |
93a37866 A |
441 | i0 = ((*(int*)&one)>>29)^1; i1=1-i0; |
442 | hx = __HI(x); lx = __LO(x); | |
443 | hy = __HI(y); ly = __LO(y); | |
444 | ix = hx&0x7fffffff; iy = hy&0x7fffffff; | |
6fe7ccc8 A |
445 | |
446 | /* y==zero: x**0 = 1 */ | |
93a37866 | 447 | if((iy|ly)==0) return one; |
6fe7ccc8 A |
448 | |
449 | /* +-NaN return x+y */ | |
93a37866 A |
450 | if(ix > 0x7ff00000 || ((ix==0x7ff00000)&&(lx!=0)) || |
451 | iy > 0x7ff00000 || ((iy==0x7ff00000)&&(ly!=0))) | |
452 | return x+y; | |
6fe7ccc8 A |
453 | |
454 | /* determine if y is an odd int when x < 0 | |
93a37866 A |
455 | * yisint = 0 ... y is not an integer |
456 | * yisint = 1 ... y is an odd int | |
457 | * yisint = 2 ... y is an even int | |
6fe7ccc8 | 458 | */ |
93a37866 A |
459 | yisint = 0; |
460 | if(hx<0) { | |
461 | if(iy>=0x43400000) yisint = 2; /* even integer y */ | |
462 | else if(iy>=0x3ff00000) { | |
463 | k = (iy>>20)-0x3ff; /* exponent */ | |
464 | if(k>20) { | |
465 | j = ly>>(52-k); | |
466 | if(static_cast<unsigned>(j<<(52-k))==ly) yisint = 2-(j&1); | |
467 | } else if(ly==0) { | |
468 | j = iy>>(20-k); | |
469 | if((j<<(20-k))==iy) yisint = 2-(j&1); | |
470 | } | |
471 | } | |
472 | } | |
6fe7ccc8 A |
473 | |
474 | /* special value of y */ | |
93a37866 A |
475 | if(ly==0) { |
476 | if (iy==0x7ff00000) { /* y is +-inf */ | |
477 | if(((ix-0x3ff00000)|lx)==0) | |
478 | return y - y; /* inf**+-1 is NaN */ | |
479 | else if (ix >= 0x3ff00000)/* (|x|>1)**+-inf = inf,0 */ | |
480 | return (hy>=0)? y: zero; | |
481 | else /* (|x|<1)**-,+inf = inf,0 */ | |
482 | return (hy<0)?-y: zero; | |
483 | } | |
484 | if(iy==0x3ff00000) { /* y is +-1 */ | |
485 | if(hy<0) return one/x; else return x; | |
486 | } | |
487 | if(hy==0x40000000) return x*x; /* y is 2 */ | |
488 | if(hy==0x3fe00000) { /* y is 0.5 */ | |
489 | if(hx>=0) /* x >= +0 */ | |
490 | return sqrt(x); | |
491 | } | |
492 | } | |
493 | ||
494 | ax = fabs(x); | |
6fe7ccc8 | 495 | /* special value of x */ |
93a37866 A |
496 | if(lx==0) { |
497 | if(ix==0x7ff00000||ix==0||ix==0x3ff00000){ | |
498 | z = ax; /*x is +-0,+-inf,+-1*/ | |
499 | if(hy<0) z = one/z; /* z = (1/|x|) */ | |
500 | if(hx<0) { | |
501 | if(((ix-0x3ff00000)|yisint)==0) { | |
502 | z = (z-z)/(z-z); /* (-1)**non-int is NaN */ | |
503 | } else if(yisint==1) | |
504 | z = -z; /* (x<0)**odd = -(|x|**odd) */ | |
505 | } | |
506 | return z; | |
507 | } | |
508 | } | |
6fe7ccc8 | 509 | |
93a37866 | 510 | n = (hx>>31)+1; |
6fe7ccc8 A |
511 | |
512 | /* (x<0)**(non-int) is NaN */ | |
93a37866 | 513 | if((n|yisint)==0) return (x-x)/(x-x); |
6fe7ccc8 | 514 | |
93a37866 A |
515 | s = one; /* s (sign of result -ve**odd) = -1 else = 1 */ |
516 | if((n|(yisint-1))==0) s = -one;/* (-ve)**(odd int) */ | |
6fe7ccc8 A |
517 | |
518 | /* |y| is huge */ | |
93a37866 A |
519 | if(iy>0x41e00000) { /* if |y| > 2**31 */ |
520 | if(iy>0x43f00000){ /* if |y| > 2**64, must o/uflow */ | |
521 | if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny; | |
522 | if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny; | |
523 | } | |
524 | /* over/underflow if x is not close to one */ | |
525 | if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny; | |
526 | if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny; | |
527 | /* now |1-x| is tiny <= 2**-20, suffice to compute | |
528 | log(x) by x-x^2/2+x^3/3-x^4/4 */ | |
529 | t = ax-one; /* t has 20 trailing zeros */ | |
530 | w = (t*t)*(0.5-t*(0.3333333333333333333333-t*0.25)); | |
531 | u = ivln2_h*t; /* ivln2_h has 21 sig. bits */ | |
532 | v = t*ivln2_l-w*ivln2; | |
533 | t1 = u+v; | |
534 | __LO(t1) = 0; | |
535 | t2 = v-(t1-u); | |
536 | } else { | |
537 | double ss,s2,s_h,s_l,t_h,t_l; | |
538 | n = 0; | |
539 | /* take care subnormal number */ | |
540 | if(ix<0x00100000) | |
541 | {ax *= two53; n -= 53; ix = __HI(ax); } | |
542 | n += ((ix)>>20)-0x3ff; | |
543 | j = ix&0x000fffff; | |
544 | /* determine interval */ | |
545 | ix = j|0x3ff00000; /* normalize ix */ | |
546 | if(j<=0x3988E) k=0; /* |x|<sqrt(3/2) */ | |
547 | else if(j<0xBB67A) k=1; /* |x|<sqrt(3) */ | |
548 | else {k=0;n+=1;ix -= 0x00100000;} | |
549 | __HI(ax) = ix; | |
550 | ||
551 | /* compute ss = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */ | |
552 | u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */ | |
553 | v = one/(ax+bp[k]); | |
554 | ss = u*v; | |
555 | s_h = ss; | |
556 | __LO(s_h) = 0; | |
557 | /* t_h=ax+bp[k] High */ | |
558 | t_h = zero; | |
559 | __HI(t_h)=((ix>>1)|0x20000000)+0x00080000+(k<<18); | |
560 | t_l = ax - (t_h-bp[k]); | |
561 | s_l = v*((u-s_h*t_h)-s_h*t_l); | |
562 | /* compute log(ax) */ | |
563 | s2 = ss*ss; | |
564 | r = s2*s2*(L1+s2*(L2+s2*(L3+s2*(L4+s2*(L5+s2*L6))))); | |
565 | r += s_l*(s_h+ss); | |
566 | s2 = s_h*s_h; | |
567 | t_h = 3.0+s2+r; | |
568 | __LO(t_h) = 0; | |
569 | t_l = r-((t_h-3.0)-s2); | |
570 | /* u+v = ss*(1+...) */ | |
571 | u = s_h*t_h; | |
572 | v = s_l*t_h+t_l*ss; | |
573 | /* 2/(3log2)*(ss+...) */ | |
574 | p_h = u+v; | |
575 | __LO(p_h) = 0; | |
576 | p_l = v-(p_h-u); | |
577 | z_h = cp_h*p_h; /* cp_h+cp_l = 2/(3*log2) */ | |
578 | z_l = cp_l*p_h+p_l*cp+dp_l[k]; | |
579 | /* log2(ax) = (ss+..)*2/(3*log2) = n + dp_h + z_h + z_l */ | |
580 | t = (double)n; | |
581 | t1 = (((z_h+z_l)+dp_h[k])+t); | |
582 | __LO(t1) = 0; | |
583 | t2 = z_l-(((t1-t)-dp_h[k])-z_h); | |
584 | } | |
6fe7ccc8 A |
585 | |
586 | /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */ | |
93a37866 A |
587 | y1 = y; |
588 | __LO(y1) = 0; | |
589 | p_l = (y-y1)*t1+y*t2; | |
590 | p_h = y1*t1; | |
591 | z = p_l+p_h; | |
592 | j = __HI(z); | |
593 | i = __LO(z); | |
594 | if (j>=0x40900000) { /* z >= 1024 */ | |
595 | if(((j-0x40900000)|i)!=0) /* if z > 1024 */ | |
596 | return s*huge*huge; /* overflow */ | |
597 | else { | |
598 | if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */ | |
599 | } | |
600 | } else if((j&0x7fffffff)>=0x4090cc00 ) { /* z <= -1075 */ | |
601 | if(((j-0xc090cc00)|i)!=0) /* z < -1075 */ | |
602 | return s*tiny*tiny; /* underflow */ | |
603 | else { | |
604 | if(p_l<=z-p_h) return s*tiny*tiny; /* underflow */ | |
605 | } | |
606 | } | |
6fe7ccc8 A |
607 | /* |
608 | * compute 2**(p_h+p_l) | |
609 | */ | |
93a37866 A |
610 | i = j&0x7fffffff; |
611 | k = (i>>20)-0x3ff; | |
612 | n = 0; | |
613 | if(i>0x3fe00000) { /* if |z| > 0.5, set n = [z+0.5] */ | |
614 | n = j+(0x00100000>>(k+1)); | |
615 | k = ((n&0x7fffffff)>>20)-0x3ff; /* new k for n */ | |
616 | t = zero; | |
617 | __HI(t) = (n&~(0x000fffff>>k)); | |
618 | n = ((n&0x000fffff)|0x00100000)>>(20-k); | |
619 | if(j<0) n = -n; | |
620 | p_h -= t; | |
621 | } | |
622 | t = p_l+p_h; | |
623 | __LO(t) = 0; | |
624 | u = t*lg2_h; | |
625 | v = (p_l-(t-p_h))*lg2+t*lg2_l; | |
626 | z = u+v; | |
627 | w = v-(z-u); | |
628 | t = z*z; | |
629 | t1 = z - t*(P1+t*(P2+t*(P3+t*(P4+t*P5)))); | |
630 | r = (z*t1)/(t1-two)-(w+z*w); | |
631 | z = one-(r-z); | |
632 | j = __HI(z); | |
633 | j += (n<<20); | |
634 | if((j>>20)<=0) z = fdlibmScalbn(z,n); /* subnormal output */ | |
635 | else __HI(z) += (n<<20); | |
636 | return s*z; | |
6fe7ccc8 A |
637 | } |
638 | ||
639 | #endif | |
640 | ||
9dae56ea | 641 | } // namespace JSC |