1 /****************************************************************************
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
40 ****************************************************************************/
42 #include "qv4irbuilder_p.h"
43 #include "qv4compiler_p_p.h"
45 #include <private/qdeclarativemetatype_p.h>
46 #include <private/qdeclarativetypenamecache_p.h>
48 DEFINE_BOOL_CONFIG_OPTION(qmlVerboseCompiler, QML_VERBOSE_COMPILER)
52 using namespace QDeclarativeJS;
54 static IR::Type irTypeFromVariantType(int t, QDeclarativeEnginePrivate *engine, const QMetaObject * /* meta */)
63 case QMetaType::QReal:
66 case QMetaType::QString:
67 return IR::StringType;
73 if (t == qMetaTypeId<QDeclarative1AnchorLine>())
74 return IR::AnchorLineType;
75 else if (t == QDeclarativeMetaType::QQuickAnchorLineMetaTypeId())
76 return IR::SGAnchorLineType;
77 else if (engine->metaObjectForType(t)) {
78 return IR::ObjectType;
81 return IR::InvalidType;
85 QV4IRBuilder::QV4IRBuilder(const QV4Compiler::Expression *expr,
86 QDeclarativeEnginePrivate *engine)
87 : m_expression(expr), m_engine(engine), _function(0), _block(0), _discard(false)
91 bool QV4IRBuilder::operator()(QDeclarativeJS::IR::Function *function,
92 QDeclarativeJS::AST::Node *ast)
94 bool discarded = false;
96 IR::BasicBlock *block = function->newBasicBlock();
98 qSwap(_discard, discarded);
99 qSwap(_function, function);
100 qSwap(_block, block);
103 AST::SourceLocation location;
104 if (AST::ExpressionNode *asExpr = ast->expressionCast()) {
105 r = expression(asExpr);
106 location = asExpr->firstSourceLocation();
107 } else if (AST::Statement *asStmt = ast->statementCast()) {
108 r = statement(asStmt);
109 location = asStmt->firstSourceLocation();
112 //_block->MOVE(_block->TEMP(IR::InvalidType), r.code);
114 const QMetaObject *m = 0;
115 const IR::Type targetType = irTypeFromVariantType(m_expression->property->type, m_engine, m);
116 if (targetType != r.type()) {
117 IR::Expr *x = _block->TEMP(targetType);
118 _block->MOVE(x, r, true);
121 _block->RET(r.code, targetType, location.startLine, location.startColumn);
124 qSwap(_block, block);
125 qSwap(_function, function);
126 qSwap(_discard, discarded);
131 bool QV4IRBuilder::buildName(QList<QStringRef> &name,
133 QList<AST::ExpressionNode *> *nodes)
135 if (node->kind == AST::Node::Kind_IdentifierExpression) {
136 name << static_cast<AST::IdentifierExpression*>(node)->name;
137 if (nodes) *nodes << static_cast<AST::IdentifierExpression*>(node);
138 } else if (node->kind == AST::Node::Kind_FieldMemberExpression) {
139 AST::FieldMemberExpression *expr =
140 static_cast<AST::FieldMemberExpression *>(node);
142 if (!buildName(name, expr->base, nodes))
146 if (nodes) *nodes << expr;
154 void QV4IRBuilder::discard()
159 QV4IRBuilder::ExprResult
160 QV4IRBuilder::expression(AST::ExpressionNode *ast)
168 if (r.is(IR::InvalidType))
171 Q_ASSERT(r.hint == r.format);
178 void QV4IRBuilder::condition(AST::ExpressionNode *ast, IR::BasicBlock *iftrue, IR::BasicBlock *iffalse)
182 ExprResult r(iftrue, iffalse);
187 if (r.format != ExprResult::cx) {
191 Q_ASSERT(r.hint == ExprResult::cx);
192 Q_ASSERT(r.format == ExprResult::ex);
194 if (r.type() != IR::BoolType) {
195 IR::Temp *t = _block->TEMP(IR::BoolType);
200 _block->CJUMP(_block->UNOP(IR::OpIfTrue, r), iftrue, iffalse);
204 QV4IRBuilder::ExprResult
205 QV4IRBuilder::statement(AST::Statement *ast)
213 if (r.is(IR::InvalidType))
216 Q_ASSERT(r.hint == r.format);
223 void QV4IRBuilder::sourceElement(AST::SourceElement *ast)
228 void QV4IRBuilder::implicitCvt(ExprResult &expr, IR::Type type)
230 if (expr.type() == type)
231 return; // nothing to do
233 IR::Expr *x = _block->TEMP(type);
234 _block->MOVE(x, expr.code);
239 bool QV4IRBuilder::visit(AST::UiProgram *)
241 Q_ASSERT(!"unreachable");
245 bool QV4IRBuilder::visit(AST::UiImportList *)
247 Q_ASSERT(!"unreachable");
251 bool QV4IRBuilder::visit(AST::UiImport *)
253 Q_ASSERT(!"unreachable");
257 bool QV4IRBuilder::visit(AST::UiPublicMember *)
259 Q_ASSERT(!"unreachable");
263 bool QV4IRBuilder::visit(AST::UiSourceElement *)
265 Q_ASSERT(!"unreachable");
269 bool QV4IRBuilder::visit(AST::UiObjectDefinition *)
271 Q_ASSERT(!"unreachable");
275 bool QV4IRBuilder::visit(AST::UiObjectInitializer *)
277 Q_ASSERT(!"unreachable");
281 bool QV4IRBuilder::visit(AST::UiObjectBinding *)
283 Q_ASSERT(!"unreachable");
287 bool QV4IRBuilder::visit(AST::UiScriptBinding *)
289 Q_ASSERT(!"unreachable");
293 bool QV4IRBuilder::visit(AST::UiArrayBinding *)
295 Q_ASSERT(!"unreachable");
299 bool QV4IRBuilder::visit(AST::UiObjectMemberList *)
301 Q_ASSERT(!"unreachable");
305 bool QV4IRBuilder::visit(AST::UiArrayMemberList *)
307 Q_ASSERT(!"unreachable");
311 bool QV4IRBuilder::visit(AST::UiQualifiedId *)
313 Q_ASSERT(!"unreachable");
319 bool QV4IRBuilder::visit(AST::Program *)
321 Q_ASSERT(!"unreachable");
325 bool QV4IRBuilder::visit(AST::SourceElements *)
327 Q_ASSERT(!"unreachable");
331 bool QV4IRBuilder::visit(AST::FunctionSourceElement *)
333 Q_ASSERT(!"unreachable");
337 bool QV4IRBuilder::visit(AST::StatementSourceElement *)
339 Q_ASSERT(!"unreachable");
344 bool QV4IRBuilder::visit(AST::PropertyNameAndValueList *)
346 Q_ASSERT(!"unreachable");
350 bool QV4IRBuilder::visit(AST::IdentifierPropertyName *)
352 Q_ASSERT(!"unreachable");
356 bool QV4IRBuilder::visit(AST::StringLiteralPropertyName *)
358 Q_ASSERT(!"unreachable");
362 bool QV4IRBuilder::visit(AST::NumericLiteralPropertyName *)
364 Q_ASSERT(!"unreachable");
370 bool QV4IRBuilder::visit(AST::ElementList *)
372 Q_ASSERT(!"unreachable");
376 bool QV4IRBuilder::visit(AST::Elision *)
378 Q_ASSERT(!"unreachable");
384 bool QV4IRBuilder::visit(AST::ArgumentList *)
386 Q_ASSERT(!"unreachable");
391 bool QV4IRBuilder::visit(AST::ObjectLiteral *)
396 bool QV4IRBuilder::visit(AST::ArrayLiteral *)
401 bool QV4IRBuilder::visit(AST::ThisExpression *)
406 bool QV4IRBuilder::visit(AST::IdentifierExpression *ast)
408 const quint32 line = ast->identifierToken.startLine;
409 const quint32 column = ast->identifierToken.startColumn;
411 const QString name = ast->name.toString();
413 if (name.at(0) == QLatin1Char('u') && name.length() == 9 && name == QLatin1String("undefined")) {
414 _expr.code = _block->CONST(IR::UndefinedType, 0); // ### undefined value
415 } else if (m_engine->v8engine()->illegalNames().contains(name) ) {
416 if (qmlVerboseCompiler()) qWarning() << "*** illegal symbol:" << name;
418 } else if (const QDeclarativeScript::Object *obj = m_expression->ids->value(name)) {
419 IR::Name *code = _block->ID_OBJECT(name, obj, line, column);
420 if (obj == m_expression->component)
421 code->storage = IR::Name::RootStorage;
425 QDeclarativeTypeNameCache::Result r = m_expression->importCache->query(name);
428 _expr.code = _block->ATTACH_TYPE(name, r.type, IR::Name::ScopeStorage, line, column);
430 // We don't support anything else
434 if (m_expression->context != m_expression->component) {
435 // RootStorage is more efficient than ScopeStorage, so prefer that if they are the same
436 QDeclarativePropertyCache *cache = m_expression->context->synthCache;
437 const QMetaObject *metaObject = m_expression->context->metaObject();
438 if (!cache) cache = m_engine->cache(metaObject);
440 QDeclarativePropertyData *data = cache->property(name);
442 if (data && data->revision != 0) {
443 if (qmlVerboseCompiler())
444 qWarning() << "*** versioned symbol:" << name;
449 if (data && !data->isFunction()) {
450 IR::Type irType = irTypeFromVariantType(data->propType, m_engine, metaObject);
451 _expr.code = _block->SYMBOL(irType, name, metaObject, data, IR::Name::ScopeStorage, line, column);
457 QDeclarativePropertyCache *cache = m_expression->component->synthCache;
458 const QMetaObject *metaObject = m_expression->component->metaObject();
459 if (!cache) cache = m_engine->cache(metaObject);
461 QDeclarativePropertyData *data = cache->property(name);
463 if (data && data->revision != 0) {
464 if (qmlVerboseCompiler())
465 qWarning() << "*** versioned symbol:" << name;
470 if (data && !data->isFunction()) {
471 IR::Type irType = irTypeFromVariantType(data->propType, m_engine, metaObject);
472 _expr.code = _block->SYMBOL(irType, name, metaObject, data, IR::Name::RootStorage, line, column);
477 if (!found && qmlVerboseCompiler())
478 qWarning() << "*** unknown symbol:" << name;
482 if (_expr.code && _expr.hint == ExprResult::cx) {
483 _expr.format = ExprResult::cx;
485 if (_expr.type() != IR::BoolType) {
486 IR::Temp *t = _block->TEMP(IR::BoolType);
487 _block->MOVE(t, _expr);
491 _block->CJUMP(_expr.code, _expr.iftrue, _expr.iffalse);
498 bool QV4IRBuilder::visit(AST::NullExpression *)
500 // ### TODO: cx format
501 _expr.code = _block->CONST(IR::NullType, 0);
505 bool QV4IRBuilder::visit(AST::TrueLiteral *)
507 // ### TODO: cx format
508 _expr.code = _block->CONST(IR::BoolType, 1);
512 bool QV4IRBuilder::visit(AST::FalseLiteral *)
514 // ### TODO: cx format
515 _expr.code = _block->CONST(IR::BoolType, 0);
519 bool QV4IRBuilder::visit(AST::StringLiteral *ast)
521 // ### TODO: cx format
522 _expr.code = _block->STRING(ast->value);
526 bool QV4IRBuilder::visit(AST::NumericLiteral *ast)
528 if (_expr.hint == ExprResult::cx) {
529 _expr.format = ExprResult::cx;
530 _block->JUMP(ast->value ? _expr.iftrue : _expr.iffalse);
532 _expr.code = _block->CONST(ast->value);
537 bool QV4IRBuilder::visit(AST::RegExpLiteral *)
542 bool QV4IRBuilder::visit(AST::NestedExpression *)
544 return true; // the value of the nested expression
547 bool QV4IRBuilder::visit(AST::ArrayMemberExpression *)
552 bool QV4IRBuilder::visit(AST::FieldMemberExpression *ast)
554 if (IR::Expr *left = expression(ast->base)) {
555 if (IR::Name *baseName = left->asName()) {
556 const quint32 line = ast->identifierToken.startLine;
557 const quint32 column = ast->identifierToken.startColumn;
559 QString name = ast->name.toString();
561 switch(baseName->symbol) {
562 case IR::Name::Unbound:
565 case IR::Name::AttachType:
566 if (name.at(0).isUpper()) {
567 QByteArray utf8Name = name.toUtf8();
568 const char *enumName = utf8Name.constData();
570 const QMetaObject *meta = baseName->declarativeType->metaObject();
572 for (int ii = 0; !found && ii < meta->enumeratorCount(); ++ii) {
573 QMetaEnum e = meta->enumerator(ii);
574 for (int jj = 0; !found && jj < e.keyCount(); ++jj) {
575 if (0 == strcmp(e.key(jj), enumName)) {
577 _expr.code = _block->CONST(IR::IntType, e.value(jj));
582 if (!found && qmlVerboseCompiler())
583 qWarning() << "*** unresolved enum:"
584 << (*baseName->id + QLatin1String(".") + ast->name.toString());
585 } else if(const QMetaObject *attachedMeta = baseName->declarativeType->attachedPropertiesType()) {
586 QDeclarativePropertyCache *cache = m_engine->cache(attachedMeta);
587 QDeclarativePropertyData *data = cache->property(name);
589 if (!data || data->isFunction())
590 return false; // Don't support methods (or non-existing properties ;)
592 if(!data->isFinal()) {
593 if (qmlVerboseCompiler())
594 qWarning() << "*** non-final attached property:"
595 << (*baseName->id + QLatin1String(".") + ast->name.toString());
596 return false; // We don't know enough about this property
599 IR::Type irType = irTypeFromVariantType(data->propType, m_engine, attachedMeta);
600 _expr.code = _block->SYMBOL(baseName, irType, name, attachedMeta, data, line, column);
604 case IR::Name::IdObject: {
605 const QDeclarativeScript::Object *idObject = baseName->idObject;
606 QDeclarativePropertyCache *cache =
607 idObject->synthCache?idObject->synthCache:m_engine->cache(idObject->metaObject());
609 QDeclarativePropertyData *data = cache->property(name);
611 if (!data || data->isFunction())
612 return false; // Don't support methods (or non-existing properties ;)
614 if (data->revision != 0) {
615 if (qmlVerboseCompiler())
616 qWarning() << "*** versioned symbol:" << name;
621 IR::Type irType = irTypeFromVariantType(data->propType, m_engine, idObject->metaObject());
622 _expr.code = _block->SYMBOL(baseName, irType, name,
623 idObject->metaObject(), data, line, column);
627 case IR::Name::Property:
628 if (baseName->type == IR::ObjectType && baseName->meta && baseName->property->isFinal()) {
629 QDeclarativePropertyCache *cache = m_engine->cache(baseName->meta);
633 if (QDeclarativePropertyData *data = cache->property(name)) {
634 if (!data->isFinal()) {
635 if (qmlVerboseCompiler())
636 qWarning() << "*** non-final property access:"
637 << (*baseName->id + QLatin1String(".") + ast->name.toString());
638 return false; // We don't know enough about this property
641 IR::Type irType = irTypeFromVariantType(data->propType, m_engine, baseName->meta);
642 _expr.code = _block->SYMBOL(baseName, irType, name,
643 baseName->meta, data, line, column);
648 case IR::Name::Object:
658 bool QV4IRBuilder::preVisit(AST::Node *)
663 bool QV4IRBuilder::visit(AST::NewMemberExpression *)
668 bool QV4IRBuilder::visit(AST::NewExpression *)
673 bool QV4IRBuilder::visit(AST::CallExpression *ast)
675 QList<QStringRef> names;
676 QList<AST::ExpressionNode *> nameNodes;
679 nameNodes.reserve(4);
681 if (buildName(names, ast->base, &nameNodes)) {
682 //ExprResult base = expression(ast->base);
684 for (int i = 0; i < names.size(); ++i) {
686 id += QLatin1Char('.');
689 const AST::SourceLocation loc = nameNodes.last()->firstSourceLocation();
690 IR::Expr *base = _block->NAME(id, loc.startLine, loc.startColumn);
692 IR::ExprList *args = 0, **argsInserter = &args;
693 for (AST::ArgumentList *it = ast->arguments; it; it = it->next) {
694 IR::Expr *arg = expression(it->expression);
695 *argsInserter = _function->pool->New<IR::ExprList>();
696 (*argsInserter)->init(arg);
697 argsInserter = &(*argsInserter)->next;
700 IR::Temp *r = _block->TEMP(IR::InvalidType);
701 IR::Expr *call = _block->CALL(base, args);
702 _block->MOVE(r, call);
703 r->type = call->type;
710 bool QV4IRBuilder::visit(AST::PostIncrementExpression *)
715 bool QV4IRBuilder::visit(AST::PostDecrementExpression *)
720 bool QV4IRBuilder::visit(AST::DeleteExpression *)
725 bool QV4IRBuilder::visit(AST::VoidExpression *)
730 bool QV4IRBuilder::visit(AST::TypeOfExpression *)
735 bool QV4IRBuilder::visit(AST::PreIncrementExpression *)
740 bool QV4IRBuilder::visit(AST::PreDecrementExpression *)
745 bool QV4IRBuilder::visit(AST::UnaryPlusExpression *ast)
747 ExprResult expr = expression(ast->expression);
748 if (expr.isNot(IR::InvalidType)) {
749 if (expr.code->asConst() != 0) {
754 IR::Expr *code = _block->UNOP(IR::OpUPlus, expr);
755 _expr.code = _block->TEMP(code->type);
756 _block->MOVE(_expr, code);
762 bool QV4IRBuilder::visit(AST::UnaryMinusExpression *ast)
764 ExprResult expr = expression(ast->expression);
765 if (expr.isNot(IR::InvalidType)) {
766 if (IR::Const *c = expr.code->asConst()) {
768 _expr.code = _block->CONST(-c->value);
772 IR::Expr *code = _block->UNOP(IR::OpUMinus, expr);
773 _expr.code = _block->TEMP(code->type);
774 _block->MOVE(_expr, code);
780 bool QV4IRBuilder::visit(AST::TildeExpression *ast)
782 ExprResult expr = expression(ast->expression);
783 if (expr.isNot(IR::InvalidType)) {
784 if (IR::Const *c = expr.code->asConst()) {
786 _expr.code = _block->CONST(~int(c->value));
789 IR::Expr *code = _block->UNOP(IR::OpCompl, expr);
790 _expr.code = _block->TEMP(code->type);
791 _block->MOVE(_expr, code);
797 bool QV4IRBuilder::visit(AST::NotExpression *ast)
799 ExprResult expr = expression(ast->expression);
801 if (expr.isNot(IR::InvalidType)) {
802 if (IR::Const *c = expr.code->asConst()) {
804 _expr.code = _block->CONST(!c->value);
808 IR::Expr *code = _block->UNOP(IR::OpNot, expr);
809 _expr.code = _block->TEMP(code->type);
810 _block->MOVE(_expr, code);
812 } else if (expr.hint == ExprResult::cx) {
813 expr.format = ExprResult::cx;
814 _block->CJUMP(_block->UNOP(IR::OpNot, expr), _expr.iftrue, _expr.iffalse);
821 void QV4IRBuilder::binop(AST::BinaryExpression *ast, ExprResult left, ExprResult right)
823 if (IR::Type t = maxType(left.type(), right.type())) {
824 implicitCvt(left, t);
825 implicitCvt(right, t);
827 if (_expr.hint == ExprResult::cx) {
828 _expr.format = ExprResult::cx;
829 _block->CJUMP(_block->BINOP(IR::binaryOperator(ast->op), left, right), _expr.iftrue, _expr.iffalse);
831 IR::Expr *code = _block->BINOP(IR::binaryOperator(ast->op), left, right);
832 _expr.code = _block->TEMP(code->type);
833 _block->MOVE(_expr.code, code);
838 bool QV4IRBuilder::visit(AST::BinaryExpression *ast)
841 case QSOperator::And: {
842 if (_expr.hint == ExprResult::cx) {
843 _expr.format = ExprResult::cx;
845 Q_ASSERT(_expr.iffalse != 0);
846 Q_ASSERT(_expr.iftrue != 0);
848 IR::BasicBlock *iftrue = _function->newBasicBlock();
849 condition(ast->left, iftrue, _expr.iffalse);
852 condition(ast->right, _expr.iftrue, _expr.iffalse);
854 IR::BasicBlock *iftrue = _function->newBasicBlock();
855 IR::BasicBlock *iffalse = _function->newBasicBlock();
856 IR::BasicBlock *endif = _function->newBasicBlock();
858 condition(ast->left, iftrue, iffalse);
860 IR::Temp *r = _block->TEMP(IR::InvalidType);
863 _block->MOVE(r, _block->CONST(0)); // ### use the right null value
867 ExprResult right = expression(ast->right);
868 _block->MOVE(r, right);
873 r->type = right.type(); // ### not exactly, it can be IR::BoolType.
878 case QSOperator::Or: {
879 IR::BasicBlock *iftrue = _function->newBasicBlock();
880 IR::BasicBlock *endif = _function->newBasicBlock();
882 ExprResult left = expression(ast->left);
883 IR::Temp *r = _block->TEMP(left.type());
884 _block->MOVE(r, left);
887 if (r->type != IR::BoolType) {
888 cond = _block->TEMP(IR::BoolType);
889 _block->MOVE(cond, r);
892 _block->CJUMP(_block->UNOP(IR::OpNot, cond), iftrue, endif);
895 ExprResult right = expression(ast->right);
896 _block->MOVE(r, right);
898 if (left.type() != right.type())
909 case QSOperator::Ge: {
910 ExprResult left = expression(ast->left);
911 ExprResult right = expression(ast->right);
912 if (left.type() == IR::StringType && right.type() == IR::StringType) {
913 binop(ast, left, right);
914 } else if (left.isValid() && right.isValid()) {
915 implicitCvt(left, IR::RealType);
916 implicitCvt(right, IR::RealType);
917 binop(ast, left, right);
921 case QSOperator::NotEqual:
922 case QSOperator::Equal: {
923 ExprResult left = expression(ast->left);
924 ExprResult right = expression(ast->right);
925 if ((left.type() == IR::NullType || left.type() == IR::UndefinedType) &&
926 (right.type() == IR::NullType || right.type() == IR::UndefinedType)) {
927 const bool isEq = ast->op == QSOperator::Equal;
928 if (_expr.hint == ExprResult::cx) {
929 _expr.format = ExprResult::cx;
930 _block->JUMP(isEq ? _expr.iftrue : _expr.iffalse);
932 _expr.code = _block->CONST(IR::BoolType, isEq ? 1 : 0);
934 } else if ((left.type() == IR::StringType && right.type() >= IR::FirstNumberType) ||
935 (left.type() >= IR::FirstNumberType && right.type() == IR::StringType)) {
936 implicitCvt(left, IR::RealType);
937 implicitCvt(right, IR::RealType);
938 binop(ast, left, right);
939 } else if (left.type() == IR::BoolType || right.type() == IR::BoolType) {
940 implicitCvt(left, IR::BoolType);
941 implicitCvt(right, IR::BoolType);
942 } else if (left.isValid() && right.isValid()) {
943 binop(ast, left, right);
947 case QSOperator::StrictEqual:
948 case QSOperator::StrictNotEqual: {
949 ExprResult left = expression(ast->left);
950 ExprResult right = expression(ast->right);
951 if (left.type() == right.type()) {
952 binop(ast, left, right);
953 } else if (left.type() >= IR::BoolType && right.type() >= IR::BoolType) {
954 // left and right have numeric type (int or real)
955 binop(ast, left, right);
956 } else if (left.isValid() && right.isValid()) {
957 const bool isEq = ast->op == QSOperator::StrictEqual;
958 if (_expr.hint == ExprResult::cx) {
959 _expr.format = ExprResult::cx;
960 _block->JUMP(isEq ? _expr.iftrue : _expr.iffalse);
962 _expr.code = _block->CONST(IR::BoolType, isEq ? 1 : 0);
967 case QSOperator::BitAnd:
968 case QSOperator::BitOr:
969 case QSOperator::BitXor:
970 case QSOperator::LShift:
971 case QSOperator::RShift:
972 case QSOperator::URShift: {
973 ExprResult left = expression(ast->left);
974 if (left.is(IR::InvalidType))
977 ExprResult right = expression(ast->right);
978 if (right.is(IR::InvalidType))
981 implicitCvt(left, IR::IntType);
982 implicitCvt(right, IR::IntType);
984 IR::Expr *code = _block->BINOP(IR::binaryOperator(ast->op), left, right);
985 _expr.code = _block->TEMP(code->type);
986 _block->MOVE(_expr.code, code);
990 case QSOperator::Add: {
991 ExprResult left = expression(ast->left);
992 if (left.is(IR::InvalidType))
995 ExprResult right = expression(ast->right);
996 if (right.is(IR::InvalidType))
999 if (left.isPrimitive() && right.isPrimitive()) {
1000 if (left.type() == IR::StringType || right.type() == IR::StringType) {
1001 implicitCvt(left, IR::StringType);
1002 implicitCvt(right, IR::StringType);
1004 binop(ast, left, right);
1008 case QSOperator::Div:
1009 case QSOperator::Mod:
1010 case QSOperator::Mul:
1011 case QSOperator::Sub: {
1012 ExprResult left = expression(ast->left);
1013 if (left.is(IR::InvalidType))
1016 ExprResult right = expression(ast->right);
1017 if (right.is(IR::InvalidType))
1020 IR::Type t = maxType(left.type(), right.type());
1021 if (t >= IR::FirstNumberType) {
1022 implicitCvt(left, IR::RealType);
1023 implicitCvt(right, IR::RealType);
1025 IR::Expr *code = _block->BINOP(IR::binaryOperator(ast->op), left, right);
1026 _expr.code = _block->TEMP(code->type);
1027 _block->MOVE(_expr.code, code);
1031 case QSOperator::In:
1032 case QSOperator::InstanceOf:
1033 case QSOperator::Assign:
1034 case QSOperator::InplaceAnd:
1035 case QSOperator::InplaceSub:
1036 case QSOperator::InplaceDiv:
1037 case QSOperator::InplaceAdd:
1038 case QSOperator::InplaceLeftShift:
1039 case QSOperator::InplaceMod:
1040 case QSOperator::InplaceMul:
1041 case QSOperator::InplaceOr:
1042 case QSOperator::InplaceRightShift:
1043 case QSOperator::InplaceURightShift:
1044 case QSOperator::InplaceXor:
1045 // yup, we don't do those.
1052 bool QV4IRBuilder::visit(AST::ConditionalExpression *ast)
1054 IR::BasicBlock *iftrue = _function->newBasicBlock();
1055 IR::BasicBlock *iffalse = _function->newBasicBlock();
1056 IR::BasicBlock *endif = _function->newBasicBlock();
1058 condition(ast->expression, iftrue, iffalse);
1060 IR::Temp *r = _block->TEMP(IR::InvalidType);
1062 qSwap(_block, iftrue);
1063 ExprResult ok = expression(ast->ok);
1064 _block->MOVE(r, ok);
1065 _block->JUMP(endif);
1066 qSwap(_block, iftrue);
1068 qSwap(_block, iffalse);
1069 ExprResult ko = expression(ast->ko);
1070 _block->MOVE(r, ko);
1071 _block->JUMP(endif);
1072 qSwap(_block, iffalse);
1074 r->type = maxType(ok.type(), ko.type());
1082 bool QV4IRBuilder::visit(AST::Expression *ast)
1084 _block->EXP(expression(ast->left));
1085 _expr = expression(ast->right);
1092 bool QV4IRBuilder::visit(AST::Block *ast)
1094 if (ast->statements && ! ast->statements->next) {
1095 // we have one and only one statement
1096 accept(ast->statements->statement);
1102 bool QV4IRBuilder::visit(AST::StatementList *)
1107 bool QV4IRBuilder::visit(AST::VariableStatement *)
1112 bool QV4IRBuilder::visit(AST::VariableDeclarationList *)
1117 bool QV4IRBuilder::visit(AST::VariableDeclaration *)
1122 bool QV4IRBuilder::visit(AST::EmptyStatement *)
1127 bool QV4IRBuilder::visit(AST::ExpressionStatement *ast)
1129 if (ast->expression) {
1130 // return the value of this expression
1137 bool QV4IRBuilder::visit(AST::IfStatement *ast)
1140 // This is an if statement without an else branch.
1143 IR::BasicBlock *iftrue = _function->newBasicBlock();
1144 IR::BasicBlock *iffalse = _function->newBasicBlock();
1145 IR::BasicBlock *endif = _function->newBasicBlock();
1147 condition(ast->expression, iftrue, iffalse);
1149 IR::Temp *r = _block->TEMP(IR::InvalidType);
1151 qSwap(_block, iftrue);
1152 ExprResult ok = statement(ast->ok);
1153 _block->MOVE(r, ok);
1154 _block->JUMP(endif);
1155 qSwap(_block, iftrue);
1157 qSwap(_block, iffalse);
1158 ExprResult ko = statement(ast->ko);
1159 _block->MOVE(r, ko);
1160 _block->JUMP(endif);
1161 qSwap(_block, iffalse);
1163 r->type = maxType(ok.type(), ko.type());
1172 bool QV4IRBuilder::visit(AST::DoWhileStatement *)
1177 bool QV4IRBuilder::visit(AST::WhileStatement *)
1182 bool QV4IRBuilder::visit(AST::ForStatement *)
1187 bool QV4IRBuilder::visit(AST::LocalForStatement *)
1192 bool QV4IRBuilder::visit(AST::ForEachStatement *)
1197 bool QV4IRBuilder::visit(AST::LocalForEachStatement *)
1203 bool QV4IRBuilder::visit(AST::ContinueStatement *)
1208 bool QV4IRBuilder::visit(AST::BreakStatement *)
1213 bool QV4IRBuilder::visit(AST::ReturnStatement *ast)
1215 if (ast->expression) {
1216 // return the value of the expression
1223 bool QV4IRBuilder::visit(AST::WithStatement *)
1228 bool QV4IRBuilder::visit(AST::SwitchStatement *)
1233 bool QV4IRBuilder::visit(AST::CaseBlock *)
1238 bool QV4IRBuilder::visit(AST::CaseClauses *)
1243 bool QV4IRBuilder::visit(AST::CaseClause *)
1248 bool QV4IRBuilder::visit(AST::DefaultClause *)
1253 bool QV4IRBuilder::visit(AST::LabelledStatement *)
1258 bool QV4IRBuilder::visit(AST::ThrowStatement *)
1263 bool QV4IRBuilder::visit(AST::TryStatement *)
1268 bool QV4IRBuilder::visit(AST::Catch *)
1273 bool QV4IRBuilder::visit(AST::Finally *)
1278 bool QV4IRBuilder::visit(AST::FunctionDeclaration *)
1283 bool QV4IRBuilder::visit(AST::FunctionExpression *)
1288 bool QV4IRBuilder::visit(AST::FormalParameterList *)
1293 bool QV4IRBuilder::visit(AST::FunctionBody *)
1298 bool QV4IRBuilder::visit(AST::DebuggerStatement *)