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

Unified Diff: packages/dart_style/benchmark/benchmark.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 months 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 | « packages/dart_style/benchmark/before.dart.txt ('k') | packages/dart_style/bin/format.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/dart_style/benchmark/benchmark.dart
diff --git a/packages/dart_style/benchmark/benchmark.dart b/packages/dart_style/benchmark/benchmark.dart
new file mode 100644
index 0000000000000000000000000000000000000000..ab960f50c905b5853e0e2614d118770dcb9196d0
--- /dev/null
+++ b/packages/dart_style/benchmark/benchmark.dart
@@ -0,0 +1,81 @@
+// Copyright (c) 2014, 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.
+
+library dart_style.benchmark.benchmark;
+
+import 'dart:io';
+
+import 'package:path/path.dart' as p;
+
+import 'package:dart_style/dart_style.dart';
+
+const NUM_TRIALS = 100;
+const FORMATS_PER_TRIAL = 30;
+
+/// Note, these files use ".txt" because while they can be *parsed* correctly,
+/// they don't resolve without error. That's OK because the formatter doesn't
+/// care about that.
+final source = loadFile("before.dart.txt");
+final expected = loadFile("after.dart.txt");
+
+void main(List<String> args) {
+ var best = 99999999.0;
+
+ // Run the benchmark several times. This ensures the VM is warmed up and lets
+ // us see how much variance there is.
+ for (var i = 0; i <= NUM_TRIALS; i++) {
+ var start = new DateTime.now();
+
+ // For a single benchmark, format the source multiple times.
+ var result;
+ for (var j = 0; j < FORMATS_PER_TRIAL; j++) {
+ result = formatSource();
+ }
+
+ var elapsed =
+ new DateTime.now().difference(start).inMilliseconds / FORMATS_PER_TRIAL;
+
+ // Keep track of the best run so far.
+ if (elapsed >= best) continue;
+ best = elapsed;
+
+ // Sanity check to make sure the output is what we expect and to make sure
+ // the VM doesn't optimize "dead" code away.
+ if (result != expected) {
+ print("Incorrect output:\n$result");
+ exit(1);
+ }
+
+ // Don't print the first run. It's always terrible since the VM hasn't
+ // warmed up yet.
+ if (i == 0) continue;
+ printResult("Run ${padLeft('#$i', 3)}", elapsed);
+ }
+
+ printResult("Best ", best);
+}
+
+String loadFile(String name) {
+ var path = p.join(p.dirname(p.fromUri(Platform.script)), name);
+ return new File(path).readAsStringSync();
+}
+
+void printResult(String label, double time) {
+ print("$label: ${padLeft(time.toStringAsFixed(2), 4)}ms "
+ "${'=' * ((time * 5).toInt())}");
+}
+
+String padLeft(input, int length) {
+ var result = input.toString();
+ if (result.length < length) {
+ result = " " * (length - result.length) + result;
+ }
+
+ return result;
+}
+
+String formatSource() {
+ var formatter = new DartFormatter();
+ return formatter.format(source);
+}
« no previous file with comments | « packages/dart_style/benchmark/before.dart.txt ('k') | packages/dart_style/bin/format.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698