From 43f1cc98bf1899ae29e3fb0b3bf5054d5a23d4b2 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Sat, 2 Nov 2013 22:46:25 +0100 Subject: Initial support for accelerated property access to QML singletons and enums With this patch we determine the meta-object of singletons, propagate it into the IR and load them separately using a dedicated run-time function. In addition enums in singletons and QML types are resolved at compile time. Change-Id: I01ce1288391b476d1c9af669cb2987a44c885703 Reviewed-by: Lars Knoll --- src/qml/compiler/qv4isel_p.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/qml/compiler/qv4isel_p.cpp') diff --git a/src/qml/compiler/qv4isel_p.cpp b/src/qml/compiler/qv4isel_p.cpp index a14a11c43e..96a3370903 100644 --- a/src/qml/compiler/qv4isel_p.cpp +++ b/src/qml/compiler/qv4isel_p.cpp @@ -111,6 +111,8 @@ void IRDecoder::visitMove(V4IR::Move *s) loadQmlScopeObject(t); else if (n->builtin == V4IR::Name::builtin_qml_imported_scripts_object) loadQmlImportedScripts(t); + else if (n->qmlSingleton) + loadQmlSingleton(*n->id, t); else getActivationProperty(n, t); return; -- cgit v1.2.3