2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
|
|
* March 31, 1998.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* IBM Corp.
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* JS number type and wrapper class.
|
|
|
|
*/
|
|
|
|
#include "jsstddef.h"
|
|
|
|
#if defined(XP_WIN) || defined(XP_OS2)
|
|
|
|
#include <float.h>
|
|
|
|
#endif
|
|
|
|
#include <locale.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "jstypes.h"
|
|
|
|
#include "jsutil.h" /* Added by JSIFY */
|
|
|
|
#include "jsapi.h"
|
|
|
|
#include "jsatom.h"
|
|
|
|
#include "jscntxt.h"
|
|
|
|
#include "jsconfig.h"
|
|
|
|
#include "jsdtoa.h"
|
|
|
|
#include "jsgc.h"
|
|
|
|
#include "jsinterp.h"
|
|
|
|
#include "jsnum.h"
|
|
|
|
#include "jsobj.h"
|
|
|
|
#include "jsopcode.h"
|
|
|
|
#include "jsprf.h"
|
2008-03-04 15:40:10 -08:00
|
|
|
#include "jsscope.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "jsstr.h"
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-01 21:33:52 -07:00
|
|
|
num_isNaN(JSContext *cx, uintN argc, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
jsdouble x;
|
|
|
|
|
2008-03-06 15:24:08 -08:00
|
|
|
x = js_ValueToNumber(cx, &vp[2]);
|
|
|
|
if (JSVAL_IS_NULL(vp[2]))
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
2007-08-01 21:33:52 -07:00
|
|
|
*vp = BOOLEAN_TO_JSVAL(JSDOUBLE_IS_NaN(x));
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-01 21:33:52 -07:00
|
|
|
num_isFinite(JSContext *cx, uintN argc, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
jsdouble x;
|
|
|
|
|
2008-03-06 15:24:08 -08:00
|
|
|
x = js_ValueToNumber(cx, &vp[2]);
|
|
|
|
if (JSVAL_IS_NULL(vp[2]))
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
2007-08-01 21:33:52 -07:00
|
|
|
*vp = BOOLEAN_TO_JSVAL(JSDOUBLE_IS_FINITE(x));
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-01 21:33:52 -07:00
|
|
|
num_parseFloat(JSContext *cx, uintN argc, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
JSString *str;
|
|
|
|
jsdouble d;
|
2007-08-15 23:23:06 -07:00
|
|
|
const jschar *bp, *end, *ep;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-08-01 21:33:52 -07:00
|
|
|
str = js_ValueToString(cx, vp[2]);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!str)
|
|
|
|
return JS_FALSE;
|
2007-08-15 23:23:06 -07:00
|
|
|
JSSTRING_CHARS_AND_END(str, bp, end);
|
|
|
|
if (!js_strtod(cx, bp, end, &ep, &d))
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
|
|
|
if (ep == bp) {
|
2007-08-01 21:33:52 -07:00
|
|
|
*vp = DOUBLE_TO_JSVAL(cx->runtime->jsNaN);
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
2008-03-10 12:27:44 -07:00
|
|
|
return js_NewNumberInRootedValue(cx, d, vp);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* See ECMA 15.1.2.2. */
|
|
|
|
static JSBool
|
2007-08-01 21:33:52 -07:00
|
|
|
num_parseInt(JSContext *cx, uintN argc, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
jsint radix;
|
|
|
|
JSString *str;
|
|
|
|
jsdouble d;
|
2007-08-15 23:23:06 -07:00
|
|
|
const jschar *bp, *end, *ep;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (argc > 1) {
|
2008-03-06 13:40:43 -08:00
|
|
|
radix = js_ValueToECMAInt32(cx, &vp[3]);
|
2008-03-06 15:24:08 -08:00
|
|
|
if (JSVAL_IS_NULL(vp[3]))
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
|
|
|
} else {
|
|
|
|
radix = 0;
|
|
|
|
}
|
|
|
|
if (radix != 0 && (radix < 2 || radix > 36)) {
|
2007-08-01 21:33:52 -07:00
|
|
|
*vp = DOUBLE_TO_JSVAL(cx->runtime->jsNaN);
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2008-03-05 11:11:54 -08:00
|
|
|
if (JSVAL_IS_INT(vp[2]) && (radix == 0 || radix == 10)) {
|
|
|
|
*vp = vp[2];
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2007-08-01 21:33:52 -07:00
|
|
|
str = js_ValueToString(cx, vp[2]);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!str)
|
|
|
|
return JS_FALSE;
|
2007-08-15 23:23:06 -07:00
|
|
|
JSSTRING_CHARS_AND_END(str, bp, end);
|
|
|
|
if (!js_strtointeger(cx, bp, end, &ep, radix, &d))
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
|
|
|
if (ep == bp) {
|
2007-08-01 21:33:52 -07:00
|
|
|
*vp = DOUBLE_TO_JSVAL(cx->runtime->jsNaN);
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
2008-03-10 12:27:44 -07:00
|
|
|
return js_NewNumberInRootedValue(cx, d, vp);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const char js_Infinity_str[] = "Infinity";
|
|
|
|
const char js_NaN_str[] = "NaN";
|
|
|
|
const char js_isNaN_str[] = "isNaN";
|
|
|
|
const char js_isFinite_str[] = "isFinite";
|
|
|
|
const char js_parseFloat_str[] = "parseFloat";
|
|
|
|
const char js_parseInt_str[] = "parseInt";
|
|
|
|
|
|
|
|
static JSFunctionSpec number_functions[] = {
|
2007-10-13 13:09:48 -07:00
|
|
|
JS_FN(js_isNaN_str, num_isNaN, 1,1,0),
|
|
|
|
JS_FN(js_isFinite_str, num_isFinite, 1,1,0),
|
|
|
|
JS_FN(js_parseFloat_str, num_parseFloat, 1,1,0),
|
|
|
|
JS_FN(js_parseInt_str, num_parseInt, 1,2,0),
|
2007-08-01 21:33:52 -07:00
|
|
|
JS_FS_END
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
JSClass js_NumberClass = {
|
|
|
|
js_Number_str,
|
2007-12-20 15:29:31 -08:00
|
|
|
JSCLASS_HAS_PRIVATE | JSCLASS_HAS_CACHED_PROTO(JSProto_Number),
|
2007-03-22 10:30:00 -07:00
|
|
|
JS_PropertyStub, JS_PropertyStub, JS_PropertyStub, JS_PropertyStub,
|
|
|
|
JS_EnumerateStub, JS_ResolveStub, JS_ConvertStub, JS_FinalizeStub,
|
|
|
|
JSCLASS_NO_OPTIONAL_MEMBERS
|
|
|
|
};
|
|
|
|
|
|
|
|
static JSBool
|
|
|
|
Number(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
|
|
{
|
2008-02-03 19:41:31 -08:00
|
|
|
jsval v;
|
2008-03-10 12:27:44 -07:00
|
|
|
jsdouble d;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (argc != 0) {
|
2008-03-06 15:24:08 -08:00
|
|
|
d = js_ValueToNumber(cx, &argv[0]);
|
2008-03-10 12:27:44 -07:00
|
|
|
v = argv[0];
|
|
|
|
if (JSVAL_IS_NULL(v))
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
2008-03-10 12:27:44 -07:00
|
|
|
if (v != JSVAL_TRUE) {
|
|
|
|
JS_ASSERT(JSVAL_IS_INT(v) || JSVAL_IS_DOUBLE(v));
|
|
|
|
} else {
|
|
|
|
if (!js_NewNumberInRootedValue(cx, d, &argv[0]))
|
|
|
|
return JS_FALSE;
|
|
|
|
v = argv[0];
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
} else {
|
2008-03-10 12:27:44 -07:00
|
|
|
v = JSVAL_ZERO;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-02-03 19:41:31 -08:00
|
|
|
if (!(cx->fp->flags & JSFRAME_CONSTRUCTING)) {
|
|
|
|
*rval = v;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
2008-02-07 15:18:45 -08:00
|
|
|
STOBJ_SET_SLOT(obj, JSSLOT_PRIVATE, v);
|
2008-02-03 19:41:31 -08:00
|
|
|
return JS_TRUE;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#if JS_HAS_TOSOURCE
|
|
|
|
static JSBool
|
2007-08-01 21:33:52 -07:00
|
|
|
num_toSource(JSContext *cx, uintN argc, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
jsval v;
|
|
|
|
jsdouble d;
|
|
|
|
char numBuf[DTOSTR_STANDARD_BUFFER_SIZE], *numStr;
|
|
|
|
char buf[64];
|
|
|
|
JSString *str;
|
|
|
|
|
2007-08-01 21:33:52 -07:00
|
|
|
if (!js_GetPrimitiveThis(cx, vp, &js_NumberClass, &v))
|
|
|
|
return JS_FALSE;
|
|
|
|
JS_ASSERT(JSVAL_IS_NUMBER(v));
|
2007-03-22 10:30:00 -07:00
|
|
|
d = JSVAL_IS_INT(v) ? (jsdouble)JSVAL_TO_INT(v) : *JSVAL_TO_DOUBLE(v);
|
|
|
|
numStr = JS_dtostr(numBuf, sizeof numBuf, DTOSTR_STANDARD, 0, d);
|
|
|
|
if (!numStr) {
|
|
|
|
JS_ReportOutOfMemory(cx);
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
JS_snprintf(buf, sizeof buf, "(new %s(%s))", js_NumberClass.name, numStr);
|
|
|
|
str = JS_NewStringCopyZ(cx, buf);
|
|
|
|
if (!str)
|
|
|
|
return JS_FALSE;
|
2007-08-01 21:33:52 -07:00
|
|
|
*vp = STRING_TO_JSVAL(str);
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* The buf must be big enough for MIN_INT to fit including '-' and '\0'. */
|
2007-11-28 23:09:21 -08:00
|
|
|
char *
|
|
|
|
js_IntToCString(jsint i, char *buf, size_t bufSize)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
char *cp;
|
|
|
|
jsuint u;
|
|
|
|
|
|
|
|
u = (i < 0) ? -i : i;
|
|
|
|
|
|
|
|
cp = buf + bufSize; /* one past last buffer cell */
|
|
|
|
*--cp = '\0'; /* null terminate the string to be */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Build the string from behind. We use multiply and subtraction
|
|
|
|
* instead of modulus because that's much faster.
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
jsuint newu = u / 10;
|
|
|
|
*--cp = (char)(u - newu * 10) + '0';
|
|
|
|
u = newu;
|
|
|
|
} while (u != 0);
|
|
|
|
|
|
|
|
if (i < 0)
|
|
|
|
*--cp = '-';
|
|
|
|
|
2007-11-28 23:09:21 -08:00
|
|
|
JS_ASSERT(cp >= buf);
|
2007-03-22 10:30:00 -07:00
|
|
|
return cp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-01 21:33:52 -07:00
|
|
|
num_toString(JSContext *cx, uintN argc, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
jsval v;
|
|
|
|
jsdouble d;
|
|
|
|
jsint base;
|
|
|
|
JSString *str;
|
|
|
|
|
2007-08-01 21:33:52 -07:00
|
|
|
if (!js_GetPrimitiveThis(cx, vp, &js_NumberClass, &v))
|
|
|
|
return JS_FALSE;
|
|
|
|
JS_ASSERT(JSVAL_IS_NUMBER(v));
|
2007-03-22 10:30:00 -07:00
|
|
|
d = JSVAL_IS_INT(v) ? (jsdouble)JSVAL_TO_INT(v) : *JSVAL_TO_DOUBLE(v);
|
|
|
|
base = 10;
|
2008-01-14 20:16:08 -08:00
|
|
|
if (argc != 0 && !JSVAL_IS_VOID(vp[2])) {
|
2008-03-06 13:40:43 -08:00
|
|
|
base = js_ValueToECMAInt32(cx, &vp[2]);
|
2008-03-06 15:24:08 -08:00
|
|
|
if (JSVAL_IS_NULL(vp[2]))
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
|
|
|
if (base < 2 || base > 36) {
|
|
|
|
char numBuf[12];
|
2007-11-28 23:09:21 -08:00
|
|
|
char *numStr = js_IntToCString(base, numBuf, sizeof numBuf);
|
2007-03-22 10:30:00 -07:00
|
|
|
JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL, JSMSG_BAD_RADIX,
|
|
|
|
numStr);
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (base == 10) {
|
|
|
|
str = js_NumberToString(cx, d);
|
|
|
|
} else {
|
|
|
|
char *dStr = JS_dtobasestr(base, d);
|
|
|
|
if (!dStr) {
|
|
|
|
JS_ReportOutOfMemory(cx);
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
str = JS_NewStringCopyZ(cx, dStr);
|
|
|
|
free(dStr);
|
|
|
|
}
|
|
|
|
if (!str)
|
|
|
|
return JS_FALSE;
|
2007-08-01 21:33:52 -07:00
|
|
|
*vp = STRING_TO_JSVAL(str);
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-01 21:33:52 -07:00
|
|
|
num_toLocaleString(JSContext *cx, uintN argc, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
char thousandsLength, decimalLength;
|
|
|
|
const char *numGrouping, *tmpGroup;
|
|
|
|
JSRuntime *rt;
|
|
|
|
JSString *numStr, *str;
|
|
|
|
const char *num, *end, *tmpSrc;
|
2007-09-20 11:58:01 -07:00
|
|
|
char *buf, *tmpDest;
|
2008-07-24 12:43:40 -07:00
|
|
|
const char *nint;
|
2007-03-22 10:30:00 -07:00
|
|
|
int digits, size, remainder, nrepeat;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create the string, move back to bytes to make string twiddling
|
|
|
|
* a bit easier and so we can insert platform charset seperators.
|
|
|
|
*/
|
2008-01-14 20:16:08 -08:00
|
|
|
if (!num_toString(cx, 0, vp))
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
2007-08-01 21:33:52 -07:00
|
|
|
JS_ASSERT(JSVAL_IS_STRING(*vp));
|
|
|
|
numStr = JSVAL_TO_STRING(*vp);
|
2007-03-22 10:30:00 -07:00
|
|
|
num = js_GetStringBytes(cx, numStr);
|
|
|
|
if (!num)
|
|
|
|
return JS_FALSE;
|
|
|
|
|
2008-07-24 12:43:40 -07:00
|
|
|
/*
|
|
|
|
* Find the first non-integer value, whether it be a letter as in
|
|
|
|
* 'Infinite', a decimal point, or an 'e' from exponential notation.
|
|
|
|
*/
|
|
|
|
nint = num;
|
|
|
|
if (*nint == '-')
|
|
|
|
nint++;
|
|
|
|
while (*nint >= '0' && *nint <= '9')
|
|
|
|
nint++;
|
|
|
|
digits = nint - num;
|
2007-03-22 10:30:00 -07:00
|
|
|
end = num + digits;
|
2008-07-24 12:43:40 -07:00
|
|
|
if (!digits)
|
|
|
|
return JS_TRUE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
rt = cx->runtime;
|
|
|
|
thousandsLength = strlen(rt->thousandsSeparator);
|
|
|
|
decimalLength = strlen(rt->decimalSeparator);
|
|
|
|
|
|
|
|
/* Figure out how long resulting string will be. */
|
2008-07-24 12:43:40 -07:00
|
|
|
size = digits + (*nint ? strlen(nint + 1) + 1 : 0);
|
|
|
|
if (*nint == '.')
|
|
|
|
size += decimalLength;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
numGrouping = tmpGroup = rt->numGrouping;
|
|
|
|
remainder = digits;
|
|
|
|
if (*num == '-')
|
|
|
|
remainder--;
|
|
|
|
|
|
|
|
while (*tmpGroup != CHAR_MAX && *tmpGroup != '\0') {
|
|
|
|
if (*tmpGroup >= remainder)
|
|
|
|
break;
|
|
|
|
size += thousandsLength;
|
|
|
|
remainder -= *tmpGroup;
|
|
|
|
tmpGroup++;
|
|
|
|
}
|
|
|
|
if (*tmpGroup == '\0' && *numGrouping != '\0') {
|
|
|
|
nrepeat = (remainder - 1) / tmpGroup[-1];
|
|
|
|
size += thousandsLength * nrepeat;
|
|
|
|
remainder -= nrepeat * tmpGroup[-1];
|
|
|
|
} else {
|
|
|
|
nrepeat = 0;
|
|
|
|
}
|
|
|
|
tmpGroup--;
|
|
|
|
|
|
|
|
buf = (char *)JS_malloc(cx, size + 1);
|
|
|
|
if (!buf)
|
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
tmpDest = buf;
|
|
|
|
tmpSrc = num;
|
|
|
|
|
|
|
|
while (*tmpSrc == '-' || remainder--)
|
|
|
|
*tmpDest++ = *tmpSrc++;
|
|
|
|
while (tmpSrc < end) {
|
|
|
|
strcpy(tmpDest, rt->thousandsSeparator);
|
|
|
|
tmpDest += thousandsLength;
|
|
|
|
memcpy(tmpDest, tmpSrc, *tmpGroup);
|
|
|
|
tmpDest += *tmpGroup;
|
|
|
|
tmpSrc += *tmpGroup;
|
|
|
|
if (--nrepeat < 0)
|
|
|
|
tmpGroup--;
|
|
|
|
}
|
|
|
|
|
2008-07-24 12:43:40 -07:00
|
|
|
if (*nint == '.') {
|
2007-03-22 10:30:00 -07:00
|
|
|
strcpy(tmpDest, rt->decimalSeparator);
|
|
|
|
tmpDest += decimalLength;
|
2008-07-24 12:43:40 -07:00
|
|
|
strcpy(tmpDest, nint + 1);
|
2007-03-22 10:30:00 -07:00
|
|
|
} else {
|
2008-07-24 12:43:40 -07:00
|
|
|
strcpy(tmpDest, nint);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cx->localeCallbacks && cx->localeCallbacks->localeToUnicode)
|
2007-08-01 21:33:52 -07:00
|
|
|
return cx->localeCallbacks->localeToUnicode(cx, buf, vp);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
str = JS_NewString(cx, buf, size);
|
|
|
|
if (!str) {
|
|
|
|
JS_free(cx, buf);
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
2007-08-01 21:33:52 -07:00
|
|
|
*vp = STRING_TO_JSVAL(str);
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-01 21:33:52 -07:00
|
|
|
num_valueOf(JSContext *cx, uintN argc, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-08-01 21:33:52 -07:00
|
|
|
jsval v;
|
|
|
|
JSObject *obj;
|
|
|
|
|
|
|
|
v = vp[1];
|
|
|
|
if (JSVAL_IS_NUMBER(v)) {
|
|
|
|
*vp = v;
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
2008-03-01 14:15:21 -08:00
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
2007-08-01 21:33:52 -07:00
|
|
|
if (!JS_InstanceOf(cx, obj, &js_NumberClass, vp + 2))
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
2007-08-01 21:33:52 -07:00
|
|
|
*vp = OBJ_GET_SLOT(cx, obj, JSSLOT_PRIVATE);
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define MAX_PRECISION 100
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-01 21:33:52 -07:00
|
|
|
num_to(JSContext *cx, JSDToStrMode zeroArgMode, JSDToStrMode oneArgMode,
|
|
|
|
jsint precisionMin, jsint precisionMax, jsint precisionOffset,
|
|
|
|
uintN argc, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
jsval v;
|
|
|
|
jsdouble d, precision;
|
|
|
|
JSString *str;
|
|
|
|
|
2007-08-01 21:33:52 -07:00
|
|
|
/* Use MAX_PRECISION+1 because precisionOffset can be 1. */
|
|
|
|
char buf[DTOSTR_VARIABLE_BUFFER_SIZE(MAX_PRECISION+1)];
|
|
|
|
char *numStr;
|
|
|
|
|
|
|
|
if (!js_GetPrimitiveThis(cx, vp, &js_NumberClass, &v))
|
|
|
|
return JS_FALSE;
|
|
|
|
JS_ASSERT(JSVAL_IS_NUMBER(v));
|
2007-03-22 10:30:00 -07:00
|
|
|
d = JSVAL_IS_INT(v) ? (jsdouble)JSVAL_TO_INT(v) : *JSVAL_TO_DOUBLE(v);
|
|
|
|
|
2007-08-01 21:33:52 -07:00
|
|
|
if (argc == 0) {
|
2007-03-22 10:30:00 -07:00
|
|
|
precision = 0.0;
|
|
|
|
oneArgMode = zeroArgMode;
|
|
|
|
} else {
|
2008-03-06 15:24:08 -08:00
|
|
|
precision = js_ValueToNumber(cx, &vp[2]);
|
|
|
|
if (JSVAL_IS_NULL(vp[2]))
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
|
|
|
precision = js_DoubleToInteger(precision);
|
|
|
|
if (precision < precisionMin || precision > precisionMax) {
|
|
|
|
numStr = JS_dtostr(buf, sizeof buf, DTOSTR_STANDARD, 0, precision);
|
|
|
|
if (!numStr)
|
|
|
|
JS_ReportOutOfMemory(cx);
|
|
|
|
else
|
|
|
|
JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL, JSMSG_PRECISION_RANGE, numStr);
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
numStr = JS_dtostr(buf, sizeof buf, oneArgMode, (jsint)precision + precisionOffset, d);
|
|
|
|
if (!numStr) {
|
|
|
|
JS_ReportOutOfMemory(cx);
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
str = JS_NewStringCopyZ(cx, numStr);
|
|
|
|
if (!str)
|
|
|
|
return JS_FALSE;
|
2007-08-01 21:33:52 -07:00
|
|
|
*vp = STRING_TO_JSVAL(str);
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2007-08-01 21:33:52 -07:00
|
|
|
/*
|
|
|
|
* In the following three implementations, we allow a larger range of precision
|
|
|
|
* than ECMA requires; this is permitted by ECMA-262.
|
|
|
|
*/
|
2007-03-22 10:30:00 -07:00
|
|
|
static JSBool
|
2007-08-01 21:33:52 -07:00
|
|
|
num_toFixed(JSContext *cx, uintN argc, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-08-01 21:33:52 -07:00
|
|
|
return num_to(cx, DTOSTR_FIXED, DTOSTR_FIXED, -20, MAX_PRECISION, 0,
|
|
|
|
argc, vp);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-01 21:33:52 -07:00
|
|
|
num_toExponential(JSContext *cx, uintN argc, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-08-01 21:33:52 -07:00
|
|
|
return num_to(cx, DTOSTR_STANDARD_EXPONENTIAL, DTOSTR_EXPONENTIAL, 0,
|
|
|
|
MAX_PRECISION, 1, argc, vp);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-01 21:33:52 -07:00
|
|
|
num_toPrecision(JSContext *cx, uintN argc, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-01-11 15:12:15 -08:00
|
|
|
if (JSVAL_IS_VOID(vp[2]))
|
|
|
|
return num_toString(cx, 0, vp);
|
2007-08-01 21:33:52 -07:00
|
|
|
return num_to(cx, DTOSTR_STANDARD, DTOSTR_PRECISION, 1, MAX_PRECISION, 0,
|
|
|
|
argc, vp);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static JSFunctionSpec number_methods[] = {
|
|
|
|
#if JS_HAS_TOSOURCE
|
2007-10-13 13:09:48 -07:00
|
|
|
JS_FN(js_toSource_str, num_toSource, 0,0,JSFUN_THISP_NUMBER),
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2008-01-14 20:16:08 -08:00
|
|
|
JS_FN(js_toString_str, num_toString, 0,1,JSFUN_THISP_NUMBER),
|
2007-10-13 13:09:48 -07:00
|
|
|
JS_FN(js_toLocaleString_str, num_toLocaleString, 0,0,JSFUN_THISP_NUMBER),
|
|
|
|
JS_FN(js_valueOf_str, num_valueOf, 0,0,JSFUN_THISP_NUMBER),
|
|
|
|
JS_FN("toFixed", num_toFixed, 1,1,JSFUN_THISP_NUMBER),
|
|
|
|
JS_FN("toExponential", num_toExponential, 1,1,JSFUN_THISP_NUMBER),
|
|
|
|
JS_FN("toPrecision", num_toPrecision, 1,1,JSFUN_THISP_NUMBER),
|
2007-08-01 21:33:52 -07:00
|
|
|
JS_FS_END
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/* NB: Keep this in synch with number_constants[]. */
|
|
|
|
enum nc_slot {
|
|
|
|
NC_NaN,
|
|
|
|
NC_POSITIVE_INFINITY,
|
|
|
|
NC_NEGATIVE_INFINITY,
|
|
|
|
NC_MAX_VALUE,
|
|
|
|
NC_MIN_VALUE,
|
|
|
|
NC_LIMIT
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Some to most C compilers forbid spelling these at compile time, or barf
|
|
|
|
* if you try, so all but MAX_VALUE are set up by js_InitRuntimeNumberState
|
|
|
|
* using union jsdpun.
|
|
|
|
*/
|
|
|
|
static JSConstDoubleSpec number_constants[] = {
|
|
|
|
{0, js_NaN_str, 0,{0,0,0}},
|
|
|
|
{0, "POSITIVE_INFINITY", 0,{0,0,0}},
|
|
|
|
{0, "NEGATIVE_INFINITY", 0,{0,0,0}},
|
|
|
|
{1.7976931348623157E+308, "MAX_VALUE", 0,{0,0,0}},
|
|
|
|
{0, "MIN_VALUE", 0,{0,0,0}},
|
|
|
|
{0,0,0,{0,0,0}}
|
|
|
|
};
|
|
|
|
|
|
|
|
static jsdouble NaN;
|
|
|
|
|
|
|
|
#if (defined XP_WIN || defined XP_OS2) && \
|
|
|
|
!defined WINCE && \
|
|
|
|
!defined __MWERKS__ && \
|
|
|
|
(defined _M_IX86 || \
|
|
|
|
(defined __GNUC__ && !defined __MINGW32__))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the exception mask to mask all exceptions and set the FPU precision
|
|
|
|
* to 53 bit mantissa.
|
|
|
|
* On Alpha platform this is handled via Compiler option.
|
|
|
|
*/
|
|
|
|
#define FIX_FPU() _control87(MCW_EM | PC_53, MCW_EM | MCW_PC)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define FIX_FPU() ((void)0)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
JSBool
|
|
|
|
js_InitRuntimeNumberState(JSContext *cx)
|
|
|
|
{
|
|
|
|
JSRuntime *rt;
|
|
|
|
jsdpun u;
|
|
|
|
struct lconv *locale;
|
|
|
|
|
|
|
|
rt = cx->runtime;
|
|
|
|
JS_ASSERT(!rt->jsNaN);
|
|
|
|
|
|
|
|
FIX_FPU();
|
|
|
|
|
|
|
|
u.s.hi = JSDOUBLE_HI32_EXPMASK | JSDOUBLE_HI32_MANTMASK;
|
|
|
|
u.s.lo = 0xffffffff;
|
|
|
|
number_constants[NC_NaN].dval = NaN = u.d;
|
2008-03-10 12:27:44 -07:00
|
|
|
rt->jsNaN = js_NewWeaklyRootedDouble(cx, NaN);
|
2008-02-03 19:41:31 -08:00
|
|
|
if (!rt->jsNaN)
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
u.s.hi = JSDOUBLE_HI32_EXPMASK;
|
|
|
|
u.s.lo = 0x00000000;
|
|
|
|
number_constants[NC_POSITIVE_INFINITY].dval = u.d;
|
2008-03-10 12:27:44 -07:00
|
|
|
rt->jsPositiveInfinity = js_NewWeaklyRootedDouble(cx, u.d);
|
2008-02-03 19:41:31 -08:00
|
|
|
if (!rt->jsPositiveInfinity)
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
u.s.hi = JSDOUBLE_HI32_SIGNBIT | JSDOUBLE_HI32_EXPMASK;
|
|
|
|
u.s.lo = 0x00000000;
|
|
|
|
number_constants[NC_NEGATIVE_INFINITY].dval = u.d;
|
2008-03-10 12:27:44 -07:00
|
|
|
rt->jsNegativeInfinity = js_NewWeaklyRootedDouble(cx, u.d);
|
2008-02-03 19:41:31 -08:00
|
|
|
if (!rt->jsNegativeInfinity)
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
u.s.hi = 0;
|
|
|
|
u.s.lo = 1;
|
|
|
|
number_constants[NC_MIN_VALUE].dval = u.d;
|
|
|
|
|
|
|
|
locale = localeconv();
|
|
|
|
rt->thousandsSeparator =
|
|
|
|
JS_strdup(cx, locale->thousands_sep ? locale->thousands_sep : "'");
|
|
|
|
rt->decimalSeparator =
|
|
|
|
JS_strdup(cx, locale->decimal_point ? locale->decimal_point : ".");
|
|
|
|
rt->numGrouping =
|
|
|
|
JS_strdup(cx, locale->grouping ? locale->grouping : "\3\0");
|
|
|
|
|
|
|
|
return rt->thousandsSeparator && rt->decimalSeparator && rt->numGrouping;
|
|
|
|
}
|
|
|
|
|
2008-02-26 13:01:42 -08:00
|
|
|
void
|
|
|
|
js_TraceRuntimeNumberState(JSTracer *trc)
|
|
|
|
{
|
|
|
|
JSRuntime *rt;
|
|
|
|
|
|
|
|
rt = trc->context->runtime;
|
|
|
|
if (rt->jsNaN)
|
|
|
|
JS_CALL_DOUBLE_TRACER(trc, rt->jsNaN, "NaN");
|
|
|
|
if (rt->jsPositiveInfinity)
|
|
|
|
JS_CALL_DOUBLE_TRACER(trc, rt->jsPositiveInfinity, "+Infinity");
|
|
|
|
if (rt->jsNegativeInfinity)
|
|
|
|
JS_CALL_DOUBLE_TRACER(trc, rt->jsNegativeInfinity, "-Infinity");
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
void
|
|
|
|
js_FinishRuntimeNumberState(JSContext *cx)
|
|
|
|
{
|
|
|
|
JSRuntime *rt = cx->runtime;
|
|
|
|
|
2008-02-03 19:41:31 -08:00
|
|
|
js_UnlockGCThingRT(rt, rt->jsNaN);
|
|
|
|
js_UnlockGCThingRT(rt, rt->jsNegativeInfinity);
|
|
|
|
js_UnlockGCThingRT(rt, rt->jsPositiveInfinity);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
rt->jsNaN = NULL;
|
|
|
|
rt->jsNegativeInfinity = NULL;
|
|
|
|
rt->jsPositiveInfinity = NULL;
|
|
|
|
|
|
|
|
JS_free(cx, (void *)rt->thousandsSeparator);
|
|
|
|
JS_free(cx, (void *)rt->decimalSeparator);
|
|
|
|
JS_free(cx, (void *)rt->numGrouping);
|
|
|
|
rt->thousandsSeparator = rt->decimalSeparator = rt->numGrouping = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject *
|
|
|
|
js_InitNumberClass(JSContext *cx, JSObject *obj)
|
|
|
|
{
|
|
|
|
JSObject *proto, *ctor;
|
|
|
|
JSRuntime *rt;
|
|
|
|
|
|
|
|
/* XXX must do at least once per new thread, so do it per JSContext... */
|
|
|
|
FIX_FPU();
|
|
|
|
|
|
|
|
if (!JS_DefineFunctions(cx, obj, number_functions))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
proto = JS_InitClass(cx, obj, NULL, &js_NumberClass, Number, 1,
|
|
|
|
NULL, number_methods, NULL, NULL);
|
|
|
|
if (!proto || !(ctor = JS_GetConstructor(cx, proto)))
|
|
|
|
return NULL;
|
2008-02-07 15:18:45 -08:00
|
|
|
STOBJ_SET_SLOT(proto, JSSLOT_PRIVATE, JSVAL_ZERO);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!JS_DefineConstDoubles(cx, ctor, number_constants))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* ECMA 15.1.1.1 */
|
|
|
|
rt = cx->runtime;
|
|
|
|
if (!JS_DefineProperty(cx, obj, js_NaN_str, DOUBLE_TO_JSVAL(rt->jsNaN),
|
|
|
|
NULL, NULL, JSPROP_PERMANENT)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA 15.1.1.2 */
|
|
|
|
if (!JS_DefineProperty(cx, obj, js_Infinity_str,
|
|
|
|
DOUBLE_TO_JSVAL(rt->jsPositiveInfinity),
|
|
|
|
NULL, NULL, JSPROP_PERMANENT)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return proto;
|
|
|
|
}
|
|
|
|
|
2008-02-03 19:41:31 -08:00
|
|
|
JSBool
|
2008-03-10 12:27:44 -07:00
|
|
|
js_NewNumberInRootedValue(JSContext *cx, jsdouble d, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
jsint i;
|
|
|
|
|
2008-02-03 19:41:31 -08:00
|
|
|
if (JSDOUBLE_IS_INT(d, i) && INT_FITS_IN_JSVAL(i)) {
|
2008-03-10 12:27:44 -07:00
|
|
|
*vp = INT_TO_JSVAL(i);
|
|
|
|
return JS_TRUE;
|
2008-02-03 19:41:31 -08:00
|
|
|
}
|
2008-03-10 12:27:44 -07:00
|
|
|
return js_NewDoubleInRootedValue(cx, d, vp);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-11-28 23:09:21 -08:00
|
|
|
char *
|
|
|
|
js_NumberToCString(JSContext *cx, jsdouble d, char *buf, size_t bufSize)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
jsint i;
|
|
|
|
char *numStr;
|
|
|
|
|
2007-11-28 23:09:21 -08:00
|
|
|
JS_ASSERT(bufSize >= DTOSTR_STANDARD_BUFFER_SIZE);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (JSDOUBLE_IS_INT(d, i)) {
|
2007-11-28 23:09:21 -08:00
|
|
|
numStr = js_IntToCString(i, buf, bufSize);
|
2007-03-22 10:30:00 -07:00
|
|
|
} else {
|
2007-11-28 23:09:21 -08:00
|
|
|
numStr = JS_dtostr(buf, bufSize, DTOSTR_STANDARD, 0, d);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!numStr) {
|
|
|
|
JS_ReportOutOfMemory(cx);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2007-11-28 23:09:21 -08:00
|
|
|
return numStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSString *
|
|
|
|
js_NumberToString(JSContext *cx, jsdouble d)
|
|
|
|
{
|
|
|
|
char buf[DTOSTR_STANDARD_BUFFER_SIZE];
|
|
|
|
char *numStr;
|
|
|
|
|
|
|
|
numStr = js_NumberToCString(cx, d, buf, sizeof buf);
|
|
|
|
if (!numStr)
|
|
|
|
return NULL;
|
2007-03-22 10:30:00 -07:00
|
|
|
return JS_NewStringCopyZ(cx, numStr);
|
|
|
|
}
|
|
|
|
|
2008-03-06 15:24:08 -08:00
|
|
|
jsdouble
|
|
|
|
js_ValueToNumber(JSContext *cx, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-03-06 15:24:08 -08:00
|
|
|
jsval v;
|
2007-03-22 10:30:00 -07:00
|
|
|
JSString *str;
|
2007-08-04 12:05:16 -07:00
|
|
|
const jschar *bp, *end, *ep;
|
2008-03-10 12:27:44 -07:00
|
|
|
jsdouble d, *dp;
|
2008-03-06 15:24:08 -08:00
|
|
|
JSObject *obj;
|
|
|
|
JSTempValueRooter tvr;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-03-06 15:24:08 -08:00
|
|
|
v = *vp;
|
|
|
|
for (;;) {
|
|
|
|
if (JSVAL_IS_INT(v))
|
|
|
|
return (jsdouble) JSVAL_TO_INT(v);
|
|
|
|
if (JSVAL_IS_DOUBLE(v))
|
|
|
|
return *JSVAL_TO_DOUBLE(v);
|
|
|
|
if (JSVAL_IS_STRING(v)) {
|
|
|
|
str = JSVAL_TO_STRING(v);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note that ECMA doesn't treat a string beginning with a '0' as
|
|
|
|
* an octal number here. This works because all such numbers will
|
|
|
|
* be interpreted as decimal by js_strtod and will never get
|
|
|
|
* passed to js_strtointeger (which would interpret them as
|
|
|
|
* octal).
|
|
|
|
*/
|
|
|
|
JSSTRING_CHARS_AND_END(str, bp, end);
|
|
|
|
if ((!js_strtod(cx, bp, end, &ep, &d) ||
|
|
|
|
js_SkipWhiteSpace(ep, end) != end) &&
|
|
|
|
(!js_strtointeger(cx, bp, end, &ep, 0, &d) ||
|
2008-03-12 00:05:30 -07:00
|
|
|
js_SkipWhiteSpace(ep, end) != end)) {
|
2008-03-06 15:24:08 -08:00
|
|
|
break;
|
|
|
|
}
|
2008-03-10 12:27:44 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* JSVAL_TRUE indicates that double jsval was never constructed
|
|
|
|
* for the result.
|
|
|
|
*/
|
|
|
|
*vp = JSVAL_TRUE;
|
2008-03-06 15:24:08 -08:00
|
|
|
return d;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-03-10 12:27:44 -07:00
|
|
|
if (JSVAL_IS_BOOLEAN(v)) {
|
|
|
|
if (JSVAL_TO_BOOLEAN(v)) {
|
|
|
|
*vp = JSVAL_ONE;
|
|
|
|
return 1.0;
|
|
|
|
} else {
|
|
|
|
*vp = JSVAL_ZERO;
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
}
|
2008-03-06 15:24:08 -08:00
|
|
|
if (JSVAL_IS_NULL(v)) {
|
|
|
|
*vp = JSVAL_ZERO;
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
if (JSVAL_IS_VOID(v))
|
|
|
|
break;
|
|
|
|
|
|
|
|
JS_ASSERT(!JSVAL_IS_PRIMITIVE(v));
|
|
|
|
obj = JSVAL_TO_OBJECT(v);
|
2007-08-04 12:05:16 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/*
|
2008-03-06 15:24:08 -08:00
|
|
|
* vp roots obj so we cannot use it as an extra root for
|
|
|
|
* OBJ_DEFAULT_VALUE result when calling the hook.
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2008-03-06 15:24:08 -08:00
|
|
|
JS_PUSH_SINGLE_TEMP_ROOT(cx, v, &tvr);
|
|
|
|
if (!OBJ_DEFAULT_VALUE(cx, obj, JSTYPE_NUMBER, &tvr.u.value))
|
|
|
|
obj = NULL;
|
|
|
|
else
|
|
|
|
v = *vp = tvr.u.value;
|
|
|
|
JS_POP_TEMP_ROOT(cx, &tvr);
|
|
|
|
if (!obj) {
|
|
|
|
*vp = JSVAL_NULL;
|
|
|
|
return 0.0;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-03-06 15:24:08 -08:00
|
|
|
if (!JSVAL_IS_PRIMITIVE(v))
|
|
|
|
break;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-03-06 15:24:08 -08:00
|
|
|
|
2008-03-10 12:27:44 -07:00
|
|
|
dp = cx->runtime->jsNaN;
|
|
|
|
*vp = DOUBLE_TO_JSVAL(dp);
|
|
|
|
return *dp;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-03-06 13:40:43 -08:00
|
|
|
int32
|
|
|
|
js_ValueToECMAInt32(JSContext *cx, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-03-06 13:40:43 -08:00
|
|
|
jsval v;
|
2007-03-22 10:30:00 -07:00
|
|
|
jsdouble d;
|
|
|
|
|
2008-03-06 13:40:43 -08:00
|
|
|
v = *vp;
|
|
|
|
if (JSVAL_IS_INT(v))
|
|
|
|
return JSVAL_TO_INT(v);
|
|
|
|
if (JSVAL_IS_DOUBLE(v)) {
|
|
|
|
d = *JSVAL_TO_DOUBLE(v);
|
2008-03-10 12:27:44 -07:00
|
|
|
*vp = JSVAL_TRUE;
|
2008-03-06 13:40:43 -08:00
|
|
|
} else {
|
2008-03-06 15:24:08 -08:00
|
|
|
d = js_ValueToNumber(cx, vp);
|
|
|
|
if (JSVAL_IS_NULL(*vp))
|
2008-03-06 13:40:43 -08:00
|
|
|
return 0;
|
2008-03-10 12:27:44 -07:00
|
|
|
*vp = JSVAL_TRUE;
|
2008-03-06 13:40:43 -08:00
|
|
|
}
|
|
|
|
return js_DoubleToECMAInt32(d);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-12-21 14:06:37 -08:00
|
|
|
int32
|
|
|
|
js_DoubleToECMAInt32(jsdouble d)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-03-06 13:40:43 -08:00
|
|
|
int32 i;
|
|
|
|
jsdouble two32, two31;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-03-06 13:40:43 -08:00
|
|
|
if (!JSDOUBLE_IS_FINITE(d))
|
2007-12-21 14:06:37 -08:00
|
|
|
return 0;
|
|
|
|
|
2008-03-06 13:40:43 -08:00
|
|
|
i = (int32) d;
|
|
|
|
if ((jsdouble) i == d)
|
|
|
|
return i;
|
|
|
|
|
|
|
|
two32 = 4294967296.0;
|
|
|
|
two31 = 2147483648.0;
|
2007-03-22 10:30:00 -07:00
|
|
|
d = fmod(d, two32);
|
|
|
|
d = (d >= 0) ? floor(d) : ceil(d) + two32;
|
2008-02-06 13:34:51 -08:00
|
|
|
return (int32) (d >= two31 ? d - two32 : d);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-03-06 13:40:43 -08:00
|
|
|
uint32
|
|
|
|
js_ValueToECMAUint32(JSContext *cx, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-03-06 13:40:43 -08:00
|
|
|
jsval v;
|
2008-03-10 12:27:44 -07:00
|
|
|
jsint i;
|
2007-03-22 10:30:00 -07:00
|
|
|
jsdouble d;
|
|
|
|
|
2008-03-06 13:40:43 -08:00
|
|
|
v = *vp;
|
2008-03-10 12:27:44 -07:00
|
|
|
if (JSVAL_IS_INT(v)) {
|
|
|
|
i = JSVAL_TO_INT(v);
|
|
|
|
if (i < 0)
|
|
|
|
*vp = JSVAL_TRUE;
|
|
|
|
return (uint32) i;
|
|
|
|
}
|
2008-03-06 13:40:43 -08:00
|
|
|
if (JSVAL_IS_DOUBLE(v)) {
|
|
|
|
d = *JSVAL_TO_DOUBLE(v);
|
2008-03-10 12:27:44 -07:00
|
|
|
*vp = JSVAL_TRUE;
|
2008-03-06 13:40:43 -08:00
|
|
|
} else {
|
2008-03-06 15:24:08 -08:00
|
|
|
d = js_ValueToNumber(cx, vp);
|
|
|
|
if (JSVAL_IS_NULL(*vp))
|
2008-03-06 13:40:43 -08:00
|
|
|
return 0;
|
2008-03-10 12:27:44 -07:00
|
|
|
*vp = JSVAL_TRUE;
|
2008-03-06 13:40:43 -08:00
|
|
|
}
|
|
|
|
return js_DoubleToECMAUint32(d);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-12-21 14:06:37 -08:00
|
|
|
uint32
|
|
|
|
js_DoubleToECMAUint32(jsdouble d)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-03-06 13:40:43 -08:00
|
|
|
int32 i;
|
2007-03-22 10:30:00 -07:00
|
|
|
JSBool neg;
|
2008-03-06 13:40:43 -08:00
|
|
|
jsdouble two32;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-03-06 13:40:43 -08:00
|
|
|
if (!JSDOUBLE_IS_FINITE(d))
|
2007-12-21 14:06:37 -08:00
|
|
|
return 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-03-06 13:40:43 -08:00
|
|
|
/*
|
|
|
|
* We check whether d fits int32, not uint32, as all but the ">>>" bit
|
|
|
|
* manipulation bytecode stores the result as int, not uint. When the
|
|
|
|
* result does not fit int jsval, it will be stored as a negative double.
|
|
|
|
*/
|
|
|
|
i = (int32) d;
|
|
|
|
if ((jsdouble) i == d)
|
|
|
|
return (int32)i;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
neg = (d < 0);
|
|
|
|
d = floor(neg ? -d : d);
|
|
|
|
d = neg ? -d : d;
|
|
|
|
|
2008-03-06 13:40:43 -08:00
|
|
|
two32 = 4294967296.0;
|
2007-03-22 10:30:00 -07:00
|
|
|
d = fmod(d, two32);
|
|
|
|
|
2008-02-06 13:34:51 -08:00
|
|
|
return (uint32) (d >= 0 ? d : d + two32);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-03-06 15:24:08 -08:00
|
|
|
int32
|
|
|
|
js_ValueToInt32(JSContext *cx, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-03-06 15:24:08 -08:00
|
|
|
jsval v;
|
2007-03-22 10:30:00 -07:00
|
|
|
jsdouble d;
|
|
|
|
|
2008-03-06 15:24:08 -08:00
|
|
|
v = *vp;
|
|
|
|
if (JSVAL_IS_INT(v))
|
|
|
|
return JSVAL_TO_INT(v);
|
|
|
|
d = js_ValueToNumber(cx, vp);
|
|
|
|
if (JSVAL_IS_NULL(*vp))
|
|
|
|
return 0;
|
2008-03-10 12:27:44 -07:00
|
|
|
if (JSVAL_IS_INT(*vp))
|
|
|
|
return JSVAL_TO_INT(*vp);
|
|
|
|
|
|
|
|
*vp = JSVAL_TRUE;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (JSDOUBLE_IS_NaN(d) || d <= -2147483649.0 || 2147483648.0 <= d) {
|
|
|
|
js_ReportValueError(cx, JSMSG_CANT_CONVERT,
|
|
|
|
JSDVG_SEARCH_STACK, v, NULL);
|
2008-03-06 15:24:08 -08:00
|
|
|
*vp = JSVAL_NULL;
|
|
|
|
return 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-03-06 15:24:08 -08:00
|
|
|
return (int32) floor(d + 0.5); /* Round to nearest */
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-03-06 15:24:08 -08:00
|
|
|
uint16
|
|
|
|
js_ValueToUint16(JSContext *cx, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
jsdouble d;
|
2008-03-10 12:27:44 -07:00
|
|
|
uint16 u;
|
|
|
|
jsuint m;
|
2007-03-22 10:30:00 -07:00
|
|
|
JSBool neg;
|
|
|
|
|
2008-03-06 15:24:08 -08:00
|
|
|
d = js_ValueToNumber(cx, vp);
|
|
|
|
if (JSVAL_IS_NULL(*vp))
|
|
|
|
return 0;
|
2008-03-10 12:27:44 -07:00
|
|
|
|
|
|
|
if (JSVAL_IS_INT(*vp)) {
|
|
|
|
u = (uint16) JSVAL_TO_INT(*vp);
|
|
|
|
} else if (d == 0 || !JSDOUBLE_IS_FINITE(d)) {
|
|
|
|
u = (uint16) 0;
|
|
|
|
} else {
|
|
|
|
u = (uint16) d;
|
|
|
|
if ((jsdouble) u != d) {
|
|
|
|
neg = (d < 0);
|
|
|
|
d = floor(neg ? -d : d);
|
|
|
|
d = neg ? -d : d;
|
|
|
|
m = JS_BIT(16);
|
|
|
|
d = fmod(d, (double) m);
|
|
|
|
if (d < 0)
|
|
|
|
d += m;
|
|
|
|
u = (uint16) d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*vp = INT_TO_JSVAL(u);
|
|
|
|
return u;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
jsdouble
|
|
|
|
js_DoubleToInteger(jsdouble d)
|
|
|
|
{
|
|
|
|
JSBool neg;
|
|
|
|
|
|
|
|
if (d == 0)
|
|
|
|
return d;
|
|
|
|
if (!JSDOUBLE_IS_FINITE(d)) {
|
|
|
|
if (JSDOUBLE_IS_NaN(d))
|
|
|
|
return 0;
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
neg = (d < 0);
|
|
|
|
d = floor(neg ? -d : d);
|
|
|
|
return neg ? -d : d;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSBool
|
2007-08-04 12:05:16 -07:00
|
|
|
js_strtod(JSContext *cx, const jschar *s, const jschar *send,
|
|
|
|
const jschar **ep, jsdouble *dp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-08-04 12:05:16 -07:00
|
|
|
const jschar *s1;
|
|
|
|
size_t length, i;
|
2007-03-22 10:30:00 -07:00
|
|
|
char cbuf[32];
|
|
|
|
char *cstr, *istr, *estr;
|
|
|
|
JSBool negative;
|
|
|
|
jsdouble d;
|
2007-08-04 12:05:16 -07:00
|
|
|
|
|
|
|
s1 = js_SkipWhiteSpace(s, send);
|
|
|
|
length = send - s1;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/* Use cbuf to avoid malloc */
|
|
|
|
if (length >= sizeof cbuf) {
|
|
|
|
cstr = (char *) JS_malloc(cx, length + 1);
|
|
|
|
if (!cstr)
|
|
|
|
return JS_FALSE;
|
|
|
|
} else {
|
|
|
|
cstr = cbuf;
|
|
|
|
}
|
|
|
|
|
2007-08-04 12:05:16 -07:00
|
|
|
for (i = 0; i != length; i++) {
|
|
|
|
if (s1[i] >> 8)
|
2007-03-22 10:30:00 -07:00
|
|
|
break;
|
|
|
|
cstr[i] = (char)s1[i];
|
|
|
|
}
|
2007-08-04 12:05:16 -07:00
|
|
|
cstr[i] = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
istr = cstr;
|
|
|
|
if ((negative = (*istr == '-')) != 0 || *istr == '+')
|
|
|
|
istr++;
|
|
|
|
if (!strncmp(istr, js_Infinity_str, sizeof js_Infinity_str - 1)) {
|
|
|
|
d = *(negative ? cx->runtime->jsNegativeInfinity : cx->runtime->jsPositiveInfinity);
|
|
|
|
estr = istr + 8;
|
|
|
|
} else {
|
|
|
|
int err;
|
|
|
|
d = JS_strtod(cstr, &estr, &err);
|
2008-07-24 12:43:41 -07:00
|
|
|
if (d == HUGE_VAL)
|
|
|
|
d = *cx->runtime->jsPositiveInfinity;
|
|
|
|
else if (d == -HUGE_VAL)
|
|
|
|
d = *cx->runtime->jsNegativeInfinity;
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifdef HPUX
|
|
|
|
if (d == 0.0 && negative) {
|
|
|
|
/*
|
|
|
|
* "-0", "-1e-2000" come out as positive zero
|
|
|
|
* here on HPUX. Force a negative zero instead.
|
|
|
|
*/
|
|
|
|
JSDOUBLE_HI32(d) = JSDOUBLE_HI32_SIGNBIT;
|
|
|
|
JSDOUBLE_LO32(d) = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
i = estr - cstr;
|
|
|
|
if (cstr != cbuf)
|
|
|
|
JS_free(cx, cstr);
|
|
|
|
*ep = i ? s1 + i : s;
|
|
|
|
*dp = d;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct BinaryDigitReader
|
|
|
|
{
|
|
|
|
uintN base; /* Base of number; must be a power of 2 */
|
|
|
|
uintN digit; /* Current digit value in radix given by base */
|
|
|
|
uintN digitMask; /* Mask to extract the next bit from digit */
|
|
|
|
const jschar *digits; /* Pointer to the remaining digits */
|
|
|
|
const jschar *end; /* Pointer to first non-digit */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Return the next binary digit from the number or -1 if done */
|
|
|
|
static intN GetNextBinaryDigit(struct BinaryDigitReader *bdr)
|
|
|
|
{
|
|
|
|
intN bit;
|
|
|
|
|
|
|
|
if (bdr->digitMask == 0) {
|
|
|
|
uintN c;
|
|
|
|
|
|
|
|
if (bdr->digits == bdr->end)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
c = *bdr->digits++;
|
|
|
|
if ('0' <= c && c <= '9')
|
|
|
|
bdr->digit = c - '0';
|
|
|
|
else if ('a' <= c && c <= 'z')
|
|
|
|
bdr->digit = c - 'a' + 10;
|
|
|
|
else bdr->digit = c - 'A' + 10;
|
|
|
|
bdr->digitMask = bdr->base >> 1;
|
|
|
|
}
|
|
|
|
bit = (bdr->digit & bdr->digitMask) != 0;
|
|
|
|
bdr->digitMask >>= 1;
|
|
|
|
return bit;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSBool
|
2007-08-04 12:05:16 -07:00
|
|
|
js_strtointeger(JSContext *cx, const jschar *s, const jschar *send,
|
|
|
|
const jschar **ep, jsint base, jsdouble *dp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-08-04 12:05:16 -07:00
|
|
|
const jschar *s1, *start;
|
2007-03-22 10:30:00 -07:00
|
|
|
JSBool negative;
|
|
|
|
jsdouble value;
|
|
|
|
|
2007-08-04 12:05:16 -07:00
|
|
|
s1 = js_SkipWhiteSpace(s, send);
|
|
|
|
if (s1 == send)
|
|
|
|
goto no_digits;
|
|
|
|
if ((negative = (*s1 == '-')) != 0 || *s1 == '+') {
|
2007-03-22 10:30:00 -07:00
|
|
|
s1++;
|
2007-08-04 12:05:16 -07:00
|
|
|
if (s1 == send)
|
|
|
|
goto no_digits;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (base == 0) {
|
|
|
|
/* No base supplied, or some base that evaluated to 0. */
|
|
|
|
if (*s1 == '0') {
|
|
|
|
/* It's either hex or octal; only increment char if str isn't '0' */
|
2007-08-04 12:05:16 -07:00
|
|
|
if (s1 + 1 != send && (s1[1] == 'X' || s1[1] == 'x')) {
|
2007-08-02 04:34:41 -07:00
|
|
|
base = 16;
|
2007-08-04 12:05:16 -07:00
|
|
|
s1 += 2;
|
|
|
|
if (s1 == send)
|
|
|
|
goto no_digits;
|
|
|
|
} else {
|
2007-03-22 10:30:00 -07:00
|
|
|
base = 8;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
base = 10; /* Default to decimal. */
|
|
|
|
}
|
2007-08-04 12:05:16 -07:00
|
|
|
} else if (base == 16) {
|
2007-03-22 10:30:00 -07:00
|
|
|
/* If base is 16, ignore hex prefix. */
|
2007-08-04 12:05:16 -07:00
|
|
|
if (*s1 == '0' && s1 + 1 != send && (s1[1] == 'X' || s1[1] == 'x')) {
|
|
|
|
s1 += 2;
|
|
|
|
if (s1 == send)
|
|
|
|
goto no_digits;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Done with the preliminaries; find some prefix of the string that's
|
|
|
|
* a number in the given base.
|
|
|
|
*/
|
2007-08-04 12:05:16 -07:00
|
|
|
JS_ASSERT(s1 < send);
|
|
|
|
start = s1;
|
2007-03-22 10:30:00 -07:00
|
|
|
value = 0.0;
|
2007-08-04 12:05:16 -07:00
|
|
|
do {
|
2007-03-22 10:30:00 -07:00
|
|
|
uintN digit;
|
|
|
|
jschar c = *s1;
|
|
|
|
if ('0' <= c && c <= '9')
|
|
|
|
digit = c - '0';
|
|
|
|
else if ('a' <= c && c <= 'z')
|
|
|
|
digit = c - 'a' + 10;
|
|
|
|
else if ('A' <= c && c <= 'Z')
|
|
|
|
digit = c - 'A' + 10;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
if (digit >= (uintN)base)
|
|
|
|
break;
|
|
|
|
value = value * base + digit;
|
2007-08-04 12:05:16 -07:00
|
|
|
} while (++s1 != send);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (value >= 9007199254740992.0) {
|
|
|
|
if (base == 10) {
|
|
|
|
/*
|
|
|
|
* If we're accumulating a decimal number and the number is >=
|
|
|
|
* 2^53, then the result from the repeated multiply-add above may
|
|
|
|
* be inaccurate. Call JS_strtod to get the correct answer.
|
|
|
|
*/
|
|
|
|
size_t i;
|
|
|
|
size_t length = s1 - start;
|
|
|
|
char *cstr = (char *) JS_malloc(cx, length + 1);
|
|
|
|
char *estr;
|
|
|
|
int err=0;
|
|
|
|
|
|
|
|
if (!cstr)
|
|
|
|
return JS_FALSE;
|
|
|
|
for (i = 0; i != length; i++)
|
|
|
|
cstr[i] = (char)start[i];
|
|
|
|
cstr[length] = 0;
|
|
|
|
|
|
|
|
value = JS_strtod(cstr, &estr, &err);
|
|
|
|
if (err == JS_DTOA_ENOMEM) {
|
|
|
|
JS_ReportOutOfMemory(cx);
|
|
|
|
JS_free(cx, cstr);
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
if (err == JS_DTOA_ERANGE && value == HUGE_VAL)
|
|
|
|
value = *cx->runtime->jsPositiveInfinity;
|
|
|
|
JS_free(cx, cstr);
|
|
|
|
} else if ((base & (base - 1)) == 0) {
|
|
|
|
/*
|
|
|
|
* The number may also be inaccurate for power-of-two bases. This
|
|
|
|
* happens if the addition in value * base + digit causes a round-
|
|
|
|
* down to an even least significant mantissa bit when the first
|
|
|
|
* dropped bit is a one. If any of the following digits in the
|
|
|
|
* number (which haven't been added in yet) are nonzero, then the
|
|
|
|
* correct action would have been to round up instead of down. An
|
|
|
|
* example occurs when reading the number 0x1000000000000081, which
|
|
|
|
* rounds to 0x1000000000000000 instead of 0x1000000000000100.
|
|
|
|
*/
|
|
|
|
struct BinaryDigitReader bdr;
|
|
|
|
intN bit, bit2;
|
|
|
|
intN j;
|
|
|
|
|
|
|
|
bdr.base = base;
|
|
|
|
bdr.digitMask = 0;
|
|
|
|
bdr.digits = start;
|
|
|
|
bdr.end = s1;
|
|
|
|
value = 0.0;
|
|
|
|
|
|
|
|
/* Skip leading zeros. */
|
|
|
|
do {
|
|
|
|
bit = GetNextBinaryDigit(&bdr);
|
|
|
|
} while (bit == 0);
|
|
|
|
|
|
|
|
if (bit == 1) {
|
|
|
|
/* Gather the 53 significant bits (including the leading 1) */
|
|
|
|
value = 1.0;
|
|
|
|
for (j = 52; j; j--) {
|
|
|
|
bit = GetNextBinaryDigit(&bdr);
|
|
|
|
if (bit < 0)
|
|
|
|
goto done;
|
|
|
|
value = value*2 + bit;
|
|
|
|
}
|
|
|
|
/* bit2 is the 54th bit (the first dropped from the mantissa) */
|
|
|
|
bit2 = GetNextBinaryDigit(&bdr);
|
|
|
|
if (bit2 >= 0) {
|
|
|
|
jsdouble factor = 2.0;
|
|
|
|
intN sticky = 0; /* sticky is 1 if any bit beyond the 54th is 1 */
|
|
|
|
intN bit3;
|
|
|
|
|
|
|
|
while ((bit3 = GetNextBinaryDigit(&bdr)) >= 0) {
|
|
|
|
sticky |= bit3;
|
|
|
|
factor *= 2;
|
|
|
|
}
|
|
|
|
value += bit2 & (bit | sticky);
|
|
|
|
value *= factor;
|
|
|
|
}
|
|
|
|
done:;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* We don't worry about inaccurate numbers for any other base. */
|
|
|
|
|
|
|
|
if (s1 == start) {
|
2007-08-04 12:05:16 -07:00
|
|
|
no_digits:
|
2007-03-22 10:30:00 -07:00
|
|
|
*dp = 0.0;
|
|
|
|
*ep = s;
|
|
|
|
} else {
|
|
|
|
*dp = negative ? -value : value;
|
|
|
|
*ep = s1;
|
|
|
|
}
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|