Files
sdk/pkg/kernel/test/serialize_bench.dart
T
Peter von der Ahé 4f2bdff90b Rename Program to Component
Change-Id: I1a3cc03fba9783807fa637a9d42fdbad68ee7686
Reviewed-on: https://dart-review.googlesource.com/31040
Commit-Queue: Peter von der Ahé <ahe@google.com>
Reviewed-by: Kevin Millikin <kmillikin@google.com>
2018-03-15 12:22:23 +00:00

36 lines
1.0 KiB
Dart

// Copyright (c) 2016, 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 'package:kernel/kernel.dart';
import 'dart:io';
final String usage = '''
Usage: serialize_bench INPUT.dill OUTPUT.dill
Deserialize INPUT and write it back to OUTPUT several times, measuring
the time it takes, including I/O time.
''';
main(List<String> args) async {
if (args.length != 2) {
print(usage);
exit(1);
}
Component component = loadComponentFromBinary(args[0]);
String destination = args[1];
var watch = new Stopwatch()..start();
await writeComponentToBinary(component, destination);
int coldTime = watch.elapsedMilliseconds;
watch.reset();
int numTrials = 10;
for (int i = 0; i < numTrials; ++i) {
await writeComponentToBinary(component, destination);
}
double hotTime = watch.elapsedMilliseconds / numTrials;
print('Cold time: $coldTime ms');
print('Hot time: $hotTime ms');
}