Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1065)

Unified Diff: pkg/kernel/test/check_bench.dart

Issue 2529973002: Speed up kernel sanity checks. (Closed)
Patch Set: Revert parent_pointer_test Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/kernel/lib/transformations/flags.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/test/check_bench.dart
diff --git a/pkg/kernel/test/check_bench.dart b/pkg/kernel/test/check_bench.dart
new file mode 100644
index 0000000000000000000000000000000000000000..5c317592933d6ec87a2307fb629e75161aabf31c
--- /dev/null
+++ b/pkg/kernel/test/check_bench.dart
@@ -0,0 +1,35 @@
+// 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 'dart:io';
+import 'package:kernel/checks.dart';
+import 'package:kernel/kernel.dart';
+
+final String usage = '''
+Usage: check_bench FILE.dill
+
+Measures the time it takes to run sanity checks on the given program.
+''';
+
+main(List<String> args) {
+ if (args.length != 1) {
+ print(usage);
+ exit(1);
+ }
+ var program = loadProgramFromBinary(args[0]);
+ var watch = new Stopwatch()..start();
+ runSanityChecks(program);
+ print('Cold: ${watch.elapsedMilliseconds} ms');
+ const int warmUpTrials = 20;
+ for (int i = 0; i < warmUpTrials; ++i) {
+ runSanityChecks(program);
+ }
+ watch.reset();
+ const int numberOfTrials = 100;
+ for (int i = 0; i < numberOfTrials; ++i) {
+ runSanityChecks(program);
+ }
+ double millisecondsPerRun = watch.elapsedMilliseconds / numberOfTrials;
+ print('Hot: $millisecondsPerRun ms');
+}
« no previous file with comments | « pkg/kernel/lib/transformations/flags.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698