2009-06-11 01:29:44 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2006-10-05 23:28:51 +00:00
|
|
|
* vim: set sw=4 ts=8 et tw=78:
|
1998-03-28 02:44:41 +00:00
|
|
|
*
|
2003-11-15 00:11:16 +00:00
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-03-28 02:44:41 +00:00
|
|
|
*
|
2003-11-15 00:11:16 +00:00
|
|
|
* 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.
|
1998-03-28 02:44:41 +00:00
|
|
|
*
|
2001-09-20 00:02:59 +00:00
|
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
|
|
* March 31, 1998.
|
1999-09-28 23:12:09 +00:00
|
|
|
*
|
2003-11-15 00:11:16 +00:00
|
|
|
* 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.
|
1999-09-28 23:12:09 +00:00
|
|
|
*
|
2001-01-04 10:13:18 +00:00
|
|
|
* Contributor(s):
|
1999-09-28 23:12:09 +00:00
|
|
|
*
|
2003-11-15 00:11:16 +00:00
|
|
|
* 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 ***** */
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* JS array class.
|
2008-02-18 21:01:47 +00:00
|
|
|
*
|
2009-03-04 08:12:35 +00:00
|
|
|
* Array objects begin as "dense" arrays, optimized for index-only property
|
2008-02-18 21:01:47 +00:00
|
|
|
* access over a vector of slots (obj->dslots) with high load factor. Array
|
|
|
|
* methods optimize for denseness by testing that the object's class is
|
|
|
|
* &js_ArrayClass, and can then directly manipulate the slots for efficiency.
|
2008-03-02 17:45:33 +00:00
|
|
|
*
|
2008-02-18 21:01:47 +00:00
|
|
|
* We track these pieces of metadata for arrays in dense mode:
|
|
|
|
* - the array's length property as a uint32, in JSSLOT_ARRAY_LENGTH,
|
|
|
|
* - the number of indices that are filled (non-holes), in JSSLOT_ARRAY_COUNT,
|
2009-02-21 21:33:50 +00:00
|
|
|
* - the net number of slots starting at dslots (capacity), in dslots[-1] if
|
2008-02-18 21:01:47 +00:00
|
|
|
* dslots is non-NULL.
|
2008-03-02 17:45:33 +00:00
|
|
|
*
|
2008-02-18 21:01:47 +00:00
|
|
|
* In dense mode, holes in the array are represented by JSVAL_HOLE. The final
|
2009-04-17 09:37:59 +00:00
|
|
|
* slot in fslots is unused.
|
2008-03-02 17:45:33 +00:00
|
|
|
*
|
2009-05-11 21:57:18 +00:00
|
|
|
* NB: the capacity and length of a dense array are entirely unrelated! The
|
|
|
|
* length may be greater than, less than, or equal to the capacity. See
|
|
|
|
* array_length_setter for an explanation of how the first, most surprising
|
|
|
|
* case may occur.
|
|
|
|
*
|
2008-02-18 21:01:47 +00:00
|
|
|
* Arrays are converted to use js_SlowArrayClass when any of these conditions
|
|
|
|
* are met:
|
2009-02-21 21:33:50 +00:00
|
|
|
* - the load factor (COUNT / capacity) is less than 0.25, and there are
|
2008-02-18 21:01:47 +00:00
|
|
|
* more than MIN_SPARSE_INDEX slots total
|
2009-03-04 08:12:35 +00:00
|
|
|
* - a property is set that is not indexed (and not "length"); or
|
2009-02-21 21:33:50 +00:00
|
|
|
* - a property is defined that has non-default property attributes.
|
2008-02-18 21:01:47 +00:00
|
|
|
*
|
2009-02-21 21:33:50 +00:00
|
|
|
* Dense arrays do not track property creation order, so unlike other native
|
|
|
|
* objects and slow arrays, enumerating an array does not necessarily visit the
|
|
|
|
* properties in the order they were created. We could instead maintain the
|
|
|
|
* scope to track property enumeration order, but still use the fast slot
|
|
|
|
* access. That would have the same memory cost as just using a
|
|
|
|
* js_SlowArrayClass, but have the same performance characteristics as a dense
|
|
|
|
* array for slot accesses, at some cost in code complexity.
|
1998-03-28 02:44:41 +00:00
|
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1998-10-14 10:22:38 +00:00
|
|
|
#include "jstypes.h"
|
2009-03-18 18:38:16 +00:00
|
|
|
#include "jsstdint.h"
|
1998-10-14 10:22:38 +00:00
|
|
|
#include "jsutil.h" /* Added by JSIFY */
|
1998-03-28 02:44:41 +00:00
|
|
|
#include "jsapi.h"
|
|
|
|
#include "jsarray.h"
|
|
|
|
#include "jsatom.h"
|
2008-02-18 21:01:47 +00:00
|
|
|
#include "jsbit.h"
|
2005-04-17 18:31:59 +00:00
|
|
|
#include "jsbool.h"
|
2009-09-04 20:44:31 +00:00
|
|
|
#include "jstracer.h"
|
2008-10-08 22:08:33 +00:00
|
|
|
#include "jsbuiltins.h"
|
1998-03-28 02:44:41 +00:00
|
|
|
#include "jscntxt.h"
|
2008-09-05 17:19:17 +00:00
|
|
|
#include "jsversion.h"
|
2008-02-18 21:01:47 +00:00
|
|
|
#include "jsdbgapi.h" /* for js_TraceWatchPoints */
|
2007-11-29 07:09:21 +00:00
|
|
|
#include "jsdtoa.h"
|
1998-03-28 02:44:41 +00:00
|
|
|
#include "jsfun.h"
|
|
|
|
#include "jsgc.h"
|
|
|
|
#include "jsinterp.h"
|
|
|
|
#include "jslock.h"
|
|
|
|
#include "jsnum.h"
|
|
|
|
#include "jsobj.h"
|
2008-02-18 21:01:47 +00:00
|
|
|
#include "jsscope.h"
|
1998-03-28 02:44:41 +00:00
|
|
|
#include "jsstr.h"
|
2008-09-08 17:51:10 +00:00
|
|
|
#include "jsstaticcheck.h"
|
2009-07-01 00:19:42 +00:00
|
|
|
#include "jsvector.h"
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2009-07-13 21:55:04 +00:00
|
|
|
#include "jsatominlines.h"
|
|
|
|
|
1998-07-31 00:07:22 +00:00
|
|
|
/* 2^32 - 1 as a number and a string */
|
|
|
|
#define MAXINDEX 4294967295u
|
|
|
|
#define MAXSTR "4294967295"
|
1998-06-09 16:47:00 +00:00
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
/* Small arrays are dense, no matter what. */
|
2009-02-25 22:48:07 +00:00
|
|
|
#define MIN_SPARSE_INDEX 256
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2009-04-19 05:09:37 +00:00
|
|
|
static inline bool
|
|
|
|
INDEX_TOO_BIG(jsuint index)
|
|
|
|
{
|
|
|
|
return index > JS_BIT(29) - 1;
|
|
|
|
}
|
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
#define INDEX_TOO_SPARSE(array, index) \
|
|
|
|
(INDEX_TOO_BIG(index) || \
|
2009-02-21 21:33:50 +00:00
|
|
|
((index) > js_DenseArrayCapacity(array) && (index) >= MIN_SPARSE_INDEX && \
|
2008-02-26 00:59:36 +00:00
|
|
|
(index) > (uint32)((array)->fslots[JSSLOT_ARRAY_COUNT] + 1) * 4))
|
2008-02-18 21:01:47 +00:00
|
|
|
|
|
|
|
JS_STATIC_ASSERT(sizeof(JSScopeProperty) > 4 * sizeof(jsval));
|
|
|
|
|
|
|
|
#define ENSURE_SLOW_ARRAY(cx, obj) \
|
2008-07-01 19:47:09 +00:00
|
|
|
(OBJ_GET_CLASS(cx, obj) == &js_SlowArrayClass || js_MakeArraySlow(cx, obj))
|
2008-02-18 21:01:47 +00:00
|
|
|
|
1998-07-31 00:07:22 +00:00
|
|
|
/*
|
2004-10-05 10:19:07 +00:00
|
|
|
* Determine if the id represents an array index or an XML property index.
|
1998-07-31 00:07:22 +00:00
|
|
|
*
|
1998-06-09 16:47:00 +00:00
|
|
|
* An id is an array index according to ECMA by (15.4):
|
|
|
|
*
|
|
|
|
* "Array objects give special treatment to a certain class of property names.
|
|
|
|
* A property name P (in the form of a string value) is an array index if and
|
1998-07-31 00:07:22 +00:00
|
|
|
* only if ToString(ToUint32(P)) is equal to P and ToUint32(P) is not equal
|
1998-06-09 16:47:00 +00:00
|
|
|
* to 2^32-1."
|
1998-07-31 00:07:22 +00:00
|
|
|
*
|
1998-06-09 16:47:00 +00:00
|
|
|
* In our implementation, it would be sufficient to check for JSVAL_IS_INT(id)
|
1998-07-31 00:07:22 +00:00
|
|
|
* except that by using signed 32-bit integers we miss the top half of the
|
1998-06-09 16:47:00 +00:00
|
|
|
* valid range. This function checks the string representation itself; note
|
1998-07-31 00:07:22 +00:00
|
|
|
* that calling a standard conversion routine might allow strings such as
|
1998-06-09 16:47:00 +00:00
|
|
|
* "08" or "4.0" as array indices, which they are not.
|
|
|
|
*/
|
2004-10-05 10:19:07 +00:00
|
|
|
JSBool
|
|
|
|
js_IdIsIndex(jsval id, jsuint *indexp)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1998-04-24 00:31:11 +00:00
|
|
|
JSString *str;
|
1998-07-31 00:07:22 +00:00
|
|
|
jschar *cp;
|
1998-04-24 00:31:11 +00:00
|
|
|
|
|
|
|
if (JSVAL_IS_INT(id)) {
|
2003-06-12 00:26:40 +00:00
|
|
|
jsint i;
|
|
|
|
i = JSVAL_TO_INT(id);
|
|
|
|
if (i < 0)
|
|
|
|
return JS_FALSE;
|
|
|
|
*indexp = (jsuint)i;
|
|
|
|
return JS_TRUE;
|
1998-04-24 00:31:11 +00:00
|
|
|
}
|
|
|
|
|
2004-10-05 10:19:07 +00:00
|
|
|
/* NB: id should be a string, but jsxml.c may call us with an object id. */
|
|
|
|
if (!JSVAL_IS_STRING(id))
|
|
|
|
return JS_FALSE;
|
|
|
|
|
1998-04-24 00:31:11 +00:00
|
|
|
str = JSVAL_TO_STRING(id);
|
2009-06-11 01:29:44 +00:00
|
|
|
cp = str->chars();
|
|
|
|
if (JS7_ISDEC(*cp) && str->length() < sizeof(MAXSTR)) {
|
2003-06-12 00:26:40 +00:00
|
|
|
jsuint index = JS7_UNDEC(*cp++);
|
|
|
|
jsuint oldIndex = 0;
|
|
|
|
jsuint c = 0;
|
|
|
|
if (index != 0) {
|
|
|
|
while (JS7_ISDEC(*cp)) {
|
|
|
|
oldIndex = index;
|
|
|
|
c = JS7_UNDEC(*cp);
|
|
|
|
index = 10*index + c;
|
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
}
|
2004-10-05 10:19:07 +00:00
|
|
|
|
|
|
|
/* Ensure that all characters were consumed and we didn't overflow. */
|
2003-06-12 00:26:40 +00:00
|
|
|
if (*cp == 0 &&
|
|
|
|
(oldIndex < (MAXINDEX / 10) ||
|
|
|
|
(oldIndex == (MAXINDEX / 10) && c < (MAXINDEX % 10))))
|
|
|
|
{
|
|
|
|
*indexp = index;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
1998-06-09 16:47:00 +00:00
|
|
|
}
|
1998-07-31 00:07:22 +00:00
|
|
|
return JS_FALSE;
|
1998-04-24 00:31:11 +00:00
|
|
|
}
|
|
|
|
|
2008-03-06 23:24:08 +00:00
|
|
|
static jsuint
|
|
|
|
ValueIsLength(JSContext *cx, jsval* vp)
|
1998-04-24 00:31:11 +00:00
|
|
|
{
|
|
|
|
jsint i;
|
2001-10-26 02:35:01 +00:00
|
|
|
jsdouble d;
|
2008-03-06 23:24:08 +00:00
|
|
|
jsuint length;
|
1998-07-31 00:07:22 +00:00
|
|
|
|
2008-03-06 23:24:08 +00:00
|
|
|
if (JSVAL_IS_INT(*vp)) {
|
|
|
|
i = JSVAL_TO_INT(*vp);
|
|
|
|
if (i < 0)
|
|
|
|
goto error;
|
|
|
|
return (jsuint) i;
|
1998-07-31 00:07:22 +00:00
|
|
|
}
|
2004-10-05 10:19:07 +00:00
|
|
|
|
2008-03-06 23:24:08 +00:00
|
|
|
d = js_ValueToNumber(cx, vp);
|
|
|
|
if (JSVAL_IS_NULL(*vp))
|
|
|
|
goto error;
|
2007-12-21 22:06:37 +00:00
|
|
|
|
2008-03-06 23:24:08 +00:00
|
|
|
if (JSDOUBLE_IS_NaN(d))
|
|
|
|
goto error;
|
|
|
|
length = (jsuint) d;
|
|
|
|
if (d != (jsdouble) length)
|
|
|
|
goto error;
|
|
|
|
return length;
|
2007-12-21 22:06:37 +00:00
|
|
|
|
2008-03-06 23:24:08 +00:00
|
|
|
error:
|
|
|
|
JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL,
|
|
|
|
JSMSG_BAD_ARRAY_LENGTH);
|
|
|
|
*vp = JSVAL_NULL;
|
|
|
|
return 0;
|
1998-04-24 00:31:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
JSBool
|
|
|
|
js_GetLengthProperty(JSContext *cx, JSObject *obj, jsuint *lengthp)
|
|
|
|
{
|
2008-02-18 21:01:47 +00:00
|
|
|
if (OBJ_IS_ARRAY(cx, obj)) {
|
2008-02-26 00:59:36 +00:00
|
|
|
*lengthp = obj->fslots[JSSLOT_ARRAY_LENGTH];
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
1998-04-24 00:31:11 +00:00
|
|
|
|
2009-05-29 21:57:32 +00:00
|
|
|
JSAutoTempValueRooter tvr(cx, JSVAL_NULL);
|
2009-08-11 20:05:44 +00:00
|
|
|
if (!obj->getProperty(cx, ATOM_TO_JSID(cx->runtime->atomState.lengthAtom), tvr.addr()))
|
2009-05-29 21:57:32 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
if (JSVAL_IS_INT(tvr.value())) {
|
|
|
|
*lengthp = jsuint(jsint(JSVAL_TO_INT(tvr.value()))); /* jsuint cast does ToUint32 */
|
|
|
|
return JS_TRUE;
|
1998-04-24 00:31:11 +00:00
|
|
|
}
|
2009-05-29 21:57:32 +00:00
|
|
|
|
|
|
|
*lengthp = js_ValueToECMAUint32(cx, tvr.addr());
|
|
|
|
return !JSVAL_IS_NULL(tvr.value());
|
1998-04-24 00:31:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2009-01-12 21:07:48 +00:00
|
|
|
IndexToValue(JSContext *cx, jsdouble index, jsval *vp)
|
1998-04-24 00:31:11 +00:00
|
|
|
{
|
2009-01-12 21:07:48 +00:00
|
|
|
return js_NewWeaklyRootedNumber(cx, index, vp);
|
1998-04-24 00:31:11 +00:00
|
|
|
}
|
|
|
|
|
2008-09-15 07:54:28 +00:00
|
|
|
JSBool JS_FASTCALL
|
|
|
|
js_IndexToId(JSContext *cx, jsuint index, jsid *idp)
|
2008-03-02 17:45:33 +00:00
|
|
|
{
|
|
|
|
JSString *str;
|
|
|
|
|
|
|
|
if (index <= JSVAL_INT_MAX) {
|
|
|
|
*idp = INT_TO_JSID(index);
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
str = js_NumberToString(cx, index);
|
|
|
|
if (!str)
|
|
|
|
return JS_FALSE;
|
|
|
|
return js_ValueToStringId(cx, STRING_TO_JSVAL(str), idp);
|
|
|
|
}
|
|
|
|
|
1998-04-24 00:31:11 +00:00
|
|
|
static JSBool
|
2006-08-12 08:41:54 +00:00
|
|
|
BigIndexToId(JSContext *cx, JSObject *obj, jsuint index, JSBool createAtom,
|
|
|
|
jsid *idp)
|
1998-04-24 00:31:11 +00:00
|
|
|
{
|
2006-08-12 08:41:54 +00:00
|
|
|
jschar buf[10], *start;
|
|
|
|
JSClass *clasp;
|
1998-04-24 00:31:11 +00:00
|
|
|
JSAtom *atom;
|
2006-08-12 08:41:54 +00:00
|
|
|
JS_STATIC_ASSERT((jsuint)-1 == 4294967295U);
|
2006-08-08 20:25:30 +00:00
|
|
|
|
2006-08-12 08:41:54 +00:00
|
|
|
JS_ASSERT(index > JSVAL_INT_MAX);
|
|
|
|
|
|
|
|
start = JS_ARRAY_END(buf);
|
|
|
|
do {
|
|
|
|
--start;
|
|
|
|
*start = (jschar)('0' + index % 10);
|
|
|
|
index /= 10;
|
|
|
|
} while (index != 0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Skip the atomization if the class is known to store atoms corresponding
|
|
|
|
* to big indexes together with elements. In such case we know that the
|
|
|
|
* array does not have an element at the given index if its atom does not
|
2008-02-18 21:01:47 +00:00
|
|
|
* exist. Fast arrays (clasp == &js_ArrayClass) don't use atoms for
|
|
|
|
* any indexes, though it would be rare to see them have a big index
|
|
|
|
* in any case.
|
2006-08-12 08:41:54 +00:00
|
|
|
*/
|
|
|
|
if (!createAtom &&
|
2008-02-18 21:01:47 +00:00
|
|
|
((clasp = OBJ_GET_CLASS(cx, obj)) == &js_SlowArrayClass ||
|
2006-08-12 08:41:54 +00:00
|
|
|
clasp == &js_ArgumentsClass ||
|
|
|
|
clasp == &js_ObjectClass)) {
|
|
|
|
atom = js_GetExistingStringAtom(cx, start, JS_ARRAY_END(buf) - start);
|
|
|
|
if (!atom) {
|
|
|
|
*idp = JSVAL_VOID;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
} else {
|
2006-08-12 08:41:54 +00:00
|
|
|
atom = js_AtomizeChars(cx, start, JS_ARRAY_END(buf) - start, 0);
|
2003-06-12 00:26:40 +00:00
|
|
|
if (!atom)
|
|
|
|
return JS_FALSE;
|
2006-08-08 23:52:08 +00:00
|
|
|
}
|
2006-08-12 08:41:54 +00:00
|
|
|
|
|
|
|
*idp = ATOM_TO_JSID(atom);
|
1998-03-28 02:44:41 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
static JSBool
|
2009-09-02 05:54:02 +00:00
|
|
|
ResizeSlots(JSContext *cx, JSObject *obj, uint32 oldlen, uint32 newlen)
|
2008-02-18 21:01:47 +00:00
|
|
|
{
|
|
|
|
jsval *slots, *newslots;
|
2008-03-02 17:45:33 +00:00
|
|
|
|
2009-09-02 05:54:02 +00:00
|
|
|
if (newlen == 0) {
|
2008-02-18 21:01:47 +00:00
|
|
|
if (obj->dslots) {
|
2009-07-28 04:10:12 +00:00
|
|
|
cx->free(obj->dslots - 1);
|
2008-02-18 21:01:47 +00:00
|
|
|
obj->dslots = NULL;
|
|
|
|
}
|
|
|
|
return JS_TRUE;
|
2008-03-02 17:45:33 +00:00
|
|
|
}
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2009-09-02 05:54:02 +00:00
|
|
|
if (newlen > MAX_DSLOTS_LENGTH) {
|
2008-03-12 23:07:47 +00:00
|
|
|
js_ReportAllocationOverflow(cx);
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
slots = obj->dslots ? obj->dslots - 1 : NULL;
|
2009-09-02 05:54:02 +00:00
|
|
|
newslots = (jsval *) cx->realloc(slots, (newlen + 1) * sizeof(jsval));
|
2008-02-18 21:01:47 +00:00
|
|
|
if (!newslots)
|
|
|
|
return JS_FALSE;
|
2008-03-02 17:45:33 +00:00
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
obj->dslots = newslots + 1;
|
2009-09-02 05:54:02 +00:00
|
|
|
js_SetDenseArrayCapacity(obj, newlen);
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2009-09-02 05:54:02 +00:00
|
|
|
for (slots = obj->dslots + oldlen; slots < obj->dslots + newlen; slots++)
|
2008-02-18 21:01:47 +00:00
|
|
|
*slots = JSVAL_HOLE;
|
2008-03-02 17:45:33 +00:00
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2009-02-23 23:31:02 +00:00
|
|
|
/*
|
|
|
|
* When a dense array with CAPACITY_DOUBLING_MAX or fewer slots needs to grow,
|
|
|
|
* double its capacity, to push() N elements in amortized O(N) time.
|
|
|
|
*
|
|
|
|
* Above this limit, grow by 12.5% each time. Speed is still amortized O(N),
|
|
|
|
* with a higher constant factor, and we waste less space.
|
|
|
|
*/
|
|
|
|
#define CAPACITY_DOUBLING_MAX (1024 * 1024)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Round up all large allocations to a multiple of this (1MB), so as not to
|
|
|
|
* waste space if malloc gives us 1MB-sized chunks (as jemalloc does).
|
|
|
|
*/
|
|
|
|
#define CAPACITY_CHUNK (1024 * 1024 / sizeof(jsval))
|
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
static JSBool
|
2009-09-02 05:54:02 +00:00
|
|
|
EnsureCapacity(JSContext *cx, JSObject *obj, uint32 newcap)
|
2008-02-18 21:01:47 +00:00
|
|
|
{
|
2009-09-02 05:54:02 +00:00
|
|
|
uint32 oldcap = js_DenseArrayCapacity(obj);
|
2009-02-23 23:31:02 +00:00
|
|
|
|
2009-09-02 05:54:02 +00:00
|
|
|
if (newcap > oldcap) {
|
2009-02-23 23:31:02 +00:00
|
|
|
/*
|
2009-09-02 05:54:02 +00:00
|
|
|
* If this overflows uint32, newcap is very large. nextsize will end
|
|
|
|
* up being less than newcap, the code below will thus disregard it,
|
2009-02-23 23:31:02 +00:00
|
|
|
* and ResizeSlots will fail.
|
|
|
|
*
|
|
|
|
* The way we use dslots[-1] forces a few +1s and -1s here. For
|
2009-09-02 05:54:02 +00:00
|
|
|
* example, (oldcap * 2 + 1) produces the sequence 7, 15, 31, 63, ...
|
2009-02-23 23:31:02 +00:00
|
|
|
* which makes the total allocation size (with dslots[-1]) a power
|
|
|
|
* of two.
|
|
|
|
*/
|
2009-09-02 05:54:02 +00:00
|
|
|
uint32 nextsize = (oldcap <= CAPACITY_DOUBLING_MAX)
|
|
|
|
? oldcap * 2 + 1
|
|
|
|
: oldcap + (oldcap >> 3);
|
|
|
|
|
|
|
|
newcap = JS_MAX(newcap, nextsize);
|
|
|
|
if (newcap >= CAPACITY_CHUNK)
|
|
|
|
newcap = JS_ROUNDUP(newcap + 1, CAPACITY_CHUNK) - 1; /* -1 for dslots[-1] */
|
|
|
|
else if (newcap < ARRAY_CAPACITY_MIN)
|
|
|
|
newcap = ARRAY_CAPACITY_MIN;
|
|
|
|
return ResizeSlots(cx, obj, oldcap, newcap);
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2009-01-12 21:07:48 +00:00
|
|
|
static bool
|
|
|
|
ReallyBigIndexToId(JSContext* cx, jsdouble index, jsid* idp)
|
|
|
|
{
|
|
|
|
JSAutoTempValueRooter dval(cx);
|
|
|
|
if (!js_NewDoubleInRootedValue(cx, index, dval.addr()) ||
|
|
|
|
!js_ValueToStringId(cx, dval.value(), idp)) {
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
IndexToId(JSContext* cx, JSObject* obj, jsdouble index, JSBool* hole, jsid* idp,
|
|
|
|
JSBool createAtom = JS_FALSE)
|
|
|
|
{
|
|
|
|
if (index <= JSVAL_INT_MAX) {
|
|
|
|
*idp = INT_TO_JSID(index);
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index <= jsuint(-1)) {
|
|
|
|
if (!BigIndexToId(cx, obj, jsuint(index), createAtom, idp))
|
|
|
|
return JS_FALSE;
|
|
|
|
if (hole && JSVAL_IS_VOID(*idp))
|
|
|
|
*hole = JS_TRUE;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ReallyBigIndexToId(cx, index, idp);
|
|
|
|
}
|
|
|
|
|
2006-08-12 08:41:54 +00:00
|
|
|
/*
|
|
|
|
* If the property at the given index exists, get its value into location
|
|
|
|
* pointed by vp and set *hole to false. Otherwise set *hole to true and *vp
|
|
|
|
* to JSVAL_VOID. This function assumes that the location pointed by vp is
|
|
|
|
* properly rooted and can be used as GC-protected storage for temporaries.
|
|
|
|
*/
|
2005-07-13 16:38:46 +00:00
|
|
|
static JSBool
|
2009-01-12 21:07:48 +00:00
|
|
|
GetArrayElement(JSContext *cx, JSObject *obj, jsdouble index, JSBool *hole,
|
2006-08-12 08:41:54 +00:00
|
|
|
jsval *vp)
|
2005-07-13 16:38:46 +00:00
|
|
|
{
|
2009-01-12 21:07:48 +00:00
|
|
|
JS_ASSERT(index >= 0);
|
2009-02-21 21:33:50 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj) && index < js_DenseArrayCapacity(obj) &&
|
2009-01-12 21:07:48 +00:00
|
|
|
(*vp = obj->dslots[jsuint(index)]) != JSVAL_HOLE) {
|
2008-03-08 00:16:51 +00:00
|
|
|
*hole = JS_FALSE;
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2009-01-12 21:07:48 +00:00
|
|
|
JSAutoTempIdRooter idr(cx);
|
|
|
|
|
|
|
|
*hole = JS_FALSE;
|
|
|
|
if (!IndexToId(cx, obj, index, hole, idr.addr()))
|
|
|
|
return JS_FALSE;
|
|
|
|
if (*hole) {
|
|
|
|
*vp = JSVAL_VOID;
|
|
|
|
return JS_TRUE;
|
2006-08-12 08:41:54 +00:00
|
|
|
}
|
|
|
|
|
2009-01-12 21:07:48 +00:00
|
|
|
JSObject *obj2;
|
|
|
|
JSProperty *prop;
|
2009-08-11 20:05:44 +00:00
|
|
|
if (!obj->lookupProperty(cx, idr.id(), &obj2, &prop))
|
2005-07-13 16:38:46 +00:00
|
|
|
return JS_FALSE;
|
2006-08-12 08:41:54 +00:00
|
|
|
if (!prop) {
|
|
|
|
*hole = JS_TRUE;
|
|
|
|
*vp = JSVAL_VOID;
|
|
|
|
} else {
|
2009-08-11 20:05:44 +00:00
|
|
|
obj2->dropProperty(cx, prop);
|
|
|
|
if (!obj->getProperty(cx, idr.id(), vp))
|
2006-08-12 08:41:54 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
*hole = JS_FALSE;
|
|
|
|
}
|
2005-07-13 16:38:46 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2006-08-12 08:41:54 +00:00
|
|
|
/*
|
|
|
|
* Set the value of the property at the given index to v assuming v is rooted.
|
|
|
|
*/
|
|
|
|
static JSBool
|
2009-01-12 21:07:48 +00:00
|
|
|
SetArrayElement(JSContext *cx, JSObject *obj, jsdouble index, jsval v)
|
2006-08-12 08:41:54 +00:00
|
|
|
{
|
2009-01-12 21:07:48 +00:00
|
|
|
JS_ASSERT(index >= 0);
|
2006-08-12 08:41:54 +00:00
|
|
|
|
2008-02-19 07:04:00 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj)) {
|
2009-01-12 21:07:48 +00:00
|
|
|
/* Predicted/prefetched code should favor the remains-dense case. */
|
|
|
|
if (index <= jsuint(-1)) {
|
|
|
|
jsuint idx = jsuint(index);
|
|
|
|
if (!INDEX_TOO_SPARSE(obj, idx)) {
|
|
|
|
JS_ASSERT(idx + 1 > idx);
|
|
|
|
if (!EnsureCapacity(cx, obj, idx + 1))
|
|
|
|
return JS_FALSE;
|
2009-05-11 21:57:18 +00:00
|
|
|
if (idx >= uint32(obj->fslots[JSSLOT_ARRAY_LENGTH]))
|
2009-01-12 21:07:48 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = idx + 1;
|
|
|
|
if (obj->dslots[idx] == JSVAL_HOLE)
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT]++;
|
|
|
|
obj->dslots[idx] = v;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
Kind of an Array initialiser tour-de-force for bug 452878:
1. Split FastNewArray from FastNewObject built-in for greater speed/specialization and further splitting into Array_1str, etc.
2. Add Array_1str, Array_2obj, and Array_3num builtins for benchmarked new Array(...) constructions.
3. Export ARRAY_SET_DENSE_LENGTH and ARRAY_GROWBY via jsarray.h to jstracer.cpp.
4. Tweaked SetArrayElement to make common/best case code be the predicted/prefetched path.
5. js_MakeArraySlow now preserves the pre-slow length in JSSLOT_ARRAY_COUTN as a jsval-tagged int if possible -- this will help the tracer avoid aborting on dense arrays that turned slow but not sparse by addition of a named property.
6. Export js_fun_apply and js_Object from their respective .cpp files, in these cases just to jstracer.cpp via local prototypes (no .h files involved).
7. More INS_CONSTPTR and INS_CONST macrology for better names in trace debug spew.
8. Fix TraceRecorder::test_property_cache to avoid aborting on JSOP_SETNAME that creates a new global, by setting it to undefined so it can be lazily imported. This helps 3d-raytrace.js, which has an unintended global loop control variable in a function.
9. JSTraceableNative loses its premature-deadwood tclasp member (my bad).
10. TraceRecorder::record_JSOP_NEW() handles 'new Object' now along with the 'new Array' variations. I also cut down the copy-paste code from JSOP_CALL's record method to mostly what is needed now.
11. Add KNOWN_NATIVE_DECL macro for concise prototype of library-private js_* native functions, and alphabetized the lists (too long for any other order to be winning).
12. Big honking special case for foo.apply(obj, [str]), which we can generalize as needed. Helps string-tagcloud.js. What's cool is how tracing allows us to rewrite this to foo(str) with this set to obj, eliminating the Function.prototype.apply. This requires some rewriting in JSOP_ENDINIT's record method.
2008-09-01 08:24:58 +00:00
|
|
|
|
|
|
|
if (!js_MakeArraySlow(cx, obj))
|
|
|
|
return JS_FALSE;
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
|
2009-01-12 21:07:48 +00:00
|
|
|
JSAutoTempIdRooter idr(cx);
|
|
|
|
|
|
|
|
if (!IndexToId(cx, obj, index, NULL, idr.addr(), JS_TRUE))
|
|
|
|
return JS_FALSE;
|
|
|
|
JS_ASSERT(!JSVAL_IS_VOID(idr.id()));
|
|
|
|
|
2009-08-11 20:05:44 +00:00
|
|
|
return obj->setProperty(cx, idr.id(), &v);
|
2006-08-12 08:41:54 +00:00
|
|
|
}
|
2005-10-02 06:27:07 +00:00
|
|
|
|
|
|
|
static JSBool
|
2009-01-12 21:07:48 +00:00
|
|
|
DeleteArrayElement(JSContext *cx, JSObject *obj, jsdouble index)
|
2005-10-02 06:27:07 +00:00
|
|
|
{
|
2009-01-12 21:07:48 +00:00
|
|
|
JS_ASSERT(index >= 0);
|
2008-02-19 07:04:00 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj)) {
|
2009-01-12 21:07:48 +00:00
|
|
|
if (index <= jsuint(-1)) {
|
|
|
|
jsuint idx = jsuint(index);
|
|
|
|
if (!INDEX_TOO_SPARSE(obj, idx) && idx < js_DenseArrayCapacity(obj)) {
|
|
|
|
if (obj->dslots[idx] != JSVAL_HOLE)
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT]--;
|
|
|
|
obj->dslots[idx] = JSVAL_HOLE;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2009-01-12 21:07:48 +00:00
|
|
|
JSAutoTempIdRooter idr(cx);
|
|
|
|
|
|
|
|
if (!IndexToId(cx, obj, index, NULL, idr.addr()))
|
|
|
|
return JS_FALSE;
|
|
|
|
if (JSVAL_IS_VOID(idr.id()))
|
|
|
|
return JS_TRUE;
|
|
|
|
|
|
|
|
jsval junk;
|
2009-08-11 20:05:44 +00:00
|
|
|
return obj->deleteProperty(cx, idr.id(), &junk);
|
2006-08-12 08:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When hole is true, delete the property at the given index. Otherwise set
|
|
|
|
* its value to v assuming v is rooted.
|
|
|
|
*/
|
|
|
|
static JSBool
|
2009-01-12 21:07:48 +00:00
|
|
|
SetOrDeleteArrayElement(JSContext *cx, JSObject *obj, jsdouble index,
|
2006-08-12 08:41:54 +00:00
|
|
|
JSBool hole, jsval v)
|
|
|
|
{
|
|
|
|
if (hole) {
|
2008-06-25 09:43:02 +00:00
|
|
|
JS_ASSERT(JSVAL_IS_VOID(v));
|
2006-08-12 08:41:54 +00:00
|
|
|
return DeleteArrayElement(cx, obj, index);
|
|
|
|
}
|
2008-02-18 21:01:47 +00:00
|
|
|
return SetArrayElement(cx, obj, index, v);
|
2006-08-08 20:25:30 +00:00
|
|
|
}
|
|
|
|
|
1998-04-24 00:31:11 +00:00
|
|
|
JSBool
|
2009-01-12 21:07:48 +00:00
|
|
|
js_SetLengthProperty(JSContext *cx, JSObject *obj, jsdouble length)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2008-02-04 03:41:31 +00:00
|
|
|
jsval v;
|
1998-04-24 00:31:11 +00:00
|
|
|
jsid id;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2008-02-04 03:41:31 +00:00
|
|
|
if (!IndexToValue(cx, length, &v))
|
|
|
|
return JS_FALSE;
|
2004-10-05 10:19:07 +00:00
|
|
|
id = ATOM_TO_JSID(cx->runtime->atomState.lengthAtom);
|
2009-08-11 20:05:44 +00:00
|
|
|
return obj->setProperty(cx, id, &v);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
1998-04-24 00:31:11 +00:00
|
|
|
JSBool
|
|
|
|
js_HasLengthProperty(JSContext *cx, JSObject *obj, jsuint *lengthp)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1998-04-24 00:31:11 +00:00
|
|
|
JSErrorReporter older;
|
2006-09-19 06:48:25 +00:00
|
|
|
JSTempValueRooter tvr;
|
1998-04-24 00:31:11 +00:00
|
|
|
jsid id;
|
|
|
|
JSBool ok;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-04-24 00:31:11 +00:00
|
|
|
older = JS_SetErrorReporter(cx, NULL);
|
2006-09-19 06:48:25 +00:00
|
|
|
JS_PUSH_SINGLE_TEMP_ROOT(cx, JSVAL_NULL, &tvr);
|
2004-10-05 10:19:07 +00:00
|
|
|
id = ATOM_TO_JSID(cx->runtime->atomState.lengthAtom);
|
2009-08-11 20:05:44 +00:00
|
|
|
ok = obj->getProperty(cx, id, &tvr.u.value);
|
1998-04-24 00:31:11 +00:00
|
|
|
JS_SetErrorReporter(cx, older);
|
2008-03-06 23:24:08 +00:00
|
|
|
if (ok) {
|
|
|
|
*lengthp = ValueIsLength(cx, &tvr.u.value);
|
|
|
|
ok = !JSVAL_IS_NULL(tvr.u.value);
|
|
|
|
}
|
2006-09-19 06:48:25 +00:00
|
|
|
JS_POP_TEMP_ROOT(cx, &tvr);
|
|
|
|
return ok;
|
1998-04-24 00:31:11 +00:00
|
|
|
}
|
|
|
|
|
2006-04-27 00:39:43 +00:00
|
|
|
JSBool
|
|
|
|
js_IsArrayLike(JSContext *cx, JSObject *obj, JSBool *answerp, jsuint *lengthp)
|
|
|
|
{
|
|
|
|
JSClass *clasp;
|
2006-06-19 23:38:02 +00:00
|
|
|
|
2009-08-07 03:48:57 +00:00
|
|
|
clasp = OBJ_GET_CLASS(cx, js_GetWrappedObject(cx, obj));
|
2008-02-18 21:01:47 +00:00
|
|
|
*answerp = (clasp == &js_ArgumentsClass || clasp == &js_ArrayClass ||
|
|
|
|
clasp == &js_SlowArrayClass);
|
2006-04-27 00:39:43 +00:00
|
|
|
if (!*answerp) {
|
|
|
|
*lengthp = 0;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
return js_GetLengthProperty(cx, obj, lengthp);
|
|
|
|
}
|
|
|
|
|
1998-04-24 00:31:11 +00:00
|
|
|
/*
|
2007-08-02 04:33:52 +00:00
|
|
|
* The 'length' property of all native Array instances is a shared permanent
|
|
|
|
* property of Array.prototype, so it appears to be a direct property of each
|
|
|
|
* array instance delegating to that Array.prototype. It accesses the private
|
|
|
|
* slot reserved by js_ArrayClass.
|
2007-08-02 20:36:53 +00:00
|
|
|
*
|
|
|
|
* Since SpiderMonkey supports cross-class prototype-based delegation, we have
|
|
|
|
* to be careful about the length getter and setter being called on an object
|
|
|
|
* not of Array class. For the getter, we search obj's prototype chain for the
|
|
|
|
* array that caused this getter to be invoked. In the setter case to overcome
|
|
|
|
* the JSPROP_SHARED attribute, we must define a shadowing length property.
|
1998-04-24 00:31:11 +00:00
|
|
|
*/
|
|
|
|
static JSBool
|
|
|
|
array_length_getter(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
|
|
|
|
{
|
2007-08-02 20:36:53 +00:00
|
|
|
do {
|
2008-02-18 21:01:47 +00:00
|
|
|
if (OBJ_IS_ARRAY(cx, obj))
|
2008-02-26 00:59:36 +00:00
|
|
|
return IndexToValue(cx, obj->fslots[JSSLOT_ARRAY_LENGTH], vp);
|
2007-08-02 20:36:53 +00:00
|
|
|
} while ((obj = OBJ_GET_PROTO(cx, obj)) != NULL);
|
2007-08-02 04:33:52 +00:00
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
|
|
|
array_length_setter(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
|
|
|
|
{
|
2006-07-01 19:58:44 +00:00
|
|
|
jsuint newlen, oldlen, gap, index;
|
1998-03-28 02:44:41 +00:00
|
|
|
jsval junk;
|
2006-07-01 19:58:44 +00:00
|
|
|
JSObject *iter;
|
|
|
|
JSTempValueRooter tvr;
|
|
|
|
JSBool ok;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
if (!OBJ_IS_ARRAY(cx, obj)) {
|
2007-08-02 20:36:53 +00:00
|
|
|
jsid lengthId = ATOM_TO_JSID(cx->runtime->atomState.lengthAtom);
|
|
|
|
|
2009-08-26 21:28:36 +00:00
|
|
|
return obj->defineProperty(cx, lengthId, *vp, NULL, NULL, JSPROP_ENUMERATE);
|
2007-08-02 20:36:53 +00:00
|
|
|
}
|
|
|
|
|
2008-03-06 23:24:08 +00:00
|
|
|
newlen = ValueIsLength(cx, vp);
|
|
|
|
if (JSVAL_IS_NULL(*vp))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
2008-02-26 00:59:36 +00:00
|
|
|
oldlen = obj->fslots[JSSLOT_ARRAY_LENGTH];
|
2008-02-18 21:01:47 +00:00
|
|
|
|
|
|
|
if (oldlen == newlen)
|
|
|
|
return JS_TRUE;
|
2008-03-02 17:45:33 +00:00
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
if (!IndexToValue(cx, newlen, vp))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
2008-02-15 10:31:38 +00:00
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
if (oldlen < newlen) {
|
2008-02-26 00:59:36 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = newlen;
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2008-02-19 07:04:00 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj)) {
|
2009-01-27 00:20:05 +00:00
|
|
|
/* Don't reallocate if we're not actually shrinking our slots. */
|
2009-09-02 05:54:02 +00:00
|
|
|
jsuint capacity = js_DenseArrayCapacity(obj);
|
|
|
|
if (capacity > newlen && !ResizeSlots(cx, obj, capacity, newlen))
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
} else if (oldlen - newlen < (1 << 24)) {
|
|
|
|
do {
|
|
|
|
--oldlen;
|
2009-02-10 22:07:01 +00:00
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
2008-02-18 21:01:47 +00:00
|
|
|
!DeleteArrayElement(cx, obj, oldlen)) {
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
} while (oldlen != newlen);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* We are going to remove a lot of indexes in a presumably sparse
|
|
|
|
* array. So instead of looping through indexes between newlen and
|
|
|
|
* oldlen, we iterate through all properties and remove those that
|
|
|
|
* correspond to indexes in the half-open range [newlen, oldlen). See
|
|
|
|
* bug 322135.
|
|
|
|
*/
|
|
|
|
iter = JS_NewPropertyIterator(cx, obj);
|
|
|
|
if (!iter)
|
|
|
|
return JS_FALSE;
|
2008-03-02 17:45:33 +00:00
|
|
|
|
2009-08-11 20:05:44 +00:00
|
|
|
/* Protect iter against GC under JSObject::deleteProperty. */
|
2008-02-18 21:01:47 +00:00
|
|
|
JS_PUSH_TEMP_ROOT_OBJECT(cx, iter, &tvr);
|
|
|
|
gap = oldlen - newlen;
|
|
|
|
for (;;) {
|
2009-02-10 22:07:01 +00:00
|
|
|
ok = (JS_CHECK_OPERATION_LIMIT(cx) &&
|
2008-02-18 21:01:47 +00:00
|
|
|
JS_NextProperty(cx, iter, &id));
|
|
|
|
if (!ok)
|
|
|
|
break;
|
2008-06-25 09:43:02 +00:00
|
|
|
if (JSVAL_IS_VOID(id))
|
2008-02-18 21:01:47 +00:00
|
|
|
break;
|
|
|
|
if (js_IdIsIndex(id, &index) && index - newlen < gap) {
|
2009-08-11 20:05:44 +00:00
|
|
|
ok = obj->deleteProperty(cx, id, &junk);
|
2006-07-01 19:58:44 +00:00
|
|
|
if (!ok)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-02-18 21:01:47 +00:00
|
|
|
JS_POP_TEMP_ROOT(cx, &tvr);
|
|
|
|
if (!ok)
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
2008-02-26 00:59:36 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = newlen;
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2009-04-17 09:37:59 +00:00
|
|
|
/*
|
|
|
|
* We have only indexed properties up to capacity (excepting holes), plus the
|
|
|
|
* length property. For all else, we delegate to the prototype.
|
|
|
|
*/
|
|
|
|
static inline bool
|
|
|
|
IsDenseArrayId(JSContext *cx, JSObject *obj, jsid id)
|
|
|
|
{
|
|
|
|
JS_ASSERT(OBJ_IS_DENSE_ARRAY(cx, obj));
|
|
|
|
|
|
|
|
uint32 i;
|
|
|
|
return id == ATOM_TO_JSID(cx->runtime->atomState.lengthAtom) ||
|
|
|
|
(js_IdIsIndex(id, &i) &&
|
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] != 0 &&
|
|
|
|
i < js_DenseArrayCapacity(obj) &&
|
|
|
|
obj->dslots[i] != JSVAL_HOLE);
|
|
|
|
}
|
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
static JSBool
|
|
|
|
array_lookupProperty(JSContext *cx, JSObject *obj, jsid id, JSObject **objp,
|
|
|
|
JSProperty **propp)
|
|
|
|
{
|
2008-02-19 07:04:00 +00:00
|
|
|
if (!OBJ_IS_DENSE_ARRAY(cx, obj))
|
2008-02-18 21:01:47 +00:00
|
|
|
return js_LookupProperty(cx, obj, id, objp, propp);
|
|
|
|
|
2009-04-17 09:37:59 +00:00
|
|
|
if (IsDenseArrayId(cx, obj, id)) {
|
|
|
|
*propp = (JSProperty *) id;
|
|
|
|
*objp = obj;
|
|
|
|
return JS_TRUE;
|
2008-02-15 09:48:53 +00:00
|
|
|
}
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2009-04-17 09:37:59 +00:00
|
|
|
JSObject *proto = STOBJ_GET_PROTO(obj);
|
|
|
|
if (!proto) {
|
|
|
|
*objp = NULL;
|
|
|
|
*propp = NULL;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
2009-08-11 20:05:44 +00:00
|
|
|
return proto->lookupProperty(cx, id, objp, propp);
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
array_dropProperty(JSContext *cx, JSObject *obj, JSProperty *prop)
|
|
|
|
{
|
2009-04-17 09:37:59 +00:00
|
|
|
JS_ASSERT(IsDenseArrayId(cx, obj, (jsid) prop));
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
|
2009-04-17 09:37:59 +00:00
|
|
|
JSBool
|
|
|
|
js_GetDenseArrayElementValue(JSContext *cx, JSObject *obj, JSProperty *prop,
|
|
|
|
jsval *vp)
|
2009-03-31 19:42:31 +00:00
|
|
|
{
|
2009-04-17 09:37:59 +00:00
|
|
|
jsid id = (jsid) prop;
|
|
|
|
JS_ASSERT(IsDenseArrayId(cx, obj, id));
|
|
|
|
|
|
|
|
uint32 i;
|
|
|
|
if (!js_IdIsIndex(id, &i)) {
|
|
|
|
JS_ASSERT(id == ATOM_TO_JSID(cx->runtime->atomState.lengthAtom));
|
|
|
|
return IndexToValue(cx, obj->fslots[JSSLOT_ARRAY_LENGTH], vp);
|
|
|
|
}
|
|
|
|
*vp = obj->dslots[i];
|
|
|
|
return JS_TRUE;
|
2009-03-31 19:42:31 +00:00
|
|
|
}
|
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
static JSBool
|
|
|
|
array_getProperty(JSContext *cx, JSObject *obj, jsid id, jsval *vp)
|
|
|
|
{
|
|
|
|
uint32 i;
|
|
|
|
|
|
|
|
if (id == ATOM_TO_JSID(cx->runtime->atomState.lengthAtom))
|
2008-02-26 00:59:36 +00:00
|
|
|
return IndexToValue(cx, obj->fslots[JSSLOT_ARRAY_LENGTH], vp);
|
2008-02-18 21:01:47 +00:00
|
|
|
|
|
|
|
if (id == ATOM_TO_JSID(cx->runtime->atomState.protoAtom)) {
|
2009-08-28 05:53:26 +00:00
|
|
|
*vp = OBJECT_TO_JSVAL(obj->getProto());
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2008-02-19 07:04:00 +00:00
|
|
|
if (!OBJ_IS_DENSE_ARRAY(cx, obj))
|
2008-02-18 21:01:47 +00:00
|
|
|
return js_GetProperty(cx, obj, id, vp);
|
|
|
|
|
2009-02-21 21:33:50 +00:00
|
|
|
if (!js_IdIsIndex(ID_TO_VALUE(id), &i) || i >= js_DenseArrayCapacity(obj) ||
|
2008-02-18 21:01:47 +00:00
|
|
|
obj->dslots[i] == JSVAL_HOLE) {
|
2008-05-21 19:24:25 +00:00
|
|
|
JSObject *obj2;
|
|
|
|
JSProperty *prop;
|
|
|
|
JSScopeProperty *sprop;
|
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
JSObject *proto = STOBJ_GET_PROTO(obj);
|
|
|
|
if (!proto) {
|
|
|
|
*vp = JSVAL_VOID;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2008-05-21 19:24:25 +00:00
|
|
|
*vp = JSVAL_VOID;
|
2008-09-25 16:13:31 +00:00
|
|
|
if (js_LookupPropertyWithFlags(cx, proto, id, cx->resolveFlags,
|
|
|
|
&obj2, &prop) < 0)
|
2008-05-21 19:24:25 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
if (prop) {
|
|
|
|
if (OBJ_IS_NATIVE(obj2)) {
|
|
|
|
sprop = (JSScopeProperty *) prop;
|
2009-09-03 21:41:19 +00:00
|
|
|
if (!js_NativeGet(cx, obj, obj2, sprop, JSGET_METHOD_BARRIER, vp))
|
2008-05-21 19:24:25 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
}
|
2009-08-11 20:05:44 +00:00
|
|
|
obj2->dropProperty(cx, prop);
|
2008-05-21 19:24:25 +00:00
|
|
|
}
|
|
|
|
return JS_TRUE;
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*vp = obj->dslots[i];
|
2008-02-15 09:48:53 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2008-02-18 21:01:47 +00:00
|
|
|
slowarray_addProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
|
2008-02-15 09:48:53 +00:00
|
|
|
{
|
|
|
|
jsuint index, length;
|
2008-03-02 17:45:33 +00:00
|
|
|
|
2004-10-05 10:19:07 +00:00
|
|
|
if (!js_IdIsIndex(id, &index))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_TRUE;
|
2008-02-26 00:59:36 +00:00
|
|
|
length = obj->fslots[JSSLOT_ARRAY_LENGTH];
|
2008-02-18 21:01:47 +00:00
|
|
|
if (index >= length)
|
2008-02-26 00:59:36 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = index + 1;
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
slowarray_trace(JSTracer *trc, JSObject *obj)
|
|
|
|
{
|
2008-02-26 00:59:36 +00:00
|
|
|
uint32 length = obj->fslots[JSSLOT_ARRAY_LENGTH];
|
2008-02-18 21:01:47 +00:00
|
|
|
|
|
|
|
JS_ASSERT(STOBJ_GET_CLASS(obj) == &js_SlowArrayClass);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Move JSSLOT_ARRAY_LENGTH aside to prevent the GC from treating
|
|
|
|
* untagged integer values as objects or strings.
|
|
|
|
*/
|
2008-02-26 00:59:36 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = JSVAL_VOID;
|
2008-02-18 21:01:47 +00:00
|
|
|
js_TraceObject(trc, obj);
|
2008-02-26 00:59:36 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = length;
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static JSObjectOps js_SlowArrayObjectOps;
|
|
|
|
|
|
|
|
static JSObjectOps *
|
|
|
|
slowarray_getObjectOps(JSContext *cx, JSClass *clasp)
|
|
|
|
{
|
|
|
|
return &js_SlowArrayObjectOps;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
|
|
|
array_setProperty(JSContext *cx, JSObject *obj, jsid id, jsval *vp)
|
|
|
|
{
|
|
|
|
uint32 i;
|
|
|
|
|
|
|
|
if (id == ATOM_TO_JSID(cx->runtime->atomState.lengthAtom))
|
|
|
|
return array_length_setter(cx, obj, id, vp);
|
|
|
|
|
2008-02-19 07:04:00 +00:00
|
|
|
if (!OBJ_IS_DENSE_ARRAY(cx, obj))
|
2008-02-18 21:01:47 +00:00
|
|
|
return js_SetProperty(cx, obj, id, vp);
|
|
|
|
|
|
|
|
if (!js_IdIsIndex(id, &i) || INDEX_TOO_SPARSE(obj, i)) {
|
2008-07-01 19:47:09 +00:00
|
|
|
if (!js_MakeArraySlow(cx, obj))
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
return js_SetProperty(cx, obj, id, vp);
|
|
|
|
}
|
|
|
|
|
2009-02-21 21:33:50 +00:00
|
|
|
if (!EnsureCapacity(cx, obj, i + 1))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2008-02-26 00:59:36 +00:00
|
|
|
if (i >= (uint32)obj->fslots[JSSLOT_ARRAY_LENGTH])
|
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = i + 1;
|
2008-02-18 21:01:47 +00:00
|
|
|
if (obj->dslots[i] == JSVAL_HOLE)
|
2008-02-26 00:59:36 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT]++;
|
2008-02-18 21:01:47 +00:00
|
|
|
obj->dslots[i] = *vp;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2009-03-04 05:58:56 +00:00
|
|
|
JSBool
|
|
|
|
js_PrototypeHasIndexedProperties(JSContext *cx, JSObject *obj)
|
2009-03-04 02:04:15 +00:00
|
|
|
{
|
2009-03-04 08:12:35 +00:00
|
|
|
/*
|
|
|
|
* Walk up the prototype chain and see if this indexed element already
|
|
|
|
* exists. If we hit the end of the prototype chain, it's safe to set the
|
|
|
|
* element on the original object.
|
|
|
|
*/
|
2009-08-28 05:53:26 +00:00
|
|
|
while ((obj = obj->getProto()) != NULL) {
|
2009-03-04 02:04:15 +00:00
|
|
|
/*
|
2009-03-04 08:12:35 +00:00
|
|
|
* If the prototype is a non-native object (possibly a dense array), or
|
|
|
|
* a native object (possibly a slow array) that has indexed properties,
|
|
|
|
* return true.
|
2009-03-04 02:04:15 +00:00
|
|
|
*/
|
2009-03-04 08:12:35 +00:00
|
|
|
if (!OBJ_IS_NATIVE(obj))
|
|
|
|
return JS_TRUE;
|
2009-07-09 20:27:21 +00:00
|
|
|
if (OBJ_SCOPE(obj)->hadIndexedProperties())
|
2009-03-04 02:04:15 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
2008-10-08 22:08:33 +00:00
|
|
|
#ifdef JS_TRACER
|
|
|
|
|
2009-07-22 23:47:41 +00:00
|
|
|
static inline JSBool FASTCALL
|
|
|
|
dense_grow(JSContext* cx, JSObject* obj, jsint i, jsval v)
|
|
|
|
{
|
2009-02-26 19:59:07 +00:00
|
|
|
/*
|
|
|
|
* Let the interpreter worry about negative array indexes.
|
|
|
|
*/
|
2009-09-02 05:54:02 +00:00
|
|
|
JS_ASSERT((MAX_DSLOTS_LENGTH > MAX_DSLOTS_LENGTH32) == (sizeof(jsval) != sizeof(uint32)));
|
|
|
|
if (MAX_DSLOTS_LENGTH > MAX_DSLOTS_LENGTH32) {
|
2009-04-24 23:28:21 +00:00
|
|
|
/*
|
|
|
|
* Have to check for negative values bleeding through on 64-bit machines only,
|
|
|
|
* since we can't allocate large enough arrays for this on 32-bit machines.
|
|
|
|
*/
|
|
|
|
if (i < 0)
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
2009-02-26 19:59:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If needed, grow the array as long it remains dense, otherwise fall off trace.
|
|
|
|
*/
|
|
|
|
jsuint u = jsuint(i);
|
|
|
|
jsuint capacity = js_DenseArrayCapacity(obj);
|
|
|
|
if ((u >= capacity) && (INDEX_TOO_SPARSE(obj, u) || !EnsureCapacity(cx, obj, u + 1)))
|
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
if (obj->dslots[u] == JSVAL_HOLE) {
|
2009-03-04 05:58:56 +00:00
|
|
|
if (js_PrototypeHasIndexedProperties(cx, obj))
|
2009-02-26 19:59:07 +00:00
|
|
|
return JS_FALSE;
|
2009-03-04 02:04:15 +00:00
|
|
|
|
2009-02-26 19:59:07 +00:00
|
|
|
if (u >= jsuint(obj->fslots[JSSLOT_ARRAY_LENGTH]))
|
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = u + 1;
|
|
|
|
++obj->fslots[JSSLOT_ARRAY_COUNT];
|
|
|
|
}
|
|
|
|
|
|
|
|
obj->dslots[u] = v;
|
|
|
|
return JS_TRUE;
|
2008-10-08 22:08:33 +00:00
|
|
|
}
|
2009-07-22 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
JSBool FASTCALL
|
|
|
|
js_Array_dense_setelem(JSContext* cx, JSObject* obj, jsint i, jsval v)
|
|
|
|
{
|
|
|
|
JS_ASSERT(OBJ_IS_DENSE_ARRAY(cx, obj));
|
|
|
|
return dense_grow(cx, obj, i, v);
|
|
|
|
}
|
2009-05-06 00:36:26 +00:00
|
|
|
JS_DEFINE_CALLINFO_4(extern, BOOL, js_Array_dense_setelem, CONTEXT, OBJECT, INT32, JSVAL, 0, 0)
|
2009-07-22 23:47:41 +00:00
|
|
|
|
|
|
|
JSBool FASTCALL
|
|
|
|
js_Array_dense_setelem_int(JSContext* cx, JSObject* obj, jsint i, int32 j)
|
|
|
|
{
|
|
|
|
JS_ASSERT(OBJ_IS_DENSE_ARRAY(cx, obj));
|
|
|
|
|
|
|
|
jsval v;
|
|
|
|
if (JS_LIKELY(INT_FITS_IN_JSVAL(j))) {
|
|
|
|
v = INT_TO_JSVAL(j);
|
|
|
|
} else {
|
|
|
|
jsdouble d = (jsdouble)j;
|
|
|
|
if (!js_NewDoubleInRootedValue(cx, d, &v))
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dense_grow(cx, obj, i, v);
|
|
|
|
}
|
|
|
|
JS_DEFINE_CALLINFO_4(extern, BOOL, js_Array_dense_setelem_int, CONTEXT, OBJECT, INT32, INT32, 0, 0)
|
2009-08-20 23:53:10 +00:00
|
|
|
|
|
|
|
JSBool FASTCALL
|
|
|
|
js_Array_dense_setelem_double(JSContext* cx, JSObject* obj, jsint i, jsdouble d)
|
|
|
|
{
|
|
|
|
JS_ASSERT(OBJ_IS_DENSE_ARRAY(cx, obj));
|
|
|
|
|
|
|
|
jsval v;
|
|
|
|
jsint j;
|
|
|
|
|
|
|
|
if (JS_LIKELY(JSDOUBLE_IS_INT(d, j) && INT_FITS_IN_JSVAL(j))) {
|
|
|
|
v = INT_TO_JSVAL(j);
|
|
|
|
} else {
|
|
|
|
if (!js_NewDoubleInRootedValue(cx, d, &v))
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dense_grow(cx, obj, i, v);
|
|
|
|
}
|
|
|
|
JS_DEFINE_CALLINFO_4(extern, BOOL, js_Array_dense_setelem_double, CONTEXT, OBJECT, INT32, DOUBLE, 0, 0)
|
2008-10-08 22:08:33 +00:00
|
|
|
#endif
|
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
static JSBool
|
|
|
|
array_defineProperty(JSContext *cx, JSObject *obj, jsid id, jsval value,
|
2009-08-26 21:28:36 +00:00
|
|
|
JSPropertyOp getter, JSPropertyOp setter, uintN attrs)
|
2008-02-18 21:01:47 +00:00
|
|
|
{
|
|
|
|
uint32 i;
|
2008-10-07 05:30:36 +00:00
|
|
|
JSBool isIndex;
|
2008-02-18 21:01:47 +00:00
|
|
|
|
|
|
|
if (id == ATOM_TO_JSID(cx->runtime->atomState.lengthAtom))
|
|
|
|
return JS_TRUE;
|
|
|
|
|
2008-10-07 05:30:36 +00:00
|
|
|
isIndex = js_IdIsIndex(ID_TO_VALUE(id), &i);
|
2009-08-07 23:31:54 +00:00
|
|
|
if (!isIndex || attrs != JSPROP_ENUMERATE || !OBJ_IS_DENSE_ARRAY(cx, obj) || INDEX_TOO_SPARSE(obj, i)) {
|
2008-02-18 21:01:47 +00:00
|
|
|
if (!ENSURE_SLOW_ARRAY(cx, obj))
|
|
|
|
return JS_FALSE;
|
2009-08-26 21:28:36 +00:00
|
|
|
return js_DefineProperty(cx, obj, id, value, getter, setter, attrs);
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return array_setProperty(cx, obj, id, &value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
|
|
|
array_getAttributes(JSContext *cx, JSObject *obj, jsid id, JSProperty *prop,
|
|
|
|
uintN *attrsp)
|
|
|
|
{
|
|
|
|
*attrsp = id == ATOM_TO_JSID(cx->runtime->atomState.lengthAtom)
|
|
|
|
? JSPROP_PERMANENT : JSPROP_ENUMERATE;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
|
|
|
array_setAttributes(JSContext *cx, JSObject *obj, jsid id, JSProperty *prop,
|
|
|
|
uintN *attrsp)
|
|
|
|
{
|
|
|
|
JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL,
|
|
|
|
JSMSG_CANT_SET_ARRAY_ATTRS);
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
|
|
|
array_deleteProperty(JSContext *cx, JSObject *obj, jsval id, jsval *rval)
|
|
|
|
{
|
|
|
|
uint32 i;
|
2008-03-02 17:45:33 +00:00
|
|
|
|
2008-02-19 07:04:00 +00:00
|
|
|
if (!OBJ_IS_DENSE_ARRAY(cx, obj))
|
2008-02-18 21:01:47 +00:00
|
|
|
return js_DeleteProperty(cx, obj, id, rval);
|
|
|
|
|
|
|
|
if (id == ATOM_TO_JSID(cx->runtime->atomState.lengthAtom)) {
|
|
|
|
*rval = JSVAL_FALSE;
|
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2009-02-21 21:33:50 +00:00
|
|
|
if (js_IdIsIndex(id, &i) && i < js_DenseArrayCapacity(obj) &&
|
2008-02-18 21:01:47 +00:00
|
|
|
obj->dslots[i] != JSVAL_HOLE) {
|
2008-02-26 00:59:36 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT]--;
|
2008-02-18 21:01:47 +00:00
|
|
|
obj->dslots[i] = JSVAL_HOLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*rval = JSVAL_TRUE;
|
1998-04-24 00:31:11 +00:00
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2008-03-02 17:45:33 +00:00
|
|
|
/*
|
|
|
|
* JSObjectOps.enumerate implementation.
|
|
|
|
*
|
|
|
|
* For a fast array, JSENUMERATE_INIT captures in the enumeration state both
|
|
|
|
* the length of the array and the bitmap indicating the positions of holes in
|
|
|
|
* the array. This ensures that adding or deleting array elements does not
|
|
|
|
* affect the sequence of indexes JSENUMERATE_NEXT returns.
|
|
|
|
*
|
|
|
|
* For a common case of an array without holes, to represent the state we pack
|
|
|
|
* the (nextEnumerationIndex, arrayLength) pair as a pseudo-boolean jsval.
|
|
|
|
* This is possible when length <= PACKED_UINT_PAIR_BITS. For arrays with
|
|
|
|
* greater length or holes we allocate the JSIndexIterState structure and
|
|
|
|
* store it as an int-tagged private pointer jsval. For a slow array we
|
|
|
|
* delegate the enumeration implementation to js_Enumerate in
|
|
|
|
* slowarray_enumerate.
|
|
|
|
*
|
|
|
|
* Array mutations can turn a fast array into a slow one after the enumeration
|
|
|
|
* starts. When this happens, slowarray_enumerate receives a state created
|
|
|
|
* when the array was fast. To distinguish such fast state from a slow state,
|
|
|
|
* which is an int-tagged pointer that js_Enumerate creates, we set not one
|
|
|
|
* but two lowest bits when tagging a JSIndexIterState pointer -- see
|
|
|
|
* INDEX_ITER_TAG usage below. Thus, when slowarray_enumerate receives a state
|
2009-08-12 23:39:23 +00:00
|
|
|
* tagged with JSVAL_SPECIAL or with two lowest bits set, it knows that this
|
2008-03-02 17:45:33 +00:00
|
|
|
* is a fast state so it calls array_enumerate to continue enumerating the
|
|
|
|
* indexes present in the original fast array.
|
|
|
|
*/
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2008-03-02 17:45:33 +00:00
|
|
|
#define PACKED_UINT_PAIR_BITS 14
|
|
|
|
#define PACKED_UINT_PAIR_MASK JS_BITMASK(PACKED_UINT_PAIR_BITS)
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2009-08-12 23:39:23 +00:00
|
|
|
#define UINT_PAIR_TO_SPECIAL_JSVAL(i,j) \
|
2008-03-02 17:45:33 +00:00
|
|
|
(JS_ASSERT((uint32) (i) <= PACKED_UINT_PAIR_MASK), \
|
|
|
|
JS_ASSERT((uint32) (j) <= PACKED_UINT_PAIR_MASK), \
|
|
|
|
((jsval) (i) << (PACKED_UINT_PAIR_BITS + JSVAL_TAGBITS)) | \
|
|
|
|
((jsval) (j) << (JSVAL_TAGBITS)) | \
|
2009-08-12 23:39:23 +00:00
|
|
|
(jsval) JSVAL_SPECIAL)
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2009-08-12 23:39:23 +00:00
|
|
|
#define SPECIAL_JSVAL_TO_UINT_PAIR(v,i,j) \
|
|
|
|
(JS_ASSERT(JSVAL_IS_SPECIAL(v)), \
|
2008-03-02 17:45:33 +00:00
|
|
|
(i) = (uint32) ((v) >> (PACKED_UINT_PAIR_BITS + JSVAL_TAGBITS)), \
|
|
|
|
(j) = (uint32) ((v) >> JSVAL_TAGBITS) & PACKED_UINT_PAIR_MASK, \
|
|
|
|
JS_ASSERT((i) <= PACKED_UINT_PAIR_MASK))
|
|
|
|
|
|
|
|
JS_STATIC_ASSERT(PACKED_UINT_PAIR_BITS * 2 + JSVAL_TAGBITS <= JS_BITS_PER_WORD);
|
|
|
|
|
|
|
|
typedef struct JSIndexIterState {
|
|
|
|
uint32 index;
|
|
|
|
uint32 length;
|
|
|
|
JSBool hasHoles;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Variable-length bitmap representing array's holes. It must not be
|
|
|
|
* accessed when hasHoles is false.
|
|
|
|
*/
|
|
|
|
jsbitmap holes[1];
|
|
|
|
} JSIndexIterState;
|
|
|
|
|
|
|
|
#define INDEX_ITER_TAG 3
|
|
|
|
|
|
|
|
JS_STATIC_ASSERT(JSVAL_INT == 1);
|
2008-02-18 21:01:47 +00:00
|
|
|
|
|
|
|
static JSBool
|
|
|
|
array_enumerate(JSContext *cx, JSObject *obj, JSIterateOp enum_op,
|
|
|
|
jsval *statep, jsid *idp)
|
|
|
|
{
|
2009-02-21 21:33:50 +00:00
|
|
|
uint32 capacity, i;
|
2008-03-02 17:45:33 +00:00
|
|
|
JSIndexIterState *ii;
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2008-03-02 17:45:33 +00:00
|
|
|
switch (enum_op) {
|
|
|
|
case JSENUMERATE_INIT:
|
|
|
|
JS_ASSERT(OBJ_IS_DENSE_ARRAY(cx, obj));
|
2009-02-21 21:33:50 +00:00
|
|
|
capacity = js_DenseArrayCapacity(obj);
|
2008-06-09 22:25:33 +00:00
|
|
|
if (idp)
|
|
|
|
*idp = INT_TO_JSVAL(obj->fslots[JSSLOT_ARRAY_COUNT]);
|
2008-03-02 17:45:33 +00:00
|
|
|
ii = NULL;
|
2009-02-21 21:33:50 +00:00
|
|
|
for (i = 0; i != capacity; ++i) {
|
2008-03-02 17:45:33 +00:00
|
|
|
if (obj->dslots[i] == JSVAL_HOLE) {
|
|
|
|
if (!ii) {
|
|
|
|
ii = (JSIndexIterState *)
|
2009-07-28 04:10:12 +00:00
|
|
|
cx->malloc(offsetof(JSIndexIterState, holes) +
|
2009-02-21 21:33:50 +00:00
|
|
|
JS_BITMAP_SIZE(capacity));
|
2008-03-02 17:45:33 +00:00
|
|
|
if (!ii)
|
|
|
|
return JS_FALSE;
|
|
|
|
ii->hasHoles = JS_TRUE;
|
2009-02-21 21:33:50 +00:00
|
|
|
memset(ii->holes, 0, JS_BITMAP_SIZE(capacity));
|
2008-03-02 17:45:33 +00:00
|
|
|
}
|
|
|
|
JS_SET_BIT(ii->holes, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!ii) {
|
|
|
|
/* Array has no holes. */
|
2009-02-21 21:33:50 +00:00
|
|
|
if (capacity <= PACKED_UINT_PAIR_MASK) {
|
2009-08-12 23:39:23 +00:00
|
|
|
*statep = UINT_PAIR_TO_SPECIAL_JSVAL(0, capacity);
|
2008-03-02 17:45:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
ii = (JSIndexIterState *)
|
2009-07-28 04:10:12 +00:00
|
|
|
cx->malloc(offsetof(JSIndexIterState, holes));
|
2008-03-02 17:45:33 +00:00
|
|
|
if (!ii)
|
|
|
|
return JS_FALSE;
|
|
|
|
ii->hasHoles = JS_FALSE;
|
|
|
|
}
|
|
|
|
ii->index = 0;
|
2009-02-21 21:33:50 +00:00
|
|
|
ii->length = capacity;
|
2008-03-02 17:45:33 +00:00
|
|
|
*statep = (jsval) ii | INDEX_ITER_TAG;
|
|
|
|
JS_ASSERT(*statep & JSVAL_INT);
|
|
|
|
break;
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2008-03-02 17:45:33 +00:00
|
|
|
case JSENUMERATE_NEXT:
|
2009-08-12 23:39:23 +00:00
|
|
|
if (JSVAL_IS_SPECIAL(*statep)) {
|
|
|
|
SPECIAL_JSVAL_TO_UINT_PAIR(*statep, i, capacity);
|
2009-02-21 21:33:50 +00:00
|
|
|
if (i != capacity) {
|
2008-03-02 17:45:33 +00:00
|
|
|
*idp = INT_TO_JSID(i);
|
2009-08-12 23:39:23 +00:00
|
|
|
*statep = UINT_PAIR_TO_SPECIAL_JSVAL(i + 1, capacity);
|
2008-03-02 17:45:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
JS_ASSERT((*statep & INDEX_ITER_TAG) == INDEX_ITER_TAG);
|
|
|
|
ii = (JSIndexIterState *) (*statep & ~INDEX_ITER_TAG);
|
|
|
|
i = ii->index;
|
|
|
|
if (i != ii->length) {
|
|
|
|
/* Skip holes if any. */
|
|
|
|
if (ii->hasHoles) {
|
|
|
|
while (JS_TEST_BIT(ii->holes, i) && ++i != ii->length)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (i != ii->length) {
|
|
|
|
ii->index = i + 1;
|
2008-09-15 07:54:28 +00:00
|
|
|
return js_IndexToId(cx, i, idp);
|
2008-03-02 17:45:33 +00:00
|
|
|
}
|
|
|
|
}
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
2008-03-03 00:34:00 +00:00
|
|
|
/* FALL THROUGH */
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2008-03-02 17:45:33 +00:00
|
|
|
case JSENUMERATE_DESTROY:
|
2009-08-12 23:39:23 +00:00
|
|
|
if (!JSVAL_IS_SPECIAL(*statep)) {
|
2008-03-02 17:45:33 +00:00
|
|
|
JS_ASSERT((*statep & INDEX_ITER_TAG) == INDEX_ITER_TAG);
|
|
|
|
ii = (JSIndexIterState *) (*statep & ~INDEX_ITER_TAG);
|
2009-07-28 04:10:12 +00:00
|
|
|
cx->free(ii);
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
2008-03-02 17:45:33 +00:00
|
|
|
*statep = JSVAL_NULL;
|
|
|
|
break;
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
2008-03-02 17:45:33 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2008-03-02 17:45:33 +00:00
|
|
|
static JSBool
|
|
|
|
slowarray_enumerate(JSContext *cx, JSObject *obj, JSIterateOp enum_op,
|
|
|
|
jsval *statep, jsid *idp)
|
|
|
|
{
|
|
|
|
JSBool ok;
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2008-03-02 17:45:33 +00:00
|
|
|
/* Are we continuing an enumeration that started when we were dense? */
|
|
|
|
if (enum_op != JSENUMERATE_INIT) {
|
2009-08-12 23:39:23 +00:00
|
|
|
if (JSVAL_IS_SPECIAL(*statep) ||
|
2008-03-02 17:45:33 +00:00
|
|
|
(*statep & INDEX_ITER_TAG) == INDEX_ITER_TAG) {
|
|
|
|
return array_enumerate(cx, obj, enum_op, statep, idp);
|
|
|
|
}
|
|
|
|
JS_ASSERT((*statep & INDEX_ITER_TAG) == JSVAL_INT);
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
2008-03-02 17:45:33 +00:00
|
|
|
ok = js_Enumerate(cx, obj, enum_op, statep, idp);
|
|
|
|
JS_ASSERT(*statep == JSVAL_NULL || (*statep & INDEX_ITER_TAG) == JSVAL_INT);
|
|
|
|
return ok;
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
array_finalize(JSContext *cx, JSObject *obj)
|
|
|
|
{
|
|
|
|
if (obj->dslots)
|
2009-07-28 04:10:12 +00:00
|
|
|
cx->free(obj->dslots - 1);
|
2008-02-18 21:01:47 +00:00
|
|
|
obj->dslots = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
array_trace(JSTracer *trc, JSObject *obj)
|
|
|
|
{
|
2009-02-21 21:33:50 +00:00
|
|
|
uint32 capacity;
|
2008-02-18 21:01:47 +00:00
|
|
|
size_t i;
|
|
|
|
jsval v;
|
|
|
|
|
2009-06-11 14:35:41 +00:00
|
|
|
JS_ASSERT(js_IsDenseArray(obj));
|
2009-08-28 05:53:26 +00:00
|
|
|
obj->traceProtoAndParent(trc);
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2009-02-21 21:33:50 +00:00
|
|
|
capacity = js_DenseArrayCapacity(obj);
|
|
|
|
for (i = 0; i < capacity; i++) {
|
2008-02-18 21:01:47 +00:00
|
|
|
v = obj->dslots[i];
|
|
|
|
if (JSVAL_IS_TRACEABLE(v)) {
|
|
|
|
JS_SET_TRACING_INDEX(trc, "array_dslots", i);
|
|
|
|
JS_CallTracer(trc, JSVAL_TO_TRACEABLE(v), JSVAL_TRACE_KIND(v));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-14 10:35:23 +00:00
|
|
|
extern JSObjectOps js_ArrayObjectOps;
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2009-05-14 10:35:23 +00:00
|
|
|
static const JSObjectMap SharedArrayMap = { &js_ArrayObjectOps };
|
2008-02-18 21:01:47 +00:00
|
|
|
|
|
|
|
JSObjectOps js_ArrayObjectOps = {
|
2009-05-14 10:35:23 +00:00
|
|
|
&SharedArrayMap,
|
2008-02-18 21:01:47 +00:00
|
|
|
array_lookupProperty, array_defineProperty,
|
|
|
|
array_getProperty, array_setProperty,
|
|
|
|
array_getAttributes, array_setAttributes,
|
|
|
|
array_deleteProperty, js_DefaultValue,
|
|
|
|
array_enumerate, js_CheckAccess,
|
|
|
|
NULL, array_dropProperty,
|
|
|
|
NULL, NULL,
|
2009-04-01 12:32:51 +00:00
|
|
|
js_HasInstance, array_trace,
|
|
|
|
NULL
|
2008-02-18 21:01:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static JSObjectOps *
|
|
|
|
array_getObjectOps(JSContext *cx, JSClass *clasp)
|
|
|
|
{
|
|
|
|
return &js_ArrayObjectOps;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
JSClass js_ArrayClass = {
|
2008-02-18 21:01:47 +00:00
|
|
|
"Array",
|
2009-08-04 21:06:55 +00:00
|
|
|
JSCLASS_HAS_RESERVED_SLOTS(2) |
|
|
|
|
JSCLASS_HAS_CACHED_PROTO(JSProto_Array) |
|
|
|
|
JSCLASS_NEW_ENUMERATE,
|
2008-02-18 21:01:47 +00:00
|
|
|
JS_PropertyStub, JS_PropertyStub, JS_PropertyStub, JS_PropertyStub,
|
|
|
|
JS_EnumerateStub, JS_ResolveStub, js_TryValueOf, array_finalize,
|
|
|
|
array_getObjectOps, NULL, NULL, NULL,
|
|
|
|
NULL, NULL, NULL, NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
JSClass js_SlowArrayClass = {
|
1998-03-28 02:44:41 +00:00
|
|
|
"Array",
|
2009-08-04 21:06:55 +00:00
|
|
|
JSCLASS_HAS_RESERVED_SLOTS(1) |
|
|
|
|
JSCLASS_HAS_CACHED_PROTO(JSProto_Array),
|
2008-02-18 21:01:47 +00:00
|
|
|
slowarray_addProperty, JS_PropertyStub, JS_PropertyStub, JS_PropertyStub,
|
2009-07-22 16:23:21 +00:00
|
|
|
JS_EnumerateStub, JS_ResolveStub, js_TryValueOf, NULL,
|
2008-02-18 21:01:47 +00:00
|
|
|
slowarray_getObjectOps, NULL, NULL, NULL,
|
|
|
|
NULL, NULL, NULL, NULL
|
1998-03-28 02:44:41 +00:00
|
|
|
};
|
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
/*
|
|
|
|
* Convert an array object from fast-and-dense to slow-and-flexible.
|
|
|
|
*/
|
2008-07-01 19:47:09 +00:00
|
|
|
JSBool
|
|
|
|
js_MakeArraySlow(JSContext *cx, JSObject *obj)
|
2008-02-18 21:01:47 +00:00
|
|
|
{
|
2009-09-02 22:58:25 +00:00
|
|
|
JS_ASSERT(obj->getClass() == &js_ArrayClass);
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2009-09-02 22:58:25 +00:00
|
|
|
/*
|
|
|
|
* Create a native scope. All slow arrays other than Array.prototype get
|
|
|
|
* the same initial shape.
|
|
|
|
*/
|
|
|
|
uint32 emptyShape;
|
|
|
|
JSObject *arrayProto = obj->getProto();
|
|
|
|
if (arrayProto->getClass() == &js_ObjectClass) {
|
|
|
|
/* obj is Array.prototype. */
|
|
|
|
emptyShape = js_GenerateShape(cx, false);
|
|
|
|
} else {
|
|
|
|
JS_ASSERT(arrayProto->getClass() == &js_SlowArrayClass);
|
|
|
|
if (!OBJ_SCOPE(arrayProto)->getEmptyScopeShape(cx, &js_SlowArrayClass, &emptyShape))
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
JSScope *scope = JSScope::create(cx, &js_SlowArrayObjectOps, &js_SlowArrayClass, obj,
|
|
|
|
emptyShape);
|
2009-05-14 10:35:23 +00:00
|
|
|
if (!scope)
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
|
2009-05-14 10:35:23 +00:00
|
|
|
uint32 capacity = js_DenseArrayCapacity(obj);
|
2009-02-21 21:33:50 +00:00
|
|
|
if (capacity) {
|
2009-05-14 10:35:23 +00:00
|
|
|
scope->freeslot = STOBJ_NSLOTS(obj) + JS_INITIAL_NSLOTS;
|
2009-02-21 21:33:50 +00:00
|
|
|
obj->dslots[-1] = JS_INITIAL_NSLOTS + capacity;
|
2008-02-18 21:01:47 +00:00
|
|
|
} else {
|
2009-05-14 10:35:23 +00:00
|
|
|
scope->freeslot = STOBJ_NSLOTS(obj);
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create new properties pointing to existing values in dslots */
|
2009-05-14 10:35:23 +00:00
|
|
|
for (uint32 i = 0; i < capacity; i++) {
|
2008-02-18 21:01:47 +00:00
|
|
|
jsid id;
|
|
|
|
JSScopeProperty *sprop;
|
|
|
|
|
|
|
|
if (!JS_ValueToId(cx, INT_TO_JSVAL(i), &id))
|
|
|
|
goto out_bad;
|
|
|
|
|
|
|
|
if (obj->dslots[i] == JSVAL_HOLE) {
|
|
|
|
obj->dslots[i] = JSVAL_VOID;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-07-09 20:27:21 +00:00
|
|
|
sprop = scope->add(cx, id, NULL, NULL, i + JS_INITIAL_NSLOTS,
|
|
|
|
JSPROP_ENUMERATE, 0, 0);
|
2008-02-18 21:01:47 +00:00
|
|
|
if (!sprop)
|
|
|
|
goto out_bad;
|
|
|
|
}
|
|
|
|
|
Kind of an Array initialiser tour-de-force for bug 452878:
1. Split FastNewArray from FastNewObject built-in for greater speed/specialization and further splitting into Array_1str, etc.
2. Add Array_1str, Array_2obj, and Array_3num builtins for benchmarked new Array(...) constructions.
3. Export ARRAY_SET_DENSE_LENGTH and ARRAY_GROWBY via jsarray.h to jstracer.cpp.
4. Tweaked SetArrayElement to make common/best case code be the predicted/prefetched path.
5. js_MakeArraySlow now preserves the pre-slow length in JSSLOT_ARRAY_COUTN as a jsval-tagged int if possible -- this will help the tracer avoid aborting on dense arrays that turned slow but not sparse by addition of a named property.
6. Export js_fun_apply and js_Object from their respective .cpp files, in these cases just to jstracer.cpp via local prototypes (no .h files involved).
7. More INS_CONSTPTR and INS_CONST macrology for better names in trace debug spew.
8. Fix TraceRecorder::test_property_cache to avoid aborting on JSOP_SETNAME that creates a new global, by setting it to undefined so it can be lazily imported. This helps 3d-raytrace.js, which has an unintended global loop control variable in a function.
9. JSTraceableNative loses its premature-deadwood tclasp member (my bad).
10. TraceRecorder::record_JSOP_NEW() handles 'new Object' now along with the 'new Array' variations. I also cut down the copy-paste code from JSOP_CALL's record method to mostly what is needed now.
11. Add KNOWN_NATIVE_DECL macro for concise prototype of library-private js_* native functions, and alphabetized the lists (too long for any other order to be winning).
12. Big honking special case for foo.apply(obj, [str]), which we can generalize as needed. Helps string-tagcloud.js. What's cool is how tracing allows us to rewrite this to foo(str) with this set to obj, eliminating the Function.prototype.apply. This requires some rewriting in JSOP_ENDINIT's record method.
2008-09-01 08:24:58 +00:00
|
|
|
/*
|
|
|
|
* Render our formerly-reserved count property GC-safe. If length fits in
|
|
|
|
* a jsval, set our slow/sparse COUNT to the current length as a jsval, so
|
|
|
|
* we can tell when only named properties have been added to a dense array
|
|
|
|
* to make it slow-but-not-sparse.
|
|
|
|
*/
|
2009-02-21 22:25:43 +00:00
|
|
|
{
|
|
|
|
uint32 length = obj->fslots[JSSLOT_ARRAY_LENGTH];
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT] = INT_FITS_IN_JSVAL(length)
|
|
|
|
? INT_TO_JSVAL(length)
|
|
|
|
: JSVAL_VOID;
|
|
|
|
}
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2008-09-09 18:24:03 +00:00
|
|
|
/* Make sure we preserve any flags borrowing bits in classword. */
|
|
|
|
obj->classword ^= (jsuword) &js_ArrayClass;
|
|
|
|
obj->classword |= (jsuword) &js_SlowArrayClass;
|
2008-03-02 17:45:33 +00:00
|
|
|
|
2009-05-14 10:35:23 +00:00
|
|
|
obj->map = &scope->map;
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_TRUE;
|
2008-03-02 17:45:33 +00:00
|
|
|
|
2009-05-14 10:35:23 +00:00
|
|
|
out_bad:
|
2009-07-09 20:27:21 +00:00
|
|
|
JSScope::destroy(cx, scope);
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
2009-07-01 00:19:42 +00:00
|
|
|
/* Transfer ownership of buffer to returned string. */
|
2009-08-08 03:09:11 +00:00
|
|
|
static inline JSBool
|
2009-08-14 23:10:59 +00:00
|
|
|
BufferToString(JSContext *cx, JSCharBuffer &cb, jsval *rval)
|
2009-06-30 18:29:43 +00:00
|
|
|
{
|
2009-08-14 23:10:59 +00:00
|
|
|
JSString *str = js_NewStringFromCharBuffer(cx, cb);
|
2009-08-08 03:09:11 +00:00
|
|
|
if (!str)
|
|
|
|
return false;
|
2009-07-01 00:19:42 +00:00
|
|
|
*rval = STRING_TO_JSVAL(str);
|
2009-08-08 03:09:11 +00:00
|
|
|
return true;
|
2009-07-01 00:19:42 +00:00
|
|
|
}
|
2009-06-30 19:14:09 +00:00
|
|
|
|
2009-07-01 00:19:42 +00:00
|
|
|
#if JS_HAS_TOSOURCE
|
|
|
|
static JSBool
|
|
|
|
array_toSource(JSContext *cx, uintN argc, jsval *vp)
|
|
|
|
{
|
2009-08-08 03:09:11 +00:00
|
|
|
JS_CHECK_RECURSION(cx, return false);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2009-07-01 00:19:42 +00:00
|
|
|
JSObject *obj = JS_THIS_OBJECT(cx, vp);
|
|
|
|
if (!obj ||
|
|
|
|
(OBJ_GET_CLASS(cx, obj) != &js_SlowArrayClass &&
|
|
|
|
!JS_InstanceOf(cx, obj, &js_ArrayClass, vp + 2))) {
|
2009-08-08 03:09:11 +00:00
|
|
|
return false;
|
2009-07-01 00:19:42 +00:00
|
|
|
}
|
1998-04-24 00:31:11 +00:00
|
|
|
|
2009-07-01 00:19:42 +00:00
|
|
|
/* Find joins or cycles in the reachable object graph. */
|
|
|
|
jschar *sharpchars;
|
|
|
|
JSHashEntry *he = js_EnterSharpObject(cx, obj, NULL, &sharpchars);
|
2001-11-07 00:15:44 +00:00
|
|
|
if (!he)
|
2009-08-08 03:09:11 +00:00
|
|
|
return false;
|
|
|
|
bool initiallySharp = IS_SHARP(he);
|
2009-07-01 00:19:42 +00:00
|
|
|
|
2009-08-08 03:09:11 +00:00
|
|
|
/* After this point, all paths exit through the 'out' label. */
|
|
|
|
MUST_FLOW_THROUGH("out");
|
|
|
|
bool ok = false;
|
2005-12-07 22:42:06 +00:00
|
|
|
|
2009-03-17 08:51:38 +00:00
|
|
|
/*
|
2009-07-28 01:40:12 +00:00
|
|
|
* This object will take responsibility for the jschar buffer until the
|
2009-07-01 00:19:42 +00:00
|
|
|
* buffer is transferred to the returned JSString.
|
2009-03-17 08:51:38 +00:00
|
|
|
*/
|
2009-08-14 23:10:59 +00:00
|
|
|
JSCharBuffer cb(cx);
|
2009-07-01 00:19:42 +00:00
|
|
|
|
|
|
|
/* Cycles/joins are indicated by sharp objects. */
|
2009-06-30 19:14:09 +00:00
|
|
|
#if JS_HAS_SHARP_VARS
|
2009-07-01 00:19:42 +00:00
|
|
|
if (IS_SHARP(he)) {
|
|
|
|
JS_ASSERT(sharpchars != 0);
|
2009-08-14 23:10:59 +00:00
|
|
|
cb.replaceRawBuffer(sharpchars, js_strlen(sharpchars));
|
2009-07-01 00:19:42 +00:00
|
|
|
goto make_string;
|
|
|
|
} else if (sharpchars) {
|
|
|
|
MAKE_SHARP(he);
|
2009-08-14 23:10:59 +00:00
|
|
|
cb.replaceRawBuffer(sharpchars, js_strlen(sharpchars));
|
2009-07-01 00:19:42 +00:00
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
#else
|
2009-07-01 00:19:42 +00:00
|
|
|
if (IS_SHARP(he)) {
|
2009-08-14 23:10:59 +00:00
|
|
|
if (!js_AppendLiteral(cb, "[]"))
|
2009-08-08 03:09:11 +00:00
|
|
|
goto out;
|
2009-08-11 18:10:44 +00:00
|
|
|
cx->free(sharpchars);
|
2009-03-17 08:51:38 +00:00
|
|
|
goto make_string;
|
|
|
|
}
|
2009-07-01 00:19:42 +00:00
|
|
|
#endif
|
2009-06-30 18:29:43 +00:00
|
|
|
|
2009-08-14 23:10:59 +00:00
|
|
|
if (!cb.append('['))
|
2009-08-08 03:09:11 +00:00
|
|
|
goto out;
|
2009-07-01 00:19:42 +00:00
|
|
|
|
|
|
|
jsuint length;
|
2009-08-08 03:09:11 +00:00
|
|
|
if (!js_GetLengthProperty(cx, obj, &length))
|
|
|
|
goto out;
|
2009-07-01 00:19:42 +00:00
|
|
|
|
|
|
|
for (jsuint index = 0; index < length; index++) {
|
|
|
|
/* Use vp to locally root each element value. */
|
|
|
|
JSBool hole;
|
2009-08-08 03:09:11 +00:00
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
|
|
|
!GetArrayElement(cx, obj, index, &hole, vp)) {
|
|
|
|
goto out;
|
|
|
|
}
|
2009-07-01 00:19:42 +00:00
|
|
|
|
|
|
|
/* Get element's character string. */
|
|
|
|
JSString *str;
|
|
|
|
if (hole) {
|
|
|
|
str = cx->runtime->emptyString;
|
2003-06-12 00:26:40 +00:00
|
|
|
} else {
|
2009-07-01 00:19:42 +00:00
|
|
|
str = js_ValueToSource(cx, *vp);
|
2009-08-08 03:09:11 +00:00
|
|
|
if (!str)
|
|
|
|
goto out;
|
2003-06-12 00:26:40 +00:00
|
|
|
}
|
2009-07-01 00:19:42 +00:00
|
|
|
*vp = STRING_TO_JSVAL(str);
|
|
|
|
const jschar *chars;
|
|
|
|
size_t charlen;
|
|
|
|
str->getCharsAndLength(chars, charlen);
|
|
|
|
|
|
|
|
/* Append element to buffer. */
|
2009-08-14 23:10:59 +00:00
|
|
|
if (!cb.append(chars, charlen))
|
2009-08-08 03:09:11 +00:00
|
|
|
goto out;
|
2009-07-01 00:19:42 +00:00
|
|
|
if (index + 1 != length) {
|
2009-08-14 23:10:59 +00:00
|
|
|
if (!js_AppendLiteral(cb, ", "))
|
2009-08-08 03:09:11 +00:00
|
|
|
goto out;
|
2009-07-01 00:19:42 +00:00
|
|
|
} else if (hole) {
|
2009-08-14 23:10:59 +00:00
|
|
|
if (!cb.append(','))
|
2009-08-08 03:09:11 +00:00
|
|
|
goto out;
|
2003-06-12 00:26:40 +00:00
|
|
|
}
|
2009-07-01 00:19:42 +00:00
|
|
|
}
|
2009-06-30 18:29:43 +00:00
|
|
|
|
2009-07-01 00:19:42 +00:00
|
|
|
/* Finalize the buffer. */
|
2009-08-14 23:10:59 +00:00
|
|
|
if (!cb.append(']'))
|
2009-08-08 03:09:11 +00:00
|
|
|
goto out;
|
2009-06-30 18:29:43 +00:00
|
|
|
|
2009-07-01 00:19:42 +00:00
|
|
|
make_string:
|
2009-08-14 23:10:59 +00:00
|
|
|
if (!BufferToString(cx, cb, vp))
|
2009-08-08 03:09:11 +00:00
|
|
|
goto out;
|
2009-07-01 00:19:42 +00:00
|
|
|
|
2009-08-08 03:09:11 +00:00
|
|
|
ok = true;
|
|
|
|
|
|
|
|
out:
|
2009-07-01 00:19:42 +00:00
|
|
|
if (!initiallySharp)
|
|
|
|
js_LeaveSharpObject(cx, NULL);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-10 23:44:01 +00:00
|
|
|
static JSHashNumber
|
|
|
|
js_hash_array(const void *key)
|
|
|
|
{
|
|
|
|
return (JSHashNumber)JS_PTR_TO_UINT32(key) >> JSVAL_TAGBITS;
|
|
|
|
}
|
|
|
|
|
2009-08-08 03:09:11 +00:00
|
|
|
bool
|
2009-07-01 00:19:42 +00:00
|
|
|
js_InitContextBusyArrayTable(JSContext *cx)
|
|
|
|
{
|
2009-09-10 23:44:01 +00:00
|
|
|
cx->busyArrayTable = JS_NewHashTable(4, js_hash_array, JS_CompareValues,
|
|
|
|
JS_CompareValues, NULL, NULL);
|
2009-07-01 00:19:42 +00:00
|
|
|
return cx->busyArrayTable != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
|
|
|
array_toString_sub(JSContext *cx, JSObject *obj, JSBool locale,
|
|
|
|
JSString *sepstr, jsval *rval)
|
|
|
|
{
|
2009-08-08 03:09:11 +00:00
|
|
|
JS_CHECK_RECURSION(cx, return false);
|
2009-07-01 00:19:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This hash table is shared between toString invocations and must be empty
|
|
|
|
* after the root invocation completes.
|
|
|
|
*/
|
2009-09-10 23:44:01 +00:00
|
|
|
JSHashTable *table = cx->busyArrayTable;
|
2009-07-01 00:19:42 +00:00
|
|
|
|
|
|
|
/*
|
2009-08-08 03:09:11 +00:00
|
|
|
* Use HashTable entry as the cycle indicator. On first visit, create the
|
2009-07-01 00:19:42 +00:00
|
|
|
* entry, and, when leaving, remove the entry.
|
|
|
|
*/
|
2009-09-10 23:44:01 +00:00
|
|
|
JSHashNumber hash = js_hash_array(obj);
|
|
|
|
JSHashEntry **hep = JS_HashTableRawLookup(table, hash, obj);
|
|
|
|
JSHashEntry *he = *hep;
|
|
|
|
if (!he) {
|
|
|
|
/* Not in hash table, so not a cycle. */
|
|
|
|
he = JS_HashTableRawAdd(table, hep, hash, obj, NULL);
|
|
|
|
if (!he) {
|
|
|
|
JS_ReportOutOfMemory(cx);
|
2009-08-08 03:09:11 +00:00
|
|
|
return false;
|
2009-09-10 23:44:01 +00:00
|
|
|
}
|
2009-07-01 00:19:42 +00:00
|
|
|
} else {
|
|
|
|
/* Cycle, so return empty string. */
|
|
|
|
*rval = ATOM_KEY(cx->runtime->atomState.emptyAtom);
|
2009-08-08 03:09:11 +00:00
|
|
|
return true;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2009-07-01 00:19:42 +00:00
|
|
|
JSAutoTempValueRooter tvr(cx, obj);
|
|
|
|
|
2009-08-08 03:09:11 +00:00
|
|
|
/* After this point, all paths exit through the 'out' label. */
|
|
|
|
MUST_FLOW_THROUGH("out");
|
|
|
|
bool ok = false;
|
2009-07-01 00:19:42 +00:00
|
|
|
|
|
|
|
/* Get characters to use for the separator. */
|
|
|
|
static const jschar comma = ',';
|
|
|
|
const jschar *sep;
|
|
|
|
size_t seplen;
|
|
|
|
if (sepstr) {
|
|
|
|
sepstr->getCharsAndLength(sep, seplen);
|
|
|
|
} else {
|
|
|
|
sep = ,
|
|
|
|
seplen = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-07-28 01:40:12 +00:00
|
|
|
* This object will take responsibility for the jschar buffer until the
|
2009-07-01 00:19:42 +00:00
|
|
|
* buffer is transferred to the returned JSString.
|
|
|
|
*/
|
2009-08-14 23:10:59 +00:00
|
|
|
JSCharBuffer cb(cx);
|
2009-07-01 00:19:42 +00:00
|
|
|
|
|
|
|
jsuint length;
|
2009-08-08 03:09:11 +00:00
|
|
|
if (!js_GetLengthProperty(cx, obj, &length))
|
|
|
|
goto out;
|
2009-07-01 00:19:42 +00:00
|
|
|
|
|
|
|
for (jsuint index = 0; index < length; index++) {
|
|
|
|
/* Use rval to locally root each element value. */
|
|
|
|
JSBool hole;
|
2009-08-08 03:09:11 +00:00
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
|
|
|
!GetArrayElement(cx, obj, index, &hole, rval)) {
|
|
|
|
goto out;
|
|
|
|
}
|
2009-07-01 00:19:42 +00:00
|
|
|
|
|
|
|
/* Get element's character string. */
|
|
|
|
if (!(hole || JSVAL_IS_VOID(*rval) || JSVAL_IS_NULL(*rval))) {
|
|
|
|
if (locale) {
|
2009-08-08 03:09:11 +00:00
|
|
|
/* Work on obj.toLocalString() instead. */
|
2007-08-02 04:33:52 +00:00
|
|
|
JSObject *robj;
|
|
|
|
|
2009-08-08 03:09:11 +00:00
|
|
|
if (!js_ValueToObject(cx, *rval, &robj))
|
|
|
|
goto out;
|
|
|
|
*rval = OBJECT_TO_JSVAL(robj);
|
2009-07-01 00:19:42 +00:00
|
|
|
JSAtom *atom = cx->runtime->atomState.toLocaleStringAtom;
|
2009-08-08 03:09:11 +00:00
|
|
|
if (!js_TryMethod(cx, robj, atom, 0, NULL, rval))
|
|
|
|
goto out;
|
2001-11-07 00:15:44 +00:00
|
|
|
}
|
2003-06-12 00:26:40 +00:00
|
|
|
|
2009-08-14 23:10:59 +00:00
|
|
|
if (!js_ValueToCharBuffer(cx, *rval, cb))
|
2009-08-08 03:09:11 +00:00
|
|
|
goto out;
|
2009-06-30 19:14:09 +00:00
|
|
|
}
|
|
|
|
|
2009-07-01 00:19:42 +00:00
|
|
|
/* Append the separator. */
|
|
|
|
if (index + 1 != length) {
|
2009-08-14 23:10:59 +00:00
|
|
|
if (!cb.append(sep, seplen))
|
2009-08-08 03:09:11 +00:00
|
|
|
goto out;
|
2005-11-20 01:12:58 +00:00
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2009-07-01 00:19:42 +00:00
|
|
|
/* Finalize the buffer. */
|
2009-08-14 23:10:59 +00:00
|
|
|
if (!BufferToString(cx, cb, rval))
|
2009-08-08 03:09:11 +00:00
|
|
|
goto out;
|
2007-08-02 04:33:52 +00:00
|
|
|
|
2009-08-08 03:09:11 +00:00
|
|
|
ok = true;
|
2009-06-30 19:14:09 +00:00
|
|
|
|
2009-08-08 03:09:11 +00:00
|
|
|
out:
|
2009-07-06 20:02:43 +00:00
|
|
|
/*
|
2009-09-10 23:44:01 +00:00
|
|
|
* It is possible that 'hep' may have been invalidated by subsequent
|
|
|
|
* RawAdd/Remove. Hence, 'RawRemove' must not be used.
|
2009-07-06 20:02:43 +00:00
|
|
|
*/
|
2009-09-10 23:44:01 +00:00
|
|
|
JS_HashTableRemove(table, obj);
|
2009-07-01 00:19:42 +00:00
|
|
|
return ok;
|
1998-04-24 00:31:11 +00:00
|
|
|
}
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_toString(JSContext *cx, uintN argc, jsval *vp)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
JSObject *obj;
|
|
|
|
|
2008-02-18 00:12:33 +00:00
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
2009-07-01 00:19:42 +00:00
|
|
|
if (!obj ||
|
|
|
|
(OBJ_GET_CLASS(cx, obj) != &js_SlowArrayClass &&
|
|
|
|
!JS_InstanceOf(cx, obj, &js_ArrayClass, vp + 2))) {
|
2007-07-10 05:07:20 +00:00
|
|
|
return JS_FALSE;
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
2009-07-01 00:19:42 +00:00
|
|
|
|
|
|
|
return array_toString_sub(cx, obj, JS_FALSE, NULL, vp);
|
2000-08-09 21:46:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_toLocaleString(JSContext *cx, uintN argc, jsval *vp)
|
2000-08-09 21:46:03 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
JSObject *obj;
|
|
|
|
|
2008-02-18 00:12:33 +00:00
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
2009-07-01 00:19:42 +00:00
|
|
|
if (!obj ||
|
|
|
|
(OBJ_GET_CLASS(cx, obj) != &js_SlowArrayClass &&
|
|
|
|
!JS_InstanceOf(cx, obj, &js_ArrayClass, vp + 2))) {
|
2007-07-10 05:07:20 +00:00
|
|
|
return JS_FALSE;
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
2007-07-10 05:07:20 +00:00
|
|
|
|
2000-08-09 21:46:03 +00:00
|
|
|
/*
|
2001-03-10 00:20:42 +00:00
|
|
|
* Passing comma here as the separator. Need a way to get a
|
2001-01-04 10:13:18 +00:00
|
|
|
* locale-specific version.
|
2000-08-09 21:46:03 +00:00
|
|
|
*/
|
2009-07-01 00:19:42 +00:00
|
|
|
return array_toString_sub(cx, obj, JS_TRUE, NULL, vp);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2009-05-11 21:57:18 +00:00
|
|
|
enum TargetElementsType {
|
|
|
|
TargetElementsAllHoles,
|
|
|
|
TargetElementsMayContainValues
|
|
|
|
};
|
|
|
|
|
|
|
|
enum SourceVectorType {
|
|
|
|
SourceVectorAllValues,
|
|
|
|
SourceVectorMayContainHoles
|
|
|
|
};
|
|
|
|
|
2002-03-14 00:10:31 +00:00
|
|
|
static JSBool
|
2009-05-11 21:57:18 +00:00
|
|
|
InitArrayElements(JSContext *cx, JSObject *obj, jsuint start, jsuint count, jsval *vector,
|
|
|
|
TargetElementsType targetType, SourceVectorType vectorType)
|
2002-03-14 00:10:31 +00:00
|
|
|
{
|
2009-01-12 21:07:48 +00:00
|
|
|
JS_ASSERT(count < MAXINDEX);
|
2009-05-11 21:57:18 +00:00
|
|
|
|
2009-01-12 21:07:48 +00:00
|
|
|
/*
|
|
|
|
* Optimize for dense arrays so long as adding the given set of elements
|
|
|
|
* wouldn't otherwise make the array slow.
|
|
|
|
*/
|
2009-05-11 21:57:18 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj) && !js_PrototypeHasIndexedProperties(cx, obj) &&
|
|
|
|
start <= MAXINDEX - count && !INDEX_TOO_BIG(start + count)) {
|
|
|
|
|
|
|
|
#ifdef DEBUG_jwalden
|
|
|
|
{
|
|
|
|
/* Verify that overwriteType and writeType were accurate. */
|
|
|
|
JSAutoTempIdRooter idr(cx, JSVAL_ZERO);
|
|
|
|
for (jsuint i = 0; i < count; i++) {
|
|
|
|
JS_ASSERT_IF(vectorType == SourceVectorAllValues, vector[i] != JSVAL_HOLE);
|
|
|
|
|
|
|
|
jsdouble index = jsdouble(start) + i;
|
|
|
|
if (targetType == TargetElementsAllHoles && index < jsuint(-1)) {
|
|
|
|
JS_ASSERT(ReallyBigIndexToId(cx, index, idr.addr()));
|
|
|
|
JSObject* obj2;
|
|
|
|
JSProperty* prop;
|
2009-08-11 20:05:44 +00:00
|
|
|
JS_ASSERT(obj->lookupProperty(cx, idr.id(), &obj2, &prop));
|
2009-05-11 21:57:18 +00:00
|
|
|
JS_ASSERT(!prop);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-01-12 21:07:48 +00:00
|
|
|
jsuint newlen = start + count;
|
|
|
|
JS_ASSERT(jsdouble(start) + count == jsdouble(newlen));
|
|
|
|
if (!EnsureCapacity(cx, obj, newlen))
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
|
2009-01-12 21:07:48 +00:00
|
|
|
if (newlen > uint32(obj->fslots[JSSLOT_ARRAY_LENGTH]))
|
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = newlen;
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2009-01-12 21:07:48 +00:00
|
|
|
JS_ASSERT(count < size_t(-1) / sizeof(jsval));
|
2009-05-11 21:57:18 +00:00
|
|
|
if (targetType == TargetElementsMayContainValues) {
|
|
|
|
jsuint valueCount = 0;
|
|
|
|
for (jsuint i = 0; i < count; i++) {
|
|
|
|
if (obj->dslots[start + i] != JSVAL_HOLE)
|
|
|
|
valueCount++;
|
|
|
|
}
|
|
|
|
JS_ASSERT(uint32(obj->fslots[JSSLOT_ARRAY_COUNT]) >= valueCount);
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT] -= valueCount;
|
|
|
|
}
|
2009-01-12 21:07:48 +00:00
|
|
|
memcpy(obj->dslots + start, vector, sizeof(jsval) * count);
|
2009-05-11 21:57:18 +00:00
|
|
|
if (vectorType == SourceVectorAllValues) {
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT] += count;
|
|
|
|
} else {
|
|
|
|
jsuint valueCount = 0;
|
|
|
|
for (jsuint i = 0; i < count; i++) {
|
|
|
|
if (obj->dslots[start + i] != JSVAL_HOLE)
|
|
|
|
valueCount++;
|
|
|
|
}
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT] += valueCount;
|
|
|
|
}
|
2009-03-23 07:26:52 +00:00
|
|
|
JS_ASSERT_IF(count != 0, obj->dslots[newlen - 1] != JSVAL_HOLE);
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2009-01-12 21:07:48 +00:00
|
|
|
jsval* end = vector + count;
|
|
|
|
while (vector != end && start < MAXINDEX) {
|
2009-02-10 22:07:01 +00:00
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
2006-12-24 11:31:37 +00:00
|
|
|
!SetArrayElement(cx, obj, start++, *vector++)) {
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
2006-12-24 11:31:37 +00:00
|
|
|
}
|
2002-03-14 00:10:31 +00:00
|
|
|
}
|
2009-01-12 21:07:48 +00:00
|
|
|
|
|
|
|
if (vector == end)
|
|
|
|
return JS_TRUE;
|
|
|
|
|
|
|
|
/* Finish out any remaining elements past the max array index. */
|
2009-04-23 20:34:18 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj) && !ENSURE_SLOW_ARRAY(cx, obj))
|
2009-01-12 21:07:48 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
JS_ASSERT(start == MAXINDEX);
|
|
|
|
jsval tmp[2] = {JSVAL_NULL, JSVAL_NULL};
|
|
|
|
jsdouble* dp = js_NewWeaklyRootedDouble(cx, MAXINDEX);
|
|
|
|
if (!dp)
|
|
|
|
return JS_FALSE;
|
|
|
|
tmp[0] = DOUBLE_TO_JSVAL(dp);
|
|
|
|
JSAutoTempValueRooter(cx, JS_ARRAY_LENGTH(tmp), tmp);
|
|
|
|
JSAutoTempIdRooter idr(cx);
|
|
|
|
do {
|
|
|
|
tmp[1] = *vector++;
|
|
|
|
if (!js_ValueToStringId(cx, tmp[0], idr.addr()) ||
|
2009-08-11 20:05:44 +00:00
|
|
|
!obj->setProperty(cx, idr.id(), &tmp[1])) {
|
2009-01-12 21:07:48 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
*dp += 1;
|
|
|
|
} while (vector != end);
|
|
|
|
|
2002-03-14 00:10:31 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
static JSBool
|
2008-06-05 23:00:25 +00:00
|
|
|
InitArrayObject(JSContext *cx, JSObject *obj, jsuint length, jsval *vector,
|
|
|
|
JSBool holey = JS_FALSE)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2008-02-18 21:01:47 +00:00
|
|
|
JS_ASSERT(OBJ_IS_ARRAY(cx, obj));
|
2008-02-15 09:48:53 +00:00
|
|
|
|
2008-02-26 00:59:36 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = length;
|
2008-02-18 21:01:47 +00:00
|
|
|
|
|
|
|
if (vector) {
|
2009-02-21 21:33:50 +00:00
|
|
|
if (!EnsureCapacity(cx, obj, length))
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_FALSE;
|
2008-06-05 23:00:25 +00:00
|
|
|
|
|
|
|
jsuint count = length;
|
|
|
|
if (!holey) {
|
|
|
|
memcpy(obj->dslots, vector, length * sizeof (jsval));
|
|
|
|
} else {
|
|
|
|
for (jsuint i = 0; i < length; i++) {
|
|
|
|
if (vector[i] == JSVAL_HOLE)
|
|
|
|
--count;
|
|
|
|
obj->dslots[i] = vector[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT] = count;
|
2008-02-18 21:01:47 +00:00
|
|
|
} else {
|
2008-02-26 00:59:36 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT] = 0;
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2008-10-08 22:08:33 +00:00
|
|
|
#ifdef JS_TRACER
|
2008-10-16 19:24:10 +00:00
|
|
|
static JSString* FASTCALL
|
|
|
|
Array_p_join(JSContext* cx, JSObject* obj, JSString *str)
|
2008-10-08 22:08:33 +00:00
|
|
|
{
|
2009-02-11 19:33:17 +00:00
|
|
|
JSAutoTempValueRooter tvr(cx);
|
2009-07-01 00:19:42 +00:00
|
|
|
if (!array_toString_sub(cx, obj, JS_FALSE, str, tvr.addr())) {
|
2009-04-09 23:07:00 +00:00
|
|
|
js_SetBuiltinError(cx);
|
2008-10-08 22:08:33 +00:00
|
|
|
return NULL;
|
2009-02-04 00:25:12 +00:00
|
|
|
}
|
2009-02-11 19:33:17 +00:00
|
|
|
return JSVAL_TO_STRING(tvr.value());
|
2008-10-08 22:08:33 +00:00
|
|
|
}
|
2008-11-13 08:30:20 +00:00
|
|
|
|
|
|
|
static JSString* FASTCALL
|
|
|
|
Array_p_toString(JSContext* cx, JSObject* obj)
|
|
|
|
{
|
2009-02-11 19:33:17 +00:00
|
|
|
JSAutoTempValueRooter tvr(cx);
|
2009-07-01 00:19:42 +00:00
|
|
|
if (!array_toString_sub(cx, obj, JS_FALSE, NULL, tvr.addr())) {
|
2009-04-09 23:07:00 +00:00
|
|
|
js_SetBuiltinError(cx);
|
2008-11-13 08:30:20 +00:00
|
|
|
return NULL;
|
2009-02-11 19:33:17 +00:00
|
|
|
}
|
|
|
|
return JSVAL_TO_STRING(tvr.value());
|
2008-11-13 08:30:20 +00:00
|
|
|
}
|
2008-10-08 22:08:33 +00:00
|
|
|
#endif
|
|
|
|
|
2003-06-12 00:26:40 +00:00
|
|
|
/*
|
|
|
|
* Perl-inspired join, reverse, and sort.
|
|
|
|
*/
|
2008-10-08 22:08:33 +00:00
|
|
|
static JSBool
|
|
|
|
array_join(JSContext *cx, uintN argc, jsval *vp)
|
2003-06-12 00:26:40 +00:00
|
|
|
{
|
|
|
|
JSString *str;
|
2008-02-18 00:12:33 +00:00
|
|
|
JSObject *obj;
|
2003-06-12 00:26:40 +00:00
|
|
|
|
2008-08-08 16:02:50 +00:00
|
|
|
if (argc == 0 || JSVAL_IS_VOID(vp[2])) {
|
2005-11-20 01:12:58 +00:00
|
|
|
str = NULL;
|
|
|
|
} else {
|
2007-08-02 04:33:52 +00:00
|
|
|
str = js_ValueToString(cx, vp[2]);
|
2005-11-20 01:12:58 +00:00
|
|
|
if (!str)
|
|
|
|
return JS_FALSE;
|
2007-08-02 04:33:52 +00:00
|
|
|
vp[2] = STRING_TO_JSVAL(str);
|
2005-11-20 01:12:58 +00:00
|
|
|
}
|
2008-02-18 00:12:33 +00:00
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
2009-07-01 00:19:42 +00:00
|
|
|
return obj && array_toString_sub(cx, obj, JS_FALSE, str, vp);
|
2003-06-12 00:26:40 +00:00
|
|
|
}
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_reverse(JSContext *cx, uintN argc, jsval *vp)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
JSObject *obj;
|
2007-10-13 20:09:48 +00:00
|
|
|
JSTempValueRooter tvr;
|
1998-04-24 00:31:11 +00:00
|
|
|
jsuint len, half, i;
|
2007-10-13 20:09:48 +00:00
|
|
|
JSBool ok, hole, hole2;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
2008-02-18 00:12:33 +00:00
|
|
|
if (!obj || !js_GetLengthProperty(cx, obj, &len))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
2009-05-11 21:57:18 +00:00
|
|
|
*vp = OBJECT_TO_JSVAL(obj);
|
|
|
|
|
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj) && !js_PrototypeHasIndexedProperties(cx, obj)) {
|
|
|
|
/* An empty array or an array with no elements is already reversed. */
|
|
|
|
if (len == 0 || !obj->dslots)
|
|
|
|
return JS_TRUE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It's actually surprisingly complicated to reverse an array due to the
|
|
|
|
* orthogonality of array length and array capacity while handling
|
|
|
|
* leading and trailing holes correctly. Reversing seems less likely to
|
|
|
|
* be a common operation than other array mass-mutation methods, so for
|
|
|
|
* now just take a probably-small memory hit (in the absence of too many
|
|
|
|
* holes in the array at its start) and ensure that the capacity is
|
|
|
|
* sufficient to hold all the elements in the array if it were full.
|
|
|
|
*/
|
|
|
|
if (!EnsureCapacity(cx, obj, len))
|
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
jsval* lo = &obj->dslots[0];
|
|
|
|
jsval* hi = &obj->dslots[len - 1];
|
|
|
|
for (; lo < hi; lo++, hi--) {
|
|
|
|
jsval tmp = *lo;
|
|
|
|
*lo = *hi;
|
|
|
|
*hi = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Per ECMA-262, don't update the length of the array, even if the new
|
|
|
|
* array has trailing holes (and thus the original array began with
|
|
|
|
* holes).
|
|
|
|
*/
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2007-10-13 20:09:48 +00:00
|
|
|
ok = JS_TRUE;
|
|
|
|
JS_PUSH_SINGLE_TEMP_ROOT(cx, JSVAL_NULL, &tvr);
|
1998-04-24 00:31:11 +00:00
|
|
|
half = len / 2;
|
|
|
|
for (i = 0; i < half; i++) {
|
2009-02-10 22:07:01 +00:00
|
|
|
ok = JS_CHECK_OPERATION_LIMIT(cx) &&
|
2007-10-13 20:09:48 +00:00
|
|
|
GetArrayElement(cx, obj, i, &hole, &tvr.u.value) &&
|
|
|
|
GetArrayElement(cx, obj, len - i - 1, &hole2, vp) &&
|
|
|
|
SetOrDeleteArrayElement(cx, obj, len - i - 1, hole, tvr.u.value) &&
|
|
|
|
SetOrDeleteArrayElement(cx, obj, i, hole2, *vp);
|
|
|
|
if (!ok)
|
|
|
|
break;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
2007-10-13 20:09:48 +00:00
|
|
|
JS_POP_TEMP_ROOT(cx, &tvr);
|
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
*vp = OBJECT_TO_JSVAL(obj);
|
2007-10-13 20:09:48 +00:00
|
|
|
return ok;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2006-10-05 23:28:51 +00:00
|
|
|
typedef struct MSortArgs {
|
1998-03-28 02:44:41 +00:00
|
|
|
size_t elsize;
|
|
|
|
JSComparator cmp;
|
|
|
|
void *arg;
|
2003-02-27 01:43:44 +00:00
|
|
|
JSBool fastcopy;
|
2006-10-05 23:28:51 +00:00
|
|
|
} MSortArgs;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2006-10-05 23:28:51 +00:00
|
|
|
/* Helper function for js_MergeSort. */
|
2009-06-25 19:12:19 +00:00
|
|
|
static JSBool
|
2006-10-05 23:28:51 +00:00
|
|
|
MergeArrays(MSortArgs *msa, void *src, void *dest, size_t run1, size_t run2)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2006-10-05 23:28:51 +00:00
|
|
|
void *arg, *a, *b, *c;
|
|
|
|
size_t elsize, runtotal;
|
|
|
|
int cmp_result;
|
2001-01-04 10:13:18 +00:00
|
|
|
JSComparator cmp;
|
2003-02-27 01:43:44 +00:00
|
|
|
JSBool fastcopy;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2006-10-05 23:28:51 +00:00
|
|
|
runtotal = run1 + run2;
|
|
|
|
|
|
|
|
elsize = msa->elsize;
|
|
|
|
cmp = msa->cmp;
|
|
|
|
arg = msa->arg;
|
|
|
|
fastcopy = msa->fastcopy;
|
2001-01-04 10:13:18 +00:00
|
|
|
|
2005-11-16 10:02:57 +00:00
|
|
|
#define CALL_CMP(a, b) \
|
|
|
|
if (!cmp(arg, (a), (b), &cmp_result)) return JS_FALSE;
|
2001-01-04 10:13:18 +00:00
|
|
|
|
2006-10-05 23:28:51 +00:00
|
|
|
/* Copy runs already in sorted order. */
|
|
|
|
b = (char *)src + run1 * elsize;
|
|
|
|
a = (char *)b - elsize;
|
|
|
|
CALL_CMP(a, b);
|
|
|
|
if (cmp_result <= 0) {
|
|
|
|
memcpy(dest, src, runtotal * elsize);
|
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
2001-01-04 10:13:18 +00:00
|
|
|
|
2006-10-05 23:28:51 +00:00
|
|
|
#define COPY_ONE(p,q,n) \
|
|
|
|
(fastcopy ? (void)(*(jsval*)(p) = *(jsval*)(q)) : (void)memcpy(p, q, n))
|
|
|
|
|
|
|
|
a = src;
|
|
|
|
c = dest;
|
|
|
|
for (; runtotal != 0; runtotal--) {
|
|
|
|
JSBool from_a = run2 == 0;
|
|
|
|
if (!from_a && run1 != 0) {
|
|
|
|
CALL_CMP(a,b);
|
|
|
|
from_a = cmp_result <= 0;
|
2005-11-16 10:02:57 +00:00
|
|
|
}
|
2002-03-13 01:50:13 +00:00
|
|
|
|
2006-10-05 23:28:51 +00:00
|
|
|
if (from_a) {
|
|
|
|
COPY_ONE(c, a, elsize);
|
|
|
|
run1--;
|
|
|
|
a = (char *)a + elsize;
|
|
|
|
} else {
|
|
|
|
COPY_ONE(c, b, elsize);
|
|
|
|
run2--;
|
|
|
|
b = (char *)b + elsize;
|
|
|
|
}
|
|
|
|
c = (char *)c + elsize;
|
2002-03-13 01:50:13 +00:00
|
|
|
}
|
2006-10-05 23:28:51 +00:00
|
|
|
#undef COPY_ONE
|
2005-11-16 10:02:57 +00:00
|
|
|
#undef CALL_CMP
|
|
|
|
|
2006-10-05 23:28:51 +00:00
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2006-10-05 23:28:51 +00:00
|
|
|
/*
|
|
|
|
* This sort is stable, i.e. sequence of equal elements is preserved.
|
|
|
|
* See also bug #224128.
|
|
|
|
*/
|
2009-06-25 19:12:19 +00:00
|
|
|
JSBool
|
2006-10-05 23:28:51 +00:00
|
|
|
js_MergeSort(void *src, size_t nel, size_t elsize,
|
|
|
|
JSComparator cmp, void *arg, void *tmp)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2006-10-05 23:28:51 +00:00
|
|
|
void *swap, *vec1, *vec2;
|
|
|
|
MSortArgs msa;
|
|
|
|
size_t i, j, lo, hi, run;
|
|
|
|
JSBool fastcopy;
|
|
|
|
int cmp_result;
|
|
|
|
|
2007-12-13 19:55:21 +00:00
|
|
|
/* Avoid memcpy overhead for word-sized and word-aligned elements. */
|
|
|
|
fastcopy = (elsize == sizeof(jsval) &&
|
|
|
|
(((jsuword) src | (jsuword) tmp) & JSVAL_ALIGN) == 0);
|
2006-10-05 23:28:51 +00:00
|
|
|
#define COPY_ONE(p,q,n) \
|
|
|
|
(fastcopy ? (void)(*(jsval*)(p) = *(jsval*)(q)) : (void)memcpy(p, q, n))
|
|
|
|
#define CALL_CMP(a, b) \
|
|
|
|
if (!cmp(arg, (a), (b), &cmp_result)) return JS_FALSE;
|
|
|
|
#define INS_SORT_INT 4
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Apply insertion sort to small chunks to reduce the number of merge
|
|
|
|
* passes needed.
|
|
|
|
*/
|
|
|
|
for (lo = 0; lo < nel; lo += INS_SORT_INT) {
|
|
|
|
hi = lo + INS_SORT_INT;
|
|
|
|
if (hi >= nel)
|
|
|
|
hi = nel;
|
|
|
|
for (i = lo + 1; i < hi; i++) {
|
|
|
|
vec1 = (char *)src + i * elsize;
|
|
|
|
vec2 = (char *)vec1 - elsize;
|
|
|
|
for (j = i; j > lo; j--) {
|
|
|
|
CALL_CMP(vec2, vec1);
|
|
|
|
/* "<=" instead of "<" insures the sort is stable */
|
|
|
|
if (cmp_result <= 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Swap elements, using "tmp" as tmp storage */
|
|
|
|
COPY_ONE(tmp, vec2, elsize);
|
|
|
|
COPY_ONE(vec2, vec1, elsize);
|
|
|
|
COPY_ONE(vec1, tmp, elsize);
|
|
|
|
vec1 = vec2;
|
|
|
|
vec2 = (char *)vec1 - elsize;
|
|
|
|
}
|
|
|
|
}
|
2005-11-16 10:02:57 +00:00
|
|
|
}
|
2006-10-05 23:28:51 +00:00
|
|
|
#undef CALL_CMP
|
|
|
|
#undef COPY_ONE
|
|
|
|
|
|
|
|
msa.elsize = elsize;
|
|
|
|
msa.cmp = cmp;
|
|
|
|
msa.arg = arg;
|
|
|
|
msa.fastcopy = fastcopy;
|
|
|
|
|
|
|
|
vec1 = src;
|
|
|
|
vec2 = tmp;
|
|
|
|
for (run = INS_SORT_INT; run < nel; run *= 2) {
|
|
|
|
for (lo = 0; lo < nel; lo += 2 * run) {
|
|
|
|
hi = lo + run;
|
|
|
|
if (hi >= nel) {
|
|
|
|
memcpy((char *)vec2 + lo * elsize, (char *)vec1 + lo * elsize,
|
|
|
|
(nel - lo) * elsize);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!MergeArrays(&msa, (char *)vec1 + lo * elsize,
|
|
|
|
(char *)vec2 + lo * elsize, run,
|
|
|
|
hi + run > nel ? nel - hi : run)) {
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
swap = vec1;
|
|
|
|
vec1 = vec2;
|
|
|
|
vec2 = swap;
|
2005-11-16 10:02:57 +00:00
|
|
|
}
|
2006-10-05 23:28:51 +00:00
|
|
|
if (src != vec1)
|
|
|
|
memcpy(src, tmp, nel * elsize);
|
2005-11-16 10:02:57 +00:00
|
|
|
|
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct CompareArgs {
|
2005-09-02 17:49:05 +00:00
|
|
|
JSContext *context;
|
|
|
|
jsval fval;
|
2007-11-21 05:51:46 +00:00
|
|
|
jsval *elemroot; /* stack needed for js_Invoke */
|
1998-03-28 02:44:41 +00:00
|
|
|
} CompareArgs;
|
|
|
|
|
2009-01-30 23:40:05 +00:00
|
|
|
static JS_REQUIRES_STACK JSBool
|
2005-11-16 10:02:57 +00:00
|
|
|
sort_compare(void *arg, const void *a, const void *b, int *result)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1998-04-24 00:31:11 +00:00
|
|
|
jsval av = *(const jsval *)a, bv = *(const jsval *)b;
|
2000-02-04 02:01:49 +00:00
|
|
|
CompareArgs *ca = (CompareArgs *) arg;
|
1998-03-28 02:44:41 +00:00
|
|
|
JSContext *cx = ca->context;
|
2007-11-29 07:09:21 +00:00
|
|
|
jsval *invokevp, *sp;
|
|
|
|
jsdouble cmp;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2006-03-15 20:49:09 +00:00
|
|
|
/**
|
|
|
|
* array_sort deals with holes and undefs on its own and they should not
|
|
|
|
* come here.
|
2005-06-08 16:38:38 +00:00
|
|
|
*/
|
2008-06-25 09:43:02 +00:00
|
|
|
JS_ASSERT(!JSVAL_IS_VOID(av));
|
|
|
|
JS_ASSERT(!JSVAL_IS_VOID(bv));
|
2005-06-08 16:38:38 +00:00
|
|
|
|
2009-02-10 22:07:01 +00:00
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx))
|
2006-12-24 11:31:37 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
|
2007-11-29 07:09:21 +00:00
|
|
|
invokevp = ca->elemroot;
|
|
|
|
sp = invokevp;
|
|
|
|
*sp++ = ca->fval;
|
|
|
|
*sp++ = JSVAL_NULL;
|
|
|
|
*sp++ = av;
|
|
|
|
*sp++ = bv;
|
|
|
|
|
2008-04-28 06:50:37 +00:00
|
|
|
if (!js_Invoke(cx, 2, invokevp, 0))
|
2008-03-06 23:24:08 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
cmp = js_ValueToNumber(cx, invokevp);
|
|
|
|
if (JSVAL_IS_NULL(*invokevp))
|
2007-11-29 07:09:21 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
/* Clamp cmp to -1, 0, 1. */
|
2006-03-15 20:49:09 +00:00
|
|
|
*result = 0;
|
2007-11-29 07:09:21 +00:00
|
|
|
if (!JSDOUBLE_IS_NaN(cmp) && cmp != 0)
|
|
|
|
*result = cmp > 0 ? 1 : -1;
|
2003-06-12 00:26:40 +00:00
|
|
|
|
2007-11-29 07:09:21 +00:00
|
|
|
/*
|
|
|
|
* XXX else report some kind of error here? ECMA talks about 'consistent
|
|
|
|
* compare functions' that don't return NaN, but is silent about what the
|
|
|
|
* result should be. So we currently ignore it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2009-06-25 19:12:19 +00:00
|
|
|
typedef JSBool (JS_REQUIRES_STACK *JSRedComparator)(void*, const void*,
|
|
|
|
const void*, int *);
|
|
|
|
|
|
|
|
static inline JS_IGNORE_STACK JSComparator
|
|
|
|
comparator_stack_cast(JSRedComparator func)
|
|
|
|
{
|
|
|
|
return func;
|
|
|
|
}
|
|
|
|
|
2002-05-27 05:53:57 +00:00
|
|
|
static int
|
2005-11-16 10:02:57 +00:00
|
|
|
sort_compare_strings(void *arg, const void *a, const void *b, int *result)
|
2002-05-27 05:53:57 +00:00
|
|
|
{
|
|
|
|
jsval av = *(const jsval *)a, bv = *(const jsval *)b;
|
|
|
|
|
2007-12-13 19:55:21 +00:00
|
|
|
JS_ASSERT(JSVAL_IS_STRING(av));
|
|
|
|
JS_ASSERT(JSVAL_IS_STRING(bv));
|
2009-02-10 22:07:01 +00:00
|
|
|
if (!JS_CHECK_OPERATION_LIMIT((JSContext *)arg))
|
2006-12-24 11:31:37 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
|
2005-11-16 10:02:57 +00:00
|
|
|
*result = (int) js_CompareStrings(JSVAL_TO_STRING(av), JSVAL_TO_STRING(bv));
|
|
|
|
return JS_TRUE;
|
2002-05-27 05:53:57 +00:00
|
|
|
}
|
|
|
|
|
2006-10-05 23:28:51 +00:00
|
|
|
/*
|
|
|
|
* The array_sort function below assumes JSVAL_NULL is zero in order to
|
|
|
|
* perform initialization using memset. Other parts of SpiderMonkey likewise
|
|
|
|
* "know" that JSVAL_NULL is zero; this static assertion covers all cases.
|
|
|
|
*/
|
|
|
|
JS_STATIC_ASSERT(JSVAL_NULL == 0);
|
|
|
|
|
2009-06-25 19:12:19 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_sort(JSContext *cx, uintN argc, jsval *vp)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2007-12-13 19:55:21 +00:00
|
|
|
jsval *argv, fval, *vec, *mergesort_tmp, v;
|
2007-08-02 04:33:52 +00:00
|
|
|
JSObject *obj;
|
1998-03-28 02:44:41 +00:00
|
|
|
CompareArgs ca;
|
2006-03-15 20:49:09 +00:00
|
|
|
jsuint len, newlen, i, undefs;
|
2006-08-12 08:41:54 +00:00
|
|
|
JSTempValueRooter tvr;
|
2008-09-08 20:41:09 +00:00
|
|
|
JSBool hole;
|
2009-02-26 08:49:39 +00:00
|
|
|
JSBool ok;
|
2007-12-13 19:55:21 +00:00
|
|
|
size_t elemsize;
|
|
|
|
JSString *str;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2002-05-27 05:53:57 +00:00
|
|
|
/*
|
|
|
|
* Optimize the default compare function case if all of obj's elements
|
|
|
|
* have values of type string.
|
|
|
|
*/
|
|
|
|
JSBool all_strings;
|
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
argv = JS_ARGV(cx, vp);
|
1998-03-28 02:44:41 +00:00
|
|
|
if (argc > 0) {
|
2003-06-12 00:26:40 +00:00
|
|
|
if (JSVAL_IS_PRIMITIVE(argv[0])) {
|
|
|
|
JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL,
|
|
|
|
JSMSG_BAD_SORT_ARG);
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
2007-12-13 19:55:21 +00:00
|
|
|
fval = argv[0]; /* non-default compare function */
|
1998-03-28 02:44:41 +00:00
|
|
|
} else {
|
2003-06-12 00:26:40 +00:00
|
|
|
fval = JSVAL_NULL;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
2008-02-18 00:12:33 +00:00
|
|
|
if (!obj || !js_GetLengthProperty(cx, obj, &len))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
2002-11-07 10:51:23 +00:00
|
|
|
if (len == 0) {
|
2007-08-02 04:33:52 +00:00
|
|
|
*vp = OBJECT_TO_JSVAL(obj);
|
2000-06-03 19:00:28 +00:00
|
|
|
return JS_TRUE;
|
2002-11-07 10:51:23 +00:00
|
|
|
}
|
2002-07-31 21:42:12 +00:00
|
|
|
|
2005-10-09 06:09:21 +00:00
|
|
|
/*
|
2007-12-13 19:55:21 +00:00
|
|
|
* We need a temporary array of 2 * len jsvals to hold the array elements
|
|
|
|
* and the scratch space for merge sort. Check that its size does not
|
|
|
|
* overflow size_t, which would allow for indexing beyond the end of the
|
|
|
|
* malloc'd vector.
|
2005-10-09 06:09:21 +00:00
|
|
|
*/
|
2008-01-07 08:41:06 +00:00
|
|
|
#if JS_BITS_PER_WORD == 32
|
|
|
|
if ((size_t)len > ~(size_t)0 / (2 * sizeof(jsval))) {
|
2008-03-12 23:07:47 +00:00
|
|
|
js_ReportAllocationOverflow(cx);
|
2002-07-31 21:42:12 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
}
|
2008-01-07 08:41:06 +00:00
|
|
|
#endif
|
2009-07-28 04:10:12 +00:00
|
|
|
vec = (jsval *) cx->malloc(2 * (size_t) len * sizeof(jsval));
|
1998-04-24 00:31:11 +00:00
|
|
|
if (!vec)
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2006-03-17 22:09:46 +00:00
|
|
|
/*
|
|
|
|
* Initialize vec as a root. We will clear elements of vec one by
|
2006-08-12 08:41:54 +00:00
|
|
|
* one while increasing tvr.count when we know that the property at
|
2006-03-17 22:09:46 +00:00
|
|
|
* the corresponding index exists and its value must be rooted.
|
|
|
|
*
|
2006-07-01 19:52:32 +00:00
|
|
|
* In this way when sorting a huge mostly sparse array we will not
|
2006-03-17 22:09:46 +00:00
|
|
|
* access the tail of vec corresponding to properties that do not
|
2006-08-12 08:41:54 +00:00
|
|
|
* exist, allowing OS to avoiding committing RAM. See bug 330812.
|
|
|
|
*
|
|
|
|
* After this point control must flow through label out: to exit.
|
2006-03-17 22:09:46 +00:00
|
|
|
*/
|
2006-08-12 08:41:54 +00:00
|
|
|
JS_PUSH_TEMP_ROOT(cx, 0, vec, &tvr);
|
2004-11-30 17:52:29 +00:00
|
|
|
|
2006-03-15 20:49:09 +00:00
|
|
|
/*
|
2006-03-16 08:04:28 +00:00
|
|
|
* By ECMA 262, 15.4.4.11, a property that does not exist (which we
|
|
|
|
* call a "hole") is always greater than an existing property with
|
|
|
|
* value undefined and that is always greater than any other property.
|
|
|
|
* Thus to sort holes and undefs we simply count them, sort the rest
|
|
|
|
* of elements, append undefs after them and then make holes after
|
|
|
|
* undefs.
|
2006-03-15 20:49:09 +00:00
|
|
|
*/
|
|
|
|
undefs = 0;
|
2005-10-12 07:39:45 +00:00
|
|
|
newlen = 0;
|
2007-12-13 19:55:21 +00:00
|
|
|
all_strings = JS_TRUE;
|
1998-04-24 00:31:11 +00:00
|
|
|
for (i = 0; i < len; i++) {
|
2009-02-10 22:07:01 +00:00
|
|
|
ok = JS_CHECK_OPERATION_LIMIT(cx);
|
2006-12-24 11:31:37 +00:00
|
|
|
if (!ok)
|
|
|
|
goto out;
|
|
|
|
|
2006-08-08 23:52:08 +00:00
|
|
|
/* Clear vec[newlen] before including it in the rooted set. */
|
|
|
|
vec[newlen] = JSVAL_NULL;
|
2006-08-12 08:41:54 +00:00
|
|
|
tvr.count = newlen + 1;
|
|
|
|
ok = GetArrayElement(cx, obj, i, &hole, &vec[newlen]);
|
2006-08-08 23:52:08 +00:00
|
|
|
if (!ok)
|
|
|
|
goto out;
|
|
|
|
|
2006-08-12 08:41:54 +00:00
|
|
|
if (hole)
|
|
|
|
continue;
|
|
|
|
|
2008-06-25 09:43:02 +00:00
|
|
|
if (JSVAL_IS_VOID(vec[newlen])) {
|
2006-03-15 20:49:09 +00:00
|
|
|
++undefs;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2002-05-27 05:53:57 +00:00
|
|
|
/* We know JSVAL_IS_STRING yields 0 or 1, so avoid a branch via &=. */
|
2006-03-15 20:49:09 +00:00
|
|
|
all_strings &= JSVAL_IS_STRING(vec[newlen]);
|
|
|
|
|
|
|
|
++newlen;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2007-12-13 19:55:21 +00:00
|
|
|
if (newlen == 0) {
|
|
|
|
/* The array has only holes and undefs. */
|
|
|
|
ok = JS_TRUE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2006-10-05 23:28:51 +00:00
|
|
|
/*
|
2007-12-13 19:55:21 +00:00
|
|
|
* The first newlen elements of vec are copied from the array object
|
|
|
|
* (above). The remaining newlen positions are used as GC-rooted scratch
|
|
|
|
* space for mergesort. We must clear the space before including it to
|
|
|
|
* the root set covered by tvr.count. We assume JSVAL_NULL==0 to optimize
|
|
|
|
* initialization using memset.
|
2006-10-05 23:28:51 +00:00
|
|
|
*/
|
|
|
|
mergesort_tmp = vec + newlen;
|
|
|
|
memset(mergesort_tmp, 0, newlen * sizeof(jsval));
|
2006-11-16 14:35:28 +00:00
|
|
|
tvr.count = newlen * 2;
|
2006-10-05 23:28:51 +00:00
|
|
|
|
|
|
|
/* Here len == 2 * (newlen + undefs + number_of_holes). */
|
2007-12-13 19:55:21 +00:00
|
|
|
if (fval == JSVAL_NULL) {
|
|
|
|
/*
|
|
|
|
* Sort using the default comparator converting all elements to
|
|
|
|
* strings.
|
|
|
|
*/
|
|
|
|
if (all_strings) {
|
|
|
|
elemsize = sizeof(jsval);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* To avoid string conversion on each compare we do it only once
|
|
|
|
* prior to sorting. But we also need the space for the original
|
|
|
|
* values to recover the sorting result. To reuse
|
|
|
|
* sort_compare_strings we move the original values to the odd
|
|
|
|
* indexes in vec, put the string conversion results in the even
|
|
|
|
* indexes and pass 2 * sizeof(jsval) as an element size to the
|
|
|
|
* sorting function. In this way sort_compare_strings will only
|
|
|
|
* see the string values when it casts the compare arguments as
|
|
|
|
* pointers to jsval.
|
|
|
|
*
|
|
|
|
* This requires doubling the temporary storage including the
|
|
|
|
* scratch space for the merge sort. Since vec already contains
|
|
|
|
* the rooted scratch space for newlen elements at the tail, we
|
|
|
|
* can use it to rearrange and convert to strings first and try
|
|
|
|
* realloc only when we know that we successfully converted all
|
|
|
|
* the elements.
|
|
|
|
*/
|
2008-01-07 08:41:06 +00:00
|
|
|
#if JS_BITS_PER_WORD == 32
|
|
|
|
if ((size_t)newlen > ~(size_t)0 / (4 * sizeof(jsval))) {
|
2008-03-12 23:07:47 +00:00
|
|
|
js_ReportAllocationOverflow(cx);
|
2007-12-13 19:55:21 +00:00
|
|
|
ok = JS_FALSE;
|
|
|
|
goto out;
|
|
|
|
}
|
2008-01-07 08:41:06 +00:00
|
|
|
#endif
|
2007-12-13 19:55:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Rearrange and string-convert the elements of the vector from
|
|
|
|
* the tail here and, after sorting, move the results back
|
|
|
|
* starting from the start to prevent overwrite the existing
|
|
|
|
* elements.
|
|
|
|
*/
|
|
|
|
i = newlen;
|
|
|
|
do {
|
|
|
|
--i;
|
2009-02-10 22:07:01 +00:00
|
|
|
ok = JS_CHECK_OPERATION_LIMIT(cx);
|
2007-12-13 19:55:21 +00:00
|
|
|
if (!ok)
|
|
|
|
goto out;
|
|
|
|
v = vec[i];
|
|
|
|
str = js_ValueToString(cx, v);
|
|
|
|
if (!str) {
|
|
|
|
ok = JS_FALSE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
vec[2 * i] = STRING_TO_JSVAL(str);
|
|
|
|
vec[2 * i + 1] = v;
|
|
|
|
} while (i != 0);
|
|
|
|
|
|
|
|
JS_ASSERT(tvr.u.array == vec);
|
2009-07-28 04:10:12 +00:00
|
|
|
vec = (jsval *) cx->realloc(vec,
|
|
|
|
4 * (size_t) newlen * sizeof(jsval));
|
2007-12-13 19:55:21 +00:00
|
|
|
if (!vec) {
|
|
|
|
vec = tvr.u.array;
|
|
|
|
ok = JS_FALSE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
tvr.u.array = vec;
|
|
|
|
mergesort_tmp = vec + 2 * newlen;
|
|
|
|
memset(mergesort_tmp, 0, newlen * 2 * sizeof(jsval));
|
|
|
|
tvr.count = newlen * 4;
|
|
|
|
elemsize = 2 * sizeof(jsval);
|
|
|
|
}
|
|
|
|
ok = js_MergeSort(vec, (size_t) newlen, elemsize,
|
2006-12-24 11:31:37 +00:00
|
|
|
sort_compare_strings, cx, mergesort_tmp);
|
2007-12-13 19:55:21 +00:00
|
|
|
if (!ok)
|
|
|
|
goto out;
|
|
|
|
if (!all_strings) {
|
|
|
|
/*
|
2008-01-03 09:28:40 +00:00
|
|
|
* We want to make the following loop fast and to unroot the
|
|
|
|
* cached results of toString invocations before the operation
|
|
|
|
* callback has a chance to run the GC. For this reason we do
|
|
|
|
* not call JS_CHECK_OPERATION_LIMIT in the loop.
|
2007-12-13 19:55:21 +00:00
|
|
|
*/
|
2007-12-14 17:30:20 +00:00
|
|
|
i = 0;
|
|
|
|
do {
|
2007-12-13 19:55:21 +00:00
|
|
|
vec[i] = vec[2 * i + 1];
|
2007-12-14 17:30:20 +00:00
|
|
|
} while (++i != newlen);
|
2007-12-13 19:55:21 +00:00
|
|
|
}
|
2006-12-24 11:31:37 +00:00
|
|
|
} else {
|
2007-11-21 05:51:46 +00:00
|
|
|
void *mark;
|
|
|
|
|
2009-06-25 19:12:19 +00:00
|
|
|
js_LeaveTrace(cx);
|
|
|
|
|
2006-12-24 11:31:37 +00:00
|
|
|
ca.context = cx;
|
|
|
|
ca.fval = fval;
|
2007-11-21 05:51:46 +00:00
|
|
|
ca.elemroot = js_AllocStack(cx, 2 + 2, &mark);
|
|
|
|
if (!ca.elemroot) {
|
|
|
|
ok = JS_FALSE;
|
|
|
|
goto out;
|
|
|
|
}
|
2006-12-24 11:31:37 +00:00
|
|
|
ok = js_MergeSort(vec, (size_t) newlen, sizeof(jsval),
|
2009-06-25 19:12:19 +00:00
|
|
|
comparator_stack_cast(sort_compare),
|
|
|
|
&ca, mergesort_tmp);
|
2007-11-21 05:51:46 +00:00
|
|
|
js_FreeStack(cx, mark);
|
2007-12-13 19:55:21 +00:00
|
|
|
if (!ok)
|
|
|
|
goto out;
|
2006-12-24 11:31:37 +00:00
|
|
|
}
|
2005-11-16 10:02:57 +00:00
|
|
|
|
2007-12-13 19:55:21 +00:00
|
|
|
/*
|
|
|
|
* We no longer need to root the scratch space for the merge sort, so
|
|
|
|
* unroot it now to make the job of a potential GC under InitArrayElements
|
|
|
|
* easier.
|
|
|
|
*/
|
|
|
|
tvr.count = newlen;
|
2009-05-11 21:57:18 +00:00
|
|
|
ok = InitArrayElements(cx, obj, 0, newlen, vec, TargetElementsMayContainValues,
|
|
|
|
SourceVectorAllValues);
|
2006-08-12 08:41:54 +00:00
|
|
|
if (!ok)
|
|
|
|
goto out;
|
1999-04-27 15:18:57 +00:00
|
|
|
|
2006-07-01 19:52:32 +00:00
|
|
|
out:
|
2006-08-12 08:41:54 +00:00
|
|
|
JS_POP_TEMP_ROOT(cx, &tvr);
|
2009-07-28 04:10:12 +00:00
|
|
|
cx->free(vec);
|
2006-07-01 19:52:32 +00:00
|
|
|
if (!ok)
|
|
|
|
return JS_FALSE;
|
|
|
|
|
2006-08-12 08:41:54 +00:00
|
|
|
/* Set undefs that sorted after the rest of elements. */
|
|
|
|
while (undefs != 0) {
|
|
|
|
--undefs;
|
2009-02-10 22:07:01 +00:00
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
2006-12-24 11:31:37 +00:00
|
|
|
!SetArrayElement(cx, obj, newlen++, JSVAL_VOID)) {
|
2006-08-12 08:41:54 +00:00
|
|
|
return JS_FALSE;
|
2006-12-24 11:31:37 +00:00
|
|
|
}
|
2006-08-12 08:41:54 +00:00
|
|
|
}
|
|
|
|
|
2006-07-01 19:52:32 +00:00
|
|
|
/* Re-create any holes that sorted to the end of the array. */
|
|
|
|
while (len > newlen) {
|
2009-02-10 22:07:01 +00:00
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
2006-12-24 11:31:37 +00:00
|
|
|
!DeleteArrayElement(cx, obj, --len)) {
|
2006-07-01 19:52:32 +00:00
|
|
|
return JS_FALSE;
|
2006-12-24 11:31:37 +00:00
|
|
|
}
|
2006-07-01 19:52:32 +00:00
|
|
|
}
|
2007-08-02 04:33:52 +00:00
|
|
|
*vp = OBJECT_TO_JSVAL(obj);
|
2006-07-01 19:52:32 +00:00
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-06-12 00:26:40 +00:00
|
|
|
* Perl-inspired push, pop, shift, unshift, and splice methods.
|
1998-03-28 02:44:41 +00:00
|
|
|
*/
|
2008-10-08 22:08:33 +00:00
|
|
|
static JSBool
|
|
|
|
array_push_slowly(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2009-01-12 21:07:48 +00:00
|
|
|
jsuint length;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-04-24 00:31:11 +00:00
|
|
|
if (!js_GetLengthProperty(cx, obj, &length))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
2009-05-11 21:57:18 +00:00
|
|
|
if (!InitArrayElements(cx, obj, length, argc, argv, TargetElementsMayContainValues,
|
|
|
|
SourceVectorAllValues)) {
|
2006-08-12 08:41:54 +00:00
|
|
|
return JS_FALSE;
|
2009-05-11 21:57:18 +00:00
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2006-04-26 21:33:01 +00:00
|
|
|
/* Per ECMA-262, return the new array length. */
|
2009-01-12 21:07:48 +00:00
|
|
|
jsdouble newlength = length + jsdouble(argc);
|
2008-09-17 00:07:59 +00:00
|
|
|
if (!IndexToValue(cx, newlength, rval))
|
2006-04-26 21:33:01 +00:00
|
|
|
return JS_FALSE;
|
2006-08-12 08:41:54 +00:00
|
|
|
return js_SetLengthProperty(cx, obj, newlength);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2008-10-08 22:08:33 +00:00
|
|
|
static JSBool
|
|
|
|
array_push1_dense(JSContext* cx, JSObject* obj, jsval v, jsval *rval)
|
2007-08-02 04:33:52 +00:00
|
|
|
{
|
2008-09-17 00:07:59 +00:00
|
|
|
uint32 length = obj->fslots[JSSLOT_ARRAY_LENGTH];
|
2008-02-26 00:59:36 +00:00
|
|
|
if (INDEX_TOO_SPARSE(obj, length)) {
|
2008-07-01 19:47:09 +00:00
|
|
|
if (!js_MakeArraySlow(cx, obj))
|
2008-02-18 21:01:47 +00:00
|
|
|
return JS_FALSE;
|
2008-10-08 22:08:33 +00:00
|
|
|
return array_push_slowly(cx, obj, 1, &v, rval);
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
2007-08-02 04:33:52 +00:00
|
|
|
|
2009-02-21 21:33:50 +00:00
|
|
|
if (!EnsureCapacity(cx, obj, length + 1))
|
2007-08-02 04:33:52 +00:00
|
|
|
return JS_FALSE;
|
2008-02-26 00:59:36 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = length + 1;
|
2008-02-18 21:01:47 +00:00
|
|
|
|
2008-02-26 00:59:36 +00:00
|
|
|
JS_ASSERT(obj->dslots[length] == JSVAL_HOLE);
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT]++;
|
2008-09-17 00:07:59 +00:00
|
|
|
obj->dslots[length] = v;
|
|
|
|
return IndexToValue(cx, obj->fslots[JSSLOT_ARRAY_LENGTH], rval);
|
2007-08-02 04:33:52 +00:00
|
|
|
}
|
|
|
|
|
2009-02-06 20:36:14 +00:00
|
|
|
JSBool JS_FASTCALL
|
2009-02-06 19:19:06 +00:00
|
|
|
js_ArrayCompPush(JSContext *cx, JSObject *obj, jsval v)
|
|
|
|
{
|
|
|
|
JS_ASSERT(OBJ_IS_DENSE_ARRAY(cx, obj));
|
|
|
|
uint32_t length = (uint32_t) obj->fslots[JSSLOT_ARRAY_LENGTH];
|
2009-02-21 21:33:50 +00:00
|
|
|
JS_ASSERT(length <= js_DenseArrayCapacity(obj));
|
2009-02-06 19:19:06 +00:00
|
|
|
|
2009-02-21 21:33:50 +00:00
|
|
|
if (length == js_DenseArrayCapacity(obj)) {
|
2009-08-14 18:43:16 +00:00
|
|
|
if (length > JS_ARGS_LENGTH_MAX) {
|
2009-02-06 19:19:06 +00:00
|
|
|
JS_ReportErrorNumberUC(cx, js_GetErrorMessage, NULL,
|
|
|
|
JSMSG_ARRAY_INIT_TOO_BIG);
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
2009-02-23 23:31:02 +00:00
|
|
|
if (!EnsureCapacity(cx, obj, length + 1))
|
2009-02-06 19:19:06 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = length + 1;
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT]++;
|
|
|
|
obj->dslots[length] = v;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
2009-05-06 00:36:26 +00:00
|
|
|
JS_DEFINE_CALLINFO_3(extern, BOOL, js_ArrayCompPush, CONTEXT, OBJECT, JSVAL, 0, 0)
|
2009-02-06 19:19:06 +00:00
|
|
|
|
2008-10-08 22:08:33 +00:00
|
|
|
#ifdef JS_TRACER
|
2008-10-16 19:24:10 +00:00
|
|
|
static jsval FASTCALL
|
|
|
|
Array_p_push1(JSContext* cx, JSObject* obj, jsval v)
|
2008-10-08 22:08:33 +00:00
|
|
|
{
|
2009-02-11 19:33:17 +00:00
|
|
|
JSAutoTempValueRooter tvr(cx, v);
|
2009-02-08 11:30:29 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj)
|
2009-02-11 19:33:17 +00:00
|
|
|
? array_push1_dense(cx, obj, v, tvr.addr())
|
|
|
|
: array_push_slowly(cx, obj, 1, tvr.addr(), tvr.addr())) {
|
|
|
|
return tvr.value();
|
2008-10-08 22:08:33 +00:00
|
|
|
}
|
2009-04-09 23:07:00 +00:00
|
|
|
js_SetBuiltinError(cx);
|
2009-02-04 00:25:12 +00:00
|
|
|
return JSVAL_VOID;
|
2008-10-08 22:08:33 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static JSBool
|
|
|
|
array_push(JSContext *cx, uintN argc, jsval *vp)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
JSObject *obj;
|
1998-04-24 00:31:11 +00:00
|
|
|
|
2008-09-17 00:07:59 +00:00
|
|
|
/* Insist on one argument and obj of the expected class. */
|
2007-08-02 04:33:52 +00:00
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
2008-02-18 21:01:47 +00:00
|
|
|
if (!obj)
|
|
|
|
return JS_FALSE;
|
2008-09-17 00:07:59 +00:00
|
|
|
if (argc != 1 || !OBJ_IS_DENSE_ARRAY(cx, obj))
|
2008-10-08 22:08:33 +00:00
|
|
|
return array_push_slowly(cx, obj, argc, vp + 2, vp);
|
2008-09-17 00:07:59 +00:00
|
|
|
|
2008-10-08 22:08:33 +00:00
|
|
|
return array_push1_dense(cx, obj, vp[2], vp);
|
2008-09-17 00:07:59 +00:00
|
|
|
}
|
|
|
|
|
2008-10-08 22:08:33 +00:00
|
|
|
static JSBool
|
|
|
|
array_pop_slowly(JSContext *cx, JSObject* obj, jsval *vp)
|
2008-09-17 00:07:59 +00:00
|
|
|
{
|
|
|
|
jsuint index;
|
|
|
|
JSBool hole;
|
2008-02-18 21:01:47 +00:00
|
|
|
|
|
|
|
if (!js_GetLengthProperty(cx, obj, &index))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
2007-08-02 18:40:47 +00:00
|
|
|
if (index == 0) {
|
|
|
|
*vp = JSVAL_VOID;
|
|
|
|
} else {
|
2003-06-12 00:26:40 +00:00
|
|
|
index--;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
/* Get the to-be-deleted property's value into vp. */
|
|
|
|
if (!GetArrayElement(cx, obj, index, &hole, vp))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
2006-08-12 08:41:54 +00:00
|
|
|
if (!hole && !DeleteArrayElement(cx, obj, index))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
1998-04-24 00:31:11 +00:00
|
|
|
return js_SetLengthProperty(cx, obj, index);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2008-10-08 22:08:33 +00:00
|
|
|
static JSBool
|
|
|
|
array_pop_dense(JSContext *cx, JSObject* obj, jsval *vp)
|
2008-09-17 00:07:59 +00:00
|
|
|
{
|
|
|
|
jsuint index;
|
|
|
|
JSBool hole;
|
|
|
|
|
|
|
|
index = obj->fslots[JSSLOT_ARRAY_LENGTH];
|
|
|
|
if (index == 0) {
|
|
|
|
*vp = JSVAL_VOID;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
index--;
|
|
|
|
if (!GetArrayElement(cx, obj, index, &hole, vp))
|
|
|
|
return JS_FALSE;
|
|
|
|
if (!hole && !DeleteArrayElement(cx, obj, index))
|
|
|
|
return JS_FALSE;
|
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = index;
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2008-10-08 22:08:33 +00:00
|
|
|
#ifdef JS_TRACER
|
2008-10-16 19:24:10 +00:00
|
|
|
static jsval FASTCALL
|
|
|
|
Array_p_pop(JSContext* cx, JSObject* obj)
|
2008-10-08 22:08:33 +00:00
|
|
|
{
|
2009-02-11 19:33:17 +00:00
|
|
|
JSAutoTempValueRooter tvr(cx);
|
2009-02-04 00:25:12 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj)
|
2009-02-11 19:33:17 +00:00
|
|
|
? array_pop_dense(cx, obj, tvr.addr())
|
|
|
|
: array_pop_slowly(cx, obj, tvr.addr())) {
|
|
|
|
return tvr.value();
|
2008-10-08 22:08:33 +00:00
|
|
|
}
|
2009-04-09 23:07:00 +00:00
|
|
|
js_SetBuiltinError(cx);
|
2009-02-04 00:25:12 +00:00
|
|
|
return JSVAL_VOID;
|
2008-10-08 22:08:33 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static JSBool
|
|
|
|
array_pop(JSContext *cx, uintN argc, jsval *vp)
|
2008-09-17 00:07:59 +00:00
|
|
|
{
|
|
|
|
JSObject *obj;
|
|
|
|
|
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
|
|
|
if (!obj)
|
|
|
|
return JS_FALSE;
|
2009-02-08 11:30:29 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj))
|
2008-10-08 22:08:33 +00:00
|
|
|
return array_pop_dense(cx, obj, vp);
|
|
|
|
return array_pop_slowly(cx, obj, vp);
|
2008-09-17 00:07:59 +00:00
|
|
|
}
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_shift(JSContext *cx, uintN argc, jsval *vp)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
JSObject *obj;
|
1998-04-24 00:31:11 +00:00
|
|
|
jsuint length, i;
|
2009-05-11 21:57:18 +00:00
|
|
|
JSBool hole;
|
1998-04-24 00:31:11 +00:00
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
2008-02-18 00:12:33 +00:00
|
|
|
if (!obj || !js_GetLengthProperty(cx, obj, &length))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
2006-08-12 08:41:54 +00:00
|
|
|
if (length == 0) {
|
2007-08-02 04:33:52 +00:00
|
|
|
*vp = JSVAL_VOID;
|
2006-08-12 08:41:54 +00:00
|
|
|
} else {
|
2003-06-12 00:26:40 +00:00
|
|
|
length--;
|
|
|
|
|
2009-05-11 21:57:18 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj) && !js_PrototypeHasIndexedProperties(cx, obj) &&
|
|
|
|
length < js_DenseArrayCapacity(obj)) {
|
|
|
|
if (JS_LIKELY(obj->dslots != NULL)) {
|
|
|
|
*vp = obj->dslots[0];
|
|
|
|
if (*vp == JSVAL_HOLE)
|
|
|
|
*vp = JSVAL_VOID;
|
|
|
|
else
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT]--;
|
|
|
|
memmove(obj->dslots, obj->dslots + 1, length * sizeof(jsval));
|
|
|
|
obj->dslots[length] = JSVAL_HOLE;
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* We don't need to modify the indexed properties of an empty array
|
|
|
|
* with an explicitly set non-zero length when shift() is called on
|
|
|
|
* it, but note fallthrough to reduce the length by one.
|
|
|
|
*/
|
|
|
|
JS_ASSERT(obj->fslots[JSSLOT_ARRAY_COUNT] == 0);
|
|
|
|
*vp = JSVAL_VOID;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Get the to-be-deleted property's value into vp ASAP. */
|
|
|
|
if (!GetArrayElement(cx, obj, 0, &hole, vp))
|
|
|
|
return JS_FALSE;
|
2003-06-12 00:26:40 +00:00
|
|
|
|
2009-05-11 21:57:18 +00:00
|
|
|
/* Slide down the array above the first element. */
|
|
|
|
JSAutoTempValueRooter tvr(cx, JSVAL_NULL);
|
|
|
|
for (i = 0; i != length; i++) {
|
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
|
|
|
!GetArrayElement(cx, obj, i + 1, &hole, tvr.addr()) ||
|
|
|
|
!SetOrDeleteArrayElement(cx, obj, i, hole, tvr.value())) {
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
}
|
2003-06-12 00:26:40 +00:00
|
|
|
|
2009-05-11 21:57:18 +00:00
|
|
|
/* Delete the only or last element when it exists. */
|
|
|
|
if (!hole && !DeleteArrayElement(cx, obj, length))
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
1998-04-24 00:31:11 +00:00
|
|
|
return js_SetLengthProperty(cx, obj, length);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_unshift(JSContext *cx, uintN argc, jsval *vp)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
JSObject *obj;
|
2007-10-13 20:09:48 +00:00
|
|
|
jsval *argv;
|
2009-01-12 21:07:48 +00:00
|
|
|
jsuint length;
|
2009-05-11 21:57:18 +00:00
|
|
|
JSBool hole;
|
2009-01-12 21:07:48 +00:00
|
|
|
jsdouble last, newlen;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
2008-02-18 00:12:33 +00:00
|
|
|
if (!obj || !js_GetLengthProperty(cx, obj, &length))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
2009-01-12 21:07:48 +00:00
|
|
|
newlen = length;
|
1998-03-28 02:44:41 +00:00
|
|
|
if (argc > 0) {
|
2003-06-12 00:26:40 +00:00
|
|
|
/* Slide up the array to make room for argc at the bottom. */
|
2007-08-02 04:33:52 +00:00
|
|
|
argv = JS_ARGV(cx, vp);
|
2003-06-12 00:26:40 +00:00
|
|
|
if (length > 0) {
|
2009-05-11 21:57:18 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj) && !js_PrototypeHasIndexedProperties(cx, obj) &&
|
|
|
|
!INDEX_TOO_SPARSE(obj, newlen + argc)) {
|
|
|
|
JS_ASSERT(newlen + argc == length + argc);
|
|
|
|
if (!EnsureCapacity(cx, obj, length + argc))
|
|
|
|
return JS_FALSE;
|
|
|
|
memmove(obj->dslots + argc, obj->dslots, length * sizeof(jsval));
|
|
|
|
for (uint32 i = 0; i < argc; i++)
|
|
|
|
obj->dslots[i] = JSVAL_HOLE;
|
|
|
|
} else {
|
|
|
|
last = length;
|
|
|
|
jsdouble upperIndex = last + argc;
|
|
|
|
JSAutoTempValueRooter tvr(cx, JSVAL_NULL);
|
|
|
|
do {
|
|
|
|
--last, --upperIndex;
|
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
|
|
|
!GetArrayElement(cx, obj, last, &hole, tvr.addr()) ||
|
|
|
|
!SetOrDeleteArrayElement(cx, obj, upperIndex, hole, tvr.value())) {
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
} while (last != 0);
|
|
|
|
}
|
2003-06-12 00:26:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy from argv to the bottom of the array. */
|
2009-05-11 21:57:18 +00:00
|
|
|
if (!InitArrayElements(cx, obj, 0, argc, argv, TargetElementsAllHoles, SourceVectorAllValues))
|
2006-08-12 08:41:54 +00:00
|
|
|
return JS_FALSE;
|
2003-06-12 00:26:40 +00:00
|
|
|
|
2009-01-12 21:07:48 +00:00
|
|
|
newlen += argc;
|
|
|
|
if (!js_SetLengthProperty(cx, obj, newlen))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
2006-08-12 08:41:54 +00:00
|
|
|
|
|
|
|
/* Follow Perl by returning the new array length. */
|
2009-01-12 21:07:48 +00:00
|
|
|
return IndexToValue(cx, newlen, vp);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_splice(JSContext *cx, uintN argc, jsval *vp)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2007-10-13 20:09:48 +00:00
|
|
|
jsval *argv;
|
2007-08-02 04:33:52 +00:00
|
|
|
JSObject *obj;
|
1998-04-24 00:31:11 +00:00
|
|
|
jsuint length, begin, end, count, delta, last;
|
1998-03-28 02:44:41 +00:00
|
|
|
jsdouble d;
|
2009-05-11 21:57:18 +00:00
|
|
|
JSBool hole;
|
1998-03-28 02:44:41 +00:00
|
|
|
JSObject *obj2;
|
|
|
|
|
2008-08-26 00:12:30 +00:00
|
|
|
/*
|
|
|
|
* Create a new array value to return. Our ECMA v2 proposal specs
|
|
|
|
* that splice always returns an array value, even when given no
|
|
|
|
* arguments. We think this is best because it eliminates the need
|
|
|
|
* for callers to do an extra test to handle the empty splice case.
|
|
|
|
*/
|
|
|
|
obj2 = js_NewArrayObject(cx, 0, NULL);
|
|
|
|
if (!obj2)
|
|
|
|
return JS_FALSE;
|
|
|
|
*vp = OBJECT_TO_JSVAL(obj2);
|
|
|
|
|
2007-10-13 20:09:48 +00:00
|
|
|
/* Nothing to do if no args. Otherwise get length. */
|
1998-03-28 02:44:41 +00:00
|
|
|
if (argc == 0)
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_TRUE;
|
2007-08-02 04:33:52 +00:00
|
|
|
argv = JS_ARGV(cx, vp);
|
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
2008-02-18 00:12:33 +00:00
|
|
|
if (!obj || !js_GetLengthProperty(cx, obj, &length))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
/* Convert the first argument into a starting index. */
|
2008-03-06 23:24:08 +00:00
|
|
|
d = js_ValueToNumber(cx, argv);
|
|
|
|
if (JSVAL_IS_NULL(*argv))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
1998-04-24 00:31:11 +00:00
|
|
|
d = js_DoubleToInteger(d);
|
|
|
|
if (d < 0) {
|
2003-06-12 00:26:40 +00:00
|
|
|
d += length;
|
|
|
|
if (d < 0)
|
|
|
|
d = 0;
|
1998-04-24 00:31:11 +00:00
|
|
|
} else if (d > length) {
|
2003-06-12 00:26:40 +00:00
|
|
|
d = length;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
1998-04-24 00:31:11 +00:00
|
|
|
begin = (jsuint)d; /* d has been clamped to uint32 */
|
1998-03-28 02:44:41 +00:00
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
|
|
|
|
/* Convert the second argument from a count into a fencepost index. */
|
|
|
|
delta = length - begin;
|
|
|
|
if (argc == 0) {
|
2003-06-12 00:26:40 +00:00
|
|
|
count = delta;
|
|
|
|
end = length;
|
1998-03-28 02:44:41 +00:00
|
|
|
} else {
|
2008-03-06 23:24:08 +00:00
|
|
|
d = js_ValueToNumber(cx, argv);
|
|
|
|
if (JSVAL_IS_NULL(*argv))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
d = js_DoubleToInteger(d);
|
|
|
|
if (d < 0)
|
|
|
|
d = 0;
|
|
|
|
else if (d > delta)
|
|
|
|
d = delta;
|
|
|
|
count = (jsuint)d;
|
|
|
|
end = begin + count;
|
|
|
|
argc--;
|
|
|
|
argv++;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2009-05-11 21:57:18 +00:00
|
|
|
JSAutoTempValueRooter tvr(cx, JSVAL_NULL);
|
2007-10-13 20:09:48 +00:00
|
|
|
|
2006-04-28 00:20:44 +00:00
|
|
|
/* If there are elements to remove, put them into the return value. */
|
|
|
|
if (count > 0) {
|
2009-05-11 21:57:18 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj) && !js_PrototypeHasIndexedProperties(cx, obj) &&
|
|
|
|
!js_PrototypeHasIndexedProperties(cx, obj2) &&
|
|
|
|
end <= js_DenseArrayCapacity(obj)) {
|
|
|
|
if (!InitArrayObject(cx, obj2, count, obj->dslots + begin,
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT] !=
|
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH])) {
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (last = begin; last < end; last++) {
|
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
|
|
|
!GetArrayElement(cx, obj, last, &hole, tvr.addr())) {
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
2006-07-01 19:29:34 +00:00
|
|
|
|
2009-05-11 21:57:18 +00:00
|
|
|
/* Copy tvr.value() to the new array unless it's a hole. */
|
|
|
|
if (!hole && !SetArrayElement(cx, obj2, last - begin, tvr.value()))
|
|
|
|
return JS_FALSE;
|
2007-10-13 20:09:48 +00:00
|
|
|
}
|
2006-04-28 00:20:44 +00:00
|
|
|
|
2009-05-11 21:57:18 +00:00
|
|
|
if (!js_SetLengthProperty(cx, obj2, count))
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the direction (up or down) to copy and make way for argv. */
|
1998-04-24 00:31:11 +00:00
|
|
|
if (argc > count) {
|
2003-06-12 00:26:40 +00:00
|
|
|
delta = (jsuint)argc - count;
|
|
|
|
last = length;
|
2009-05-11 21:57:18 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj) && !js_PrototypeHasIndexedProperties(cx, obj) &&
|
2009-05-11 22:41:00 +00:00
|
|
|
length <= js_DenseArrayCapacity(obj) &&
|
|
|
|
(length == 0 || obj->dslots[length - 1] != JSVAL_HOLE)) {
|
2009-05-11 21:57:18 +00:00
|
|
|
if (!EnsureCapacity(cx, obj, length + delta))
|
|
|
|
return JS_FALSE;
|
|
|
|
/* (uint) end could be 0, so we can't use a vanilla >= test. */
|
|
|
|
while (last-- > end) {
|
|
|
|
jsval srcval = obj->dslots[last];
|
|
|
|
jsval* dest = &obj->dslots[last + delta];
|
|
|
|
if (*dest == JSVAL_HOLE && srcval != JSVAL_HOLE)
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT]++;
|
|
|
|
*dest = srcval;
|
|
|
|
}
|
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] += delta;
|
|
|
|
} else {
|
|
|
|
/* (uint) end could be 0, so we can't use a vanilla >= test. */
|
|
|
|
while (last-- > end) {
|
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
|
|
|
!GetArrayElement(cx, obj, last, &hole, tvr.addr()) ||
|
|
|
|
!SetOrDeleteArrayElement(cx, obj, last + delta, hole, tvr.value())) {
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
}
|
2003-06-12 00:26:40 +00:00
|
|
|
}
|
|
|
|
length += delta;
|
1998-04-24 00:31:11 +00:00
|
|
|
} else if (argc < count) {
|
2003-06-12 00:26:40 +00:00
|
|
|
delta = count - (jsuint)argc;
|
2009-05-11 21:57:18 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj) && !js_PrototypeHasIndexedProperties(cx, obj) &&
|
|
|
|
length <= js_DenseArrayCapacity(obj)) {
|
|
|
|
/* (uint) end could be 0, so we can't use a vanilla >= test. */
|
|
|
|
for (last = end; last < length; last++) {
|
|
|
|
jsval srcval = obj->dslots[last];
|
|
|
|
jsval* dest = &obj->dslots[last - delta];
|
|
|
|
if (*dest == JSVAL_HOLE && srcval != JSVAL_HOLE)
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT]++;
|
|
|
|
*dest = srcval;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (last = end; last < length; last++) {
|
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
|
|
|
!GetArrayElement(cx, obj, last, &hole, tvr.addr()) ||
|
|
|
|
!SetOrDeleteArrayElement(cx, obj, last - delta, hole, tvr.value())) {
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
}
|
2003-06-12 00:26:40 +00:00
|
|
|
}
|
|
|
|
length -= delta;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2009-05-11 21:57:18 +00:00
|
|
|
/*
|
|
|
|
* Copy from argv into the hole to complete the splice, and update length in
|
|
|
|
* case we deleted elements from the end.
|
|
|
|
*/
|
|
|
|
return InitArrayElements(cx, obj, begin, argc, argv, TargetElementsMayContainValues,
|
|
|
|
SourceVectorAllValues) &&
|
|
|
|
js_SetLengthProperty(cx, obj, length);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Python-esque sequence operations.
|
|
|
|
*/
|
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_concat(JSContext *cx, uintN argc, jsval *vp)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2007-10-13 20:09:48 +00:00
|
|
|
jsval *argv, v;
|
2008-06-06 20:23:19 +00:00
|
|
|
JSObject *aobj, *nobj;
|
2002-09-20 18:45:05 +00:00
|
|
|
jsuint length, alength, slot;
|
1998-03-28 02:44:41 +00:00
|
|
|
uintN i;
|
2007-10-13 20:09:48 +00:00
|
|
|
JSBool hole, ok;
|
|
|
|
JSTempValueRooter tvr;
|
2005-11-01 01:13:36 +00:00
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
/* Treat our |this| object as the first argument; see ECMA 15.4.4.4. */
|
2007-10-13 20:09:48 +00:00
|
|
|
argv = JS_ARGV(cx, vp) - 1;
|
2007-08-02 04:33:52 +00:00
|
|
|
JS_ASSERT(JS_THIS_OBJECT(cx, vp) == JSVAL_TO_OBJECT(argv[0]));
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
/* Create a new Array object and root it using *vp. */
|
2008-02-18 21:01:47 +00:00
|
|
|
aobj = JS_THIS_OBJECT(cx, vp);
|
2008-02-19 07:04:00 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, aobj)) {
|
2008-06-06 20:23:19 +00:00
|
|
|
/*
|
2009-02-23 23:31:02 +00:00
|
|
|
* Clone aobj but pass the minimum of its length and capacity, to
|
|
|
|
* handle a = [1,2,3]; a.length = 10000 "dense" cases efficiently. In
|
|
|
|
* such a case we'll pass 8 (not 3) due to ARRAY_CAPACITY_MIN, which
|
|
|
|
* will cause nobj to be over-allocated to 16. But in the normal case
|
|
|
|
* where length is <= capacity, nobj and aobj will have the same
|
|
|
|
* capacity.
|
2008-06-06 20:23:19 +00:00
|
|
|
*/
|
|
|
|
length = aobj->fslots[JSSLOT_ARRAY_LENGTH];
|
2009-02-21 21:33:50 +00:00
|
|
|
jsuint capacity = js_DenseArrayCapacity(aobj);
|
2008-06-06 20:23:19 +00:00
|
|
|
nobj = js_NewArrayObject(cx, JS_MIN(length, capacity), aobj->dslots,
|
|
|
|
aobj->fslots[JSSLOT_ARRAY_COUNT] !=
|
|
|
|
(jsval) length);
|
2008-02-18 21:01:47 +00:00
|
|
|
if (!nobj)
|
|
|
|
return JS_FALSE;
|
2008-02-26 00:59:36 +00:00
|
|
|
nobj->fslots[JSSLOT_ARRAY_LENGTH] = length;
|
2008-02-18 21:01:47 +00:00
|
|
|
*vp = OBJECT_TO_JSVAL(nobj);
|
|
|
|
if (argc == 0)
|
|
|
|
return JS_TRUE;
|
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
} else {
|
|
|
|
nobj = js_NewArrayObject(cx, 0, NULL);
|
|
|
|
if (!nobj)
|
|
|
|
return JS_FALSE;
|
|
|
|
*vp = OBJECT_TO_JSVAL(nobj);
|
|
|
|
length = 0;
|
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2008-09-08 17:51:10 +00:00
|
|
|
MUST_FLOW_THROUGH("out");
|
2007-10-13 20:09:48 +00:00
|
|
|
JS_PUSH_SINGLE_TEMP_ROOT(cx, JSVAL_NULL, &tvr);
|
|
|
|
|
2002-09-20 18:45:05 +00:00
|
|
|
/* Loop over [0, argc] to concat args into nobj, expanding all Arrays. */
|
|
|
|
for (i = 0; i <= argc; i++) {
|
2009-02-10 22:07:01 +00:00
|
|
|
ok = JS_CHECK_OPERATION_LIMIT(cx);
|
2007-10-13 20:09:48 +00:00
|
|
|
if (!ok)
|
|
|
|
goto out;
|
2003-06-12 00:26:40 +00:00
|
|
|
v = argv[i];
|
2008-03-25 23:29:18 +00:00
|
|
|
if (!JSVAL_IS_PRIMITIVE(v)) {
|
2008-03-06 20:05:18 +00:00
|
|
|
JSObject *wobj;
|
|
|
|
|
2003-06-12 00:26:40 +00:00
|
|
|
aobj = JSVAL_TO_OBJECT(v);
|
2008-03-06 20:05:18 +00:00
|
|
|
wobj = js_GetWrappedObject(cx, aobj);
|
2008-03-25 23:29:18 +00:00
|
|
|
if (OBJ_IS_ARRAY(cx, wobj)) {
|
2009-08-11 20:05:44 +00:00
|
|
|
ok = aobj->getProperty(cx, ATOM_TO_JSID(cx->runtime->atomState.lengthAtom),
|
|
|
|
&tvr.u.value);
|
2007-10-13 20:09:48 +00:00
|
|
|
if (!ok)
|
|
|
|
goto out;
|
2008-03-06 23:24:08 +00:00
|
|
|
alength = ValueIsLength(cx, &tvr.u.value);
|
|
|
|
ok = !JSVAL_IS_NULL(tvr.u.value);
|
2007-10-13 20:09:48 +00:00
|
|
|
if (!ok)
|
|
|
|
goto out;
|
2003-06-12 00:26:40 +00:00
|
|
|
for (slot = 0; slot < alength; slot++) {
|
2009-02-10 22:07:01 +00:00
|
|
|
ok = JS_CHECK_OPERATION_LIMIT(cx) &&
|
2007-10-13 20:09:48 +00:00
|
|
|
GetArrayElement(cx, aobj, slot, &hole,
|
|
|
|
&tvr.u.value);
|
|
|
|
if (!ok)
|
|
|
|
goto out;
|
2006-07-01 19:29:34 +00:00
|
|
|
|
2006-08-12 08:41:54 +00:00
|
|
|
/*
|
|
|
|
* Per ECMA 262, 15.4.4.4, step 9, ignore non-existent
|
|
|
|
* properties.
|
|
|
|
*/
|
2007-10-13 20:09:48 +00:00
|
|
|
if (!hole) {
|
|
|
|
ok = SetArrayElement(cx, nobj, length + slot,
|
|
|
|
tvr.u.value);
|
|
|
|
if (!ok)
|
|
|
|
goto out;
|
2007-08-02 04:33:52 +00:00
|
|
|
}
|
2003-06-12 00:26:40 +00:00
|
|
|
}
|
|
|
|
length += alength;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-13 20:09:48 +00:00
|
|
|
ok = SetArrayElement(cx, nobj, length, v);
|
|
|
|
if (!ok)
|
|
|
|
goto out;
|
2003-06-12 00:26:40 +00:00
|
|
|
length++;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2007-10-13 20:09:48 +00:00
|
|
|
ok = js_SetLengthProperty(cx, nobj, length);
|
|
|
|
|
|
|
|
out:
|
|
|
|
JS_POP_TEMP_ROOT(cx, &tvr);
|
|
|
|
return ok;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_slice(JSContext *cx, uintN argc, jsval *vp)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2007-10-13 20:09:48 +00:00
|
|
|
jsval *argv;
|
2007-08-02 04:33:52 +00:00
|
|
|
JSObject *nobj, *obj;
|
1998-04-24 00:31:11 +00:00
|
|
|
jsuint length, begin, end, slot;
|
1998-03-28 02:44:41 +00:00
|
|
|
jsdouble d;
|
2009-05-11 21:57:18 +00:00
|
|
|
JSBool hole;
|
2005-11-01 01:13:36 +00:00
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
argv = JS_ARGV(cx, vp);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
2008-02-18 00:12:33 +00:00
|
|
|
if (!obj || !js_GetLengthProperty(cx, obj, &length))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
1998-03-28 02:44:41 +00:00
|
|
|
begin = 0;
|
|
|
|
end = length;
|
|
|
|
|
|
|
|
if (argc > 0) {
|
2008-03-06 23:24:08 +00:00
|
|
|
d = js_ValueToNumber(cx, &argv[0]);
|
|
|
|
if (JSVAL_IS_NULL(argv[0]))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
d = js_DoubleToInteger(d);
|
|
|
|
if (d < 0) {
|
|
|
|
d += length;
|
|
|
|
if (d < 0)
|
|
|
|
d = 0;
|
|
|
|
} else if (d > length) {
|
|
|
|
d = length;
|
|
|
|
}
|
|
|
|
begin = (jsuint)d;
|
|
|
|
|
|
|
|
if (argc > 1) {
|
2008-03-06 23:24:08 +00:00
|
|
|
d = js_ValueToNumber(cx, &argv[1]);
|
|
|
|
if (JSVAL_IS_NULL(argv[1]))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
d = js_DoubleToInteger(d);
|
|
|
|
if (d < 0) {
|
|
|
|
d += length;
|
|
|
|
if (d < 0)
|
|
|
|
d = 0;
|
|
|
|
} else if (d > length) {
|
|
|
|
d = length;
|
|
|
|
}
|
|
|
|
end = (jsuint)d;
|
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2005-07-18 18:44:22 +00:00
|
|
|
if (begin > end)
|
|
|
|
begin = end;
|
|
|
|
|
2009-05-11 21:57:18 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, obj) && end <= js_DenseArrayCapacity(obj) &&
|
|
|
|
!js_PrototypeHasIndexedProperties(cx, obj)) {
|
2008-06-05 23:00:25 +00:00
|
|
|
nobj = js_NewArrayObject(cx, end - begin, obj->dslots + begin,
|
2008-06-06 20:23:19 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT] !=
|
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH]);
|
2008-02-18 21:01:47 +00:00
|
|
|
if (!nobj)
|
|
|
|
return JS_FALSE;
|
|
|
|
*vp = OBJECT_TO_JSVAL(nobj);
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a new Array object and root it using *vp. */
|
|
|
|
nobj = js_NewArrayObject(cx, 0, NULL);
|
|
|
|
if (!nobj)
|
|
|
|
return JS_FALSE;
|
|
|
|
*vp = OBJECT_TO_JSVAL(nobj);
|
|
|
|
|
2009-05-11 21:57:18 +00:00
|
|
|
JSAutoTempValueRooter tvr(cx, JSVAL_NULL);
|
1998-03-28 02:44:41 +00:00
|
|
|
for (slot = begin; slot < end; slot++) {
|
2009-05-11 21:57:18 +00:00
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
|
|
|
!GetArrayElement(cx, obj, slot, &hole, tvr.addr())) {
|
|
|
|
return JS_FALSE;
|
2006-12-24 11:31:37 +00:00
|
|
|
}
|
2009-05-11 21:57:18 +00:00
|
|
|
if (!hole && !SetArrayElement(cx, nobj, slot - begin, tvr.value()))
|
|
|
|
return JS_FALSE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
2007-10-13 20:09:48 +00:00
|
|
|
|
2009-05-11 21:57:18 +00:00
|
|
|
return js_SetLengthProperty(cx, nobj, end - begin);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2005-04-17 18:31:59 +00:00
|
|
|
#if JS_HAS_ARRAY_EXTRAS
|
2005-10-02 06:27:07 +00:00
|
|
|
|
2005-04-17 18:31:59 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_indexOfHelper(JSContext *cx, JSBool isLast, uintN argc, jsval *vp)
|
2005-04-17 18:31:59 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
JSObject *obj;
|
2005-10-02 06:27:07 +00:00
|
|
|
jsuint length, i, stop;
|
2008-08-08 16:02:50 +00:00
|
|
|
jsval tosearch;
|
2005-10-02 06:27:07 +00:00
|
|
|
jsint direction;
|
2006-08-12 08:41:54 +00:00
|
|
|
JSBool hole;
|
2005-05-04 02:43:13 +00:00
|
|
|
|
2008-02-18 00:12:33 +00:00
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
|
|
|
if (!obj || !js_GetLengthProperty(cx, obj, &length))
|
2005-04-17 18:31:59 +00:00
|
|
|
return JS_FALSE;
|
2005-10-02 06:27:07 +00:00
|
|
|
if (length == 0)
|
|
|
|
goto not_found;
|
|
|
|
|
|
|
|
if (argc <= 1) {
|
|
|
|
i = isLast ? length - 1 : 0;
|
2008-08-08 16:02:50 +00:00
|
|
|
tosearch = (argc != 0) ? vp[2] : JSVAL_VOID;
|
2005-10-02 06:27:07 +00:00
|
|
|
} else {
|
|
|
|
jsdouble start;
|
|
|
|
|
2008-08-08 16:02:50 +00:00
|
|
|
tosearch = vp[2];
|
2008-03-06 23:24:08 +00:00
|
|
|
start = js_ValueToNumber(cx, &vp[3]);
|
|
|
|
if (JSVAL_IS_NULL(vp[3]))
|
2005-05-04 02:43:13 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
start = js_DoubleToInteger(start);
|
|
|
|
if (start < 0) {
|
|
|
|
start += length;
|
2006-12-18 06:43:02 +00:00
|
|
|
if (start < 0) {
|
|
|
|
if (isLast)
|
|
|
|
goto not_found;
|
|
|
|
i = 0;
|
|
|
|
} else {
|
|
|
|
i = (jsuint)start;
|
|
|
|
}
|
2005-10-02 06:27:07 +00:00
|
|
|
} else if (start >= length) {
|
2006-12-18 06:43:02 +00:00
|
|
|
if (!isLast)
|
|
|
|
goto not_found;
|
2005-10-02 06:27:07 +00:00
|
|
|
i = length - 1;
|
|
|
|
} else {
|
|
|
|
i = (jsuint)start;
|
2005-05-04 02:43:13 +00:00
|
|
|
}
|
|
|
|
}
|
2005-10-02 06:27:07 +00:00
|
|
|
|
|
|
|
if (isLast) {
|
|
|
|
stop = 0;
|
|
|
|
direction = -1;
|
|
|
|
} else {
|
|
|
|
stop = length - 1;
|
|
|
|
direction = 1;
|
|
|
|
}
|
|
|
|
|
2005-10-09 06:09:21 +00:00
|
|
|
for (;;) {
|
2009-02-10 22:07:01 +00:00
|
|
|
if (!JS_CHECK_OPERATION_LIMIT(cx) ||
|
2007-08-02 04:33:52 +00:00
|
|
|
!GetArrayElement(cx, obj, (jsuint)i, &hole, vp)) {
|
2005-04-17 18:31:59 +00:00
|
|
|
return JS_FALSE;
|
2006-12-24 11:31:37 +00:00
|
|
|
}
|
2008-08-08 16:02:50 +00:00
|
|
|
if (!hole && js_StrictlyEqual(cx, *vp, tosearch))
|
2008-03-10 19:27:44 +00:00
|
|
|
return js_NewNumberInRootedValue(cx, i, vp);
|
2005-10-02 06:27:07 +00:00
|
|
|
if (i == stop)
|
|
|
|
goto not_found;
|
2005-10-09 06:09:21 +00:00
|
|
|
i += direction;
|
2005-04-17 18:31:59 +00:00
|
|
|
}
|
|
|
|
|
2005-10-02 06:27:07 +00:00
|
|
|
not_found:
|
2007-08-02 04:33:52 +00:00
|
|
|
*vp = INT_TO_JSVAL(-1);
|
2005-05-04 02:43:13 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2005-10-02 06:27:07 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_indexOf(JSContext *cx, uintN argc, jsval *vp)
|
2005-10-02 06:27:07 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
return array_indexOfHelper(cx, JS_FALSE, argc, vp);
|
2005-10-02 06:27:07 +00:00
|
|
|
}
|
|
|
|
|
2005-05-04 02:43:13 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_lastIndexOf(JSContext *cx, uintN argc, jsval *vp)
|
2005-05-04 02:43:13 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
return array_indexOfHelper(cx, JS_TRUE, argc, vp);
|
2005-04-17 18:31:59 +00:00
|
|
|
}
|
|
|
|
|
2007-01-10 01:47:58 +00:00
|
|
|
/* Order is important; extras that take a predicate funarg must follow MAP. */
|
2005-04-17 18:31:59 +00:00
|
|
|
typedef enum ArrayExtraMode {
|
|
|
|
FOREACH,
|
2007-01-10 01:47:58 +00:00
|
|
|
REDUCE,
|
|
|
|
REDUCE_RIGHT,
|
2005-04-17 18:31:59 +00:00
|
|
|
MAP,
|
|
|
|
FILTER,
|
|
|
|
SOME,
|
|
|
|
EVERY
|
|
|
|
} ArrayExtraMode;
|
|
|
|
|
2007-01-10 01:47:58 +00:00
|
|
|
#define REDUCE_MODE(mode) ((mode) == REDUCE || (mode) == REDUCE_RIGHT)
|
|
|
|
|
2009-06-25 19:12:19 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_extra(JSContext *cx, ArrayExtraMode mode, uintN argc, jsval *vp)
|
2005-04-17 18:31:59 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
JSObject *obj;
|
2007-09-17 19:28:14 +00:00
|
|
|
jsuint length, newlen;
|
2007-09-18 07:34:54 +00:00
|
|
|
jsval *argv, *elemroot, *invokevp, *sp;
|
|
|
|
JSBool ok, cond, hole;
|
2005-10-25 08:00:30 +00:00
|
|
|
JSObject *callable, *thisp, *newarr;
|
2007-01-10 01:47:58 +00:00
|
|
|
jsint start, end, step, i;
|
2005-04-17 18:31:59 +00:00
|
|
|
void *mark;
|
2005-11-01 01:13:36 +00:00
|
|
|
|
2008-02-18 00:12:33 +00:00
|
|
|
obj = JS_THIS_OBJECT(cx, vp);
|
|
|
|
if (!obj || !js_GetLengthProperty(cx, obj, &length))
|
2005-04-17 18:31:59 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
|
2005-05-04 02:43:13 +00:00
|
|
|
/*
|
2005-10-25 08:00:30 +00:00
|
|
|
* First, get or compute our callee, so that we error out consistently
|
|
|
|
* when passed a non-callable object.
|
2005-05-04 02:43:13 +00:00
|
|
|
*/
|
2008-08-08 16:02:50 +00:00
|
|
|
if (argc == 0) {
|
|
|
|
js_ReportMissingArg(cx, vp, 0);
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
2007-09-18 07:34:54 +00:00
|
|
|
argv = vp + 2;
|
2006-09-18 11:04:30 +00:00
|
|
|
callable = js_ValueToCallableObject(cx, &argv[0], JSV2F_SEARCH_STACK);
|
2005-10-25 08:00:30 +00:00
|
|
|
if (!callable)
|
|
|
|
return JS_FALSE;
|
2005-04-17 18:31:59 +00:00
|
|
|
|
2005-05-04 02:43:13 +00:00
|
|
|
/*
|
|
|
|
* Set our initial return condition, used for zero-length array cases
|
|
|
|
* (and pre-size our map return to match our known length, for all cases).
|
|
|
|
*/
|
2005-11-01 01:13:36 +00:00
|
|
|
#ifdef __GNUC__ /* quell GCC overwarning */
|
|
|
|
newlen = 0;
|
|
|
|
newarr = NULL;
|
|
|
|
#endif
|
2007-01-10 01:47:58 +00:00
|
|
|
start = 0, end = length, step = 1;
|
2007-08-02 04:33:52 +00:00
|
|
|
|
2005-05-04 02:43:13 +00:00
|
|
|
switch (mode) {
|
2007-01-10 01:47:58 +00:00
|
|
|
case REDUCE_RIGHT:
|
|
|
|
start = length - 1, end = -1, step = -1;
|
|
|
|
/* FALL THROUGH */
|
|
|
|
case REDUCE:
|
|
|
|
if (length == 0 && argc == 1) {
|
|
|
|
JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL,
|
|
|
|
JSMSG_EMPTY_ARRAY_REDUCE);
|
2007-09-18 07:34:54 +00:00
|
|
|
return JS_FALSE;
|
2007-01-10 01:47:58 +00:00
|
|
|
}
|
|
|
|
if (argc >= 2) {
|
2007-09-18 07:34:54 +00:00
|
|
|
*vp = argv[1];
|
2007-01-10 01:47:58 +00:00
|
|
|
} else {
|
2007-06-28 00:04:49 +00:00
|
|
|
do {
|
2007-09-18 07:34:54 +00:00
|
|
|
if (!GetArrayElement(cx, obj, start, &hole, vp))
|
|
|
|
return JS_FALSE;
|
2007-06-28 00:04:49 +00:00
|
|
|
start += step;
|
|
|
|
} while (hole && start != end);
|
|
|
|
|
|
|
|
if (hole && start == end) {
|
|
|
|
JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL,
|
|
|
|
JSMSG_EMPTY_ARRAY_REDUCE);
|
2007-09-18 07:34:54 +00:00
|
|
|
return JS_FALSE;
|
2007-06-28 00:04:49 +00:00
|
|
|
}
|
2007-01-10 01:47:58 +00:00
|
|
|
}
|
|
|
|
break;
|
2005-05-04 02:43:13 +00:00
|
|
|
case MAP:
|
|
|
|
case FILTER:
|
|
|
|
newlen = (mode == MAP) ? length : 0;
|
|
|
|
newarr = js_NewArrayObject(cx, newlen, NULL);
|
2007-09-18 07:34:54 +00:00
|
|
|
if (!newarr)
|
|
|
|
return JS_FALSE;
|
|
|
|
*vp = OBJECT_TO_JSVAL(newarr);
|
2005-05-04 02:43:13 +00:00
|
|
|
break;
|
|
|
|
case SOME:
|
2007-09-18 07:34:54 +00:00
|
|
|
*vp = JSVAL_FALSE;
|
2005-05-04 02:43:13 +00:00
|
|
|
break;
|
2005-08-19 01:48:48 +00:00
|
|
|
case EVERY:
|
2007-09-18 07:34:54 +00:00
|
|
|
*vp = JSVAL_TRUE;
|
2005-08-19 01:48:48 +00:00
|
|
|
break;
|
2005-05-04 02:43:13 +00:00
|
|
|
case FOREACH:
|
2007-09-18 07:34:54 +00:00
|
|
|
*vp = JSVAL_VOID;
|
2005-05-04 02:43:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (length == 0)
|
2007-09-18 07:34:54 +00:00
|
|
|
return JS_TRUE;
|
2005-10-02 06:27:07 +00:00
|
|
|
|
2007-01-10 01:47:58 +00:00
|
|
|
if (argc > 1 && !REDUCE_MODE(mode)) {
|
2007-09-18 07:34:54 +00:00
|
|
|
if (!js_ValueToObject(cx, argv[1], &thisp))
|
|
|
|
return JS_FALSE;
|
2005-04-17 18:31:59 +00:00
|
|
|
argv[1] = OBJECT_TO_JSVAL(thisp);
|
|
|
|
} else {
|
2006-05-04 06:46:27 +00:00
|
|
|
thisp = NULL;
|
2005-04-17 18:31:59 +00:00
|
|
|
}
|
|
|
|
|
2007-01-10 01:47:58 +00:00
|
|
|
/*
|
2007-09-18 07:34:54 +00:00
|
|
|
* For all but REDUCE, we call with 3 args (value, index, array). REDUCE
|
|
|
|
* requires 4 args (accum, value, index, array).
|
2007-01-10 01:47:58 +00:00
|
|
|
*/
|
2009-06-25 19:12:19 +00:00
|
|
|
js_LeaveTrace(cx);
|
2007-01-10 01:47:58 +00:00
|
|
|
argc = 3 + REDUCE_MODE(mode);
|
2007-09-18 07:34:54 +00:00
|
|
|
elemroot = js_AllocStack(cx, 1 + 2 + argc, &mark);
|
|
|
|
if (!elemroot)
|
|
|
|
return JS_FALSE;
|
2005-04-17 18:31:59 +00:00
|
|
|
|
2008-09-08 17:51:10 +00:00
|
|
|
MUST_FLOW_THROUGH("out");
|
2007-09-18 07:34:54 +00:00
|
|
|
ok = JS_TRUE;
|
|
|
|
invokevp = elemroot + 1;
|
2005-04-17 18:31:59 +00:00
|
|
|
|
2007-01-10 01:47:58 +00:00
|
|
|
for (i = start; i != end; i += step) {
|
2009-02-10 22:07:01 +00:00
|
|
|
ok = JS_CHECK_OPERATION_LIMIT(cx) &&
|
2007-09-18 07:34:54 +00:00
|
|
|
GetArrayElement(cx, obj, i, &hole, elemroot);
|
2005-04-17 18:31:59 +00:00
|
|
|
if (!ok)
|
2007-09-18 07:34:54 +00:00
|
|
|
goto out;
|
2006-08-12 08:41:54 +00:00
|
|
|
if (hole)
|
2005-10-02 06:27:07 +00:00
|
|
|
continue;
|
2005-04-17 18:31:59 +00:00
|
|
|
|
2006-05-04 06:46:27 +00:00
|
|
|
/*
|
|
|
|
* Push callable and 'this', then args. We must do this for every
|
2007-09-18 07:34:54 +00:00
|
|
|
* iteration around the loop since js_Invoke uses spbase[0] for return
|
|
|
|
* value storage, while some native functions use spbase[1] for local
|
2007-08-02 04:33:52 +00:00
|
|
|
* rooting.
|
2006-05-04 06:46:27 +00:00
|
|
|
*/
|
2007-09-18 07:34:54 +00:00
|
|
|
sp = invokevp;
|
2005-10-25 08:00:30 +00:00
|
|
|
*sp++ = OBJECT_TO_JSVAL(callable);
|
2005-04-17 18:31:59 +00:00
|
|
|
*sp++ = OBJECT_TO_JSVAL(thisp);
|
2007-01-10 01:47:58 +00:00
|
|
|
if (REDUCE_MODE(mode))
|
2007-09-18 07:34:54 +00:00
|
|
|
*sp++ = *vp;
|
|
|
|
*sp++ = *elemroot;
|
2005-04-17 18:31:59 +00:00
|
|
|
*sp++ = INT_TO_JSVAL(i);
|
2005-05-04 02:43:13 +00:00
|
|
|
*sp++ = OBJECT_TO_JSVAL(obj);
|
2005-04-17 18:31:59 +00:00
|
|
|
|
|
|
|
/* Do the call. */
|
2008-04-28 06:50:37 +00:00
|
|
|
ok = js_Invoke(cx, argc, invokevp, 0);
|
2005-04-17 18:31:59 +00:00
|
|
|
if (!ok)
|
|
|
|
break;
|
|
|
|
|
2008-01-20 00:56:08 +00:00
|
|
|
if (mode > MAP)
|
|
|
|
cond = js_ValueToBoolean(*invokevp);
|
|
|
|
#ifdef __GNUC__ /* quell GCC overwarning */
|
|
|
|
else
|
|
|
|
cond = JS_FALSE;
|
|
|
|
#endif
|
2005-04-17 18:31:59 +00:00
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case FOREACH:
|
|
|
|
break;
|
2007-01-10 01:47:58 +00:00
|
|
|
case REDUCE:
|
|
|
|
case REDUCE_RIGHT:
|
2007-09-18 07:34:54 +00:00
|
|
|
*vp = *invokevp;
|
2007-01-10 01:47:58 +00:00
|
|
|
break;
|
2005-04-17 18:31:59 +00:00
|
|
|
case MAP:
|
2007-09-18 07:34:54 +00:00
|
|
|
ok = SetArrayElement(cx, newarr, i, *invokevp);
|
2005-04-17 18:31:59 +00:00
|
|
|
if (!ok)
|
|
|
|
goto out;
|
|
|
|
break;
|
|
|
|
case FILTER:
|
2006-04-27 00:39:43 +00:00
|
|
|
if (!cond)
|
2005-04-17 18:31:59 +00:00
|
|
|
break;
|
2007-09-18 07:34:54 +00:00
|
|
|
/* The filter passed *elemroot, so push it onto our result. */
|
|
|
|
ok = SetArrayElement(cx, newarr, newlen++, *elemroot);
|
2005-04-17 18:31:59 +00:00
|
|
|
if (!ok)
|
|
|
|
goto out;
|
|
|
|
break;
|
|
|
|
case SOME:
|
2006-04-27 00:39:43 +00:00
|
|
|
if (cond) {
|
2007-09-18 07:34:54 +00:00
|
|
|
*vp = JSVAL_TRUE;
|
2005-04-17 18:31:59 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case EVERY:
|
2006-04-27 00:39:43 +00:00
|
|
|
if (!cond) {
|
2007-09-18 07:34:54 +00:00
|
|
|
*vp = JSVAL_FALSE;
|
2005-04-17 18:31:59 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
out:
|
2005-04-17 18:31:59 +00:00
|
|
|
js_FreeStack(cx, mark);
|
|
|
|
if (ok && mode == FILTER)
|
|
|
|
ok = js_SetLengthProperty(cx, newarr, newlen);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2009-06-25 19:12:19 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_forEach(JSContext *cx, uintN argc, jsval *vp)
|
2005-04-17 18:31:59 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
return array_extra(cx, FOREACH, argc, vp);
|
2005-04-17 18:31:59 +00:00
|
|
|
}
|
|
|
|
|
2009-06-25 19:12:19 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_map(JSContext *cx, uintN argc, jsval *vp)
|
2005-04-17 18:31:59 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
return array_extra(cx, MAP, argc, vp);
|
2005-04-17 18:31:59 +00:00
|
|
|
}
|
|
|
|
|
2009-06-25 19:12:19 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_reduce(JSContext *cx, uintN argc, jsval *vp)
|
2007-01-10 01:47:58 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
return array_extra(cx, REDUCE, argc, vp);
|
2007-01-10 01:47:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-25 19:12:19 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_reduceRight(JSContext *cx, uintN argc, jsval *vp)
|
2007-01-10 01:47:58 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
return array_extra(cx, REDUCE_RIGHT, argc, vp);
|
2007-01-10 01:47:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-25 19:12:19 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_filter(JSContext *cx, uintN argc, jsval *vp)
|
2005-04-17 18:31:59 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
return array_extra(cx, FILTER, argc, vp);
|
2005-04-17 18:31:59 +00:00
|
|
|
}
|
|
|
|
|
2009-06-25 19:12:19 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_some(JSContext *cx, uintN argc, jsval *vp)
|
2005-04-17 18:31:59 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
return array_extra(cx, SOME, argc, vp);
|
2005-04-17 18:31:59 +00:00
|
|
|
}
|
|
|
|
|
2009-06-25 19:12:19 +00:00
|
|
|
static JSBool
|
2007-08-02 04:33:52 +00:00
|
|
|
array_every(JSContext *cx, uintN argc, jsval *vp)
|
2005-04-17 18:31:59 +00:00
|
|
|
{
|
2007-08-02 04:33:52 +00:00
|
|
|
return array_extra(cx, EVERY, argc, vp);
|
2005-04-17 18:31:59 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-08-14 10:23:07 +00:00
|
|
|
static JSBool
|
|
|
|
array_isArray(JSContext *cx, uintN argc, jsval *vp)
|
|
|
|
{
|
|
|
|
*vp = BOOLEAN_TO_JSVAL(argc > 0 &&
|
|
|
|
!JSVAL_IS_PRIMITIVE(vp[2]) &&
|
2009-09-10 21:51:45 +00:00
|
|
|
OBJ_IS_ARRAY(cx, js_GetWrappedObject(cx, JSVAL_TO_OBJECT(vp[2]))));
|
2009-08-14 10:23:07 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
static JSPropertySpec array_props[] = {
|
|
|
|
{js_length_str, -1, JSPROP_SHARED | JSPROP_PERMANENT,
|
|
|
|
array_length_getter, array_length_setter},
|
|
|
|
{0,0,0,0,0}
|
|
|
|
};
|
|
|
|
|
2008-11-13 08:30:20 +00:00
|
|
|
JS_DEFINE_TRCINFO_1(array_toString,
|
|
|
|
(2, (static, STRING_FAIL, Array_p_toString, CONTEXT, THIS, 0, 0)))
|
2008-10-21 22:58:06 +00:00
|
|
|
JS_DEFINE_TRCINFO_1(array_join,
|
|
|
|
(3, (static, STRING_FAIL, Array_p_join, CONTEXT, THIS, STRING, 0, 0)))
|
|
|
|
JS_DEFINE_TRCINFO_1(array_push,
|
2008-11-13 08:30:20 +00:00
|
|
|
(3, (static, JSVAL_FAIL, Array_p_push1, CONTEXT, THIS, JSVAL, 0, 0)))
|
2008-10-21 22:58:06 +00:00
|
|
|
JS_DEFINE_TRCINFO_1(array_pop,
|
2008-11-13 08:30:20 +00:00
|
|
|
(2, (static, JSVAL_FAIL, Array_p_pop, CONTEXT, THIS, 0, 0)))
|
2008-10-08 22:08:33 +00:00
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
static JSFunctionSpec array_methods[] = {
|
1998-04-24 00:31:11 +00:00
|
|
|
#if JS_HAS_TOSOURCE
|
2008-08-08 16:02:50 +00:00
|
|
|
JS_FN(js_toSource_str, array_toSource, 0,0),
|
1998-04-24 00:31:11 +00:00
|
|
|
#endif
|
2009-09-04 20:44:31 +00:00
|
|
|
JS_TN(js_toString_str, array_toString, 0,0, &array_toString_trcinfo),
|
2008-08-08 16:02:50 +00:00
|
|
|
JS_FN(js_toLocaleString_str,array_toLocaleString,0,0),
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
/* Perl-ish methods. */
|
2009-09-04 20:44:31 +00:00
|
|
|
JS_TN("join", array_join, 1,JSFUN_GENERIC_NATIVE, &array_join_trcinfo),
|
2008-08-08 16:02:50 +00:00
|
|
|
JS_FN("reverse", array_reverse, 0,JSFUN_GENERIC_NATIVE),
|
|
|
|
JS_FN("sort", array_sort, 1,JSFUN_GENERIC_NATIVE),
|
2009-09-04 20:44:31 +00:00
|
|
|
JS_TN("push", array_push, 1,JSFUN_GENERIC_NATIVE, &array_push_trcinfo),
|
|
|
|
JS_TN("pop", array_pop, 0,JSFUN_GENERIC_NATIVE, &array_pop_trcinfo),
|
2008-08-08 16:02:50 +00:00
|
|
|
JS_FN("shift", array_shift, 0,JSFUN_GENERIC_NATIVE),
|
|
|
|
JS_FN("unshift", array_unshift, 1,JSFUN_GENERIC_NATIVE),
|
|
|
|
JS_FN("splice", array_splice, 2,JSFUN_GENERIC_NATIVE),
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
/* Pythonic sequence methods. */
|
2008-08-08 16:02:50 +00:00
|
|
|
JS_FN("concat", array_concat, 1,JSFUN_GENERIC_NATIVE),
|
|
|
|
JS_FN("slice", array_slice, 2,JSFUN_GENERIC_NATIVE),
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2005-04-17 18:31:59 +00:00
|
|
|
#if JS_HAS_ARRAY_EXTRAS
|
2008-08-08 16:02:50 +00:00
|
|
|
JS_FN("indexOf", array_indexOf, 1,JSFUN_GENERIC_NATIVE),
|
|
|
|
JS_FN("lastIndexOf", array_lastIndexOf, 1,JSFUN_GENERIC_NATIVE),
|
|
|
|
JS_FN("forEach", array_forEach, 1,JSFUN_GENERIC_NATIVE),
|
|
|
|
JS_FN("map", array_map, 1,JSFUN_GENERIC_NATIVE),
|
|
|
|
JS_FN("reduce", array_reduce, 1,JSFUN_GENERIC_NATIVE),
|
|
|
|
JS_FN("reduceRight", array_reduceRight, 1,JSFUN_GENERIC_NATIVE),
|
|
|
|
JS_FN("filter", array_filter, 1,JSFUN_GENERIC_NATIVE),
|
|
|
|
JS_FN("some", array_some, 1,JSFUN_GENERIC_NATIVE),
|
|
|
|
JS_FN("every", array_every, 1,JSFUN_GENERIC_NATIVE),
|
2005-04-17 18:31:59 +00:00
|
|
|
#endif
|
|
|
|
|
2007-08-02 04:33:52 +00:00
|
|
|
JS_FS_END
|
1998-03-28 02:44:41 +00:00
|
|
|
};
|
|
|
|
|
2009-08-14 10:23:07 +00:00
|
|
|
static JSFunctionSpec array_static_methods[] = {
|
|
|
|
JS_FN("isArray", array_isArray, 1,0),
|
|
|
|
JS_FS_END
|
|
|
|
};
|
|
|
|
|
2008-08-21 07:50:20 +00:00
|
|
|
JSBool
|
|
|
|
js_Array(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1998-04-24 00:31:11 +00:00
|
|
|
jsuint length;
|
1998-03-28 02:44:41 +00:00
|
|
|
jsval *vector;
|
1998-04-24 00:31:11 +00:00
|
|
|
|
|
|
|
/* If called without new, replace obj with a new Array object. */
|
2008-12-09 16:38:32 +00:00
|
|
|
if (!JS_IsConstructing(cx)) {
|
2009-07-15 00:06:09 +00:00
|
|
|
obj = js_NewObject(cx, &js_ArrayClass, NULL, NULL);
|
2003-06-12 00:26:40 +00:00
|
|
|
if (!obj)
|
|
|
|
return JS_FALSE;
|
|
|
|
*rval = OBJECT_TO_JSVAL(obj);
|
1998-04-24 00:31:11 +00:00
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
if (argc == 0) {
|
2003-06-12 00:26:40 +00:00
|
|
|
length = 0;
|
|
|
|
vector = NULL;
|
|
|
|
} else if (argc > 1) {
|
|
|
|
length = (jsuint) argc;
|
|
|
|
vector = argv;
|
|
|
|
} else if (!JSVAL_IS_NUMBER(argv[0])) {
|
|
|
|
length = 1;
|
|
|
|
vector = argv;
|
1998-03-28 02:44:41 +00:00
|
|
|
} else {
|
2008-03-06 23:24:08 +00:00
|
|
|
length = ValueIsLength(cx, &argv[0]);
|
|
|
|
if (JSVAL_IS_NULL(argv[0]))
|
2003-06-12 00:26:40 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
vector = NULL;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
1998-04-24 00:31:11 +00:00
|
|
|
return InitArrayObject(cx, obj, length, vector);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2008-10-08 22:08:33 +00:00
|
|
|
JS_STATIC_ASSERT(JSSLOT_PRIVATE == JSSLOT_ARRAY_LENGTH);
|
|
|
|
JS_STATIC_ASSERT(JSSLOT_ARRAY_LENGTH + 1 == JSSLOT_ARRAY_COUNT);
|
|
|
|
|
|
|
|
#ifdef JS_TRACER
|
|
|
|
|
|
|
|
JSObject* FASTCALL
|
2009-05-05 21:26:06 +00:00
|
|
|
js_NewEmptyArray(JSContext* cx, JSObject* proto)
|
2008-10-08 22:08:33 +00:00
|
|
|
{
|
|
|
|
JS_ASSERT(OBJ_IS_ARRAY(cx, proto));
|
|
|
|
|
|
|
|
JS_ASSERT(JS_ON_TRACE(cx));
|
2009-07-15 00:06:09 +00:00
|
|
|
JSObject* obj = js_NewGCObject(cx, GCX_OBJECT);
|
2008-10-08 22:08:33 +00:00
|
|
|
if (!obj)
|
|
|
|
return NULL;
|
|
|
|
|
2009-05-14 10:35:23 +00:00
|
|
|
/* Initialize all fields of JSObject. */
|
|
|
|
obj->map = const_cast<JSObjectMap *>(&SharedArrayMap);
|
|
|
|
obj->classword = jsuword(&js_ArrayClass);
|
2009-08-28 05:53:26 +00:00
|
|
|
obj->setProto(proto);
|
|
|
|
obj->setParent(proto->getParent());
|
2008-10-08 22:08:33 +00:00
|
|
|
|
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = 0;
|
|
|
|
obj->fslots[JSSLOT_ARRAY_COUNT] = 0;
|
|
|
|
for (unsigned i = JSSLOT_ARRAY_COUNT + 1; i != JS_INITIAL_NSLOTS; ++i)
|
|
|
|
obj->fslots[i] = JSVAL_VOID;
|
|
|
|
obj->dslots = NULL;
|
|
|
|
return obj;
|
|
|
|
}
|
2009-05-06 00:36:26 +00:00
|
|
|
JS_DEFINE_CALLINFO_2(extern, OBJECT, js_NewEmptyArray, CONTEXT, OBJECT, 0, 0)
|
2008-10-08 22:08:33 +00:00
|
|
|
|
2008-11-05 13:29:38 +00:00
|
|
|
JSObject* FASTCALL
|
|
|
|
js_NewUninitializedArray(JSContext* cx, JSObject* proto, uint32 len)
|
|
|
|
{
|
2009-05-05 21:26:06 +00:00
|
|
|
JS_ASSERT(JS_ON_TRACE(cx));
|
|
|
|
JSObject* obj = js_NewEmptyArray(cx, proto);
|
|
|
|
if (!obj)
|
|
|
|
return NULL;
|
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = len;
|
|
|
|
if (!ResizeSlots(cx, obj, 0, JS_MAX(len, ARRAY_CAPACITY_MIN)))
|
2008-11-05 13:29:38 +00:00
|
|
|
return NULL;
|
|
|
|
return obj;
|
|
|
|
}
|
2009-05-06 00:36:26 +00:00
|
|
|
JS_DEFINE_CALLINFO_3(extern, OBJECT, js_NewUninitializedArray, CONTEXT, OBJECT, UINT32, 0, 0)
|
2008-11-05 13:29:38 +00:00
|
|
|
|
2008-10-08 22:08:33 +00:00
|
|
|
#endif /* JS_TRACER */
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
JSObject *
|
|
|
|
js_InitArrayClass(JSContext *cx, JSObject *obj)
|
|
|
|
{
|
1998-04-24 00:31:11 +00:00
|
|
|
JSObject *proto;
|
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
/* Initialize the ops structure used by slow arrays */
|
|
|
|
memcpy(&js_SlowArrayObjectOps, &js_ObjectOps, sizeof(JSObjectOps));
|
|
|
|
js_SlowArrayObjectOps.trace = slowarray_trace;
|
|
|
|
js_SlowArrayObjectOps.enumerate = slowarray_enumerate;
|
|
|
|
js_SlowArrayObjectOps.call = NULL;
|
|
|
|
|
2008-08-21 07:50:20 +00:00
|
|
|
proto = JS_InitClass(cx, obj, NULL, &js_ArrayClass, js_Array, 1,
|
2009-08-14 10:23:07 +00:00
|
|
|
array_props, array_methods, NULL, array_static_methods);
|
1998-04-24 00:31:11 +00:00
|
|
|
|
|
|
|
/* Initialize the Array prototype object so it gets a length property. */
|
|
|
|
if (!proto || !InitArrayObject(cx, proto, 0, NULL))
|
2003-06-12 00:26:40 +00:00
|
|
|
return NULL;
|
1998-04-24 00:31:11 +00:00
|
|
|
return proto;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
JSObject *
|
2008-06-05 23:00:25 +00:00
|
|
|
js_NewArrayObject(JSContext *cx, jsuint length, jsval *vector, JSBool holey)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
2007-03-02 17:35:29 +00:00
|
|
|
JSTempValueRooter tvr;
|
1998-03-28 02:44:41 +00:00
|
|
|
JSObject *obj;
|
|
|
|
|
2009-07-15 00:06:09 +00:00
|
|
|
obj = js_NewObject(cx, &js_ArrayClass, NULL, NULL);
|
1998-03-28 02:44:41 +00:00
|
|
|
if (!obj)
|
2003-06-12 00:26:40 +00:00
|
|
|
return NULL;
|
2007-03-02 17:35:29 +00:00
|
|
|
|
|
|
|
JS_PUSH_TEMP_ROOT_OBJECT(cx, obj, &tvr);
|
2008-06-05 23:00:25 +00:00
|
|
|
if (!InitArrayObject(cx, obj, length, vector, holey))
|
2007-03-02 17:35:29 +00:00
|
|
|
obj = NULL;
|
|
|
|
JS_POP_TEMP_ROOT(cx, &tvr);
|
|
|
|
|
|
|
|
/* Set/clear newborn root, in case we lost it. */
|
2007-09-16 13:03:17 +00:00
|
|
|
cx->weakRoots.newborn[GCX_OBJECT] = obj;
|
1998-03-28 02:44:41 +00:00
|
|
|
return obj;
|
|
|
|
}
|
2008-02-18 21:01:47 +00:00
|
|
|
|
|
|
|
JSObject *
|
|
|
|
js_NewSlowArrayObject(JSContext *cx)
|
|
|
|
{
|
2009-07-15 00:06:09 +00:00
|
|
|
JSObject *obj = js_NewObject(cx, &js_SlowArrayClass, NULL, NULL);
|
2008-02-18 21:01:47 +00:00
|
|
|
if (obj)
|
2008-02-26 00:59:36 +00:00
|
|
|
obj->fslots[JSSLOT_ARRAY_LENGTH] = 0;
|
2008-02-18 21:01:47 +00:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_ARRAYS
|
|
|
|
JSBool
|
|
|
|
js_ArrayInfo(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
|
|
{
|
|
|
|
uintN i;
|
|
|
|
JSObject *array;
|
|
|
|
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
char *bytes;
|
2008-03-02 17:45:33 +00:00
|
|
|
|
2008-02-18 21:01:47 +00:00
|
|
|
bytes = js_DecompileValueGenerator(cx, JSDVG_SEARCH_STACK, argv[i],
|
|
|
|
NULL);
|
|
|
|
if (!bytes)
|
|
|
|
return JS_FALSE;
|
|
|
|
if (JSVAL_IS_PRIMITIVE(argv[i]) ||
|
|
|
|
!OBJ_IS_ARRAY(cx, (array = JSVAL_TO_OBJECT(argv[i])))) {
|
|
|
|
fprintf(stderr, "%s: not array\n", bytes);
|
2009-07-28 04:10:12 +00:00
|
|
|
cx->free(bytes);
|
2008-02-18 21:01:47 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
fprintf(stderr, "%s: %s (len %lu", bytes,
|
2008-02-19 07:04:00 +00:00
|
|
|
OBJ_IS_DENSE_ARRAY(cx, array) ? "dense" : "sparse",
|
2008-02-26 00:59:36 +00:00
|
|
|
array->fslots[JSSLOT_ARRAY_LENGTH]);
|
2008-02-19 07:04:00 +00:00
|
|
|
if (OBJ_IS_DENSE_ARRAY(cx, array)) {
|
2009-02-21 21:33:50 +00:00
|
|
|
fprintf(stderr, ", count %lu, capacity %lu",
|
2008-02-26 00:59:36 +00:00
|
|
|
array->fslots[JSSLOT_ARRAY_COUNT],
|
2009-02-21 21:33:50 +00:00
|
|
|
js_DenseArrayCapacity(array));
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
fputs(")\n", stderr);
|
2009-07-28 04:10:12 +00:00
|
|
|
cx->free(bytes);
|
2008-02-18 21:01:47 +00:00
|
|
|
}
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
2008-08-20 21:47:01 +00:00
|
|
|
|
2008-08-21 06:46:31 +00:00
|
|
|
JS_FRIEND_API(JSBool)
|
2009-06-11 14:35:41 +00:00
|
|
|
js_CoerceArrayToCanvasImageData(JSObject *obj, jsuint offset, jsuint count,
|
|
|
|
JSUint8 *dest)
|
2008-08-20 21:47:01 +00:00
|
|
|
{
|
|
|
|
uint32 length;
|
|
|
|
|
2009-06-11 14:35:41 +00:00
|
|
|
if (!obj || !js_IsDenseArray(obj))
|
2008-08-20 21:47:01 +00:00
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
length = obj->fslots[JSSLOT_ARRAY_LENGTH];
|
|
|
|
if (length < offset + count)
|
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
JSUint8 *dp = dest;
|
|
|
|
for (uintN i = offset; i < offset+count; i++) {
|
2009-06-11 14:35:41 +00:00
|
|
|
jsval v = obj->dslots[i];
|
|
|
|
if (JSVAL_IS_INT(v)) {
|
|
|
|
jsint vi = JSVAL_TO_INT(v);
|
|
|
|
if (jsuint(vi) > 255)
|
|
|
|
vi = (vi < 0) ? 0 : 255;
|
|
|
|
*dp++ = JSUint8(vi);
|
|
|
|
} else if (JSVAL_IS_DOUBLE(v)) {
|
|
|
|
jsdouble vd = *JSVAL_TO_DOUBLE(v);
|
|
|
|
if (!(vd >= 0)) /* Not < so that NaN coerces to 0 */
|
|
|
|
*dp++ = 0;
|
|
|
|
else if (vd > 255)
|
|
|
|
*dp++ = 255;
|
|
|
|
else {
|
|
|
|
jsdouble toTruncate = vd + 0.5;
|
|
|
|
JSUint8 val = JSUint8(toTruncate);
|
2008-08-20 21:47:01 +00:00
|
|
|
|
2009-06-11 14:35:41 +00:00
|
|
|
/*
|
|
|
|
* now val is rounded to nearest, ties rounded up. We want
|
|
|
|
* rounded to nearest ties to even, so check whether we had a
|
|
|
|
* tie.
|
|
|
|
*/
|
|
|
|
if (val == toTruncate) {
|
|
|
|
/*
|
|
|
|
* It was a tie (since adding 0.5 gave us the exact integer
|
|
|
|
* we want). Since we rounded up, we either already have an
|
|
|
|
* even number or we have an odd number but the number we
|
|
|
|
* want is one less. So just unconditionally masking out the
|
|
|
|
* ones bit should do the trick to get us the value we
|
|
|
|
* want.
|
|
|
|
*/
|
|
|
|
*dp++ = (val & ~1);
|
|
|
|
} else {
|
|
|
|
*dp++ = val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2008-08-20 21:47:01 +00:00
|
|
|
return JS_FALSE;
|
2009-06-11 14:35:41 +00:00
|
|
|
}
|
2008-08-20 21:47:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|