2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
|
|
* March 31, 1998.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
|
|
|
#ifndef jsarray_h___
|
|
|
|
#define jsarray_h___
|
|
|
|
/*
|
|
|
|
* JS Array interface.
|
|
|
|
*/
|
|
|
|
#include "jsprvtd.h"
|
|
|
|
#include "jspubtd.h"
|
2009-02-21 13:33:50 -08:00
|
|
|
#include "jsobj.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
JS_BEGIN_EXTERN_C
|
|
|
|
|
2009-02-23 15:31:02 -08:00
|
|
|
#define ARRAY_CAPACITY_MIN 7
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* Generous sanity-bound on length (in elements) of array initialiser. */
|
|
|
|
#define ARRAY_INIT_LIMIT JS_BIT(24)
|
|
|
|
|
|
|
|
extern JSBool
|
|
|
|
js_IdIsIndex(jsval id, jsuint *indexp);
|
|
|
|
|
2008-02-18 13:01:47 -08:00
|
|
|
extern JSClass js_ArrayClass, js_SlowArrayClass;
|
|
|
|
|
2009-06-11 07:35:41 -07:00
|
|
|
static JS_INLINE JSBool
|
|
|
|
js_IsDenseArray(JSObject *obj)
|
|
|
|
{
|
|
|
|
return STOBJ_GET_CLASS(obj) == &js_ArrayClass;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define OBJ_IS_DENSE_ARRAY(cx, obj) js_IsDenseArray(obj)
|
2008-02-18 23:04:00 -08:00
|
|
|
|
|
|
|
#define OBJ_IS_ARRAY(cx,obj) (OBJ_IS_DENSE_ARRAY(cx, obj) || \
|
2008-02-18 13:01:47 -08:00
|
|
|
OBJ_GET_CLASS(cx, obj) == &js_SlowArrayClass)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-03-09 11:25:43 -07:00
|
|
|
/*
|
|
|
|
* Dense arrays are not native (OBJ_IS_NATIVE(cx, aobj) for a dense array aobj
|
|
|
|
* results in false, meaning aobj->map does not point to a JSScope).
|
|
|
|
*
|
|
|
|
* But Array methods are called via aobj.sort(), e.g., and the interpreter and
|
|
|
|
* the trace recorder must consult the property cache in order to perform well.
|
|
|
|
* The cache works only for native objects.
|
|
|
|
*
|
|
|
|
* Therefore the interpreter (js_Interpret in JSOP_GETPROP and JSOP_CALLPROP)
|
|
|
|
* and js_GetPropertyHelper use this inline function to skip up one link in the
|
2009-04-05 21:17:22 -07:00
|
|
|
* prototype chain when obj is a dense array, in order to find a native object
|
|
|
|
* (to wit, Array.prototype) in which to probe for cached methods.
|
|
|
|
*
|
|
|
|
* Note that setting aobj.__proto__ for a dense array aobj turns aobj into a
|
|
|
|
* slow array, avoiding the neede to skip.
|
2009-03-09 11:25:43 -07:00
|
|
|
*
|
|
|
|
* Callers of js_GetProtoIfDenseArray must take care to use the original object
|
|
|
|
* (obj) for the |this| value of a getter, setter, or method call (bug 476447).
|
|
|
|
*/
|
|
|
|
static JS_INLINE JSObject *
|
|
|
|
js_GetProtoIfDenseArray(JSContext *cx, JSObject *obj)
|
|
|
|
{
|
|
|
|
return OBJ_IS_DENSE_ARRAY(cx, obj) ? OBJ_GET_PROTO(cx, obj) : obj;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
extern JSObject *
|
|
|
|
js_InitArrayClass(JSContext *cx, JSObject *obj);
|
|
|
|
|
2009-06-30 17:19:42 -07:00
|
|
|
extern JSBool
|
|
|
|
js_InitContextBusyArrayTable(JSContext *);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
extern JSObject *
|
2008-06-05 16:00:25 -07:00
|
|
|
js_NewArrayObject(JSContext *cx, jsuint length, jsval *vector,
|
|
|
|
JSBool holey = JS_FALSE);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-02-18 13:01:47 -08:00
|
|
|
/* Create an array object that starts out already made slow/sparse. */
|
|
|
|
extern JSObject *
|
|
|
|
js_NewSlowArrayObject(JSContext *cx);
|
|
|
|
|
2008-07-01 12:47:09 -07:00
|
|
|
extern JSBool
|
|
|
|
js_MakeArraySlow(JSContext *cx, JSObject *obj);
|
|
|
|
|
2008-02-18 13:01:47 -08:00
|
|
|
#define JSSLOT_ARRAY_LENGTH JSSLOT_PRIVATE
|
|
|
|
#define JSSLOT_ARRAY_COUNT (JSSLOT_ARRAY_LENGTH + 1)
|
2009-04-17 02:37:59 -07:00
|
|
|
#define JSSLOT_ARRAY_UNUSED (JSSLOT_ARRAY_COUNT + 1)
|
2007-08-01 21:33:52 -07:00
|
|
|
|
2009-02-21 13:33:50 -08:00
|
|
|
static JS_INLINE uint32
|
|
|
|
js_DenseArrayCapacity(JSObject *obj)
|
|
|
|
{
|
2009-06-11 07:35:41 -07:00
|
|
|
JS_ASSERT(js_IsDenseArray(obj));
|
2009-02-21 13:33:50 -08:00
|
|
|
return obj->dslots ? (uint32) obj->dslots[-1] : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JS_INLINE void
|
|
|
|
js_SetDenseArrayCapacity(JSObject *obj, uint32 capacity)
|
|
|
|
{
|
2009-06-11 07:35:41 -07:00
|
|
|
JS_ASSERT(js_IsDenseArray(obj));
|
2009-02-21 13:33:50 -08:00
|
|
|
JS_ASSERT(obj->dslots);
|
|
|
|
obj->dslots[-1] = (jsval) capacity;
|
|
|
|
}
|
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 01:24:58 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
extern JSBool
|
|
|
|
js_GetLengthProperty(JSContext *cx, JSObject *obj, jsuint *lengthp);
|
|
|
|
|
|
|
|
extern JSBool
|
2009-01-12 13:07:48 -08:00
|
|
|
js_SetLengthProperty(JSContext *cx, JSObject *obj, jsdouble length);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
extern JSBool
|
|
|
|
js_HasLengthProperty(JSContext *cx, JSObject *obj, jsuint *lengthp);
|
|
|
|
|
2008-09-15 00:54:28 -07:00
|
|
|
extern JSBool JS_FASTCALL
|
|
|
|
js_IndexToId(JSContext *cx, jsuint index, jsid *idp);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/*
|
|
|
|
* Test whether an object is "array-like". Currently this means whether obj
|
|
|
|
* is an Array or an arguments object. We would like an API, and probably a
|
|
|
|
* way in the language, to bless other objects as array-like: having indexed
|
|
|
|
* properties, and a 'length' property of uint32 value equal to one more than
|
|
|
|
* the greatest index.
|
|
|
|
*/
|
|
|
|
extern JSBool
|
|
|
|
js_IsArrayLike(JSContext *cx, JSObject *obj, JSBool *answerp, jsuint *lengthp);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* JS-specific merge sort function.
|
|
|
|
*/
|
|
|
|
typedef JSBool (*JSComparator)(void *arg, const void *a, const void *b,
|
|
|
|
int *result);
|
|
|
|
/*
|
|
|
|
* NB: vec is the array to be sorted, tmp is temporary space at least as big
|
|
|
|
* as vec. Both should be GC-rooted if appropriate.
|
|
|
|
*
|
|
|
|
* The sorted result is in vec. vec may be in an inconsistent state if the
|
|
|
|
* comparator function cmp returns an error inside a comparison, so remember
|
|
|
|
* to check the return value of this function.
|
|
|
|
*/
|
2009-06-25 12:12:19 -07:00
|
|
|
extern JSBool
|
2007-03-22 10:30:00 -07:00
|
|
|
js_MergeSort(void *vec, size_t nel, size_t elsize, JSComparator cmp,
|
|
|
|
void *arg, void *tmp);
|
|
|
|
|
2008-02-18 13:01:47 -08:00
|
|
|
#ifdef DEBUG_ARRAYS
|
|
|
|
extern JSBool
|
|
|
|
js_ArrayInfo(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
|
|
|
|
#endif
|
|
|
|
|
2009-02-06 11:53:29 -08:00
|
|
|
extern JSBool JS_FASTCALL
|
2009-02-06 11:19:06 -08:00
|
|
|
js_ArrayCompPush(JSContext *cx, JSObject *obj, jsval v);
|
|
|
|
|
2008-08-20 14:47:01 -07:00
|
|
|
/*
|
2009-06-11 07:35:41 -07:00
|
|
|
* Fast dense-array-to-buffer conversion for use by canvas.
|
|
|
|
*
|
|
|
|
* If the array is a dense array, fill [offset..offset+count] values into
|
|
|
|
* destination, assuming that types are consistent. Return JS_TRUE if
|
|
|
|
* successful, otherwise JS_FALSE -- note that the destination buffer may be
|
|
|
|
* modified even if JS_FALSE is returned (e.g. due to finding an inappropriate
|
|
|
|
* type later on in the array). If JS_FALSE is returned, no error conditions
|
|
|
|
* or exceptions are set on the context.
|
|
|
|
*
|
|
|
|
* This method succeeds if each element of the array is an integer or a double.
|
|
|
|
* Values outside the 0-255 range are clamped to that range. Double values are
|
|
|
|
* converted to integers in this range by clamping and then rounding to
|
|
|
|
* nearest, ties to even.
|
2008-08-20 14:47:01 -07:00
|
|
|
*/
|
|
|
|
|
2008-08-20 23:46:31 -07:00
|
|
|
JS_FRIEND_API(JSBool)
|
2009-06-11 07:35:41 -07:00
|
|
|
js_CoerceArrayToCanvasImageData(JSObject *obj, jsuint offset, jsuint count,
|
|
|
|
JSUint8 *dest);
|
2008-08-20 14:47:01 -07:00
|
|
|
|
2009-03-03 21:58:56 -08:00
|
|
|
JSBool
|
|
|
|
js_PrototypeHasIndexedProperties(JSContext *cx, JSObject *obj);
|
2009-03-03 18:04:15 -08:00
|
|
|
|
2009-03-31 12:42:31 -07:00
|
|
|
/*
|
|
|
|
* Utility to access the value from the id returned by array_lookupProperty.
|
|
|
|
*/
|
2009-04-17 02:37:59 -07:00
|
|
|
JSBool
|
|
|
|
js_GetDenseArrayElementValue(JSContext *cx, JSObject *obj, JSProperty *prop,
|
|
|
|
jsval *vp);
|
2009-03-31 12:42:31 -07:00
|
|
|
|
2009-07-29 09:58:19 -07:00
|
|
|
/* Array constructor native. Exposed only so the JIT can know its address. */
|
|
|
|
JSBool
|
|
|
|
js_Array(JSContext* cx, JSObject* obj, uintN argc, jsval* argv, jsval* rval);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
JS_END_EXTERN_C
|
|
|
|
|
|
|
|
#endif /* jsarray_h___ */
|