/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtQml module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qv4object_p.h" #include "qv4objectproto_p.h" #include "qv4stringobject_p.h" #include "qv4argumentsobject_p.h" #include #include "qv4lookup_p.h" #include "qv4scopedvalue_p.h" #include "qv4memberdata_p.h" #include "qv4objectiterator_p.h" #include "qv4identifier_p.h" #include "qv4string_p.h" #include "qv4identifiertable_p.h" #include "qv4jscall_p.h" #include using namespace QV4; DEFINE_OBJECT_VTABLE(Object); void Object::setInternalClass(InternalClass *ic) { d()->internalClass = ic; if (ic->isUsedAsProto) ic->updateProtoUsage(d()); Q_ASSERT(ic && ic->vtable); uint nInline = d()->vtable()->nInlineProperties; if (ic->size <= nInline) return; bool hasMD = d()->memberData != nullptr; uint requiredSize = ic->size - nInline; if (!(hasMD && requiredSize) || (hasMD && d()->memberData->values.size < requiredSize)) d()->memberData.set(ic->engine, MemberData::allocate(ic->engine, requiredSize, d()->memberData)); } void Object::getProperty(uint index, Property *p, PropertyAttributes *attrs) const { p->value = *propertyData(index); *attrs = internalClass()->propertyData.at(index); if (attrs->isAccessor()) p->set = *propertyData(index + SetterOffset); } void Object::setProperty(uint index, const Property *p) { setProperty(index, p->value); if (internalClass()->propertyData.at(index).isAccessor()) setProperty(index + SetterOffset, p->set); } void Heap::Object::setUsedAsProto() { internalClass = internalClass->asProtoClass(); } bool Object::setPrototype(Object *proto) { Heap::Object *p = proto ? proto->d() : nullptr; Heap::Object *pp = p; while (pp) { if (pp == d()) return false; pp = pp->prototype(); } setInternalClass(internalClass()->changePrototype(p)); return true; } ReturnedValue Object::getValue(const Value &thisObject, const Value &v, PropertyAttributes attrs) { if (!attrs.isAccessor()) return v.asReturnedValue(); const QV4::FunctionObject *f = v.as(); if (!f) return Encode::undefined(); Scope scope(f->engine()); JSCallData jsCallData(scope); *jsCallData->thisObject = thisObject; return f->call(jsCallData); } bool Object::putValue(uint memberIndex, const Value &value) { QV4::InternalClass *ic = internalClass(); if (ic->engine->hasException) return false; PropertyAttributes attrs = ic->propertyData[memberIndex]; if (attrs.isAccessor()) { const FunctionObject *set = propertyData(memberIndex + SetterOffset)->as(); if (set) { Scope scope(ic->engine); ScopedFunctionObject setter(scope, set); JSCallData jsCallData(scope, 1); jsCallData->args[0] = value; *jsCallData->thisObject = this; setter->call(jsCallData); return !ic->engine->hasException; } return false; } if (!attrs.isWritable()) return false; setProperty(memberIndex, value); return true; } void Object::defineDefaultProperty(const QString &name, const Value &value) { ExecutionEngine *e = engine(); Scope scope(e); ScopedString s(scope, e->newIdentifier(name)); defineDefaultProperty(s, value); } void Object::defineDefaultProperty(const QString &name, ReturnedValue (*code)(const FunctionObject *, const Value *thisObject, const Value *argv, int argc), int argumentCount) { ExecutionEngine *e = engine(); Scope scope(e); ScopedString s(scope, e->newIdentifier(name)); ExecutionContext *global = e->rootContext(); ScopedFunctionObject function(scope, FunctionObject::createBuiltinFunction(global, s, code)); function->defineReadonlyConfigurableProperty(e->id_length(), Primitive::fromInt32(argumentCount)); defineDefaultProperty(s, function); } void Object::defineDefaultProperty(String *name, ReturnedValue (*code)(const FunctionObject *, const Value *thisObject, const Value *argv, int argc), int argumentCount) { ExecutionEngine *e = engine(); Scope scope(e); ExecutionContext *global = e->rootContext(); ScopedFunctionObject function(scope, FunctionObject::createBuiltinFunction(global, name, code)); function->defineReadonlyConfigurableProperty(e->id_length(), Primitive::fromInt32(argumentCount)); defineDefaultProperty(name, function); } void Object::defineAccessorProperty(const QString &name, ReturnedValue (*getter)(const FunctionObject *, const Value *, const Value *, int), ReturnedValue (*setter)(const FunctionObject *, const Value *, const Value *, int)) { ExecutionEngine *e = engine(); Scope scope(e); ScopedString s(scope, e->newIdentifier(name)); defineAccessorProperty(s, getter, setter); } void Object::defineAccessorProperty(String *name, ReturnedValue (*getter)(const FunctionObject *, const Value *, const Value *, int), ReturnedValue (*setter)(const FunctionObject *, const Value *, const Value *, int)) { ExecutionEngine *v4 = engine(); QV4::Scope scope(v4); ScopedProperty p(scope); ExecutionContext *global = v4->rootContext(); p->setGetter(ScopedFunctionObject(scope, (getter ? FunctionObject::createBuiltinFunction(global, name, getter) : nullptr))); p->setSetter(ScopedFunctionObject(scope, (setter ? FunctionObject::createBuiltinFunction(global, name, setter) : nullptr))); insertMember(name, p, QV4::Attr_Accessor|QV4::Attr_NotConfigurable|QV4::Attr_NotEnumerable); } void Object::defineReadonlyProperty(const QString &name, const Value &value) { QV4::ExecutionEngine *e = engine(); Scope scope(e); ScopedString s(scope, e->newIdentifier(name)); defineReadonlyProperty(s, value); } void Object::defineReadonlyProperty(String *name, const Value &value) { insertMember(name, value, Attr_ReadOnly); } void Object::defineReadonlyConfigurableProperty(const QString &name, const Value &value) { QV4::ExecutionEngine *e = engine(); Scope scope(e); ScopedString s(scope, e->newIdentifier(name)); defineReadonlyConfigurableProperty(s, value); } void Object::defineReadonlyConfigurableProperty(String *name, const Value &value) { insertMember(name, value, Attr_ReadOnly_ButConfigurable); } void Heap::Object::markObjects(Heap::Base *b, MarkStack *stack) { Object *o = static_cast(b); if (o->memberData) o->memberData->mark(stack); if (o->arrayData) { o->arrayData->setMarkBit(); if (o->arrayData->needsMark) ArrayData::markObjects(o->arrayData, stack); } uint nInline = o->vtable()->nInlineProperties; Value *v = reinterpret_cast(o) + o->vtable()->inlinePropertyOffset; const Value *end = v + nInline; while (v < end) { v->mark(stack); ++v; } } void Object::insertMember(String *s, const Property *p, PropertyAttributes attributes) { uint idx; InternalClass::addMember(this, s, attributes, &idx); if (attributes.isAccessor()) { setProperty(idx + GetterOffset, p->value); setProperty(idx + SetterOffset, p->set); } else { setProperty(idx, p->value); } } // Section 8.12.1 void Object::getOwnProperty(String *name, PropertyAttributes *attrs, Property *p) { uint idx = name->asArrayIndex(); if (idx != UINT_MAX) return getOwnProperty(idx, attrs, p); name->makeIdentifier(); Identifier *id = name->identifier(); uint member = internalClass()->find(id); if (member < UINT_MAX) { *attrs = internalClass()->propertyData[member]; if (p) { p->value = *propertyData(member); if (attrs->isAccessor()) p->set = *propertyData(member + SetterOffset); } return; } if (attrs) *attrs = Attr_Invalid; return; } void Object::getOwnProperty(uint index, PropertyAttributes *attrs, Property *p) { if (arrayData()) { if (arrayData()->getProperty(index, p, attrs)) return; } if (isStringObject()) { *attrs = Attr_NotConfigurable|Attr_NotWritable; if (p) p->value = static_cast(this)->getIndex(index); return; } if (attrs) *attrs = Attr_Invalid; return; } // Section 8.12.2 MemberData::Index Object::getValueOrSetter(String *name, PropertyAttributes *attrs) { Q_ASSERT(name->asArrayIndex() == UINT_MAX); name->makeIdentifier(); Identifier *id = name->identifier(); Heap::Object *o = d(); while (o) { uint idx = o->internalClass->find(id); if (idx < UINT_MAX) { *attrs = o->internalClass->propertyData[idx]; return o->writablePropertyData(attrs->isAccessor() ? idx + SetterOffset : idx ); } o = o->prototype(); } *attrs = Attr_Invalid; return { nullptr, nullptr }; } ArrayData::Index Object::getValueOrSetter(uint index, PropertyAttributes *attrs) { Heap::Object *o = d(); while (o) { if (o->arrayData) { uint idx = o->arrayData->mappedIndex(index); if (idx != UINT_MAX) { *attrs = o->arrayData->attributes(index); return { o->arrayData , attrs->isAccessor() ? idx + SetterOffset : idx }; } } if (o->vtable()->type == Type_StringObject) { if (index < static_cast(o)->length()) { // this is an evil hack, but it works, as the method is only ever called from putIndexed, // where we don't use the returned pointer there for non writable attributes *attrs = (Attr_NotWritable|Attr_NotConfigurable); return { reinterpret_cast(0x1), 0 }; } } o = o->prototype(); } *attrs = Attr_Invalid; return { nullptr, 0 }; } bool Object::hasProperty(String *name) const { uint idx = name->asArrayIndex(); if (idx != UINT_MAX) return hasProperty(idx); Scope scope(engine()); ScopedObject o(scope, d()); while (o) { if (o->hasOwnProperty(name)) return true; o = o->prototype(); } return false; } bool Object::hasProperty(uint index) const { Scope scope(engine()); ScopedObject o(scope, d()); while (o) { if (o->hasOwnProperty(index)) return true; o = o->prototype(); } return false; } bool Object::hasOwnProperty(String *name) const { uint idx = name->asArrayIndex(); if (idx != UINT_MAX) return hasOwnProperty(idx); name->makeIdentifier(); Identifier *id = name->identifier(); if (internalClass()->find(id) < UINT_MAX) return true; if (!query(name).isEmpty()) return true; return false; } bool Object::hasOwnProperty(uint index) const { if (arrayData() && !arrayData()->isEmpty(index)) return true; if (isStringObject()) { if (index < static_cast(this)->length()) return true; } if (!queryIndexed(index).isEmpty()) return true; return false; } ReturnedValue Object::callAsConstructor(const FunctionObject *f, const Value *, int) { return f->engine()->throwTypeError(); } ReturnedValue Object::call(const FunctionObject *f, const Value *, const Value *, int) { return f->engine()->throwTypeError(); } ReturnedValue Object::get(const Managed *m, String *name, bool *hasProperty) { return static_cast(m)->internalGet(name, hasProperty); } ReturnedValue Object::getIndexed(const Managed *m, uint index, bool *hasProperty) { return static_cast(m)->internalGetIndexed(index, hasProperty); } bool Object::put(Managed *m, String *name, const Value &value) { return static_cast(m)->internalPut(name, value); } bool Object::putIndexed(Managed *m, uint index, const Value &value) { return static_cast(m)->internalPutIndexed(index, value); } PropertyAttributes Object::query(const Managed *m, String *name) { uint idx = name->asArrayIndex(); if (idx != UINT_MAX) return queryIndexed(m, idx); name->makeIdentifier(); Identifier *id = name->identifier(); const Object *o = static_cast(m); idx = o->internalClass()->find(id); if (idx < UINT_MAX) return o->internalClass()->propertyData[idx]; return Attr_Invalid; } PropertyAttributes Object::queryIndexed(const Managed *m, uint index) { const Object *o = static_cast(m); if (o->arrayData() && !o->arrayData()->isEmpty(index)) return o->arrayData()->attributes(index); if (o->isStringObject()) { if (index < static_cast(o)->length()) return (Attr_NotWritable|Attr_NotConfigurable); } return Attr_Invalid; } bool Object::deleteProperty(Managed *m, String *name) { return static_cast(m)->internalDeleteProperty(name); } bool Object::deleteIndexedProperty(Managed *m, uint index) { return static_cast(m)->internalDeleteIndexedProperty(index); } void Object::advanceIterator(Managed *m, ObjectIterator *it, Value *name, uint *index, Property *pd, PropertyAttributes *attrs) { Object *o = static_cast(m); name->setM(nullptr); *index = UINT_MAX; if (o->arrayData()) { if (!it->arrayIndex) it->arrayNode = o->sparseBegin(); // sparse arrays if (it->arrayNode) { while (it->arrayNode != o->sparseEnd()) { int k = it->arrayNode->key(); uint pidx = it->arrayNode->value; Heap::SparseArrayData *sa = o->d()->arrayData.cast(); const Property *p = reinterpret_cast(sa->values.data() + pidx); it->arrayNode = it->arrayNode->nextNode(); PropertyAttributes a = sa->attrs ? sa->attrs[pidx] : Attr_Data; if (!(it->flags & ObjectIterator::EnumerableOnly) || a.isEnumerable()) { it->arrayIndex = k + 1; *index = k; *attrs = a; pd->copy(p, a); return; } } it->arrayNode = nullptr; it->arrayIndex = UINT_MAX; } // dense arrays while (it->arrayIndex < o->d()->arrayData->values.size) { Heap::SimpleArrayData *sa = o->d()->arrayData.cast(); const Value &val = sa->data(it->arrayIndex); PropertyAttributes a = o->arrayData()->attributes(it->arrayIndex); ++it->arrayIndex; if (!val.isEmpty() && (!(it->flags & ObjectIterator::EnumerableOnly) || a.isEnumerable())) { *index = it->arrayIndex - 1; *attrs = a; pd->value = val; return; } } } while (it->memberIndex < o->internalClass()->size) { Identifier *n = o->internalClass()->nameMap.at(it->memberIndex); if (!n) { // accessor properties have a dummy entry with n == 0 ++it->memberIndex; continue; } int idx = it->memberIndex; PropertyAttributes a = o->internalClass()->propertyData[it->memberIndex]; ++it->memberIndex; if (!(it->flags & ObjectIterator::EnumerableOnly) || a.isEnumerable()) { name->setM(o->engine()->identifierTable->stringFromIdentifier(n)); *attrs = a; pd->value = *o->propertyData(idx); if (a.isAccessor()) pd->set = *o->propertyData(idx + SetterOffset); return; } } *attrs = PropertyAttributes(); } // Section 8.12.3 ReturnedValue Object::internalGet(String *name, bool *hasProperty) const { uint idx = name->asArrayIndex(); if (idx != UINT_MAX) return getIndexed(idx, hasProperty); name->makeIdentifier(); Identifier *id = name->identifier(); Heap::Object *o = d(); while (o) { uint idx = o->internalClass->find(id); if (idx < UINT_MAX) { if (hasProperty) *hasProperty = true; return getValue(*o->propertyData(idx), o->internalClass->propertyData.at(idx)); } o = o->prototype(); } if (hasProperty) *hasProperty = false; return Encode::undefined(); } ReturnedValue Object::internalGetIndexed(uint index, bool *hasProperty) const { PropertyAttributes attrs; Scope scope(engine()); ScopedObject o(scope, this); ScopedProperty pd(scope); bool exists = false; while (o) { if (o->arrayData() && o->arrayData()->getProperty(index, pd, &attrs)) { exists = true; break; } if (o->isStringObject()) { ScopedString str(scope, static_cast(o.getPointer())->getIndex(index)); if (str) { attrs = (Attr_NotWritable|Attr_NotConfigurable); if (hasProperty) *hasProperty = true; return str.asReturnedValue(); } } o = o->prototype(); } if (exists) { if (hasProperty) *hasProperty = true; return getValue(pd->value, attrs); } if (hasProperty) *hasProperty = false; return Encode::undefined(); } // Section 8.12.5 bool Object::internalPut(String *name, const Value &value) { ExecutionEngine *engine = this->engine(); if (engine->hasException) return false; uint idx = name->asArrayIndex(); if (idx != UINT_MAX) return putIndexed(idx, value); name->makeIdentifier(); Identifier *id = name->identifier(); MemberData::Index memberIndex{nullptr, nullptr}; uint member = internalClass()->find(id); PropertyAttributes attrs; if (member < UINT_MAX) { attrs = internalClass()->propertyData[member]; memberIndex = d()->writablePropertyData(attrs.isAccessor() ? member + SetterOffset : member); } // clause 1 if (!memberIndex.isNull()) { if (attrs.isAccessor()) { if (memberIndex->as()) goto cont; return false; } else if (!attrs.isWritable()) return false; else if (isArrayObject() && name->equals(engine->id_length())) { bool ok; uint l = value.asArrayLength(&ok); if (!ok) { engine->throwRangeError(value); return false; } ok = setArrayLength(l); if (!ok) return false; } else { memberIndex.set(engine, value); } return true; } else if (!prototype()) { if (!isExtensible()) return false; } else { // clause 4 Scope scope(engine); memberIndex = ScopedObject(scope, prototype())->getValueOrSetter(name, &attrs); if (!memberIndex.isNull()) { if (attrs.isAccessor()) { if (!memberIndex->as()) return false; } else if (!isExtensible() || !attrs.isWritable()) { return false; } } else if (!isExtensible()) { return false; } } cont: // Clause 5 if (!memberIndex.isNull() && attrs.isAccessor()) { Q_ASSERT(memberIndex->as()); Scope scope(engine); ScopedFunctionObject setter(scope, *memberIndex); JSCallData jsCallData(scope, 1); jsCallData->args[0] = value; *jsCallData->thisObject = this; setter->call(jsCallData); return !engine->hasException; } insertMember(name, value); return true; } bool Object::internalPutIndexed(uint index, const Value &value) { ExecutionEngine *engine = this->engine(); if (engine->hasException) return false; PropertyAttributes attrs; ArrayData::Index arrayIndex = arrayData() ? arrayData()->getValueOrSetter(index, &attrs) : ArrayData::Index{ nullptr, 0 }; if (arrayIndex.isNull() && isStringObject()) { if (index < static_cast(this)->length()) // not writable return false; } // clause 1 if (!arrayIndex.isNull()) { if (attrs.isAccessor()) { if (arrayIndex->as()) goto cont; return false; } else if (!attrs.isWritable()) return false; arrayIndex.set(engine, value); return true; } else if (!prototype()) { if (!isExtensible()) return false; } else { // clause 4 Scope scope(engine); arrayIndex = ScopedObject(scope, prototype())->getValueOrSetter(index, &attrs); if (!arrayIndex.isNull()) { if (attrs.isAccessor()) { if (!arrayIndex->as()) return false; } else if (!isExtensible() || !attrs.isWritable()) { return false; } } else if (!isExtensible()) { return false; } } cont: // Clause 5 if (!arrayIndex.isNull() && attrs.isAccessor()) { Q_ASSERT(arrayIndex->as()); Scope scope(engine); ScopedFunctionObject setter(scope, *arrayIndex); JSCallData jsCallData(scope, 1); jsCallData->args[0] = value; *jsCallData->thisObject = this; setter->call(jsCallData); return !engine->hasException; } arraySet(index, value); return true; } // Section 8.12.7 bool Object::internalDeleteProperty(String *name) { if (internalClass()->engine->hasException) return false; uint idx = name->asArrayIndex(); if (idx != UINT_MAX) return deleteIndexedProperty(idx); name->makeIdentifier(); uint memberIdx = internalClass()->find(name->identifier()); if (memberIdx != UINT_MAX) { if (internalClass()->propertyData[memberIdx].isConfigurable()) { InternalClass::removeMember(this, name->identifier()); return true; } return false; } return true; } bool Object::internalDeleteIndexedProperty(uint index) { Scope scope(engine()); if (scope.engine->hasException) return false; Scoped ad(scope, arrayData()); if (!ad || ad->vtable()->del(this, index)) return true; return false; } // Section 8.12.9 bool Object::__defineOwnProperty__(ExecutionEngine *engine, String *name, const Property *p, PropertyAttributes attrs) { uint idx = name->asArrayIndex(); if (idx != UINT_MAX) return __defineOwnProperty__(engine, idx, p, attrs); Scope scope(engine); name->makeIdentifier(); uint memberIndex; if (isArrayObject() && name->equals(engine->id_length())) { Q_ASSERT(Heap::ArrayObject::LengthPropertyIndex == internalClass()->find(engine->id_length())); ScopedProperty lp(scope); PropertyAttributes cattrs; getProperty(Heap::ArrayObject::LengthPropertyIndex, lp, &cattrs); if (attrs.isEmpty() || p->isSubset(attrs, lp, cattrs)) return true; if (!cattrs.isWritable() || attrs.type() == PropertyAttributes::Accessor || attrs.isConfigurable() || attrs.isEnumerable()) return false; bool succeeded = true; if (attrs.type() == PropertyAttributes::Data) { bool ok; uint l = p->value.asArrayLength(&ok); if (!ok) { ScopedValue v(scope, p->value); engine->throwRangeError(v); return false; } succeeded = setArrayLength(l); } if (attrs.hasWritable() && !attrs.isWritable()) { cattrs.setWritable(false); InternalClass::changeMember(this, engine->id_length(), cattrs); } if (!succeeded) return false; return true; } // Clause 1 memberIndex = internalClass()->find(name->identifier()); if (memberIndex == UINT_MAX) { // clause 3 if (!isExtensible()) return false; // clause 4 ScopedProperty pd(scope); pd->copy(p, attrs); pd->fullyPopulated(&attrs); insertMember(name, pd, attrs); return true; } return __defineOwnProperty__(engine, memberIndex, name, p, attrs); } bool Object::__defineOwnProperty__(ExecutionEngine *engine, uint index, const Property *p, PropertyAttributes attrs) { // 15.4.5.1, 4b if (isArrayObject() && index >= getLength() && !internalClass()->propertyData[Heap::ArrayObject::LengthPropertyIndex].isWritable()) return false; if (ArgumentsObject::isNonStrictArgumentsObject(this)) return static_cast(this)->defineOwnProperty(engine, index, p, attrs); return defineOwnProperty2(engine, index, p, attrs); } bool Object::defineOwnProperty2(ExecutionEngine *engine, uint index, const Property *p, PropertyAttributes attrs) { bool hasProperty = 0; // Clause 1 if (arrayData()) { hasProperty = arrayData()->mappedIndex(index) != UINT_MAX; if (!hasProperty && isStringObject()) hasProperty = (index < static_cast(this)->length()); } if (!hasProperty) { // clause 3 if (!isExtensible()) return false; // clause 4 Scope scope(engine); ScopedProperty pp(scope); pp->copy(p, attrs); pp->fullyPopulated(&attrs); if (attrs == Attr_Data) { ScopedValue v(scope, pp->value); arraySet(index, v); } else { arraySet(index, pp, attrs); } return true; } return __defineOwnProperty__(engine, index, nullptr, p, attrs); } bool Object::__defineOwnProperty__(ExecutionEngine *engine, uint index, String *member, const Property *p, PropertyAttributes attrs) { // clause 5 if (attrs.isEmpty()) return true; Scope scope(engine); ScopedProperty current(scope); PropertyAttributes cattrs; if (member) { getProperty(index, current, &cattrs); cattrs = internalClass()->propertyData[index]; } else if (arrayData()) { arrayData()->getProperty(index, current, &cattrs); cattrs = arrayData()->attributes(index); } // clause 6 if (p->isSubset(attrs, current, cattrs)) return true; // clause 7 if (!cattrs.isConfigurable()) { if (attrs.isConfigurable()) return false; if (attrs.hasEnumerable() && attrs.isEnumerable() != cattrs.isEnumerable()) return false; } // clause 8 if (attrs.isGeneric() || current->value.isEmpty()) goto accept; // clause 9 if (cattrs.isData() != attrs.isData()) { // 9a if (!cattrs.isConfigurable()) return false; if (cattrs.isData()) { // 9b cattrs.setType(PropertyAttributes::Accessor); cattrs.clearWritable(); if (!member) { // need to convert the array and the slot initSparseArray(); Q_ASSERT(arrayData()); setArrayAttributes(index, cattrs); } current->setGetter(nullptr); current->setSetter(nullptr); } else { // 9c cattrs.setType(PropertyAttributes::Data); cattrs.setWritable(false); if (!member) { // need to convert the array and the slot setArrayAttributes(index, cattrs); } current->value = Primitive::undefinedValue(); } } else if (cattrs.isData() && attrs.isData()) { // clause 10 if (!cattrs.isConfigurable() && !cattrs.isWritable()) { if (attrs.isWritable() || !current->value.sameValue(p->value)) return false; } } else { // clause 10 Q_ASSERT(cattrs.isAccessor() && attrs.isAccessor()); if (!cattrs.isConfigurable()) { if (!p->value.isEmpty() && current->value.rawValue() != p->value.rawValue()) return false; if (!p->set.isEmpty() && current->set.rawValue() != p->set.rawValue()) return false; } } accept: current->merge(cattrs, p, attrs); if (member) { InternalClass::changeMember(this, member, cattrs); setProperty(index, current); } else { setArrayAttributes(index, cattrs); arrayData()->setProperty(scope.engine, index, current); } return true; } bool Object::__defineOwnProperty__(ExecutionEngine *engine, const QString &name, const Property *p, PropertyAttributes attrs) { Scope scope(engine); ScopedString s(scope, engine->newString(name)); return __defineOwnProperty__(engine, s, p, attrs); } void Object::copyArrayData(Object *other) { Q_ASSERT(isArrayObject()); Scope scope(engine()); if (other->protoHasArray() || ArgumentsObject::isNonStrictArgumentsObject(other) || (other->arrayType() == Heap::ArrayData::Sparse && other->arrayData()->attrs)) { uint len = other->getLength(); Q_ASSERT(len); ScopedValue v(scope); for (uint i = 0; i < len; ++i) { arraySet(i, (v = other->getIndexed(i))); } } else if (!other->arrayData()) { ; } else { Q_ASSERT(!arrayData() && other->arrayData()); ArrayData::realloc(this, static_cast(other->d()->arrayData->type), other->d()->arrayData->values.alloc, false); if (other->arrayType() == Heap::ArrayData::Sparse) { Heap::ArrayData *od = other->d()->arrayData; Heap::ArrayData *dd = d()->arrayData; dd->sparse = new SparseArray(*od->sparse); } else { Heap::ArrayData *dd = d()->arrayData; dd->values.size = other->d()->arrayData->values.size; dd->offset = other->d()->arrayData->offset; } // ### need a write barrier memcpy(d()->arrayData->values.values, other->d()->arrayData->values.values, other->d()->arrayData->values.alloc*sizeof(Value)); } setArrayLengthUnchecked(other->getLength()); } uint Object::getLength(const Managed *m) { Scope scope(static_cast(m)->engine()); ScopedValue v(scope, static_cast(const_cast(m))->get(scope.engine->id_length())); return v->toUInt32(); } // 'var' is 'V' in 15.3.5.3. ReturnedValue Object::instanceOf(const Object *typeObject, const Value &var) { QV4::ExecutionEngine *engine = typeObject->internalClass()->engine; // 15.3.5.3, Assume F is a Function object. const FunctionObject *function = typeObject->as(); if (!function) return engine->throwTypeError(); Heap::FunctionObject *f = function->d(); if (function->isBoundFunction()) f = function->cast()->target(); // 15.3.5.3, 1: HasInstance can only be used on an object const Object *lhs = var.as(); if (!lhs) return Encode(false); // 15.3.5.3, 2 const Object *o = f->protoProperty(); if (!o) // 15.3.5.3, 3 return engine->throwTypeError(); Heap::Object *v = lhs->d(); // 15.3.5.3, 4 while (v) { // 15.3.5.3, 4, a v = v->prototype(); // 15.3.5.3, 4, b if (!v) break; // will return false // 15.3.5.3, 4, c else if (o->d() == v) return Encode(true); } return Encode(false); } bool Object::setArrayLength(uint newLen) { Q_ASSERT(isArrayObject()); if (!internalClass()->propertyData[Heap::ArrayObject::LengthPropertyIndex].isWritable()) return false; uint oldLen = getLength(); bool ok = true; if (newLen < oldLen) { if (arrayData()) { uint l = arrayData()->vtable()->truncate(this, newLen); if (l != newLen) ok = false; newLen = l; } } else { if (newLen >= 0x100000) initSparseArray(); } setArrayLengthUnchecked(newLen); return ok; } void Object::initSparseArray() { if (arrayType() == Heap::ArrayData::Sparse) return; ArrayData::realloc(this, Heap::ArrayData::Sparse, 0, false); } DEFINE_OBJECT_VTABLE(ArrayObject); void Heap::ArrayObject::init(const QStringList &list) { Object::init(); commonInit(); Scope scope(internalClass->engine); ScopedObject a(scope, this); // Converts a QStringList to JS. // The result is a new Array object with length equal to the length // of the QStringList, and the elements being the QStringList's // elements converted to JS Strings. int len = list.count(); a->arrayReserve(len); ScopedValue v(scope); for (int ii = 0; ii < len; ++ii) a->arrayPut(ii, (v = scope.engine->newString(list.at(ii)))); a->setArrayLengthUnchecked(len); } uint ArrayObject::getLength(const Managed *m) { const ArrayObject *a = static_cast(m); if (a->propertyData(Heap::ArrayObject::LengthPropertyIndex)->isInteger()) return a->propertyData(Heap::ArrayObject::LengthPropertyIndex)->integerValue(); return Primitive::toUInt32(a->propertyData(Heap::ArrayObject::LengthPropertyIndex)->doubleValue()); } QStringList ArrayObject::toQStringList() const { QStringList result; QV4::ExecutionEngine *engine = internalClass()->engine; Scope scope(engine); ScopedValue v(scope); uint length = getLength(); for (uint i = 0; i < length; ++i) { v = const_cast(this)->getIndexed(i); result.append(v->toQStringNoThrow()); } return result; }