aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4arrayobject.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-08-21 17:31:22 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-02 17:27:36 +0200
commit6f472680ebecb3a4d700eedcf62cb423b05c4fd1 (patch)
treebc732911a9c353dbac232ebda5a94468e3e261fe /src/qml/jsruntime/qv4arrayobject.cpp
parentda2f24d8e5c32fe4ed45dcb89aa357465f85fc1e (diff)
change calling convention for JS function calls
This allows faster pass through of the data if we have nested calls. Also make sure we always reserve at least QV4::Global::ReservedArgumentCount Values on the stack to avoid stack corruption. Change-Id: I42976460f1ef11a333d4adda70fba8daac66acf3 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4arrayobject.cpp')
-rw-r--r--src/qml/jsruntime/qv4arrayobject.cpp97
1 files changed, 52 insertions, 45 deletions
diff --git a/src/qml/jsruntime/qv4arrayobject.cpp b/src/qml/jsruntime/qv4arrayobject.cpp
index d7f4babbb2..c316a3196e 100644
--- a/src/qml/jsruntime/qv4arrayobject.cpp
+++ b/src/qml/jsruntime/qv4arrayobject.cpp
@@ -52,25 +52,25 @@ ArrayCtor::ArrayCtor(ExecutionContext *scope)
vtbl = &static_vtbl;
}
-Value ArrayCtor::construct(Managed *m, Value *argv, int argc)
+Value ArrayCtor::construct(Managed *m, const CallData &d)
{
ExecutionEngine *v4 = m->engine();
ArrayObject *a = v4->newArrayObject();
uint len;
- if (argc == 1 && argv[0].isNumber()) {
+ if (d.argc == 1 && d.args[0].isNumber()) {
bool ok;
- len = argv[0].asArrayLength(&ok);
+ len = d.args[0].asArrayLength(&ok);
if (!ok)
- v4->current->throwRangeError(argv[0]);
+ v4->current->throwRangeError(d.args[0]);
if (len < 0x1000)
a->arrayReserve(len);
} else {
- len = argc;
+ len = d.argc;
a->arrayReserve(len);
for (unsigned int i = 0; i < len; ++i)
- a->arrayData[i].value = argv[i];
+ a->arrayData[i].value = d.args[i];
a->arrayDataLen = len;
}
a->setArrayLengthUnchecked(len);
@@ -78,9 +78,9 @@ Value ArrayCtor::construct(Managed *m, Value *argv, int argc)
return Value::fromObject(a);
}
-Value ArrayCtor::call(Managed *that, const Value &, Value *argv, int argc)
+Value ArrayCtor::call(Managed *that, const CallData &d)
{
- return construct(that, argv, argc);
+ return construct(that, d);
}
ArrayPrototype::ArrayPrototype(ExecutionContext *context)
@@ -628,11 +628,12 @@ Value ArrayPrototype::method_every(SimpleCallContext *ctx)
if (!exists)
continue;
- Value args[3];
- args[0] = v;
- args[1] = Value::fromDouble(k);
- args[2] = Value::fromObject(instance);
- Value r = callback->call(thisArg, args, 3);
+ CALLDATA(3);
+ d.args[0] = v;
+ d.args[1] = Value::fromDouble(k);
+ d.args[2] = Value::fromObject(instance);
+ d.thisObject = thisArg;
+ Value r = callback->call(d);
ok = r.toBoolean();
}
return Value::fromBoolean(ok);
@@ -656,11 +657,12 @@ Value ArrayPrototype::method_some(SimpleCallContext *ctx)
if (!exists)
continue;
- Value args[3];
- args[0] = v;
- args[1] = Value::fromDouble(k);
- args[2] = Value::fromObject(instance);
- Value r = callback->call(thisArg, args, 3);
+ CALLDATA(3);
+ d.args[0] = v;
+ d.args[1] = Value::fromDouble(k);
+ d.args[2] = Value::fromObject(instance);
+ d.thisObject = thisArg;
+ Value r = callback->call(d);
if (r.toBoolean())
return Value::fromBoolean(true);
}
@@ -685,11 +687,12 @@ Value ArrayPrototype::method_forEach(SimpleCallContext *ctx)
if (!exists)
continue;
- Value args[3];
- args[0] = v;
- args[1] = Value::fromDouble(k);
- args[2] = Value::fromObject(instance);
- callback->call(thisArg, args, 3);
+ CALLDATA(3);
+ d.args[0] = v;
+ d.args[1] = Value::fromDouble(k);
+ d.args[2] = Value::fromObject(instance);
+ d.thisObject = thisArg;
+ callback->call(d);
}
return Value::undefinedValue();
}
@@ -716,11 +719,12 @@ Value ArrayPrototype::method_map(SimpleCallContext *ctx)
if (!exists)
continue;
- Value args[3];
- args[0] = v;
- args[1] = Value::fromDouble(k);
- args[2] = Value::fromObject(instance);
- Value mapped = callback->call(thisArg, args, 3);
+ CALLDATA(3);
+ d.args[0] = v;
+ d.args[1] = Value::fromDouble(k);
+ d.args[2] = Value::fromObject(instance);
+ d.thisObject = thisArg;
+ Value mapped = callback->call(d);
a->arraySet(k, mapped);
}
return Value::fromObject(a);
@@ -748,11 +752,12 @@ Value ArrayPrototype::method_filter(SimpleCallContext *ctx)
if (!exists)
continue;
- Value args[3];
- args[0] = v;
- args[1] = Value::fromDouble(k);
- args[2] = Value::fromObject(instance);
- Value selected = callback->call(thisArg, args, 3);
+ CALLDATA(3);
+ d.args[0] = v;
+ d.args[1] = Value::fromDouble(k);
+ d.args[2] = Value::fromObject(instance);
+ d.thisObject = thisArg;
+ Value selected = callback->call(d);
if (selected.toBoolean()) {
a->arraySet(to, v);
++to;
@@ -791,12 +796,13 @@ Value ArrayPrototype::method_reduce(SimpleCallContext *ctx)
bool kPresent;
Value v = instance->getIndexed(k, &kPresent);
if (kPresent) {
- Value args[4];
- args[0] = acc;
- args[1] = v;
- args[2] = Value::fromDouble(k);
- args[3] = Value::fromObject(instance);
- acc = callback->call(Value::undefinedValue(), args, 4);
+ CALLDATA(4);
+ d.args[0] = acc;
+ d.args[1] = v;
+ d.args[2] = Value::fromDouble(k);
+ d.args[3] = Value::fromObject(instance);
+ d.thisObject = Value::undefinedValue();
+ acc = callback->call(d);
}
++k;
}
@@ -839,12 +845,13 @@ Value ArrayPrototype::method_reduceRight(SimpleCallContext *ctx)
bool kPresent;
Value v = instance->getIndexed(k - 1, &kPresent);
if (kPresent) {
- Value args[4];
- args[0] = acc;
- args[1] = v;
- args[2] = Value::fromDouble(k - 1);
- args[3] = Value::fromObject(instance);
- acc = callback->call(Value::undefinedValue(), args, 4);
+ CALLDATA(4);
+ d.args[0] = acc;
+ d.args[1] = v;
+ d.args[2] = Value::fromDouble(k - 1);
+ d.args[3] = Value::fromObject(instance);
+ d.thisObject = Value::undefinedValue();
+ acc = callback->call(d);
}
--k;
}