aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/v4/moth/qv4vme_moth_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/v4/moth/qv4vme_moth_p.h')
-rw-r--r--src/qml/qml/v4/moth/qv4vme_moth_p.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/qml/qml/v4/moth/qv4vme_moth_p.h b/src/qml/qml/v4/moth/qv4vme_moth_p.h
new file mode 100644
index 0000000000..3279bc3dd0
--- /dev/null
+++ b/src/qml/qml/v4/moth/qv4vme_moth_p.h
@@ -0,0 +1,35 @@
+#ifndef QV4VME_MOTH_P_H
+#define QV4VME_MOTH_P_H
+
+#include <private/qv4runtime_p.h>
+#include "qv4instr_moth_p.h"
+
+namespace QV4 {
+ struct Value;
+}
+
+namespace QQmlJS {
+namespace Moth {
+
+class VME
+{
+public:
+ static QV4::Value exec(QV4::ExecutionContext *, const uchar *);
+
+#ifdef MOTH_THREADED_INTERPRETER
+ static void **instructionJumpTable();
+#endif
+
+private:
+ QV4::Value run(QV4::ExecutionContext *, const uchar *&code,
+ QV4::Value *stack = 0, unsigned stackSize = 0
+#ifdef MOTH_THREADED_INTERPRETER
+ , void ***storeJumpTable = 0
+#endif
+ );
+};
+
+} // namespace Moth
+} // namespace QQmlJS
+
+#endif // QV4VME_MOTH_P_H