/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the QtScript 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 "config.h" #include "qscriptstaticscopeobject_p.h" namespace JSC { ASSERT_CLASS_FITS_IN_CELL(QT_PREPEND_NAMESPACE(QScriptStaticScopeObject)); } QT_BEGIN_NAMESPACE /*! \class QScriptStaticScopeObject \internal Represents a static scope object. This class allows the VM to determine at JS script compile time whether the object has a given property or not. If the object has the property, a fast, index-based read/write operation will be used. If the object doesn't have the property, the compiler knows it can safely skip this object when dynamically resolving the property. Either way, this can greatly improve performance. \sa QScriptContext::pushScope() */ const JSC::ClassInfo QScriptStaticScopeObject::info = { "QScriptStaticScopeObject", 0, 0, 0 }; /*! Creates a static scope object with a fixed set of undeletable properties. It's not possible to add new properties to the object after construction. */ QScriptStaticScopeObject::QScriptStaticScopeObject(WTF::NonNullPassRefPtr structure, int propertyCount, const PropertyInfo* props) : JSC::JSVariableObject(structure, new Data(/*canGrow=*/false)) { int index = growRegisterArray(propertyCount); for (int i = 0; i < propertyCount; ++i, --index) { const PropertyInfo& prop = props[i]; JSC::SymbolTableEntry entry(index, prop.attributes); symbolTable().add(prop.identifier.ustring().rep(), entry); registerAt(index) = prop.value; } } /*! Creates an empty static scope object. Properties can be added to the object after construction, either by calling QScriptValue::setProperty(), or by pushing the object on the scope chain; variable declarations ("var" statements) and function declarations in JavaScript will create properties on the scope object. Note that once the scope object has been used in a closure and the resulting function has been compiled, it's no longer safe to add properties to the scope object (because the VM will bypass this object the next time the function is executed). */ QScriptStaticScopeObject::QScriptStaticScopeObject(WTF::NonNullPassRefPtr structure) : JSC::JSVariableObject(structure, new Data(/*canGrow=*/true)) { } QScriptStaticScopeObject::~QScriptStaticScopeObject() { delete d_ptr(); } bool QScriptStaticScopeObject::getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot& slot) { return symbolTableGet(propertyName, slot); } bool QScriptStaticScopeObject::getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor& descriptor) { return symbolTableGet(propertyName, descriptor); } void QScriptStaticScopeObject::putWithAttributes(JSC::ExecState* exec, const JSC::Identifier &propertyName, JSC::JSValue value, unsigned attributes) { if (symbolTablePutWithAttributes(propertyName, value, attributes)) return; Q_ASSERT(d_ptr()->canGrow); addSymbolTableProperty(propertyName, value, attributes); } void QScriptStaticScopeObject::put(JSC::ExecState* exec, const JSC::Identifier& propertyName, JSC::JSValue value, JSC::PutPropertySlot&) { if (symbolTablePut(propertyName, value)) return; Q_ASSERT(d_ptr()->canGrow); addSymbolTableProperty(propertyName, value, /*attributes=*/0); } bool QScriptStaticScopeObject::deleteProperty(JSC::ExecState*, const JSC::Identifier&) { return false; } void QScriptStaticScopeObject::markChildren(JSC::MarkStack& markStack) { JSC::Register* registerArray = d_ptr()->registerArray.get(); if (!registerArray) return; markStack.appendValues(reinterpret_cast(registerArray), d_ptr()->registerArraySize); } void QScriptStaticScopeObject::addSymbolTableProperty(const JSC::Identifier& name, JSC::JSValue value, unsigned attributes) { int index = growRegisterArray(1); JSC::SymbolTableEntry newEntry(index, attributes | JSC::DontDelete); symbolTable().add(name.ustring().rep(), newEntry); registerAt(index) = value; } /*! Grows the register array by \a count elements, and returns the offset of the newly added elements (note that the register file grows downwards, starting at index -1). */ int QScriptStaticScopeObject::growRegisterArray(int count) { size_t oldSize = d_ptr()->registerArraySize; size_t newSize = oldSize + count; JSC::Register* registerArray = new JSC::Register[newSize]; if (d_ptr()->registerArray) memcpy(registerArray + count, d_ptr()->registerArray.get(), oldSize * sizeof(JSC::Register)); setRegisters(registerArray + newSize, registerArray); d_ptr()->registerArraySize = newSize; return -oldSize - 1; } QT_END_NAMESPACE