aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4isel_p.h
blob: 2b8aa7eb333ea505b7d06cdd3ff834147028c562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the QtQml module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** As a special exception, The Qt Company gives you certain additional
** rights. These rights are described in The Qt Company LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** $QT_END_LICENSE$
**
****************************************************************************/

#ifndef QV4ISEL_P_H
#define QV4ISEL_P_H

#include "private/qv4global_p.h"
#include "qv4jsir_p.h"
#include <private/qv4compileddata_p.h>
#include <private/qv4compiler_p.h>

#include <qglobal.h>
#include <QHash>

QT_BEGIN_NAMESPACE

class QQmlEnginePrivate;

namespace QV4 {

class ExecutableAllocator;
struct Function;

class Q_QML_PRIVATE_EXPORT EvalInstructionSelection
{
public:
    EvalInstructionSelection(QV4::ExecutableAllocator *execAllocator, IR::Module *module, QV4::Compiler::JSUnitGenerator *jsGenerator);
    virtual ~EvalInstructionSelection() = 0;

    QQmlRefPointer<QV4::CompiledData::CompilationUnit> compile(bool generateUnitData = true);

    void setUseFastLookups(bool b) { useFastLookups = b; }
    void setUseTypeInference(bool onoff) { useTypeInference = onoff; }

    int registerString(const QString &str) { return jsGenerator->registerString(str); }
    uint registerIndexedGetterLookup() { return jsGenerator->registerIndexedGetterLookup(); }
    uint registerIndexedSetterLookup() { return jsGenerator->registerIndexedSetterLookup(); }
    uint registerGetterLookup(const QString &name) { return jsGenerator->registerGetterLookup(name); }
    uint registerSetterLookup(const QString &name) { return jsGenerator->registerSetterLookup(name); }
    uint registerGlobalGetterLookup(const QString &name) { return jsGenerator->registerGlobalGetterLookup(name); }
    int registerRegExp(IR::RegExp *regexp) { return jsGenerator->registerRegExp(regexp); }
    int registerJSClass(int count, IR::ExprList *args) { return jsGenerator->registerJSClass(count, args); }
    QV4::Compiler::JSUnitGenerator *jsUnitGenerator() const { return jsGenerator; }

protected:
    virtual void run(int functionIndex) = 0;
    virtual QQmlRefPointer<QV4::CompiledData::CompilationUnit> backendCompileStep() = 0;

    bool useFastLookups;
    bool useTypeInference;
    QV4::ExecutableAllocator *executableAllocator;
    QV4::Compiler::JSUnitGenerator *jsGenerator;
    QScopedPointer<QV4::Compiler::JSUnitGenerator> ownJSGenerator;
    IR::Module *irModule;
};

class Q_QML_PRIVATE_EXPORT EvalISelFactory
{
public:
    virtual ~EvalISelFactory() = 0;
    virtual EvalInstructionSelection *create(QQmlEnginePrivate *qmlEngine, QV4::ExecutableAllocator *execAllocator, IR::Module *module, QV4::Compiler::JSUnitGenerator *jsGenerator) = 0;
    virtual bool jitCompileRegexps() const = 0;
};

namespace IR {
class Q_QML_PRIVATE_EXPORT IRDecoder: protected IR::StmtVisitor
{
public:
    IRDecoder() : _function(0) {}
    virtual ~IRDecoder() = 0;

