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

Unified Diff: test/mjsunit/code-coverage-precise.js

Issue 2686063002: [debugger] add precise mode for code coverage. (Closed)
Patch Set: fix flag Created 3 years, 10 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 | « src/runtime/runtime-debug.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/code-coverage-precise.js
diff --git a/test/mjsunit/code-coverage-precise.js b/test/mjsunit/code-coverage-precise.js
new file mode 100644
index 0000000000000000000000000000000000000000..394291e1c54779062bf678770f3884fd2c2d6385
--- /dev/null
+++ b/test/mjsunit/code-coverage-precise.js
@@ -0,0 +1,97 @@
+// Copyright 2017 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Flags: --allow-natives-syntax --no-always-opt
+
+// Test precise code coverage.
+
+function GetCoverage(source) {
+ var scripts = %DebugGetLoadedScripts();
+ for (var script of scripts) {
+ if (script.source == source) {
+ var coverage = %DebugCollectCoverage();
+ for (var data of coverage) {
+ if (data.script_id == script.id) return data.entries;
+ }
+ }
+ }
+ return undefined;
+}
+
+function ApplyCoverageToSource(source, coverage) {
+ var result = "";
+ var cursor = 0;
+ for (var entry of coverage) {
+ var chunk = source.substring(cursor, entry.end_position);
+ cursor = entry.end_position;
+ result += `[${chunk}[${entry.count}]]`;
+ }
+ return result;
+}
+
+function TestCoverage(name, source, expectation) {
+ source = source.trim();
+ eval(source);
+ var coverage = GetCoverage(source);
+ if (expectation === undefined) {
+ assertEquals(undefined, coverage);
+ } else {
+ expectation = expectation.trim();
+ var result = ApplyCoverageToSource(source, coverage);
+ print(result);
+ assertEquals(expectation, result, name + " failed");
+ }
+}
+
+
+// Without precise coverage enabled, we lose coverage data to the GC.
+TestCoverage(
+"call an IIFE",
+`
+(function f() {})();
+`,
+undefined // The IIFE has been garbage-collected.
+);
+
+TestCoverage(
+"call locally allocated function",
+`
+for (var i = 0; i < 10; i++) {
+ let f = () => 1;
+ i += f();
+}
+`,
+undefined
+);
+
+// This does not happen with precise coverage enabled.
+%DebugTogglePreciseCoverage(true);
+
+TestCoverage(
+"call an IIFE",
+`
+(function f() {})();
+`,
+`
+[(function f() {})();[1]]
+`
+);
+
+TestCoverage(
+"call locally allocated function",
+`
+for (var i = 0; i < 10; i++) {
+ let f = () => 1;
+ i += f();
+}
+`,
+`
+[for (var i = 0; i < 10; i++) {
+ let f = [1]][() => 1[5]][;
+ i += f();
+}[1]]
+`
+);
+
+%DebugTogglePreciseCoverage(false);
« no previous file with comments | « src/runtime/runtime-debug.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698