gecko/js/src/jsobjinlines.h

742 lines
19 KiB
C
Raw Normal View History

/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sw=4 et tw=99:
*
* ***** 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 jsobjinlines_h___
#define jsobjinlines_h___
#include "jsbool.h"
#include "jsdate.h"
#include "jsiter.h"
#include "jsobj.h"
#include "jsscope.h"
#include "jsstaticcheck.h"
#include "jsxml.h"
2010-04-12 07:08:55 -07:00
#include "jsdtracef.h"
#include "jscntxt.h"
#include "jsscopeinlines.h"
inline void
JSObject::dropProperty(JSContext *cx, JSProperty *prop)
{
JS_ASSERT(prop);
if (isNative())
JS_UNLOCK_OBJ(cx, this);
}
2010-07-14 23:19:36 -07:00
inline js::Value
JSObject::getSlotMT(JSContext *cx, uintN slot)
{
#ifdef JS_THREADSAFE
/*
* If thread-safe, define a getSlotMT() that bypasses, for a native
* object, the lock-free "fast path" test of
* (obj->scope()->ownercx == cx), to avoid needlessly switching from
* lock-free to lock-full scope when doing GC on a different context
* from the last one to own the scope. The caller in this case is
2010-07-14 23:19:36 -07:00
* probably a Class.mark function, e.g., fun_mark, or maybe a
* finalizer.
*/
OBJ_CHECK_SLOT(this, slot);
return (scope()->title.ownercx == cx)
2010-07-14 23:19:36 -07:00
? this->lockedGetSlot(slot)
: js::Valueify(js_GetSlotThreadSafe(cx, this, slot));
#else
return this->lockedGetSlot(slot);
#endif
}
inline void
2010-07-14 23:19:36 -07:00
JSObject::setSlotMT(JSContext *cx, uintN slot, const js::Value &value)
{
#ifdef JS_THREADSAFE
/* Thread-safe way to set a slot. */
OBJ_CHECK_SLOT(this, slot);
if (scope()->title.ownercx == cx)
this->lockedSetSlot(slot, value);
else
2010-07-14 23:19:36 -07:00
js_SetSlotThreadSafe(cx, this, slot, js::Jsvalify(value));
#else
this->lockedSetSlot(slot, value);
#endif
}
2010-07-14 23:19:36 -07:00
inline js::Value
JSObject::getReservedSlot(uintN index) const
{
uint32 slot = JSSLOT_START(getClass()) + index;
2010-07-14 23:19:36 -07:00
return (slot < numSlots()) ? getSlot(slot) : js::UndefinedValue();
}
inline bool
JSObject::canHaveMethodBarrier() const
{
return isObject() || isFunction() || isPrimitive() || isDate();
}
inline bool
JSObject::isPrimitive() const
{
return isNumber() || isString() || isBoolean();
}
2010-07-14 23:19:36 -07:00
inline const js::Value &
JSObject::getPrimitiveThis() const
{
JS_ASSERT(isPrimitive());
return fslots[JSSLOT_PRIMITIVE_THIS];
}
inline void
2010-07-14 23:19:36 -07:00
JSObject::setPrimitiveThis(const js::Value &pthis)
{
JS_ASSERT(isPrimitive());
fslots[JSSLOT_PRIMITIVE_THIS] = pthis;
}
inline void
JSObject::staticAssertArrayLengthIsInPrivateSlot()
{
JS_STATIC_ASSERT(JSSLOT_ARRAY_LENGTH == JSSLOT_PRIVATE);
}
inline uint32
JSObject::getArrayLength() const
{
JS_ASSERT(isArray());
return fslots[JSSLOT_ARRAY_LENGTH].toPrivateUint32();
}
inline void
JSObject::setArrayLength(uint32 length)
{
JS_ASSERT(isArray());
2010-07-14 23:19:36 -07:00
fslots[JSSLOT_ARRAY_LENGTH].setPrivateUint32(length);
}
inline uint32
JSObject::getDenseArrayCapacity() const
{
JS_ASSERT(isDenseArray());
return fslots[JSSLOT_DENSE_ARRAY_CAPACITY].toPrivateUint32();
}
inline void
JSObject::setDenseArrayCapacity(uint32 capacity)
{
JS_ASSERT(isDenseArray());
JS_ASSERT(!capacity == !dslots);
fslots[JSSLOT_DENSE_ARRAY_CAPACITY].setPrivateUint32(capacity);
}
2010-07-14 23:19:36 -07:00
inline const js::Value &
JSObject::getDenseArrayElement(uint32 i) const
{
JS_ASSERT(isDenseArray());
JS_ASSERT(i < getDenseArrayCapacity());
return dslots[i];
}
2010-07-14 23:19:36 -07:00
inline js::Value *
JSObject::addressOfDenseArrayElement(uint32 i)
{
JS_ASSERT(isDenseArray());
JS_ASSERT(i < getDenseArrayCapacity());
return &dslots[i];
}
inline void
2010-07-14 23:19:36 -07:00
JSObject::setDenseArrayElement(uint32 i, const js::Value &v)
{
JS_ASSERT(isDenseArray());
JS_ASSERT(i < getDenseArrayCapacity());
dslots[i] = v;
}
2010-07-14 23:19:36 -07:00
inline js::Value *
JSObject::getDenseArrayElements() const
{
JS_ASSERT(isDenseArray());
return dslots;
}
inline void
JSObject::freeDenseArrayElements(JSContext *cx)
{
JS_ASSERT(isDenseArray());
if (dslots) {
cx->free(dslots - 1);
dslots = NULL;
}
}
inline void
JSObject::voidDenseOnlyArraySlots()
{
JS_ASSERT(isDenseArray());
fslots[JSSLOT_DENSE_ARRAY_CAPACITY].setUndefined();
}
inline void
JSObject::setArgsLength(uint32 argc)
{
JS_ASSERT(isArguments());
JS_ASSERT(argc <= JS_ARGS_LENGTH_MAX);
2010-07-14 23:19:36 -07:00
fslots[JSSLOT_ARGS_LENGTH].setInt32(argc << 1);
JS_ASSERT(!isArgsLengthOverridden());
}
inline uint32
JSObject::getArgsLength() const
{
JS_ASSERT(isArguments());
2010-07-14 23:19:36 -07:00
uint32 argc = uint32(fslots[JSSLOT_ARGS_LENGTH].toInt32()) >> 1;
JS_ASSERT(argc <= JS_ARGS_LENGTH_MAX);
return argc;
}
inline void
JSObject::setArgsLengthOverridden()
{
JS_ASSERT(isArguments());
2010-07-14 23:19:36 -07:00
fslots[JSSLOT_ARGS_LENGTH].getInt32Ref() |= 1;
}
inline bool
JSObject::isArgsLengthOverridden() const
{
JS_ASSERT(isArguments());
2010-07-14 23:19:36 -07:00
const js::Value &v = fslots[JSSLOT_ARGS_LENGTH];
return (v.toInt32() & 1) != 0;
}
2010-07-14 23:19:36 -07:00
inline const js::Value &
JSObject::getArgsCallee() const
{
JS_ASSERT(isArguments());
return fslots[JSSLOT_ARGS_CALLEE];
}
inline void
2010-07-14 23:19:36 -07:00
JSObject::setArgsCallee(const js::Value &callee)
{
JS_ASSERT(isArguments());
fslots[JSSLOT_ARGS_CALLEE] = callee;
}
2010-07-14 23:19:36 -07:00
inline const js::Value &
JSObject::getArgsElement(uint32 i) const
{
JS_ASSERT(isArguments());
JS_ASSERT(i < numSlots() - JS_INITIAL_NSLOTS);
return dslots[i];
}
2010-07-14 23:19:36 -07:00
inline js::Value *
JSObject::addressOfArgsElement(uint32 i) const
{
JS_ASSERT(isArguments());
JS_ASSERT(i < numSlots() - JS_INITIAL_NSLOTS);
return &dslots[i];
}
inline void
2010-07-14 23:19:36 -07:00
JSObject::setArgsElement(uint32 i, const js::Value &v)
{
JS_ASSERT(isArguments());
JS_ASSERT(i < numSlots() - JS_INITIAL_NSLOTS);
dslots[i] = v;
}
2010-07-14 23:19:36 -07:00
inline const js::Value &
JSObject::getDateUTCTime() const
{
JS_ASSERT(isDate());
return fslots[JSSLOT_DATE_UTC_TIME];
}
inline void
2010-07-14 23:19:36 -07:00
JSObject::setDateUTCTime(const js::Value &time)
{
JS_ASSERT(isDate());
fslots[JSSLOT_DATE_UTC_TIME] = time;
}
inline bool
JSObject::hasMethodObj(const JSObject& obj) const
{
return fslots[JSSLOT_FUN_METHOD_OBJ].isObject() &&
&fslots[JSSLOT_FUN_METHOD_OBJ].toObject() == &obj;
}
inline void
JSObject::setMethodObj(JSObject& obj)
{
fslots[JSSLOT_FUN_METHOD_OBJ].setObject(obj);
}
inline NativeIterator *
JSObject::getNativeIterator() const
{
return (NativeIterator *) getPrivate();
}
inline void
JSObject::setNativeIterator(NativeIterator *ni)
{
setPrivate(ni);
}
inline jsval
JSObject::getNamePrefix() const
{
JS_ASSERT(isNamespace() || isQName());
2010-07-14 23:19:36 -07:00
return js::Jsvalify(fslots[JSSLOT_NAME_PREFIX]);
}
inline void
JSObject::setNamePrefix(jsval prefix)
{
JS_ASSERT(isNamespace() || isQName());
2010-07-14 23:19:36 -07:00
fslots[JSSLOT_NAME_PREFIX] = js::Valueify(prefix);
}
inline jsval
JSObject::getNameURI() const
{
JS_ASSERT(isNamespace() || isQName());
2010-07-14 23:19:36 -07:00
return js::Jsvalify(fslots[JSSLOT_NAME_URI]);
}
inline void
JSObject::setNameURI(jsval uri)
{
JS_ASSERT(isNamespace() || isQName());
2010-07-14 23:19:36 -07:00
fslots[JSSLOT_NAME_URI] = js::Valueify(uri);
}
inline jsval
JSObject::getNamespaceDeclared() const
{
JS_ASSERT(isNamespace());
2010-07-14 23:19:36 -07:00
return js::Jsvalify(fslots[JSSLOT_NAMESPACE_DECLARED]);
}
inline void
JSObject::setNamespaceDeclared(jsval decl)
{
JS_ASSERT(isNamespace());
2010-07-14 23:19:36 -07:00
fslots[JSSLOT_NAMESPACE_DECLARED] = js::Valueify(decl);
}
inline jsval
JSObject::getQNameLocalName() const
{
JS_ASSERT(isQName());
2010-07-14 23:19:36 -07:00
return js::Jsvalify(fslots[JSSLOT_QNAME_LOCAL_NAME]);
}
inline void
JSObject::setQNameLocalName(jsval name)
{
JS_ASSERT(isQName());
2010-07-14 23:19:36 -07:00
fslots[JSSLOT_QNAME_LOCAL_NAME] = js::Valueify(name);
}
inline JSObject *
JSObject::getWithThis() const
{
2010-07-14 23:19:36 -07:00
return &fslots[JSSLOT_WITH_THIS].toObject();
}
inline void
JSObject::setWithThis(JSObject *thisp)
{
2010-07-14 23:19:36 -07:00
fslots[JSSLOT_WITH_THIS].setObject(*thisp);
}
inline void
2010-07-14 23:19:36 -07:00
JSObject::initSharingEmptyScope(js::Class *clasp, JSObject *proto, JSObject *parent,
const js::Value &privateSlotValue)
{
init(clasp, proto, parent, privateSlotValue);
JSEmptyScope *emptyScope = proto->scope()->emptyScope;
JS_ASSERT(emptyScope->clasp == clasp);
map = emptyScope->hold();
}
inline void
JSObject::freeSlotsArray(JSContext *cx)
{
JS_ASSERT(hasSlotsArray());
2010-07-14 23:19:36 -07:00
JS_ASSERT(dslots[-1].toPrivateUint32() > JS_INITIAL_NSLOTS);
cx->free(dslots - 1);
}
inline bool
JSObject::unbrand(JSContext *cx)
{
if (this->isNative()) {
JS_LOCK_OBJ(cx, this);
JSScope *scope = this->scope();
if (scope->isSharedEmpty()) {
scope = js_GetMutableScope(cx, this);
if (!scope) {
JS_UNLOCK_OBJ(cx, this);
return false;
}
}
scope->unbrand(cx);
JS_UNLOCK_SCOPE(cx, scope);
}
return true;
}
namespace js {
2010-07-14 23:19:36 -07:00
class AutoPropDescArrayRooter : private AutoGCRooter
{
public:
2010-07-14 23:19:36 -07:00
AutoPropDescArrayRooter(JSContext *cx)
: AutoGCRooter(cx, DESCRIPTORS), descriptors(cx)
{ }
2010-07-14 23:19:36 -07:00
PropDesc *append() {
if (!descriptors.append(PropDesc()))
return NULL;
return &descriptors.back();
}
2010-07-14 23:19:36 -07:00
PropDesc& operator[](size_t i) {
JS_ASSERT(i < descriptors.length());
return descriptors[i];
}
friend void AutoGCRooter::trace(JSTracer *trc);
private:
2010-07-14 23:19:36 -07:00
PropDescArray descriptors;
};
2010-07-14 23:19:36 -07:00
class AutoPropertyDescriptorRooter : private AutoGCRooter, public PropertyDescriptor
{
public:
2010-07-14 23:19:36 -07:00
AutoPropertyDescriptorRooter(JSContext *cx) : AutoGCRooter(cx, DESCRIPTOR) {
obj = NULL;
attrs = 0;
2010-07-14 23:19:36 -07:00
getter = setter = (PropertyOp) NULL;
value.setUndefined();
}
2010-07-14 23:19:36 -07:00
AutoPropertyDescriptorRooter(JSContext *cx, PropertyDescriptor *desc) : AutoGCRooter(cx, DESCRIPTOR) {
obj = desc->obj;
attrs = desc->attrs;
getter = desc->getter;
setter = desc->setter;
value = desc->value;
}
friend void AutoGCRooter::trace(JSTracer *trc);
};
static inline bool
InitScopeForObject(JSContext* cx, JSObject* obj, js::Class *clasp, JSObject* proto)
{
JS_ASSERT(clasp->isNative());
JS_ASSERT(proto == obj->getProto());
/* Share proto's emptyScope only if obj is similar to proto. */
JSScope *scope = NULL;
if (proto && proto->isNative()) {
JS_LOCK_OBJ(cx, proto);
scope = proto->scope();
if (scope->canProvideEmptyScope(clasp)) {
JSScope *emptyScope = scope->getEmptyScope(cx, clasp);
JS_UNLOCK_SCOPE(cx, scope);
if (!emptyScope)
goto bad;
scope = emptyScope;
} else {
JS_UNLOCK_SCOPE(cx, scope);
scope = NULL;
}
}
if (!scope) {
scope = JSScope::create(cx, clasp, obj, js_GenerateShape(cx, false));
if (!scope)
goto bad;
uint32 freeslot = JSSLOT_FREE(clasp);
JS_ASSERT(freeslot >= scope->freeslot);
if (freeslot > JS_INITIAL_NSLOTS && !obj->allocSlots(cx, freeslot))
goto bad;
scope->freeslot = freeslot;
#ifdef DEBUG
if (freeslot < obj->numSlots())
2010-07-14 23:19:36 -07:00
obj->setSlot(freeslot, UndefinedValue());
#endif
}
obj->map = scope;
return true;
bad:
/* The GC nulls map initially. It should still be null on error. */
JS_ASSERT(!obj->map);
return false;
}
/*
* Helper optimized for creating a native instance of the given class (not the
* class's prototype object). Use this in preference to NewObject, but use
* NewBuiltinClassInstance if you need the default class prototype as proto,
* and its parent global as parent.
*/
static inline JSObject *
2010-07-14 23:19:36 -07:00
NewNativeClassInstance(JSContext *cx, Class *clasp, JSObject *proto, JSObject *parent)
{
JS_ASSERT(proto);
JS_ASSERT(proto->isNative());
JS_ASSERT(parent);
DTrace::ObjectCreationScope objectCreationScope(cx, cx->fp, clasp);
/*
* Allocate an object from the GC heap and initialize all its fields before
* doing any operation that can potentially trigger GC.
*/
JSObject* obj = js_NewGCObject(cx);
if (obj) {
/*
* Default parent to the parent of the prototype, which was set from
* the parent of the prototype's constructor.
*/
obj->init(clasp, proto, parent, JSObject::defaultPrivate(clasp));
JS_LOCK_OBJ(cx, proto);
JSScope *scope = proto->scope();
JS_ASSERT(scope->canProvideEmptyScope(clasp));
scope = scope->getEmptyScope(cx, clasp);
JS_UNLOCK_OBJ(cx, proto);
if (!scope) {
obj = NULL;
} else {
obj->map = scope;
}
}
objectCreationScope.handleCreation(obj);
return obj;
}
bool
FindClassPrototype(JSContext *cx, JSObject *scope, JSProtoKey protoKey, JSObject **protop,
2010-07-14 23:19:36 -07:00
Class *clasp);
/*
* Helper used to create Boolean, Date, RegExp, etc. instances of built-in
2010-07-14 23:19:36 -07:00
* classes with class prototypes of the same Class. See, e.g., jsdate.cpp,
* jsregexp.cpp, and js_PrimitiveToObject in jsobj.cpp. Use this to get the
* right default proto and parent for clasp in cx.
*/
static inline JSObject *
2010-07-14 23:19:36 -07:00
NewBuiltinClassInstance(JSContext *cx, Class *clasp)
{
VOUCH_DOES_NOT_REQUIRE_STACK();
JSProtoKey protoKey = JSCLASS_CACHED_PROTO_KEY(clasp);
JS_ASSERT(protoKey != JSProto_Null);
/* NB: inline-expanded and specialized version of js_GetClassPrototype. */
JSObject *global;
if (!cx->fp) {
global = cx->globalObject;
OBJ_TO_INNER_OBJECT(cx, global);
if (!global)
return NULL;
} else {
global = cx->fp->getScopeChain()->getGlobal();
}
JS_ASSERT(global->getClass()->flags & JSCLASS_IS_GLOBAL);
2010-07-14 23:19:36 -07:00
const Value &v = global->getReservedSlot(JSProto_LIMIT + protoKey);
JSObject *proto;
2010-07-14 23:19:36 -07:00
if (v.isObject()) {
proto = &v.toObject();
JS_ASSERT(proto->getParent() == global);
} else {
if (!FindClassPrototype(cx, global, protoKey, &proto, clasp))
return NULL;
}
return NewNativeClassInstance(cx, clasp, proto, global);
}
static inline JSProtoKey
GetClassProtoKey(js::Class *clasp)
{
JSProtoKey key = JSCLASS_CACHED_PROTO_KEY(clasp);
if (key != JSProto_Null)
return key;
if (clasp->flags & JSCLASS_IS_ANONYMOUS)
return JSProto_Object;
return JSProto_Null;
}
namespace WithProto {
enum e {
Class = 0,
Given = 1
};
}
/*
* Create an instance of any class, native or not, JSFunction-sized or not.
*
* If withProto is 'Class':
* If proto is null:
* for a built-in class:
* use the memoized original value of the class constructor .prototype
* property object
* else if available
* the current value of .prototype
* else
* Object.prototype.
*
* If parent is null, default it to proto->getParent() if proto is non
* null, else to null.
*
* If withProto is 'Given':
* We allocate an object with exactly the given proto. A null parent
* defaults to proto->getParent() if proto is non-null (else to null).
*
* If isFunction is true, return a JSFunction-sized object. If isFunction is
* false, return a normal object.
*
* Note that as a template, there will be lots of instantiations, which means
* the internals will be specialized based on the template parameters.
*/
namespace detail
{
template <bool withProto, bool isFunction>
static JS_ALWAYS_INLINE JSObject *
NewObject(JSContext *cx, js::Class *clasp, JSObject *proto, JSObject *parent)
{
/* Bootstrap the ur-object, and make it the default prototype object. */
if (withProto == WithProto::Class && !proto) {
JSProtoKey protoKey = GetClassProtoKey(clasp);
if (!js_GetClassPrototype(cx, parent, protoKey, &proto, clasp))
return NULL;
if (!proto && !js_GetClassPrototype(cx, parent, JSProto_Object, &proto))
return NULL;
}
DTrace::ObjectCreationScope objectCreationScope(cx, cx->fp, clasp);
/*
* Allocate an object from the GC heap and initialize all its fields before
* doing any operation that can potentially trigger GC. Functions have a
* larger non-standard allocation size.
*
* The should be specialized by the template.
*/
JSObject* obj = isFunction
? (JSObject *)js_NewGCFunction(cx)
: js_NewGCObject(cx);
if (!obj)
goto out;
/*
* Default parent to the parent of the prototype, which was set from
* the parent of the prototype's constructor.
*/
obj->init(clasp,
proto,
(!parent && proto) ? proto->getParent() : parent,
JSObject::defaultPrivate(clasp));
if (clasp->isNative()) {
if (!InitScopeForObject(cx, obj, clasp, proto)) {
obj = NULL;
goto out;
}
} else {
obj->map = const_cast<JSObjectMap *>(&JSObjectMap::sharedNonNative);
}
out:
objectCreationScope.handleCreation(obj);
return obj;
}
}
static JS_ALWAYS_INLINE JSObject *
NewFunction(JSContext *cx, JSObject *parent)
{
return detail::NewObject<WithProto::Class, true>(cx, &js_FunctionClass, NULL, parent);
}
template <WithProto::e withProto>
static JS_ALWAYS_INLINE JSObject *
NewNonFunction(JSContext *cx, js::Class *clasp, JSObject *proto, JSObject *parent)
{
return detail::NewObject<withProto, false>(cx, clasp, proto, parent);
}
template <WithProto::e withProto>
static JS_ALWAYS_INLINE JSObject *
2010-07-14 23:19:36 -07:00
NewObject(JSContext *cx, js::Class *clasp, JSObject *proto, JSObject *parent)
{
return (clasp == &js_FunctionClass)
? detail::NewObject<withProto, true>(cx, clasp, proto, parent)
: detail::NewObject<withProto, false>(cx, clasp, proto, parent);
}
} /* namespace js */
#endif /* jsobjinlines_h___ */