3b8e4d41a7
Which was reverted in commit032be73dbe. Originally commited in commit67bac0bce6. Original review URL: https://dart-review.googlesource.com/5263 Change-Id: Ic7333c29e502a3924dc6aade8ffa46fc8aa5b04a Reviewed-on: https://dart-review.googlesource.com/38120 Commit-Queue: Florian Loitsch <floitsch@google.com> Reviewed-by: William Hesse <whesse@google.com>
123 lines
4.4 KiB
Dart
123 lines
4.4 KiB
Dart
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'dart:async';
|
|
import 'dart:io';
|
|
|
|
import 'package:args/args.dart' show ArgParser, ArgResults;
|
|
import 'package:front_end/src/api_prototype/front_end.dart';
|
|
import 'package:kernel/binary/ast_to_binary.dart';
|
|
import 'package:kernel/kernel.dart' show Program;
|
|
import 'package:kernel/src/tool/batch_util.dart' as batch_util;
|
|
import 'package:kernel/target/targets.dart' show TargetFlags;
|
|
import 'package:kernel/target/vm.dart' show VmTarget;
|
|
import 'package:vm/kernel_front_end.dart' show compileToKernel, ErrorDetector;
|
|
|
|
final ArgParser _argParser = new ArgParser(allowTrailingOptions: true)
|
|
..addOption('platform',
|
|
help: 'Path to vm_platform_strong.dill file', defaultsTo: null)
|
|
..addOption('packages', help: 'Path to .packages file', defaultsTo: null)
|
|
..addOption('output',
|
|
abbr: 'o', help: 'Path to resulting dill file', defaultsTo: null)
|
|
..addFlag('aot',
|
|
help:
|
|
'Produce kernel file for AOT compilation (enables global transformations).',
|
|
defaultsTo: false)
|
|
..addFlag('strong-mode', help: 'Enable strong mode', defaultsTo: true)
|
|
..addFlag('sync-async', help: 'Start `async` functions synchronously')
|
|
..addFlag('embed-sources',
|
|
help: 'Embed source files in the generated kernel program',
|
|
defaultsTo: true);
|
|
|
|
final String _usage = '''
|
|
Usage: dart pkg/vm/bin/gen_kernel.dart --platform vm_platform_strong.dill [options] input.dart
|
|
Compiles Dart sources to a kernel binary file for Dart VM.
|
|
|
|
Options:
|
|
${_argParser.usage}
|
|
''';
|
|
|
|
const int _badUsageExitCode = 1;
|
|
const int _compileTimeErrorExitCode = 254;
|
|
|
|
main(List<String> arguments) async {
|
|
if (arguments.isNotEmpty && arguments.last == '--batch') {
|
|
await runBatchModeCompiler();
|
|
} else {
|
|
exit(await compile(arguments));
|
|
}
|
|
}
|
|
|
|
Future<int> compile(List<String> arguments) async {
|
|
final ArgResults options = _argParser.parse(arguments);
|
|
final String platformKernel = options['platform'];
|
|
|
|
if ((options.rest.length != 1) || (platformKernel == null)) {
|
|
print(_usage);
|
|
return _badUsageExitCode;
|
|
}
|
|
|
|
final String filename = options.rest.single;
|
|
final String kernelBinaryFilename = options['output'] ?? "$filename.dill";
|
|
final String packages = options['packages'];
|
|
final bool strongMode = options['strong-mode'];
|
|
final bool aot = options['aot'];
|
|
final bool syncAsync = options['sync-async'];
|
|
|
|
ErrorDetector errorDetector = new ErrorDetector();
|
|
|
|
final CompilerOptions compilerOptions = new CompilerOptions()
|
|
..strongMode = strongMode
|
|
..target = new VmTarget(
|
|
new TargetFlags(strongMode: strongMode, syncAsync: syncAsync))
|
|
..linkedDependencies = <Uri>[Uri.base.resolve(platformKernel)]
|
|
..packagesFileUri = packages != null ? Uri.base.resolve(packages) : null
|
|
..reportMessages = true
|
|
..onError = errorDetector
|
|
..embedSourceText = options['embed-sources'];
|
|
|
|
Program program = await compileToKernel(
|
|
Uri.base.resolve(filename), compilerOptions,
|
|
aot: aot);
|
|
|
|
if (errorDetector.hasCompilationErrors || (program == null)) {
|
|
return _compileTimeErrorExitCode;
|
|
}
|
|
|
|
final IOSink sink = new File(kernelBinaryFilename).openWrite();
|
|
final BinaryPrinter printer = new BinaryPrinter(sink);
|
|
printer.writeProgramFile(program);
|
|
await sink.close();
|
|
|
|
return 0;
|
|
}
|
|
|
|
Future runBatchModeCompiler() async {
|
|
await batch_util.runBatch((List<String> arguments) async {
|
|
// TODO(kustermann): Once we know where the new IKG api is and how to use
|
|
// it, we should take advantage of it.
|
|
//
|
|
// Important things to note:
|
|
//
|
|
// * Our global transformations must never alter the AST structures which
|
|
// the statefull IKG generator keeps across compilations.
|
|
// => We need to make our own copy.
|
|
//
|
|
// * We must ensure the stateful IKG generator keeps giving us all the
|
|
// compile-time errors, warnings, hints for every compilation and we
|
|
// report the compilation result accordingly.
|
|
//
|
|
final exitCode = await compile(arguments);
|
|
switch (exitCode) {
|
|
case 0:
|
|
return batch_util.CompilerOutcome.Ok;
|
|
case _compileTimeErrorExitCode:
|
|
case _badUsageExitCode:
|
|
return batch_util.CompilerOutcome.Fail;
|
|
default:
|
|
throw 'Could not obtain correct exit code from compiler.';
|
|
}
|
|
});
|
|
}
|