    virtual void visitPhi(IR::Phi *) {}

public: // visitor methods for StmtVisitor:
    virtual void visitMove(IR::Move *s);
    virtual void visitExp(IR::Exp *s);

public: // to implement by subclasses:
    virtual void callBuiltinInvalid(IR::Name *func, IR::ExprList *args, IR::Expr *result) = 0;
    virtual void callBuiltinTypeofMember(IR::Expr *base, const QString &name, IR::Expr *result) = 0;
    virtual void callBuiltinTypeofSubscript(IR::Expr *base, IR::Expr *index, IR::Expr *result) = 0;
    virtual void callBuiltinTypeofName(const QString &name, IR::Expr *result) = 0;
    virtual void callBuiltinTypeofValue(IR::Expr *value, IR::Expr *result) = 0;
    virtual void callBuiltinDeleteMember(IR::Expr *base, const QString &name, IR::Expr *result) = 0;
    virtual void callBuiltinDeleteSubscript(IR::Expr *base, IR::Expr *index, IR::Expr *result) = 0;
    virtual void callBuiltinDeleteName(const QString &name, IR::Expr *result) = 0;
    virtual void callBuiltinDeleteValue(IR::Expr *result) = 0;
    virtual void callBuiltinThrow(IR::Expr *arg) = 0;
    virtual void callBuiltinReThrow() = 0;
    virtual void callBuiltinUnwindException(IR::Expr *) = 0;
    virtual void callBuiltinPushCatchScope(const QString &exceptionName) = 0;
    virtual void callBuiltinForeachIteratorObject(IR::Expr *arg, IR::Expr *result) = 0;
    virtual void callBuiltinForeachNextPropertyname(IR::Expr *arg, IR::Expr *result) = 0;
    virtual void callBuiltinPushWithScope(IR::Expr *arg) = 0;
    virtual void callBuiltinPopScope() = 0;
    virtual void callBuiltinDeclareVar(bool deletable, const QString &name) = 0;
    virtual void callBuiltinDefineArray(IR::Expr *result, IR::ExprList *args) = 0;
    virtual void callBuiltinDefineObjectLiteral(IR::Expr *result, int keyValuePairCount, IR::ExprList *keyValuePairs, IR::ExprList *arrayEntries, bool needSparseArray) = 0;
    virtual void callBuiltinSetupArgumentObject(IR::Expr *result) = 0;
    virtual void callBuiltinConvertThisToObject() = 0;
    virtual void callValue(IR::Expr *value, IR::ExprList *args, IR::Expr *result) = 0;
    virtual void callQmlContextProperty(IR::Expr *base, IR::Member::MemberKind kind, int propertyIndex, IR::ExprList *args, IR::Expr *result) = 0;
    virtual void callProperty(IR::Expr *base, const QString &name, IR::ExprList *args, IR::Expr *result) = 0;
    virtual void callSubscript(IR::Expr *base, IR::Expr *index, IR::ExprList *args, IR::Expr *result) = 0;
    virtual void convertType(IR::Expr *source, IR::Expr *target) = 0;
    virtual void constructActivationProperty(IR::Name *func, IR::ExprList *args, IR::Expr *result) = 0;
    virtual void constructProperty(IR::Expr *base, const QString &name, IR::ExprList *args, IR::Expr *result) = 0;
    virtual void constructValue(IR::Expr *value, IR::ExprList *args, IR::Expr *result) = 0;
    virtual void loadThisObject(IR::Expr *target) = 0;
    virtual void loadQmlContext(IR::Expr *target) = 0;
    virtual void loadQmlImportedScripts(IR::Expr *target) = 0;
    virtual void loadQmlSingleton(const QString &name, IR::Expr *target) = 0;
    virtual void loadConst(IR::Const *sourceConst, IR::Expr *target) = 0;
    virtual void loadString(const QString &str, IR::Expr *target) = 0;
    virtual void loadRegexp(IR::RegExp *sourceRegexp, IR::Expr *target) = 0;
    virtual void getActivationProperty(const IR::Name *name, IR::Expr *target) = 0;
    virtual void setActivationProperty(IR::Expr *source, const QString &targetName) = 0;
    virtual void initClosure(IR::Closure *closure, IR::Expr *target) = 0;
    virtual void getProperty(IR::Expr *base, const QString &name, IR::Expr *target) = 0;
    virtual void getQObjectProperty(IR::Expr *base, int propertyIndex, bool captureRequired, bool isSingletonProperty, int attachedPropertiesId, IR::Expr *target) = 0;
    virtual void getQmlContextProperty(IR::Expr *source, IR::Member::MemberKind kind, int index, IR::Expr *target) = 0;
    virtual void setProperty(IR::Expr *source, IR::Expr *targetBase, const QString &targetName) = 0;
    virtual void setQmlContextProperty(IR::Expr *source, IR::Expr *targetBase, IR::Member::MemberKind kind, int propertyIndex) = 0;
    virtual void setQObjectProperty(IR::Expr *source, IR::Expr *targetBase, int propertyIndex) = 0;
    virtual void getElement(IR::Expr *base, IR::Expr *index, IR::Expr *target) = 0;
    virtual void setElement(IR::Expr *source, IR::Expr *targetBase, IR::Expr *targetIndex) = 0;
    virtual void copyValue(IR::Expr *source, IR::Expr *target) = 0;
    virtual void swapValues(IR::Expr *source, IR::Expr *target) = 0;
    virtual void unop(IR::AluOp oper, IR::Expr *source, IR::Expr *target) = 0;
    virtual void binop(IR::AluOp oper, IR::Expr *leftSource, IR::Expr *rightSource, IR::Expr *target) = 0;

protected:
    virtual void callBuiltin(IR::Call *c, IR::Expr *result);

    IR::Function *_function; // subclass needs to set
};
} // namespace IR

} // namespace QV4

QT_END_NAMESPACE

#endif // QV4ISEL_P_H