/**************************************************************************** ** ** 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 QV4JSIR_P_H #define QV4JSIR_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "private/qv4global_p.h" #include #include #include #include #include #include #include #include #if defined(CONST) && defined(Q_OS_WIN) # define QT_POP_CONST # pragma push_macro("CONST") # undef CONST // CONST conflicts with our own identifier #endif QT_BEGIN_NAMESPACE class QTextStream; class QQmlType; class QQmlPropertyData; class QQmlPropertyCache; class QQmlEnginePrivate; namespace QV4 { inline bool isNegative(double d) { uchar *dch = (uchar *)&d; if (QSysInfo::ByteOrder == QSysInfo::BigEndian) return (dch[0] & 0x80); else return (dch[7] & 0x80); } namespace IR { struct BasicBlock; struct Function; struct Module; struct Stmt; struct Expr; // expressions struct Const; struct String; struct RegExp; struct Name; struct Temp; struct ArgLocal; struct Closure; struct Convert; struct Unop; struct Binop; struct Call; struct New; struct Subscript; struct Member; // statements struct Exp; struct Move; struct Jump; struct CJump; struct Ret; struct Phi; // Flag pointer: // * The first flag indicates whether the meta object is final. // If final, then none of its properties themselves need to // be final when considering for lookups in QML. // * The second flag indicates whether enums should be included // in the lookup of properties or not. The default is false. typedef QFlagPointer IRMetaObject; enum AluOp { OpInvalid = 0, OpIfTrue, OpNot, OpUMinus, OpUPlus, OpCompl, OpIncrement, OpDecrement, OpBitAnd, OpBitOr, OpBitXor, OpAdd, OpSub, OpMul, OpDiv, OpMod, OpLShift, OpRShift, OpURShift, OpGt, OpLt, OpGe, OpLe, OpEqual, OpNotEqual, OpStrictEqual, OpStrictNotEqual, OpInstanceof, OpIn, OpAnd, OpOr, LastAluOp = OpOr }; AluOp binaryOperator(int op); const char *opname(IR::AluOp op); enum Type { UnknownType = 0, MissingType = 1 << 0, UndefinedType = 1 << 1, NullType = 1 << 2, BoolType = 1 << 3, SInt32Type = 1 << 4, UInt32Type = 1 << 5, DoubleType = 1 << 6, NumberType = SInt32Type | UInt32Type | DoubleType, StringType = 1 << 7, QObjectType = 1 << 8, VarType = 1 << 9 }; inline bool strictlyEqualTypes(Type t1, Type t2) { return t1 == t2 || ((t1 & NumberType) && (t2 & NumberType)); } QString typeName(Type t); struct ExprVisitor { virtual ~ExprVisitor() {} virtual void visitConst(Const *) = 0; virtual void visitString(String *) = 0; virtual void visitRegExp(RegExp *) = 0; virtual void visitName(Name *) = 0; virtual void visitTemp(Temp *) = 0; virtual void visitArgLocal(ArgLocal *) = 0; virtual void visitClosure(Closure *) = 0; virtual void visitConvert(Convert *) = 0; virtual void visitUnop(Unop *) = 0; virtual void visitBinop(Binop *) = 0; virtual void visitCall(Call *) = 0; virtual void visitNew(New *) = 0; virtual void visitSubscript(Subscript *) = 0; virtual void visitMember(Member *) = 0; }; struct StmtVisitor { virtual ~StmtVisitor() {} virtual void visitExp(Exp *) = 0; virtual void visitMove(Move *) = 0; virtual void visitJump(Jump *) = 0; virtual void visitCJump(CJump *) = 0; virtual void visitRet(Ret *) = 0; virtual void visitPhi(Phi *) = 0; }; struct MemberExpressionResolver { typedef Type (*ResolveFunction)(QQmlEnginePrivate *engine, MemberExpressionResolver *resolver, Member *member); MemberExpressionResolver() : resolveMember(0), data(0), extraData(0), flags(0) {} bool isValid() const { return !!resolveMember; } void clear() { *this = MemberExpressionResolver(); } ResolveFunction resolveMember; void *data; // Could be pointer to meta object, importNameSpace, etc. - depends on resolveMember implementation void *extraData; // Could be QQmlTypeNameCache unsigned int flags; }; struct Q_AUTOTEST_EXPORT Expr { Type type; Expr(): type(UnknownType) {} virtual ~Expr() {} virtual void accept(ExprVisitor *) = 0; virtual bool isLValue() { return false; } virtual Const *asConst() { return 0; } virtual String *asString() { return 0; } virtual RegExp *asRegExp() { return 0; } virtual Name *asName() { return 0; } virtual Temp *asTemp() { return 0; } virtual ArgLocal *asArgLocal() { return 0; } virtual Closure *asClosure() { return 0; } virtual Convert *asConvert() { return 0; } virtual Unop *asUnop() { return 0; } virtual Binop *asBinop() { return 0; } virtual Call *asCall() { return 0; } virtual New *asNew() { return 0; } virtual Subscript *asSubscript() { return 0; } virtual Member *asMember() { return 0; } }; struct ExprList { Expr *expr; ExprList *next; ExprList(): expr(0), next(0) {} void init(Expr *expr, ExprList *next = 0) { this->expr = expr; this->next = next; } }; struct Const: Expr { double value; void init(Type type, double value) { this->type = type; this->value = value; } virtual void accept(ExprVisitor *v) { v->visitConst(this); } virtual Const *asConst() { return this; } }; struct String: Expr { const QString *value; void init(const QString *value) { this->value = value; } virtual void accept(ExprVisitor *v) { v->visitString(this); } virtual String *asString() { return this; } }; struct RegExp: Expr { // needs to be compatible with the flags in the lexer, and in RegExpObject enum Flags { RegExp_Global = 0x01, RegExp_IgnoreCase = 0x02, RegExp_Multiline = 0x04 }; const QString *value; int flags; void init(const QString *value, int flags) { this->value = value; this->flags = flags; } virtual void accept(ExprVisitor *v) { v->visitRegExp(this); } virtual RegExp *asRegExp() { return this; } }; struct Name: Expr { enum Builtin { builtin_invalid, builtin_typeof, builtin_delete, builtin_throw, builtin_rethrow, builtin_unwind_exception, builtin_push_catch_scope, builtin_foreach_iterator_object, builtin_foreach_next_property_name, builtin_push_with_scope, builtin_pop_scope, builtin_declare_vars, builtin_define_array, builtin_define_object_literal, builtin_setup_argument_object, builtin_convert_this_to_object, builtin_qml_context, builtin_qml_imported_scripts_object }; const QString *id; Builtin builtin; bool global : 1; bool qmlSingleton : 1; bool freeOfSideEffects : 1; quint32 line; quint32 column; void initGlobal(const QString *id, quint32 line, quint32 column); void init(const QString *id, quint32 line, quint32 column); void init(Builtin builtin, quint32 line, quint32 column); virtual void accept(ExprVisitor *v) { v->visitName(this); } virtual bool isLValue() { return true; } virtual Name *asName() { return this; } }; struct Q_AUTOTEST_EXPORT Temp: Expr { enum Kind { Invalid = 0, VirtualRegister, PhysicalRegister, StackSlot }; // Used when temp is used as base in member expression MemberExpressionResolver *memberResolver; unsigned index : 28; unsigned isReadOnly : 1; unsigned kind : 3; Temp() : memberResolver(0) , index((1 << 28) - 1) , isReadOnly(0) , kind(Invalid) {} void init(unsigned kind, unsigned index) { this->index = index; this->isReadOnly = false; this->kind = kind; } bool isInvalid() const { return kind == Invalid; } virtual void accept(ExprVisitor *v) { v->visitTemp(this); } virtual bool isLValue() { return !isReadOnly; } virtual Temp *asTemp() { return this; } }; inline bool operator==(const Temp &t1, const Temp &t2) Q_DECL_NOTHROW { return t1.index == t2.index && t1.kind == t2.kind && t1.type == t2.type; } inline bool operator!=(const Temp &t1, const Temp &t2) Q_DECL_NOTHROW { return !(t1 == t2); } inline uint qHash(const Temp &t, uint seed = 0) Q_DECL_NOTHROW { return t.index ^ t.kind ^ seed; } bool operator<(const Temp &t1, const Temp &t2) Q_DECL_NOTHROW; struct Q_AUTOTEST_EXPORT ArgLocal: Expr { enum Kind { Formal = 0, ScopedFormal, Local, ScopedLocal }; unsigned index; unsigned scope : 29; // how many scopes outside the current one? unsigned kind : 2; unsigned isArgumentsOrEval : 1; void init(unsigned kind, unsigned index, unsigned scope) { Q_ASSERT((kind == ScopedLocal && scope != 0) || (kind == ScopedFormal && scope != 0) || (scope == 0)); this->kind = kind; this->index = index; this->scope = scope; this->isArgumentsOrEval = false; } virtual void accept(ExprVisitor *v) { v->visitArgLocal(this); } virtual bool isLValue() { return true; } virtual ArgLocal *asArgLocal() { return this; } bool operator==(const ArgLocal &other) const { return index == other.index && scope == other.scope && kind == other.kind; } }; struct Closure: Expr { int value; // index in _module->functions const QString *functionName; void init(int functionInModule, const QString *functionName) { this->value = functionInModule; this->functionName = functionName; } virtual void accept(ExprVisitor *v) { v->visitClosure(this); } virtual Closure *asClosure() { return this; } }; struct Convert: Expr { Expr *expr; void init(Expr *expr, Type type) { this->expr = expr; this->type = type; } virtual void accept(ExprVisitor *v) { v->visitConvert(this); } virtual Convert *asConvert() { return this; } }; struct Unop: Expr { AluOp op; Expr *expr; void init(AluOp op, Expr *expr) { this->op = op; this->expr = expr; } virtual void accept(ExprVisitor *v) { v->visitUnop(this); } virtual Unop *asUnop() { return this; } }; struct Binop: Expr { AluOp op; Expr *left; // Temp or Const Expr *right; // Temp or Const void init(AluOp op, Expr *left, Expr *right) { this->op = op; this->left = left; this->right = right; } virtual void accept(ExprVisitor *v) { v->visitBinop(this); } virtual Binop *asBinop() { return this; } }; struct Call: Expr { Expr *base; // Name, Member, Temp ExprList *args; // List of Temps void init(Expr *base, ExprList *args) { this->base = base; this->args = args; } Expr *onlyArgument() const { if (args && ! args->next) return args->expr; return 0; } virtual void accept(ExprVisitor *v) { v->visitCall(this); } virtual Call *asCall() { return this; } }; struct New: Expr { Expr *base; // Name, Member, Temp ExprList *args; // List of Temps void init(Expr *base, ExprList *args) { this->base = base; this->args = args; } Expr *onlyArgument() const { if (args && ! args->next) return args->expr; return 0; } virtual void accept(ExprVisitor *v) { v->visitNew(this); } virtual New *asNew() { return this; } }; struct Subscript: Expr { Expr *base; Expr *index; void init(Expr *base, Expr *index) { this->base = base; this->index = index; } virtual void accept(ExprVisitor *v) { v->visitSubscript(this); } virtual bool isLValue() { return true; } virtual Subscript *asSubscript() { return this; } }; struct Member: Expr { // Used for property dependency tracking enum MemberKind { UnspecifiedMember, MemberOfEnum, MemberOfQmlScopeObject, MemberOfQmlContextObject, MemberOfIdObjectsArray, MemberOfSingletonObject, }; Expr *base; const QString *name; QQmlPropertyData *property; union { // depending on kind int attachedPropertiesId; int enumValue; int idIndex; }; uchar freeOfSideEffects : 1; // This is set for example for for QObject properties. All sorts of extra behavior // is defined when writing to them, for example resettable properties are reset // when writing undefined to them, and an exception is thrown when they're missing // a reset function. And then there's also Qt.binding(). uchar inhibitTypeConversionOnWrite: 1; uchar kind: 3; // MemberKind void setEnumValue(int value) { kind = MemberOfEnum; enumValue = value; } void setAttachedPropertiesId(int id) { Q_ASSERT(kind != MemberOfEnum && kind != MemberOfIdObjectsArray); attachedPropertiesId = id; } void init(Expr *base, const QString *name, QQmlPropertyData *property = 0, uchar kind = UnspecifiedMember, int index = 0) { this->base = base; this->name = name; this->property = property; this->idIndex = index; this->freeOfSideEffects = false; this->inhibitTypeConversionOnWrite = property != 0; this->kind = kind; } virtual void accept(ExprVisitor *v) { v->visitMember(this); } virtual bool isLValue() { return true; } virtual Member *asMember() { return this; } }; struct Stmt { enum { InvalidId = -1 }; QQmlJS::AST::SourceLocation location; explicit Stmt(int id): _id(id) {} virtual ~Stmt() { #ifdef Q_CC_MSVC // MSVC complains about potential memory leaks if a destructor never returns. #else Q_UNREACHABLE(); #endif } virtual Stmt *asTerminator() { return 0; } virtual void accept(StmtVisitor *) = 0; virtual Exp *asExp() { return 0; } virtual Move *asMove() { return 0; } virtual Jump *asJump() { return 0; } virtual CJump *asCJump() { return 0; } virtual Ret *asRet() { return 0; } virtual Phi *asPhi() { return 0; } int id() const { return _id; } private: // For memory management in BasicBlock friend struct BasicBlock; private: friend struct Function; int _id; }; struct Exp: Stmt { Expr *expr; Exp(int id): Stmt(id) {} void init(Expr *expr) { this->expr = expr; } virtual void accept(StmtVisitor *v) { v->visitExp(this); } virtual Exp *asExp() { return this; } }; struct Move: Stmt { Expr *target; // LHS - Temp, Name, Member or Subscript Expr *source; bool swap; Move(int id): Stmt(id) {} void init(Expr *target, Expr *source) { this->target = target; this->source = source; this->swap = false; } virtual void accept(StmtVisitor *v) { v->visitMove(this); } virtual Move *asMove() { return this; } }; struct Jump: Stmt { BasicBlock *target; Jump(int id): Stmt(id) {} void init(BasicBlock *target) { this->target = target; } virtual Stmt *asTerminator() { return this; } virtual void accept(StmtVisitor *v) { v->visitJump(this); } virtual Jump *asJump() { return this; } }; struct CJump: Stmt { Expr *cond; // Temp, Binop BasicBlock *iftrue; BasicBlock *iffalse; BasicBlock *parent; CJump(int id): Stmt(id) {} void init(Expr *cond, BasicBlock *iftrue, BasicBlock *iffalse, BasicBlock *parent) { this->cond = cond; this->iftrue = iftrue; this->iffalse = iffalse; this->parent = parent; } virtual Stmt *asTerminator() { return this; } virtual void accept(StmtVisitor *v) { v->visitCJump(this); } virtual CJump *asCJump() { return this; } }; struct Ret: Stmt { Expr *expr; Ret(int id): Stmt(id) {} void init(Expr *expr) { this->expr = expr; } virtual Stmt *asTerminator() { return this; } virtual void accept(StmtVisitor *v) { v->visitRet(this); } virtual Ret *asRet() { return this; } }; struct Phi: Stmt { Temp *targetTemp; struct Data { QVector incoming; // used by Phi nodes }; Data *d; Phi(int id): Stmt(id), d(0) {} virtual void accept(StmtVisitor *v) { v->visitPhi(this); } virtual Phi *asPhi() { return this; } void destroyData() { delete d; d = 0; } }; struct Q_QML_PRIVATE_EXPORT Module { QQmlJS::MemoryPool pool; QVector functions; Function *rootFunction; QString fileName; bool isQmlModule; // implies rootFunction is always 0 bool debugMode; Function *newFunction(const QString &name, Function *outer); Module(bool debugMode) : rootFunction(0) , isQmlModule(false) , debugMode(debugMode) {} ~Module(); void setFileName(const QString &name); }; struct BasicBlock { private: Q_DISABLE_COPY(BasicBlock) public: Function *function; BasicBlock *catchBlock; QVector in; QVector out; QQmlJS::AST::SourceLocation nextLocation; BasicBlock(Function *function, BasicBlock *catcher) : function(function) , catchBlock(catcher) , _containingGroup(0) , _index(-1) , _isExceptionHandler(false) , _groupStart(false) , _isRemoved(false) { in.reserve(2); out.reserve(2); } ~BasicBlock(); const QVector &statements() const { Q_ASSERT(!isRemoved()); return _statements; } int statementCount() const { Q_ASSERT(!isRemoved()); return _statements.size(); } void setStatements(const QVector &newStatements); template inline Instr i(Instr i) { Q_ASSERT(!isRemoved()); appendStatement(i); return i; } void appendStatement(Stmt *statement); void prependStatement(Stmt *stmt); void prependStatements(const QVector &stmts); void insertStatementBefore(Stmt *before, Stmt *newStmt); void insertStatementBefore(int index, Stmt *newStmt); void insertStatementBeforeTerminator(Stmt *stmt); void replaceStatement(int index, Stmt *newStmt); void removeStatement(Stmt *stmt); void removeStatement(int idx); inline bool isEmpty() const { Q_ASSERT(!isRemoved()); return _statements.isEmpty(); } inline Stmt *terminator() const { Q_ASSERT(!isRemoved()); if (! _statements.isEmpty() && _statements.last()->asTerminator() != 0) return _statements.last(); return 0; } inline bool isTerminated() const { Q_ASSERT(!isRemoved()); if (terminator() != 0) return true; return false; } unsigned newTemp(); Temp *TEMP(unsigned kind); ArgLocal *ARG(unsigned index, unsigned scope); ArgLocal *LOCAL(unsigned index, unsigned scope); Expr *CONST(Type type, double value); Expr *STRING(const QString *value); Expr *REGEXP(const QString *value, int flags); Name *NAME(const QString &id, quint32 line, quint32 column); Name *NAME(Name::Builtin builtin, quint32 line, quint32 column); Name *GLOBALNAME(const QString &id, quint32 line, quint32 column); Closure *CLOSURE(int functionInModule); Expr *CONVERT(Expr *expr, Type type); Expr *UNOP(AluOp op, Expr *expr); Expr *BINOP(AluOp op, Expr *left, Expr *right); Expr *CALL(Expr *base, ExprList *args = 0); Expr *NEW(Expr *base, ExprList *args = 0); Expr *SUBSCRIPT(Expr *base, Expr *index); Expr *MEMBER(Expr *base, const QString *name, QQmlPropertyData *property = 0, uchar kind = Member::UnspecifiedMember, int attachedPropertiesIdOrEnumValue = 0); Stmt *EXP(Expr *expr); Stmt *MOVE(Expr *target, Expr *source); Stmt *JUMP(BasicBlock *target); Stmt *CJUMP(Expr *cond, BasicBlock *iftrue, BasicBlock *iffalse); Stmt *RET(Expr *expr); BasicBlock *containingGroup() const { Q_ASSERT(!isRemoved()); return _containingGroup; } void setContainingGroup(BasicBlock *loopHeader) { Q_ASSERT(!isRemoved()); _containingGroup = loopHeader; } bool isGroupStart() const { Q_ASSERT(!isRemoved()); return _groupStart; } void markAsGroupStart(bool mark = true) { Q_ASSERT(!isRemoved()); _groupStart = mark; } // Returns the index of the basic-block. // See Function for the full description. int index() const { Q_ASSERT(!isRemoved()); return _index; } bool isExceptionHandler() const { return _isExceptionHandler; } void setExceptionHandler(bool onoff) { _isExceptionHandler = onoff; } bool isRemoved() const { return _isRemoved; } private: // For Function's eyes only. friend struct Function; void setIndex(int index) { Q_ASSERT(_index < 0); changeIndex(index); } void changeIndex(int index) { Q_ASSERT(index >= 0); _index = index; } void markAsRemoved() { _isRemoved = true; _index = -1; } private: QVector _statements; BasicBlock *_containingGroup; int _index; unsigned _isExceptionHandler : 1; unsigned _groupStart : 1; unsigned _isRemoved : 1; }; // Map from meta property index (existence implies dependency) to notify signal index typedef QHash PropertyDependencyMap; // The Function owns (manages), among things, a list of basic-blocks. All the blocks have an index, // which corresponds to the index in the entry/index in the vector in which they are stored. This // means that algorithms/classes can also store any information about a basic block in an array, // where the index corresponds to the index of the basic block, which can then be used to query // the function for a pointer to a basic block. This also means that basic-blocks cannot be removed // or renumbered. // // Note that currently there is one exception: after optimization and block scheduling, the // method setScheduledBlocks can be called once, to register a newly ordered list. For debugging // purposes, these blocks are not immediately renumbered, so renumberBasicBlocks should be called // immediately after changing the order. That will restore the property of having a corresponding // block-index and block-position-in-basicBlocks-vector. // // In order for optimization/transformation passes to skip uninteresting basic blocks that will be // removed, the block can be marked as such. After doing so, any access will result in a failing // assertion. struct Function { Module *module; QQmlJS::MemoryPool *pool; const QString *name; int tempCount; int maxNumberOfArguments; QSet strings; QList formals; QList locals; QVector nestedFunctions; Function *outer; int insideWithOrCatch; uint hasDirectEval: 1; uint usesArgumentsObject : 1; uint usesThis : 1; uint isStrict: 1; uint isNamedExpression : 1; uint hasTry: 1; uint hasWith: 1; uint unused : 25; // Location of declaration in source code (-1 if not specified) int line; int column; // Qml extension: QSet idObjectDependencies; PropertyDependencyMap contextObjectPropertyDependencies; PropertyDependencyMap scopeObjectPropertyDependencies; template T *New() { return new (pool->allocate(sizeof(T))) T(); } template T *NewStmt() { return new (pool->allocate(sizeof(T))) T(getNewStatementId()); } Function(Module *module, Function *outer, const QString &name); ~Function(); enum BasicBlockInsertMode { InsertBlock, DontInsertBlock }; BasicBlock *newBasicBlock(BasicBlock *catchBlock, BasicBlockInsertMode mode = InsertBlock); const QString *newString(const QString &text); void RECEIVE(const QString &name) { formals.append(newString(name)); } void LOCAL(const QString &name) { locals.append(newString(name)); } BasicBlock *addBasicBlock(BasicBlock *block); void removeBasicBlock(BasicBlock *block); const QVector &basicBlocks() const { return _basicBlocks; } BasicBlock *basicBlock(int idx) const { return _basicBlocks.at(idx); } int basicBlockCount() const { return _basicBlocks.size(); } int liveBasicBlocksCount() const; void removeSharedExpressions(); int indexOfArgument(const QStringRef &string) const; bool variablesCanEscape() const { return hasDirectEval || !nestedFunctions.isEmpty() || module->debugMode; } void setScheduledBlocks(const QVector &scheduled); void renumberBasicBlocks(); int getNewStatementId() { return _statementCount++; } int statementCount() const { return _statementCount; } private: BasicBlock *getOrCreateBasicBlock(int index); void setStatementCount(int cnt); private: QVector _basicBlocks; QVector *_allBasicBlocks; int _statementCount; }; class CloneExpr: protected IR::ExprVisitor { public: explicit CloneExpr(IR::BasicBlock *block = 0); void setBasicBlock(IR::BasicBlock *block); template ExprSubclass *operator()(ExprSubclass *expr) { return clone(expr); } template ExprSubclass *clone(ExprSubclass *expr) { Expr *c = expr; qSwap(cloned, c); expr->accept(this); qSwap(cloned, c); return static_cast(c); } static Const *cloneConst(Const *c, Function *f) { Const *newConst = f->New(); newConst->init(c->type, c->value); return newConst; } static Name *cloneName(Name *n, Function *f) { Name *newName = f->New(); newName->type = n->type; newName->id = n->id; newName->builtin = n->builtin; newName->global = n->global; newName->qmlSingleton = n->qmlSingleton; newName->freeOfSideEffects = n->freeOfSideEffects; newName->line = n->line; newName->column = n->column; return newName; } static Temp *cloneTemp(Temp *t, Function *f) { Temp *newTemp = f->New(); newTemp->init(t->kind, t->index); newTemp->type = t->type; newTemp->memberResolver = t->memberResolver; return newTemp; } static ArgLocal *cloneArgLocal(ArgLocal *argLocal, Function *f) { ArgLocal *newArgLocal = f->New(); newArgLocal->init(argLocal->kind, argLocal->index, argLocal->scope); newArgLocal->type = argLocal->type; return newArgLocal; } protected: IR::ExprList *clone(IR::ExprList *list); virtual void visitConst(Const *); virtual void visitString(String *); virtual void visitRegExp(RegExp *); virtual void visitName(Name *); virtual void visitTemp(Temp *); virtual void visitArgLocal(ArgLocal *); virtual void visitClosure(Closure *); virtual void visitConvert(Convert *); virtual void visitUnop(Unop *); virtual void visitBinop(Binop *); virtual void visitCall(Call *); virtual void visitNew(New *); virtual void visitSubscript(Subscript *); virtual void visitMember(Member *); protected: IR::BasicBlock *block; private: IR::Expr *cloned; }; class Q_AUTOTEST_EXPORT IRPrinter: public StmtVisitor, public ExprVisitor { public: IRPrinter(QTextStream *out); virtual ~IRPrinter(); void print(Stmt *s); void print(Expr *e); void print(const Expr &e); virtual void print(Function *f); virtual void print(BasicBlock *bb); virtual void visitExp(Exp *s); virtual void visitMove(Move *s); virtual void visitJump(Jump *s); virtual void visitCJump(CJump *s); virtual void visitRet(Ret *s); virtual void visitPhi(Phi *s); virtual void visitConst(Const *e); virtual void visitString(String *e); virtual void visitRegExp(RegExp *e); virtual void visitName(Name *e); virtual void visitTemp(Temp *e); virtual void visitArgLocal(ArgLocal *e); virtual void visitClosure(Closure *e); virtual void visitConvert(Convert *e); virtual void visitUnop(Unop *e); virtual void visitBinop(Binop *e); virtual void visitCall(Call *e); virtual void visitNew(New *e); virtual void visitSubscript(Subscript *e); virtual void visitMember(Member *e); static QString escape(const QString &s); protected: virtual void addStmtNr(Stmt *s); void addJustifiedNr(int pos); void printBlockStart(); protected: QTextStream *out; int positionSize; BasicBlock *currentBB; }; } // end of namespace IR } // end of namespace QV4 QT_END_NAMESPACE #if defined(QT_POP_CONST) # pragma pop_macro("CONST") // Restore peace # undef QT_POP_CONST #endif #endif // QV4IR_P_H