qtdeclarative/main.cpp

316 lines
10 KiB
C++
Raw Normal View History

/****************************************************************************
**
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the V4VM module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** 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 Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/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 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3.0 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU General Public License version 3.0 requirements will be
** met: http://www.gnu.org/copyleft/gpl.html.
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
2012-04-16 19:23:25 +00:00
#ifndef QMLJS_NO_LLVM
# include "qv4_llvm_p.h"
#endif
2012-04-16 19:23:25 +00:00
#include "qmljs_objects.h"
#include "qmljs_runtime.h"
2012-04-16 19:23:25 +00:00
#include "qv4codegen_p.h"
2012-09-23 08:28:13 +00:00
#include "qv4isel_masm_p.h"
2012-06-08 19:09:13 +00:00
#include "qv4isel_moth_p.h"
2012-06-11 16:58:52 +00:00
#include "qv4vme_moth_p.h"
2012-05-08 11:21:52 +00:00
#include "qv4syntaxchecker_p.h"
2012-05-14 14:03:10 +00:00
#include "qv4ecmaobjects_p.h"
2012-04-16 19:23:25 +00:00
#include <QtCore>
#include <private/qqmljsengine_p.h>
#include <private/qqmljslexer_p.h>
#include <private/qqmljsparser_p.h>
#include <private/qqmljsast_p.h>
2012-05-07 12:46:37 +00:00
#include <sys/mman.h>
2012-04-16 19:23:25 +00:00
#include <iostream>
2012-05-07 12:46:37 +00:00
static inline bool protect(const void *addr, size_t size)
{
size_t pageSize = sysconf(_SC_PAGESIZE);
size_t iaddr = reinterpret_cast<size_t>(addr);
size_t roundAddr = iaddr & ~(pageSize - static_cast<size_t>(1));
int mode = PROT_READ | PROT_WRITE | PROT_EXEC;
return mprotect(reinterpret_cast<void*>(roundAddr), size + (iaddr - roundAddr), mode) == 0;
}
2012-06-26 13:36:03 +00:00
static void evaluate(QQmlJS::VM::Context *ctx, const QString &fileName, const QString &source,
QQmlJS::Codegen::Mode mode = QQmlJS::Codegen::GlobalCode);
2012-05-07 14:05:05 +00:00
namespace builtins {
2012-05-09 09:04:57 +00:00
2012-05-07 14:05:05 +00:00
using namespace QQmlJS::VM;
2012-05-09 09:04:57 +00:00
2012-05-07 14:05:05 +00:00
struct Print: FunctionObject
{
2012-05-13 11:50:55 +00:00
Print(Context *scope): FunctionObject(scope) {}
2012-05-07 14:05:05 +00:00
virtual void call(Context *ctx)
{
for (unsigned int i = 0; i < ctx->argumentCount; ++i) {
2012-05-18 13:28:59 +00:00
String *s = ctx->argument(i).toString(ctx);
2012-05-07 14:05:05 +00:00
if (i)
std::cout << ' ';
2012-05-18 13:28:59 +00:00
std::cout << qPrintable(s->toQString());
2012-05-07 14:05:05 +00:00
}
std::cout << std::endl;
}
};
2012-05-09 09:04:57 +00:00
2012-06-26 13:36:03 +00:00
struct Eval: FunctionObject
{
Eval(Context *scope): FunctionObject(scope) {}
virtual void call(Context *ctx)
{
const QString code = ctx->argument(0).toString(ctx)->toQString();
evaluate(ctx, QStringLiteral("eval code"), code, QQmlJS::Codegen::EvalCode);
}
};
2012-05-07 14:05:05 +00:00
} // builtins
#ifndef QMLJS_NO_LLVM
2012-06-05 16:32:52 +00:00
void compile(const QString &fileName, const QString &source)
{
using namespace QQmlJS;
IR::Module module;
QQmlJS::Engine ee, *engine = &ee;
Lexer lexer(engine);
lexer.setCode(source, 1, false);
Parser parser(engine);
const bool parsed = parser.parseProgram();
foreach (const DiagnosticMessage &m, parser.diagnosticMessages()) {
std::cerr << qPrintable(fileName) << ':' << m.loc.startLine << ':' << m.loc.startColumn
<< ": error: " << qPrintable(m.message) << std::endl;
}
if (!parsed)
return;
using namespace AST;
Program *program = AST::cast<Program *>(parser.rootNode());
Codegen cg;
/*IR::Function *globalCode =*/ cg(program, &module);
compileWithLLVM(&module, fileName);
}
2012-06-05 16:32:52 +00:00
int compileFiles(const QStringList &files)
{
foreach (const QString &fileName, files) {
QFile file(fileName);
if (file.open(QFile::ReadOnly)) {
QString source = QString::fromUtf8(file.readAll());
compile(fileName, source);
}
}
return 0;
}
int evaluateCompiledCode(const QStringList &files)
{
using namespace QQmlJS;
foreach (const QString &libName, files) {
2012-06-06 16:02:34 +00:00
QFileInfo libInfo(libName);
QLibrary lib(libInfo.absoluteFilePath());
2012-06-05 16:32:52 +00:00
lib.load();
QFunctionPointer ptr = lib.resolve("%entry");
// qDebug("_%%entry resolved to address %p", ptr);
if (!ptr)
return -1;
2012-06-05 16:32:52 +00:00
void (*code)(VM::Context *) = (void (*)(VM::Context *)) ptr;
VM::ExecutionEngine vm;
VM::Context *ctx = vm.rootContext;
QQmlJS::VM::Object *globalObject = vm.globalObject.objectValue();
globalObject->__put__(ctx, vm.identifier(QStringLiteral("print")),
QQmlJS::VM::Value::fromObject(new builtins::Print(ctx)));
2012-06-05 16:32:52 +00:00
void * buf = __qmljs_create_exception_handler(ctx);
if (setjmp(*(jmp_buf *)buf)) {
2012-06-05 16:32:52 +00:00
if (VM::ErrorObject *e = ctx->result.asErrorObject())
std::cerr << "Uncaught exception: " << qPrintable(e->value.toString(ctx)->toQString()) << std::endl;
else
std::cerr << "Uncaught exception: " << qPrintable(ctx->result.toString(ctx)->toQString()) << std::endl;
return -2;
2012-06-05 16:32:52 +00:00
}
code(ctx);
2012-06-05 16:32:52 +00:00
}
2012-06-05 16:32:52 +00:00
return 0;
}
#endif
2012-05-08 11:21:52 +00:00
2012-06-26 13:36:03 +00:00
static void evaluate(QQmlJS::VM::Context *ctx, const QString &fileName, const QString &source,
QQmlJS::Codegen::Mode mode)
2012-05-08 11:21:52 +00:00
{
using namespace QQmlJS;
2012-06-26 13:36:03 +00:00
VM::ExecutionEngine *vm = ctx->engine;
IR::Module module;
IR::Function *globalCode = 0;
2012-05-08 11:21:52 +00:00
const size_t codeSize = 400 * getpagesize();
uchar *code = 0;
if (posix_memalign((void**)&code, 16, codeSize))
assert(!"memalign failed");
assert(code);
assert(! (size_t(code) & 15));
2012-05-08 11:21:52 +00:00
2012-06-08 19:09:13 +00:00
static bool useMoth = !qgetenv("USE_MOTH").isNull();
{
QQmlJS::Engine ee, *engine = &ee;
Lexer lexer(engine);
lexer.setCode(source, 1, false);
Parser parser(engine);
2012-05-08 11:21:52 +00:00
const bool parsed = parser.parseProgram();
2012-05-08 11:21:52 +00:00
foreach (const DiagnosticMessage &m, parser.diagnosticMessages()) {
std::cerr << qPrintable(fileName) << ':' << m.loc.startLine << ':' << m.loc.startColumn
<< ": error: " << qPrintable(m.message) << std::endl;
}
2012-05-08 11:21:52 +00:00
if (parsed) {
using namespace AST;
Program *program = AST::cast<Program *>(parser.rootNode());
2012-05-08 11:21:52 +00:00
Codegen cg;
2012-06-26 13:36:03 +00:00
globalCode = cg(program, &module, mode);
2012-06-08 19:09:13 +00:00
if (useMoth) {
Moth::InstructionSelection isel(vm, &module, code);
foreach (IR::Function *function, module.functions)
isel(function);
} else {
foreach (IR::Function *function, module.functions) {
MASM::InstructionSelection isel(vm, &module, code);
2012-06-08 19:09:13 +00:00
isel(function);
}
2012-06-12 17:13:55 +00:00
if (! protect(code, codeSize))
Q_UNREACHABLE();
}
2012-05-08 11:21:52 +00:00
}
if (! globalCode)
return;
}
2012-05-08 11:21:52 +00:00
2012-06-26 13:36:03 +00:00
if (! ctx->activation.isObject())
ctx->activation = VM::Value::fromObject(new QQmlJS::VM::Object());
2012-06-26 13:36:03 +00:00
foreach (const QString *local, globalCode->locals) {
ctx->activation.objectValue()->__put__(ctx, *local, QQmlJS::VM::Value::undefinedValue());
2012-06-26 13:36:03 +00:00
}
2012-05-16 17:00:31 +00:00
void * buf = __qmljs_create_exception_handler(ctx);
if (setjmp(*(jmp_buf *)buf)) {
if (VM::ErrorObject *e = ctx->result.asErrorObject())
std::cerr << "Uncaught exception: " << qPrintable(e->value.toString(ctx)->toQString()) << std::endl;
else
std::cerr << "Uncaught exception: " << qPrintable(ctx->result.toString(ctx)->toQString()) << std::endl;
return;
}
2012-06-11 16:58:52 +00:00
if (useMoth) {
Moth::VME vme;
vme(ctx, code);
} else {
2012-06-12 17:13:55 +00:00
globalCode->code(ctx, globalCode->codeData);
2012-06-11 16:58:52 +00:00
}
2012-05-16 17:00:31 +00:00
if (! ctx->result.isUndefined()) {
if (! qgetenv("SHOW_EXIT_VALUE").isNull())
std::cout << "exit value: " << qPrintable(ctx->result.toString(ctx)->toQString()) << std::endl;
2012-05-25 09:55:50 +00:00
}
2012-05-08 11:21:52 +00:00
}
2012-04-16 19:23:25 +00:00
int main(int argc, char *argv[])
{
QCoreApplication app(argc, argv);
QStringList args = app.arguments();
args.removeFirst();
2012-06-05 16:32:52 +00:00
#ifndef QMLJS_NO_LLVM
if (args.isEmpty()) {
std::cerr << "Usage: v4 [--compile|--aot] file..." << std::endl;
return 0;
}
if (args.first() == QLatin1String("--compile")) {
args.removeFirst();
return compileFiles(args);
} else if (args.first() == QLatin1String("--aot")) {
args.removeFirst();
return evaluateCompiledCode(args);
}
#endif
QQmlJS::VM::ExecutionEngine vm;
QQmlJS::VM::Context *ctx = vm.rootContext;
QQmlJS::VM::Object *globalObject = vm.globalObject.objectValue();
globalObject->__put__(ctx, vm.identifier(QStringLiteral("print")),
QQmlJS::VM::Value::fromObject(new builtins::Print(ctx)));
globalObject->__put__(ctx, vm.identifier(QStringLiteral("eval")),
2012-06-26 13:36:03 +00:00
QQmlJS::VM::Value::fromObject(new builtins::Eval(ctx)));
2012-04-16 19:23:25 +00:00
foreach (const QString &fn, args) {
QFile file(fn);
if (file.open(QFile::ReadOnly)) {
const QString code = QString::fromUtf8(file.readAll());
file.close();
2012-06-05 16:32:52 +00:00
2012-06-26 13:36:03 +00:00
evaluate(vm.rootContext, fn, code);
2012-04-16 19:23:25 +00:00
}
}
}