aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4global_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-06-22 09:44:55 +0200
committerErik Verbruggen <erik.verbruggen@qt.io>2017-06-22 08:07:21 +0000
commit40e8109ceff8519920245a01d82357dc57639f46 (patch)
treef9ea38dba859ed4cc736fbeb4522cfe423d8ec5e /src/qml/jsruntime/qv4global_p.h
parent135b8232923e77f9b3d0ff2f928423f3ee00cdb8 (diff)
Don't use the ISel's anymore
Move the code that generates the CompilationUnit over to Codegen, and don't use the ISel's at all anymore when compiling JS/QML. Change-Id: Iba89082c386c3d3fd58ac25a4651c5d39178cc5c Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4global_p.h')
-rw-r--r--src/qml/jsruntime/qv4global_p.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4global_p.h b/src/qml/jsruntime/qv4global_p.h
index 15148f6bc7..b5b077124d 100644
--- a/src/qml/jsruntime/qv4global_p.h
+++ b/src/qml/jsruntime/qv4global_p.h
@@ -184,7 +184,16 @@ namespace Heap {
template <typename T, size_t> struct Pointer;
}
+namespace IR {
+struct Function;
+struct Module;
+}
+namespace Compiler {
+struct JSUnitGenerator;
+}
+
class MemoryManager;
+class ExecutableAllocator;
struct String;
struct Object;
struct ObjectPrototype;