aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4engine_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-08-30 15:16:15 +0200
committerLars Knoll <lars.knoll@qt.io>2017-09-01 12:30:43 +0000
commitcc7a858698063649f9770a89949354e2b58ae288 (patch)
tree5a79c1335192ed757edd69b5b9ded873423aa0bd /src/qml/jsruntime/qv4engine_p.h
parent20596907289d50be3a5e1597ba62cefb733e6f19 (diff)
Unify JSStackFrame and CallData
Change-Id: I4494dae8166026074c9efc74bac62de9d3fa2342 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4engine_p.h')
-rw-r--r--src/qml/jsruntime/qv4engine_p.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/qml/jsruntime/qv4engine_p.h b/src/qml/jsruntime/qv4engine_p.h
index 4cee69ed33..fcadf57508 100644
--- a/src/qml/jsruntime/qv4engine_p.h
+++ b/src/qml/jsruntime/qv4engine_p.h
@@ -87,26 +87,10 @@ struct CompilationUnit;
struct InternalClass;
struct InternalClassPool;
-struct JSStackFrame {
- enum Offsets {
- JSFunction = 0,
- Context = 1,
- Accumulator = 2
- };
- // callData is directly before this
- union {
- Value jsFunction;
- Value stack[1];
- };
- Value context;
- Value accumulator; // ###
- // registers follow
-};
-
struct Q_QML_EXPORT CppStackFrame {
CppStackFrame *parent;
Function *v4Function;
- JSStackFrame *jsFrame;
+ CallData *jsFrame;
const uchar *instructionPointer;
QString source() const;