/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** 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 Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include "qv4debugging_p.h" #include #include #include #include "qv4mm_p.h" #include #include "qv4function_p.h" #include "qv4errorobject_p.h" using namespace QV4; const ManagedVTable ExecutionContext::static_vtbl = { ExecutionContext::IsExecutionContext, ExecutionContext::IsString, ExecutionContext::IsObject, ExecutionContext::IsFunctionObject, ExecutionContext::IsErrorObject, 0, ExecutionContext::MyType, call, construct, markObjects, destroy, 0 /*collectDeletables*/, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, isEqualTo, 0, 0, "ExecutionContext", }; CallContext *ExecutionContext::newCallContext(FunctionObject *function, CallData *callData) { CallContext *c = static_cast(engine->memoryManager->allocManaged(requiredMemoryForExecutionContect(function, callData->argc))); new (c) CallContext(engine, Type_CallContext); c->function = function; c->realArgumentCount = callData->argc; c->strictMode = function->strictMode; c->outer = function->scope; c->activation = 0; if (function->function) { c->compilationUnit = function->function->compilationUnit; c->lookups = c->compilationUnit->runtimeLookups; } c->locals = (SafeValue *)(c + 1); if (function->varCount) std::fill(c->locals, c->locals + function->varCount, Primitive::undefinedValue()); c->callData = reinterpret_cast(c->locals + function->varCount); ::memcpy(c->callData, callData, sizeof(CallData) + (callData->argc - 1) * sizeof(SafeValue)); if (callData->argc < static_cast(function->formalParameterCount)) std::fill(c->callData->args + c->callData->argc, c->callData->args + function->formalParameterCount, Primitive::undefinedValue()); c->callData->argc = qMax((uint)callData->argc, function->formalParameterCount); return c; } WithContext *ExecutionContext::newWithContext(ObjectRef with) { WithContext *w = new (engine->memoryManager) WithContext(engine, with); return w; } CatchContext *ExecutionContext::newCatchContext(const StringRef exceptionVarName, const ValueRef exceptionValue) { CatchContext *c = new (engine->memoryManager) CatchContext(engine, exceptionVarName, exceptionValue); return c; } CallContext *ExecutionContext::newQmlContext(FunctionObject *f, ObjectRef qml) { CallContext *c = static_cast(engine->memoryManager->allocManaged(requiredMemoryForExecutionContect(f, 0))); new (c) CallContext(engine, qml, f); return c; } void ExecutionContext::createMutableBinding(const StringRef name, bool deletable) { Scope scope(this); // find the right context to create the binding on ScopedObject activation(scope, engine->globalObject); ExecutionContext *ctx = this; while (ctx) { if (ctx->type >= Type_CallContext) { CallContext *c = static_cast(ctx); if (!c->activation) c->activation = engine->newObject()->getPointer(); activation = c->activation; break; } ctx = ctx->outer; } if (activation->hasProperty(name)) return; Property desc = Property::fromValue(Primitive::undefinedValue()); PropertyAttributes attrs(Attr_Data); attrs.setConfigurable(deletable); activation->__defineOwnProperty__(this, name, desc, attrs); } String * const *ExecutionContext::formals() const { if (type < Type_SimpleCallContext) return 0; QV4::FunctionObject *f = static_cast(this)->function; return (f && f->function) ? f->function->internalClass->nameMap.constData() : 0; } unsigned int ExecutionContext::formalCount() const { if (type < Type_SimpleCallContext) return 0; QV4::FunctionObject *f = static_cast(this)->function; return f ? f->formalParameterCount : 0; } String * const *ExecutionContext::variables() const { if (type < Type_SimpleCallContext) return 0; QV4::FunctionObject *f = static_cast(this)->function; return (f && f->function) ? f->function->internalClass->nameMap.constData() + f->function->nArguments : 0; } unsigned int ExecutionContext::variableCount() const { if (type < Type_SimpleCallContext) return 0; QV4::FunctionObject *f = static_cast(this)->function; return f ? f->varCount : 0; } GlobalContext::GlobalContext(ExecutionEngine *eng) : ExecutionContext(eng, Type_GlobalContext) { global = eng->globalObject; } WithContext::WithContext(ExecutionEngine *engine, ObjectRef with) : ExecutionContext(engine, Type_WithContext) { callData = parent->callData; outer = parent; lookups = parent->lookups; compilationUnit = parent->compilationUnit; withObject = with.getPointer(); } CatchContext::CatchContext(ExecutionEngine *engine, const StringRef exceptionVarName, const ValueRef exceptionValue) : ExecutionContext(engine, Type_CatchContext) { strictMode = parent->strictMode; callData = parent->callData; outer = parent; lookups = parent->lookups; compilationUnit = parent->compilationUnit; this->exceptionVarName = exceptionVarName; this->exceptionValue = exceptionValue; } CallContext::CallContext(ExecutionEngine *engine, ObjectRef qml, FunctionObject *function) : ExecutionContext(engine, Type_QmlContext) { this->function = function; callData = reinterpret_cast(this + 1); callData->tag = QV4::Value::_Integer_Type; callData->argc = 0; callData->thisObject = Primitive::undefinedValue(); strictMode = true; outer = function->scope; activation = qml.getPointer(); if (function->function) { compilationUnit = function->function->compilationUnit; lookups = compilationUnit->runtimeLookups; } locals = (SafeValue *)(this + 1); if (function->varCount) std::fill(locals, locals + function->varCount, Primitive::undefinedValue()); } bool ExecutionContext::deleteProperty(const StringRef name) { Scope scope(this); bool hasWith = false; for (ExecutionContext *ctx = this; ctx; ctx = ctx->outer) { if (ctx->type == Type_WithContext) { hasWith = true; WithContext *w = static_cast(ctx); if (w->withObject->hasProperty(name)) return w->withObject->deleteProperty(name); } else if (ctx->type == Type_CatchContext) { CatchContext *c = static_cast(ctx); if (c->exceptionVarName->isEqualTo(name)) return false; } else if (ctx->type >= Type_CallContext) { CallContext *c = static_cast(ctx); FunctionObject *f = c->function; if (f->needsActivation || hasWith) { uint index = f->function->internalClass->find(name); if (index < UINT_MAX) // ### throw in strict mode? return false; } if (c->activation && c->activation->hasProperty(name)) return c->activation->deleteProperty(name); } else if (ctx->type == Type_GlobalContext) { GlobalContext *g = static_cast(ctx); if (g->global->hasProperty(name)) return g->global->deleteProperty(name); } } if (strictMode) throwSyntaxError(QStringLiteral("Can't delete property %1").arg(name->toQString())); return true; } bool CallContext::needsOwnArguments() const { return function->needsActivation || callData->argc < static_cast(function->formalParameterCount); } void ExecutionContext::markObjects(Managed *m, ExecutionEngine *engine) { ExecutionContext *ctx = static_cast(m); if (ctx->outer) ctx->outer->mark(engine); // ### shouldn't need these 3 lines ctx->callData->thisObject.mark(engine); for (int arg = 0; arg < ctx->callData->argc; ++arg) ctx->callData->args[arg].mark(engine); if (ctx->type >= Type_CallContext) { QV4::CallContext *c = static_cast(ctx); for (unsigned local = 0, lastLocal = c->variableCount(); local < lastLocal; ++local) c->locals[local].mark(engine); if (c->activation) c->activation->mark(engine); c->function->mark(engine); } else if (ctx->type == Type_WithContext) { WithContext *w = static_cast(ctx); w->withObject->mark(engine); } else if (ctx->type == Type_CatchContext) { CatchContext *c = static_cast(ctx); c->exceptionVarName->mark(engine); c->exceptionValue.mark(engine); } else if (ctx->type == Type_GlobalContext) { GlobalContext *g = static_cast(ctx); g->global->mark(engine); } } void ExecutionContext::setProperty(const StringRef name, const ValueRef value) { Scope scope(this); for (ExecutionContext *ctx = this; ctx; ctx = ctx->outer) { if (ctx->type == Type_WithContext) { ScopedObject w(scope, static_cast(ctx)->withObject); if (w->hasProperty(name)) { w->put(name, value); return; } } else if (ctx->type == Type_CatchContext && static_cast(ctx)->exceptionVarName->isEqualTo(name)) { static_cast(ctx)->exceptionValue = *value; return; } else { ScopedObject activation(scope, (Object *)0); if (ctx->type >= Type_CallContext) { CallContext *c = static_cast(ctx); if (c->function->function) { uint index = c->function->function->internalClass->find(name); if (index < UINT_MAX) { if (index < c->function->formalParameterCount) { c->callData->args[c->function->formalParameterCount - index - 1] = *value; } else { index -= c->function->formalParameterCount; c->locals[index] = *value; } return; } } activation = c->activation; } else if (ctx->type == Type_GlobalContext) { activation = static_cast(ctx)->global; } if (activation) { if (ctx->type == Type_QmlContext || activation->hasOwnProperty(name)) { activation->put(name, value); return; } } } } if (strictMode || name->equals(engine->id_this)) { ScopedValue n(scope, name.asReturnedValue()); throwReferenceError(n); return; } engine->globalObject->put(name, value); } ReturnedValue ExecutionContext::getProperty(const StringRef name) { Scope scope(this); ScopedValue v(scope); name->makeIdentifier(); if (name->equals(engine->id_this)) return callData->thisObject.asReturnedValue(); bool hasWith = false; bool hasCatchScope = false; for (ExecutionContext *ctx = this; ctx; ctx = ctx->outer) { if (ctx->type == Type_WithContext) { ScopedObject w(scope, static_cast(ctx)->withObject); hasWith = true; bool hasProperty = false; v = w->get(name, &hasProperty); if (hasProperty) { return v.asReturnedValue(); } continue; } else if (ctx->type == Type_CatchContext) { hasCatchScope = true; CatchContext *c = static_cast(ctx); if (c->exceptionVarName->isEqualTo(name)) return c->exceptionValue.asReturnedValue(); } else if (ctx->type >= Type_CallContext) { QV4::CallContext *c = static_cast(ctx); ScopedFunctionObject f(scope, c->function); if (f->function && (f->needsActivation || hasWith || hasCatchScope)) { uint index = f->function->internalClass->find(name); if (index < UINT_MAX) { if (index < c->function->formalParameterCount) return c->callData->args[c->function->formalParameterCount - index - 1].asReturnedValue(); return c->locals[index - c->function->formalParameterCount].asReturnedValue(); } } if (c->activation) { bool hasProperty = false; v = c->activation->get(name, &hasProperty); if (hasProperty) return v.asReturnedValue(); } if (f->function && f->function->isNamedExpression() && name->equals(f->function->name)) return f.asReturnedValue(); } else if (ctx->type == Type_GlobalContext) { GlobalContext *g = static_cast(ctx); bool hasProperty = false; v = g->global->get(name, &hasProperty); if (hasProperty) return v.asReturnedValue(); } } ScopedValue n(scope, name.asReturnedValue()); return throwReferenceError(n); } ReturnedValue ExecutionContext::getPropertyAndBase(const StringRef name, ObjectRef base) { Scope scope(this); ScopedValue v(scope); base = (Object *)0; name->makeIdentifier(); if (name->equals(engine->id_this)) return callData->thisObject.asReturnedValue(); bool hasWith = false; bool hasCatchScope = false; for (ExecutionContext *ctx = this; ctx; ctx = ctx->outer) { if (ctx->type == Type_WithContext) { Object *w = static_cast(ctx)->withObject; hasWith = true; bool hasProperty = false; v = w->get(name, &hasProperty); if (hasProperty) { base = w; return v.asReturnedValue(); } continue; } else if (ctx->type == Type_CatchContext) { hasCatchScope = true; CatchContext *c = static_cast(ctx); if (c->exceptionVarName->isEqualTo(name)) return c->exceptionValue.asReturnedValue(); } else if (ctx->type >= Type_CallContext) { QV4::CallContext *c = static_cast(ctx); FunctionObject *f = c->function; if (f->function && (f->needsActivation || hasWith || hasCatchScope)) { uint index = f->function->internalClass->find(name); if (index < UINT_MAX) { if (index < c->function->formalParameterCount) return c->callData->args[c->function->formalParameterCount - index - 1].asReturnedValue(); return c->locals[index - c->function->formalParameterCount].asReturnedValue(); } } if (c->activation) { bool hasProperty = false; v = c->activation->get(name, &hasProperty); if (hasProperty) { if (ctx->type == Type_QmlContext) base = c->activation; return v.asReturnedValue(); } } if (f->function && f->function->isNamedExpression() && name->equals(f->function->name)) return c->function->asReturnedValue(); } else if (ctx->type == Type_GlobalContext) { GlobalContext *g = static_cast(ctx); bool hasProperty = false; v = g->global->get(name, &hasProperty); if (hasProperty) return v.asReturnedValue(); } } ScopedValue n(scope, name.asReturnedValue()); return throwReferenceError(n); } ReturnedValue ExecutionContext::throwError(const ValueRef value) { return engine->throwException(value); } ReturnedValue ExecutionContext::throwError(const QString &message) { Scope scope(this); ScopedValue v(scope, engine->newString(message)); v = engine->newErrorObject(v); return throwError(v); } ReturnedValue ExecutionContext::throwSyntaxError(const QString &message, const QString &fileName, int line, int column) { Scope scope(this); Scoped error(scope, engine->newSyntaxErrorObject(message, fileName, line, column)); return throwError(error); } ReturnedValue ExecutionContext::throwSyntaxError(const QString &message) { Scope scope(this); Scoped error(scope, engine->newSyntaxErrorObject(message)); return throwError(error); } ReturnedValue ExecutionContext::throwTypeError() { Scope scope(this); Scoped error(scope, engine->newTypeErrorObject(QStringLiteral("Type error"))); return throwError(error); } ReturnedValue ExecutionContext::throwTypeError(const QString &message) { Scope scope(this); Scoped error(scope, engine->newTypeErrorObject(message)); return throwError(error); } ReturnedValue ExecutionContext::throwUnimplemented(const QString &message) { Scope scope(this); ScopedValue v(scope, engine->newString(QStringLiteral("Unimplemented ") + message)); v = engine->newErrorObject(v); return throwError(v); } ReturnedValue ExecutionContext::catchException(StackTrace *trace) { return engine->catchException(this, trace); } ReturnedValue ExecutionContext::throwReferenceError(const ValueRef value) { Scope scope(this); Scoped s(scope, value->toString(this)); QString msg = s->toQString() + QStringLiteral(" is not defined"); Scoped error(scope, engine->newReferenceErrorObject(msg)); return throwError(error); } ReturnedValue ExecutionContext::throwReferenceError(const QString &message, const QString &fileName, int line, int column) { Scope scope(this); QString msg = message; Scoped error(scope, engine->newReferenceErrorObject(msg, fileName, line, column)); return throwError(error); } ReturnedValue ExecutionContext::throwRangeError(const ValueRef value) { Scope scope(this); ScopedString s(scope, value->toString(this)); QString msg = s->toQString() + QStringLiteral(" out of range"); ScopedObject error(scope, engine->newRangeErrorObject(msg)); return throwError(error); } ReturnedValue ExecutionContext::throwRangeError(const QString &message) { Scope scope(this); ScopedObject error(scope, engine->newRangeErrorObject(message)); return throwError(error); } ReturnedValue ExecutionContext::throwURIError(const ValueRef msg) { Scope scope(this); ScopedObject error(scope, engine->newURIErrorObject(msg)); return throwError(error); }