qtdeclarative/src/qml/jsruntime/qv4runtime.cpp

1323 lines
42 KiB
C++
Raw Normal View History

/****************************************************************************
**
** 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 "qv4global_p.h"
#include "qv4runtime_p.h"
#include "qv4object_p.h"
#include "qv4jsir_p.h"
#include "qv4objectproto_p.h"
#include "qv4globalobject_p.h"
#include "qv4stringobject_p.h"
#include "qv4argumentsobject_p.h"
#include "qv4lookup_p.h"
#include "qv4function_p.h"
#include "qv4exception_p.h"
#include "private/qlocale_tools_p.h"
#include "qv4scopedvalue_p.h"
2012-05-18 13:28:59 +00:00
#include <QtCore/qmath.h>
#include <QtCore/qnumeric.h>
2012-05-07 14:05:05 +00:00
#include <QtCore/QDebug>
2012-04-16 19:23:25 +00:00
#include <cstdio>
#include <cassert>
2012-05-18 13:28:59 +00:00
#include <typeinfo>
#include <stdlib.h>
2012-04-16 19:23:25 +00:00
#include "../../../3rdparty/double-conversion/double-conversion.h"
QT_BEGIN_NAMESPACE
namespace QV4 {
2012-05-04 13:28:04 +00:00
#ifdef QV4_COUNT_RUNTIME_FUNCTIONS
struct RuntimeCounters::Data {
enum Type {
None = 0,
Undefined = 1,
Null = 2,
Boolean = 3,
Integer = 4,
Managed = 5,
Double = 7
};
static const char *pretty(Type t) {
switch (t) {
case None: return "";
case Undefined: return "Undefined";
case Null: return "Null";
case Boolean: return "Boolean";
case Integer: return "Integer";
case Managed: return "Managed";
case Double: return "Double";
default: return "Unknown";
}
}
static unsigned mangle(unsigned tag) {
switch (tag) {
case Value::Undefined_Type: return Undefined;
case Value::Null_Type: return Null;
case Value::Boolean_Type: return Boolean;
case Value::Integer_Type: return Integer;
case Value::Managed_Type: return Managed;
default: return Double;
}
}
static unsigned mangle(unsigned tag1, unsigned tag2) {
return (mangle(tag1) << 3) | mangle(tag2);
}
static void unmangle(unsigned signature, Type &tag1, Type &tag2) {
tag1 = Type((signature >> 3) & 7);
tag2 = Type(signature & 7);
}
typedef QVector<quint64> Counters;
QHash<const char *, Counters> counters;
inline void count(const char *func, unsigned tag) {
QVector<quint64> &cnt = counters[func];
if (cnt.isEmpty())
cnt.resize(64);
cnt[mangle(tag)] += 1;
}
inline void count(const char *func, unsigned tag1, unsigned tag2) {
QVector<quint64> &cnt = counters[func];
if (cnt.isEmpty())
cnt.resize(64);
cnt[mangle(tag1, tag2)] += 1;
}
struct Line {
const char *func;
Type tag1, tag2;
quint64 count;
static bool less(const Line &line1, const Line &line2) {
return line1.count > line2.count;
}
};
void dump() const {
QList<Line> lines;
foreach (const char *func, counters.keys()) {
const Counters &fCount = counters[func];
for (int i = 0, ei = fCount.size(); i != ei; ++i) {
quint64 count = fCount[i];
if (!count)
continue;
Line line;
line.func = func;
unmangle(i, line.tag1, line.tag2);
line.count = count;
lines.append(line);
}
}
qSort(lines.begin(), lines.end(), Line::less);
qDebug() << "Counters:";
foreach (const Line &line, lines)
qDebug("%10ld | %s | %s | %s", line.count, line.func, pretty(line.tag1), pretty(line.tag2));
}
};
RuntimeCounters *RuntimeCounters::instance = 0;
static RuntimeCounters runtimeCountersInstance;
RuntimeCounters::RuntimeCounters()
: d(new Data)
{
if (!instance)
instance = this;
}
RuntimeCounters::~RuntimeCounters()
{
d->dump();
}
void RuntimeCounters::count(const char *func, uint tag)
{
d->count(func, tag);
}
void RuntimeCounters::count(const char *func, uint tag1, uint tag2)
{
d->count(func, tag1, tag2);
}
#endif // QV4_COUNT_RUNTIME_FUNCTIONS
void __qmljs_numberToString(QString *result, double num, int radix)
2012-05-18 13:28:59 +00:00
{
Q_ASSERT(result);
if (std::isnan(num)) {
*result = QStringLiteral("NaN");
return;
2012-05-18 13:28:59 +00:00
} else if (qIsInf(num)) {
*result = QLatin1String(num < 0 ? "-Infinity" : "Infinity");
return;
2012-05-18 13:28:59 +00:00
}
if (radix == 10) {
char str[100];
double_conversion::StringBuilder builder(str, sizeof(str));
double_conversion::DoubleToStringConverter::EcmaScriptConverter().ToShortest(num, &builder);
*result = QString::fromLatin1(builder.Finalize());
return;
}
2012-05-18 13:28:59 +00:00
result->clear();
2012-05-18 13:28:59 +00:00
bool negative = false;
if (num < 0) {
negative = true;
num = -num;
}
double frac = num - ::floor(num);
num = Value::toInteger(num);
do {
char c = (char)::fmod(num, radix);
c = (c < 10) ? (c + '0') : (c - 10 + 'a');
result->prepend(QLatin1Char(c));
2012-05-18 13:28:59 +00:00
num = ::floor(num / radix);
} while (num != 0);
if (frac != 0) {
result->append(QLatin1Char('.'));
2012-05-18 13:28:59 +00:00
do {
frac = frac * radix;
char c = (char)::floor(frac);
c = (c < 10) ? (c + '0') : (c - 10 + 'a');
result->append(QLatin1Char(c));
2012-05-18 13:28:59 +00:00
frac = frac - ::floor(frac);
} while (frac != 0);
}
if (negative)
result->prepend(QLatin1Char('-'));
2012-05-18 13:28:59 +00:00
}
ReturnedValue __qmljs_init_closure(ExecutionContext *ctx, int functionId)
{
QV4::Function *clos = ctx->compilationUnit->runtimeFunctions[functionId];
Q_ASSERT(clos);
FunctionObject *f = FunctionObject::creatScriptFunction(ctx, clos);
return f->asReturnedValue();
}
ReturnedValue __qmljs_delete_subscript(ExecutionContext *ctx, const ValueRef base, const ValueRef index)
2012-06-07 12:28:42 +00:00
{
Scope scope(ctx);
ScopedObject o(scope, base);
if (o) {
uint n = index->asArrayIndex();
if (n < UINT_MAX) {
return Primitive::fromBoolean(o->deleteIndexedProperty(n)).asReturnedValue();
}
2012-06-07 12:28:42 +00:00
}
ScopedString name(scope, index->toString(ctx));
return __qmljs_delete_member(ctx, base, name);
2012-06-07 12:28:42 +00:00
}
ReturnedValue __qmljs_delete_member(ExecutionContext *ctx, const ValueRef base, const StringRef name)
2012-06-07 12:28:42 +00:00
{
Scope scope(ctx);
ScopedObject obj(scope, base->toObject(ctx));
return Encode(obj->deleteProperty(name));
2012-06-07 12:28:42 +00:00
}
ReturnedValue __qmljs_delete_name(ExecutionContext *ctx, const StringRef name)
2012-06-07 12:28:42 +00:00
{
Scope scope(ctx);
return Encode(ctx->deleteProperty(name));
2012-04-16 19:23:25 +00:00
}
QV4::ReturnedValue __qmljs_add_helper(ExecutionContext *ctx, const ValueRef left, const ValueRef right)
2012-06-06 08:58:49 +00:00
{
Scope scope(ctx);
ScopedValue pleft(scope, __qmljs_to_primitive(left, PREFERREDTYPE_HINT));
ScopedValue pright(scope, __qmljs_to_primitive(right, PREFERREDTYPE_HINT));
if (pleft->isString() || pright->isString()) {
if (!pleft->isString())
pleft = __qmljs_to_string(pleft, ctx);
if (!pright->isString())
pright = __qmljs_to_string(pright, ctx);
return __qmljs_string_concat(ctx, pleft->stringValue(), pright->stringValue())->asReturnedValue();
2012-06-06 08:58:49 +00:00
}
double x = __qmljs_to_number(pleft);
double y = __qmljs_to_number(pright);
return Primitive::fromDouble(x + y).asReturnedValue();
2012-06-06 08:58:49 +00:00
}
QV4::ReturnedValue __qmljs_instanceof(ExecutionContext *ctx, const ValueRef left, const ValueRef right)
2012-04-16 19:23:25 +00:00
{
Object *o = right->asObject();
if (!o)
ctx->throwTypeError();
2012-04-16 19:23:25 +00:00
bool r = o->hasInstance(left);
return Primitive::fromBoolean(r).asReturnedValue();
2012-04-16 19:23:25 +00:00
}
QV4::ReturnedValue __qmljs_in(ExecutionContext *ctx, const ValueRef left, const ValueRef right)
2012-04-16 19:23:25 +00:00
{
if (!right->isObject())
ctx->throwTypeError();
Scope scope(ctx);
ScopedString s(scope, left->toString(ctx));
bool r = right->objectValue()->__hasProperty__(s);
return Primitive::fromBoolean(r).asReturnedValue();
2012-04-16 19:23:25 +00:00
}
static void inplaceBitOp(ExecutionContext *ctx, const StringRef name, const ValueRef value, BinOp op)
{
Scope scope(ctx);
ScopedValue lhs(scope, ctx->getProperty(name));
ScopedValue result(scope, op(lhs, value));
ctx->setProperty(name, result);
}
void __qmljs_inplace_bit_and_name(ExecutionContext *ctx, const StringRef name, const ValueRef value)
{
inplaceBitOp(ctx, name, value, __qmljs_bit_and);
}
void __qmljs_inplace_bit_or_name(ExecutionContext *ctx, const StringRef name, const ValueRef value)
{
inplaceBitOp(ctx, name, value, __qmljs_bit_or);
}
void __qmljs_inplace_bit_xor_name(ExecutionContext *ctx, const StringRef name, const ValueRef value)
{
inplaceBitOp(ctx, name, value, __qmljs_bit_xor);
}
void __qmljs_inplace_add_name(ExecutionContext *ctx, const StringRef name, const ValueRef value)
{
Scope scope(ctx);
ScopedValue lhs(scope, ctx->getProperty(name));
ScopedValue result(scope, __qmljs_add(ctx, lhs, value));
ctx->setProperty(name, result);
}
void __qmljs_inplace_sub_name(ExecutionContext *ctx, const StringRef name, const ValueRef value)
{
inplaceBitOp(ctx, name, value, __qmljs_sub);
}
void __qmljs_inplace_mul_name(ExecutionContext *ctx, const StringRef name, const ValueRef value)
{
inplaceBitOp(ctx, name, value, __qmljs_mul);
}
void __qmljs_inplace_div_name(ExecutionContext *ctx, const StringRef name, const ValueRef value)
{
inplaceBitOp(ctx, name, value, __qmljs_div);
}
void __qmljs_inplace_mod_name(ExecutionContext *ctx, const StringRef name, const ValueRef value)
{
inplaceBitOp(ctx, name, value, __qmljs_mod);
}
void __qmljs_inplace_shl_name(ExecutionContext *ctx, const StringRef name, const ValueRef value)
{
inplaceBitOp(ctx, name, value, __qmljs_shl);
}
void __qmljs_inplace_shr_name(ExecutionContext *ctx, const StringRef name, const ValueRef value)
{
inplaceBitOp(ctx, name, value, __qmljs_shr);
}
void __qmljs_inplace_ushr_name(ExecutionContext *ctx, const StringRef name, const ValueRef value)
{
inplaceBitOp(ctx, name, value, __qmljs_ushr);
}
void __qmljs_inplace_bit_and_element(ExecutionContext *ctx, const ValueRef base, const ValueRef index, const ValueRef rhs)
{
Object *obj = base->toObject(ctx);
obj->inplaceBinOpValue(ctx, __qmljs_bit_and, index, rhs);
}
void __qmljs_inplace_bit_or_element(ExecutionContext *ctx, const ValueRef base, const ValueRef index, const ValueRef rhs)
{
Object *obj = base->toObject(ctx);
obj->inplaceBinOpValue(ctx, __qmljs_bit_or, index, rhs);
}
void __qmljs_inplace_bit_xor_element(ExecutionContext *ctx, const ValueRef base, const ValueRef index, const ValueRef rhs)
{
Object *obj = base->toObject(ctx);
obj->inplaceBinOpValue(ctx, __qmljs_bit_xor, index, rhs);
}
void __qmljs_inplace_add_element(ExecutionContext *ctx, const ValueRef base, const ValueRef index, const ValueRef rhs)
{
Object *obj = base->toObject(ctx);
obj->inplaceBinOpValue(ctx, __qmljs_add, index, rhs);
}
void __qmljs_inplace_sub_element(ExecutionContext *ctx, const ValueRef base, const ValueRef index, const ValueRef rhs)
{
Object *obj = base->toObject(ctx);
obj->inplaceBinOpValue(ctx, __qmljs_sub, index, rhs);
}
void __qmljs_inplace_mul_element(ExecutionContext *ctx, const ValueRef base, const ValueRef index, const ValueRef rhs)
{
Object *obj = base->toObject(ctx);
obj->inplaceBinOpValue(ctx, __qmljs_mul, index, rhs);
}
void __qmljs_inplace_div_element(ExecutionContext *ctx, const ValueRef base, const ValueRef index, const ValueRef rhs)
{
Object *obj = base->toObject(ctx);
obj->inplaceBinOpValue(ctx, __qmljs_div, index, rhs);
}
void __qmljs_inplace_mod_element(ExecutionContext *ctx, const ValueRef base, const ValueRef index, const ValueRef rhs)
{
Object *obj = base->toObject(ctx);
obj->inplaceBinOpValue(ctx, __qmljs_mod, index, rhs);
}
void __qmljs_inplace_shl_element(ExecutionContext *ctx, const ValueRef base, const ValueRef index, const ValueRef rhs)
{
Object *obj = base->toObject(ctx);
obj->inplaceBinOpValue(ctx, __qmljs_shl, index, rhs);
}
void __qmljs_inplace_shr_element(ExecutionContext *ctx, const ValueRef base, const ValueRef index, const ValueRef rhs)
{
Object *obj = base->toObject(ctx);
obj->inplaceBinOpValue(ctx, __qmljs_shr, index, rhs);
}
void __qmljs_inplace_ushr_element(ExecutionContext *ctx, const ValueRef base, const ValueRef index, const ValueRef rhs)
{
Object *obj = base->toObject(ctx);
obj->inplaceBinOpValue(ctx, __qmljs_ushr, index, rhs);
}
void __qmljs_inplace_bit_and_member(ExecutionContext *ctx, const ValueRef base, const StringRef name, const ValueRef rhs)
{
Scope scope(ctx);
ScopedObject o(scope, base->toObject(ctx));
o->inplaceBinOp(ctx, __qmljs_bit_and, name, rhs);
}
void __qmljs_inplace_bit_or_member(ExecutionContext *ctx, const ValueRef base, const StringRef name, const ValueRef rhs)
{
Scope scope(ctx);
ScopedObject o(scope, base->toObject(ctx));
o->inplaceBinOp(ctx, __qmljs_bit_or, name, rhs);
}
void __qmljs_inplace_bit_xor_member(ExecutionContext *ctx, const ValueRef base, const StringRef name, const ValueRef rhs)
{
Scope scope(ctx);
ScopedObject o(scope, base->toObject(ctx));
o->inplaceBinOp(ctx, __qmljs_bit_xor, name, rhs);
}
void __qmljs_inplace_add_member(ExecutionContext *ctx, const ValueRef base, const StringRef name, const ValueRef rhs)
{
Scope scope(ctx);
ScopedObject o(scope, base->toObject(ctx));
o->inplaceBinOp(ctx, __qmljs_add, name, rhs);
}
void __qmljs_inplace_sub_member(ExecutionContext *ctx, const ValueRef base, const StringRef name, const ValueRef rhs)
{
Scope scope(ctx);
ScopedObject o(scope, base->toObject(ctx));
o->inplaceBinOp(ctx, __qmljs_sub, name, rhs);
}
void __qmljs_inplace_mul_member(ExecutionContext *ctx, const ValueRef base, const StringRef name, const ValueRef rhs)
{
Scope scope(ctx);
ScopedObject o(scope, base->toObject(ctx));
o->inplaceBinOp(ctx, __qmljs_mul, name, rhs);
}
void __qmljs_inplace_div_member(ExecutionContext *ctx, const ValueRef base, const StringRef name, const ValueRef rhs)
{
Scope scope(ctx);
ScopedObject o(scope, base->toObject(ctx));
o->inplaceBinOp(ctx, __qmljs_div, name, rhs);
}
void __qmljs_inplace_mod_member(ExecutionContext *ctx, const ValueRef base, const StringRef name, const ValueRef rhs)
{
Scope scope(ctx);
ScopedObject o(scope, base->toObject(ctx));
o->inplaceBinOp(ctx, __qmljs_mod, name, rhs);
}
void __qmljs_inplace_shl_member(ExecutionContext *ctx, const ValueRef base, const StringRef name, const ValueRef rhs)
{
Scope scope(ctx);
ScopedObject o(scope, base->toObject(ctx));
o->inplaceBinOp(ctx, __qmljs_shl, name, rhs);
}
void __qmljs_inplace_shr_member(ExecutionContext *ctx, const ValueRef base, const StringRef name, const ValueRef rhs)
{
Scope scope(ctx);
ScopedObject o(scope, base->toObject(ctx));
o->inplaceBinOp(ctx, __qmljs_shr, name, rhs);
}
void __qmljs_inplace_ushr_member(ExecutionContext *ctx, const ValueRef base, const StringRef name, const ValueRef rhs)
{
Scope scope(ctx);
ScopedObject o(scope, base->toObject(ctx));
o->inplaceBinOp(ctx, __qmljs_ushr, name, rhs);
}
double __qmljs_string_to_number(const QString &string)
2012-04-16 19:23:25 +00:00
{
QString s = string.trimmed();
if (s.startsWith(QLatin1String("0x")) || s.startsWith(QLatin1String("0X")))
return s.toLong(0, 16);
bool ok;
QByteArray ba = s.toLatin1();
const char *begin = ba.constData();
const char *end = 0;
double d = qstrtod(begin, &end, &ok);
if (end - begin != ba.size()) {
if (ba == "Infinity" || ba == "+Infinity")
d = Q_INFINITY;
else if (ba == "-Infinity")
d = -Q_INFINITY;
else
d = std::numeric_limits<double>::quiet_NaN();
}
return d;
2012-04-16 19:23:25 +00:00
}
Returned<String> *__qmljs_string_from_number(ExecutionContext *ctx, double number)
2012-04-16 19:23:25 +00:00
{
QString qstr;
__qmljs_numberToString(&qstr, number, 10);
String *string = ctx->engine->newString(qstr);
return string->asReturned<String>();
2012-04-16 19:23:25 +00:00
}
Returned<String> *__qmljs_string_concat(ExecutionContext *ctx, String *first, String *second)
2012-04-16 19:23:25 +00:00
{
const QString &a = first->toQString();
const QString &b = second->toQString();
QString newStr(a.length() + b.length(), Qt::Uninitialized);
QChar *data = newStr.data();
memcpy(data, a.constData(), a.length()*sizeof(QChar));
data += a.length();
memcpy(data, b.constData(), b.length()*sizeof(QChar));
return ctx->engine->newString(newStr)->asReturned<String>();
2012-04-16 19:23:25 +00:00
}
ReturnedValue __qmljs_object_default_value(Object *object, int typeHint)
2012-04-16 19:23:25 +00:00
{
2012-05-18 13:28:59 +00:00
if (typeHint == PREFERREDTYPE_HINT) {
if (object->asDateObject())
2012-05-18 13:28:59 +00:00
typeHint = STRING_HINT;
else
typeHint = NUMBER_HINT;
}
ExecutionEngine *engine = object->internalClass->engine;
SafeString *meth1 = &engine->id_toString;
SafeString *meth2 = &engine->id_valueOf;
2012-05-18 13:28:59 +00:00
if (typeHint == NUMBER_HINT)
qSwap(meth1, meth2);
ExecutionContext *ctx = engine->current;
Scope scope(ctx);
ScopedCallData callData(scope, 0);
callData->thisObject = Value::fromObject(object);
ScopedValue conv(scope, object->get(*meth1));
if (FunctionObject *o = conv->asFunctionObject()) {
Value r = Value::fromReturnedValue(o->call(callData));
if (r.isPrimitive())
return r.asReturnedValue();
2012-05-18 13:28:59 +00:00
}
conv = object->get(*meth2);
if (FunctionObject *o = conv->asFunctionObject()) {
Value r = Value::fromReturnedValue(o->call(callData));
if (r.isPrimitive())
return r.asReturnedValue();
2012-05-18 13:28:59 +00:00
}
ctx->throwTypeError();
return Primitive::undefinedValue().asReturnedValue();
2012-04-16 19:23:25 +00:00
}
Bool __qmljs_to_boolean(const ValueRef value)
{
return value->toBoolean();
}
Returned<Object> *__qmljs_convert_to_object(ExecutionContext *ctx, const ValueRef value)
{
assert(!value->isObject());
switch (value->type()) {
case Value::Undefined_Type:
case Value::Null_Type:
ctx->throwTypeError();
case Value::Boolean_Type:
return ctx->engine->newBooleanObject(value);
case Value::Managed_Type:
Q_ASSERT(value->isString());
return ctx->engine->newStringObject(*value);
case Value::Integer_Type:
default: // double
return ctx->engine->newNumberObject(value);
}
2012-04-16 19:23:25 +00:00
}
Returned<String> *__qmljs_convert_to_string(ExecutionContext *ctx, const ValueRef value)
{
switch (value->type()) {
case Value::Empty_Type:
Q_ASSERT(!"empty Value encountered");
case Value::Undefined_Type:
return ctx->engine->id_undefined;
case Value::Null_Type:
return ctx->engine->id_null;
case Value::Boolean_Type:
if (value->booleanValue())
return ctx->engine->id_true;
else
return ctx->engine->id_false;
case Value::Managed_Type:
if (value->isString())
return value->stringValue()->asReturned<String>();
{
Scope scope(ctx);
ScopedValue prim(scope, __qmljs_to_primitive(value, STRING_HINT));
return __qmljs_convert_to_string(ctx, prim);
}
case Value::Integer_Type:
return __qmljs_string_from_number(ctx, value->int_32);
default: // double
return __qmljs_string_from_number(ctx, value->doubleValue());
} // switch
}
2012-04-16 19:23:25 +00:00
void __qmljs_set_property(ExecutionContext *ctx, const ValueRef object, const StringRef name, const ValueRef value)
2012-04-16 19:23:25 +00:00
{
Scope scope(ctx);
ScopedObject o(scope, object->toObject(ctx));
o->put(name, value);
2012-04-16 19:23:25 +00:00
}
ReturnedValue __qmljs_get_element(ExecutionContext *ctx, const ValueRef object, const ValueRef index)
2012-05-20 17:59:47 +00:00
{
Scope scope(ctx);
uint idx = index->asArrayIndex();
Scoped<Object> o(scope, object);
if (!o) {
if (idx < UINT_MAX) {
if (String *str = object->asString()) {
if (idx >= (uint)str->toQString().length()) {
return Primitive::undefinedValue().asReturnedValue();
}
const QString s = str->toQString().mid(idx, 1);
return Value::fromString(ctx, s).asReturnedValue();
}
}
if (object->isNullOrUndefined()) {
QString message = QStringLiteral("Cannot read property '%1' of %2").arg(index->toQStringNoThrow()).arg(object->toQStringNoThrow());
ctx->throwTypeError(message);
}
o = __qmljs_convert_to_object(ctx, object);
}
if (idx < UINT_MAX) {
uint pidx = o->propertyIndexFromArrayIndex(idx);
if (pidx < UINT_MAX) {
if (!o->arrayAttributes || o->arrayAttributes[pidx].isData()) {
return o->arrayData[pidx].value.asReturnedValue();
}
}
return o->getIndexed(idx);
}
ScopedString name(scope, index->toString(ctx));
return o->get(name);
2012-05-20 17:59:47 +00:00
}
void __qmljs_set_element(ExecutionContext *ctx, const ValueRef object, const ValueRef index, const ValueRef value)
2012-05-20 17:59:47 +00:00
{
Scope scope(ctx);
ScopedObject o(scope, object->toObject(ctx));
uint idx = index->asArrayIndex();
if (idx < UINT_MAX) {
uint pidx = o->propertyIndexFromArrayIndex(idx);
if (pidx < UINT_MAX) {
if (o->arrayAttributes && !o->arrayAttributes[pidx].isEmpty() && !o->arrayAttributes[pidx].isWritable()) {
if (ctx->strictMode)
ctx->throwTypeError();
return;
}
Property *p = o->arrayData + pidx;
if (!o->arrayAttributes || o->arrayAttributes[pidx].isData()) {
p->value = *value;
return;
}
if (o->arrayAttributes[pidx].isAccessor()) {
FunctionObject *setter = p->setter();
if (!setter) {
if (ctx->strictMode)
ctx->throwTypeError();
return;
}
ScopedCallData callData(scope, 1);
callData->thisObject = o;
callData->args[0] = *value;
setter->call(callData);
return;
}
}
o->putIndexed(idx, value);
return;
}
2012-05-20 17:59:47 +00:00
ScopedString name(scope, index->toString(ctx));
o->put(name, value);
2012-05-20 17:59:47 +00:00
}
ReturnedValue __qmljs_foreach_iterator_object(ExecutionContext *ctx, const ValueRef in)
{
Scope scope(ctx);
Scoped<Object> o(scope, (Object *)0);
if (!in->isNullOrUndefined())
o = in;
Scoped<Object> it(scope, ctx->engine->newForEachIteratorObject(ctx, o.getPointer()));
return it.asReturnedValue();
}
ReturnedValue __qmljs_foreach_next_property_name(const ValueRef foreach_iterator)
{
Q_ASSERT(foreach_iterator->isObject());
ForEachIteratorObject *it = static_cast<ForEachIteratorObject *>(foreach_iterator->objectValue());
Q_ASSERT(it->as<ForEachIteratorObject>());
return it->nextPropertyName();
}
void __qmljs_set_activation_property(ExecutionContext *ctx, const StringRef name, const ValueRef value)
2012-04-16 19:23:25 +00:00
{
ctx->setProperty(name, value);
2012-04-16 19:23:25 +00:00
}
ReturnedValue __qmljs_get_property(ExecutionContext *ctx, const ValueRef object, const StringRef name)
2012-04-16 19:23:25 +00:00
{
Scope scope(ctx);
Scoped<Object> o(scope, object);
if (o)
return o->get(name);
if (object->isNullOrUndefined()) {
QString message = QStringLiteral("Cannot read property '%1' of %2").arg(name->toQString()).arg(object->toQStringNoThrow());
ctx->throwTypeError(message);
2012-05-09 09:04:57 +00:00
}
o = __qmljs_convert_to_object(ctx, object);
return o->get(name);
2012-04-16 19:23:25 +00:00
}
ReturnedValue __qmljs_get_activation_property(ExecutionContext *ctx, const StringRef name)
2012-04-16 19:23:25 +00:00
{
return ctx->getProperty(name);
2012-04-16 19:23:25 +00:00
}
uint __qmljs_equal_helper(const ValueRef x, const ValueRef y)
{
Q_ASSERT(x->type() != y->type() || (x->isManaged() && (x->isString() != y->isString())));
if (x->isNumber() && y->isNumber())
return x->asDouble() == y->asDouble();
if (x->isNull() && y->isUndefined()) {
return true;
} else if (x->isUndefined() && y->isNull()) {
return true;
} else if (x->isNumber() && y->isString()) {
double dy = __qmljs_to_number(y);
return x->asDouble() == dy;
} else if (x->isString() && y->isNumber()) {
double dx = __qmljs_to_number(x);
return dx == y->asDouble();
} else if (x->isBoolean()) {
Value nx = Primitive::fromDouble((double) x->booleanValue());
return __qmljs_cmp_eq(ValueRef(&nx), y);
} else if (y->isBoolean()) {
Value ny = Primitive::fromDouble((double) y->booleanValue());
return __qmljs_cmp_eq(x, ValueRef(&ny));
} else if ((x->isNumber() || x->isString()) && y->isObject()) {
Scope scope(y->objectValue()->engine());
ScopedValue py(scope, __qmljs_to_primitive(y, PREFERREDTYPE_HINT));
return __qmljs_cmp_eq(x, py);
} else if (x->isObject() && (y->isNumber() || y->isString())) {
Scope scope(x->objectValue()->engine());
ScopedValue px(scope, __qmljs_to_primitive(x, PREFERREDTYPE_HINT));
return __qmljs_cmp_eq(px, y);
2012-04-16 19:23:25 +00:00
}
return false;
}
Bool __qmljs_strict_equal(const ValueRef x, const ValueRef y)
{
TRACE2(x, y);
if (x->rawValue() == y->rawValue())
// NaN != NaN
return !x->isNaN();
if (x->isNumber())
return y->isNumber() && x->asDouble() == y->asDouble();
if (x->isString())
return y->isString() && x->stringValue()->isEqualTo(y->stringValue());
return false;
}
QV4::Bool __qmljs_cmp_gt(const QV4::ValueRef l, const QV4::ValueRef r)
{
TRACE2(l, r);
if (QV4::Value::integerCompatible(*l, *r))
return l->integerValue() > r->integerValue();
if (QV4::Value::bothDouble(*l, *r))
return l->doubleValue() > r->doubleValue();
if (l->isString() && r->isString())
return r->stringValue()->compare(l->stringValue());
if (l->isObject() || r->isObject()) {
QV4::ExecutionEngine *e = (l->isObject() ? l->objectValue() : r->objectValue())->engine();
QV4::Scope scope(e);
QV4::ScopedValue pl(scope, __qmljs_to_primitive(l, QV4::NUMBER_HINT));
QV4::ScopedValue pr(scope, __qmljs_to_primitive(r, QV4::NUMBER_HINT));
return __qmljs_cmp_gt(pl, pr);
}
double dl = __qmljs_to_number(l);
double dr = __qmljs_to_number(r);
return dl > dr;
}
QV4::Bool __qmljs_cmp_lt(const QV4::ValueRef l, const QV4::ValueRef r)
{
TRACE2(l, r);
if (QV4::Value::integerCompatible(*l, *r))
return l->integerValue() < r->integerValue();
if (QV4::Value::bothDouble(*l, *r))
return l->doubleValue() < r->doubleValue();
if (l->isString() && r->isString())
return l->stringValue()->compare(r->stringValue());
if (l->isObject() || r->isObject()) {
QV4::ExecutionEngine *e = (l->isObject() ? l->objectValue() : r->objectValue())->engine();
QV4::Scope scope(e);
QV4::ScopedValue pl(scope, __qmljs_to_primitive(l, QV4::NUMBER_HINT));
QV4::ScopedValue pr(scope, __qmljs_to_primitive(r, QV4::NUMBER_HINT));
return __qmljs_cmp_lt(pl, pr);
}
double dl = __qmljs_to_number(l);
double dr = __qmljs_to_number(r);
return dl < dr;
}
QV4::Bool __qmljs_cmp_ge(const QV4::ValueRef l, const QV4::ValueRef r)
{
TRACE2(l, r);
if (QV4::Value::integerCompatible(*l, *r))
return l->integerValue() >= r->integerValue();
if (QV4::Value::bothDouble(*l, *r))
return l->doubleValue() >= r->doubleValue();
if (l->isString() && r->isString())
return !l->stringValue()->compare(r->stringValue());
if (l->isObject() || r->isObject()) {
QV4::ExecutionEngine *e = (l->isObject() ? l->objectValue() : r->objectValue())->engine();
QV4::Scope scope(e);
QV4::ScopedValue pl(scope, __qmljs_to_primitive(l, QV4::NUMBER_HINT));
QV4::ScopedValue pr(scope, __qmljs_to_primitive(r, QV4::NUMBER_HINT));
return __qmljs_cmp_ge(pl, pr);
}
double dl = __qmljs_to_number(l);
double dr = __qmljs_to_number(r);
return dl >= dr;
}
QV4::Bool __qmljs_cmp_le(const QV4::ValueRef l, const QV4::ValueRef r)
{
TRACE2(l, r);
if (QV4::Value::integerCompatible(*l, *r))
return l->integerValue() <= r->integerValue();
if (QV4::Value::bothDouble(*l, *r))
return l->doubleValue() <= r->doubleValue();
if (l->isString() && r->isString())
return !r->stringValue()->compare(l->stringValue());
if (l->isObject() || r->isObject()) {
QV4::ExecutionEngine *e = (l->isObject() ? l->objectValue() : r->objectValue())->engine();
QV4::Scope scope(e);
QV4::ScopedValue pl(scope, __qmljs_to_primitive(l, QV4::NUMBER_HINT));
QV4::ScopedValue pr(scope, __qmljs_to_primitive(r, QV4::NUMBER_HINT));
return __qmljs_cmp_le(pl, pr);
}
double dl = __qmljs_to_number(l);
double dr = __qmljs_to_number(r);
return dl <= dr;
}
ReturnedValue __qmljs_call_global_lookup(ExecutionContext *context, uint index, CallDataRef callData)
{
Scope scope(context);
Q_ASSERT(callData->thisObject.isUndefined());
Lookup *l = context->lookups + index;
Scoped<FunctionObject> o(scope, l->globalGetter(l, context));
if (!o)
context->throwTypeError();
if (o.getPointer() == context->engine->evalFunction && l->name->isEqualTo(context->engine->id_eval))
return static_cast<EvalFunction *>(o.getPointer())->evalCall(callData->thisObject, callData->args, callData->argc, true);
return o->call(callData);
}
ReturnedValue __qmljs_call_activation_property(ExecutionContext *context, const StringRef name, CallDataRef callData)
2012-04-16 19:23:25 +00:00
{
Q_ASSERT(callData->thisObject.isUndefined());
Scope scope(context);
Object *base;
ScopedValue func(scope, context->getPropertyAndBase(name, &base));
if (base)
callData->thisObject = Value::fromObject(base);
FunctionObject *o = func->asFunctionObject();
if (!o) {
QString objectAsString = QStringLiteral("[null]");
if (base)
objectAsString = Value::fromObject(base).toQStringNoThrow();
QString msg = QStringLiteral("Property '%1' of object %2 is not a function").arg(name->toQString()).arg(objectAsString);
context->throwTypeError(msg);
}
if (o == context->engine->evalFunction && name->isEqualTo(context->engine->id_eval)) {
return static_cast<EvalFunction *>(o)->evalCall(callData->thisObject, callData->args, callData->argc, true);
}
return o->call(callData);
2012-05-09 10:00:30 +00:00
}
ReturnedValue __qmljs_call_property(ExecutionContext *context, const StringRef name, CallDataRef callData)
2012-05-07 14:05:05 +00:00
{
Scope scope(context);
Scoped<Object> baseObject(scope, callData->thisObject);
if (!baseObject) {
Q_ASSERT(!callData->thisObject.isEmpty());
if (callData->thisObject.isNullOrUndefined()) {
QString message = QStringLiteral("Cannot call method '%1' of %2").arg(name->toQString()).arg(callData->thisObject.toQStringNoThrow());
context->throwTypeError(message);
}
baseObject = __qmljs_convert_to_object(context, ValueRef(&callData->thisObject));
callData->thisObject = baseObject.asValue();
}
2012-05-09 13:47:55 +00:00
Scoped<FunctionObject> o(scope, baseObject->get(name));
if (!o) {
QString error = QString("Property '%1' of object %2 is not a function").arg(name->toQString(), callData->thisObject.toQStringNoThrow());
context->throwTypeError(error);
}
return o->call(callData);
}
ReturnedValue __qmljs_call_property_lookup(ExecutionContext *context, uint index, CallDataRef callData)
{
Scope scope(context);
Lookup *l = context->lookups + index;
Scoped<Object> o(scope, l->getter(l, callData->thisObject));
if (!o)
context->throwTypeError();
return o->call(callData);
}
ReturnedValue __qmljs_call_element(ExecutionContext *context, const ValueRef index, CallDataRef callData)
{
Scope scope(context);
Object *baseObject = callData->thisObject.toObject(context);
callData->thisObject = Value::fromObject(baseObject);
ScopedString s(scope, index->toString(context));
Scoped<Object> o(scope, baseObject->get(s));
if (!o)
context->throwTypeError();
return o->call(callData);
}
ReturnedValue __qmljs_call_value(ExecutionContext *context, const ValueRef func, CallDataRef callData)
2012-05-09 13:47:55 +00:00
{
Object *o = func->asObject();
if (!o)
context->throwTypeError();
return o->call(callData);
2012-05-09 09:04:57 +00:00
}
ReturnedValue __qmljs_construct_global_lookup(ExecutionContext *context, uint index, CallDataRef callData)
{
Scope scope(context);
Q_ASSERT(callData->thisObject.isUndefined());
Lookup *l = context->lookups + index;
Scoped<Object> f(scope, l->globalGetter(l, context));
if (!f)
context->throwTypeError();
return f->construct(callData);
}
ReturnedValue __qmljs_construct_activation_property(ExecutionContext *context, const StringRef name, CallDataRef callData)
2012-05-09 13:06:30 +00:00
{
Scope scope(context);
ScopedValue func(scope, context->getProperty(name));
Object *f = func->asObject();
if (!f)
context->throwTypeError();
return f->construct(callData);
2012-05-13 11:50:55 +00:00
}
ReturnedValue __qmljs_construct_value(ExecutionContext *context, const ValueRef func, CallDataRef callData)
2012-05-13 11:50:55 +00:00
{
Object *f = func->asObject();
if (!f)
context->throwTypeError();
return f->construct(callData);
2012-05-09 13:06:30 +00:00
}
ReturnedValue __qmljs_construct_property(ExecutionContext *context, const ValueRef base, const StringRef name, CallDataRef callData)
2012-05-09 09:04:57 +00:00
{
Scope scope(context);
ScopedObject thisObject(scope, base->toObject(context));
2012-05-09 13:06:30 +00:00
Scoped<Object> f(scope, thisObject->get(name));
if (!f)
context->throwTypeError();
return f->construct(callData);
2012-05-07 14:05:05 +00:00
}
2012-04-16 19:23:25 +00:00
void __qmljs_throw(ExecutionContext *context, const ValueRef value)
{
Exception::throwException(context, *value);
}
ReturnedValue __qmljs_builtin_typeof(ExecutionContext *ctx, const ValueRef value)
{
String *res = 0;
switch (value->type()) {
case Value::Undefined_Type:
res = ctx->engine->id_undefined;
break;
case Value::Null_Type:
res = ctx->engine->id_object;
break;
case Value::Boolean_Type:
res = ctx->engine->id_boolean;
break;
case Value::Managed_Type:
if (value->isString())
res = ctx->engine->id_string;
else if (value->objectValue()->asFunctionObject())
res = ctx->engine->id_function;
else
res = ctx->engine->id_object; // ### implementation-defined
break;
default:
res = ctx->engine->id_number;
break;
}
return Value::fromString(res).asReturnedValue();
}
QV4::ReturnedValue __qmljs_builtin_typeof_name(ExecutionContext *context, const StringRef name)
{
Scope scope(context);
ScopedValue prop(scope, context->getPropertyNoThrow(name));
return __qmljs_builtin_typeof(context, prop);
}
QV4::ReturnedValue __qmljs_builtin_typeof_member(ExecutionContext *context, const ValueRef base, const StringRef name)
{
Scope scope(context);
ScopedObject obj(scope, base->toObject(context));
ScopedValue prop(scope, obj->get(name));
return __qmljs_builtin_typeof(context, prop);
}
QV4::ReturnedValue __qmljs_builtin_typeof_element(ExecutionContext *context, const ValueRef base, const ValueRef index)
2012-05-23 16:48:48 +00:00
{
Scope scope(context);
ScopedString name(scope, index->toString(context));
ScopedObject obj(scope, base->toObject(context));
ScopedValue prop(scope, obj->get(name));
return __qmljs_builtin_typeof(context, prop);
2012-05-23 16:48:48 +00:00
}
ExecutionContext *__qmljs_builtin_push_with_scope(const ValueRef o, ExecutionContext *ctx)
{
Object *obj = o->toObject(ctx);
return ctx->newWithContext(obj);
}
ExecutionContext *__qmljs_builtin_push_catch_scope(const StringRef exceptionVarName, const ValueRef exceptionValue, ExecutionContext *ctx)
{
return ctx->newCatchContext(exceptionVarName.getPointer(), *exceptionValue);
}
ExecutionContext *__qmljs_builtin_pop_scope(ExecutionContext *ctx)
{
return ctx->engine->popContext();
}
void __qmljs_builtin_declare_var(ExecutionContext *ctx, bool deletable, const StringRef name)
{
ctx->createMutableBinding(name, deletable);
}
void __qmljs_builtin_define_property(ExecutionContext *ctx, const ValueRef object, const StringRef name, ValueRef val)
{
Scope scope(ctx);
ScopedObject o(scope, object->asObject());
assert(o);
uint idx = name->asArrayIndex();
Property *pd = (idx != UINT_MAX) ? o->arrayInsert(idx) : o->insertMember(name, Attr_Data);
pd->value = val ? *val : Primitive::undefinedValue();
}
ReturnedValue __qmljs_builtin_define_array(ExecutionContext *ctx, Value *values, uint length)
{
Scope scope(ctx);
Scoped<ArrayObject> a(scope, ctx->engine->newArrayObject());
// ### FIXME: We need to allocate the array data to avoid crashes other places
// This should rather be done when required
a->arrayReserve(length);
if (length) {
a->arrayDataLen = length;
Property *pd = a->arrayData;
for (uint i = 0; i < length; ++i) {
if (values[i].isEmpty()) {
a->ensureArrayAttributes();
pd->value = Primitive::undefinedValue();
a->arrayAttributes[i].clear();
} else {
pd->value = values[i];
}
++pd;
}
a->setArrayLengthUnchecked(length);
}
return a.asReturnedValue();
}
void __qmljs_builtin_define_getter_setter(ExecutionContext *ctx, const ValueRef object, const StringRef name, const ValueRef getter, const ValueRef setter)
{
Scope scope(ctx);
ScopedObject o(scope, object->asObject());
Q_ASSERT(!!o);
uint idx = name->asArrayIndex();
Property *pd = (idx != UINT_MAX) ? o->arrayInsert(idx, Attr_Accessor) : o->insertMember(name, Attr_Accessor);
pd->setGetter(getter ? getter->asFunctionObject() : 0);
pd->setSetter(setter ? setter->asFunctionObject() : 0);
}
ReturnedValue __qmljs_builtin_define_object_literal(QV4::ExecutionContext *ctx, const QV4::Value *args, int classId)
{
Scope scope(ctx);
QV4::InternalClass *klass = ctx->compilationUnit->runtimeClasses[classId];
Scoped<Object> o(scope, ctx->engine->newObject(klass));
for (int i = 0; i < klass->size; ++i) {
if (klass->propertyData[i].isData())
o->memberData[i].value = *args++;
else {
o->memberData[i].setGetter(args->asFunctionObject());
args++;
o->memberData[i].setSetter(args->asFunctionObject());
args++;
}
}
return o.asReturnedValue();
}
QV4::ReturnedValue __qmljs_builtin_setup_arguments_object(ExecutionContext *ctx)
{
assert(ctx->type >= ExecutionContext::Type_CallContext);
CallContext *c = static_cast<CallContext *>(ctx);
ArgumentsObject *args = new (c->engine->memoryManager) ArgumentsObject(c);
return Value::fromObject(args).asReturnedValue();
}
QV4::ReturnedValue __qmljs_increment(const QV4::ValueRef value)
{
TRACE1(value);
if (value->isInteger())
return Primitive::fromInt32(value->integerValue() + 1).asReturnedValue();
else {
double d = value->toNumber();
return Primitive::fromDouble(d + 1).asReturnedValue();
}
}
QV4::ReturnedValue __qmljs_decrement(const QV4::ValueRef value)
{
TRACE1(value);
if (value->isInteger())
return Primitive::fromInt32(value->integerValue() - 1).asReturnedValue();
else {
double d = value->toNumber();
return Primitive::fromDouble(d - 1).asReturnedValue();
}
}
QV4::ReturnedValue __qmljs_to_string(const QV4::ValueRef value, QV4::ExecutionContext *ctx)
{
if (value->isString())
return value.asReturnedValue();
return __qmljs_convert_to_string(ctx, value)->asReturnedValue();
}
QV4::ReturnedValue __qmljs_to_object(QV4::ExecutionContext *ctx, const QV4::ValueRef value)
{
if (value->isObject())
return value.asReturnedValue();
return Encode(__qmljs_convert_to_object(ctx, value));
}
ReturnedValue __qmljs_value_to_double(const ValueRef value)
{
return Encode(value->toNumber());
}
int __qmljs_value_to_int32(const ValueRef value)
{
return value->toInt32();
}
int __qmljs_double_to_int32(const double &d)
{
return Value::toInt32(d);
}
unsigned __qmljs_value_to_uint32(const ValueRef value)
{
return value->toUInt32();
}
unsigned __qmljs_double_to_uint32(const double &d)
{
return Value::toUInt32(d);
}
ReturnedValue __qmljs_value_from_string(String *string)
{
return Value::fromString(string).asReturnedValue();
}
ReturnedValue __qmljs_lookup_runtime_regexp(ExecutionContext *ctx, int id)
{
return ctx->compilationUnit->runtimeRegularExpressions[id].asReturnedValue();
}
} // namespace QV4
QT_END_NAMESPACE