2017-07-25 10:01:51 +00:00
|
|
|
// 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.
|
|
|
|
|
2022-04-28 14:22:23 +00:00
|
|
|
// Flags: --allow-natives-syntax --no-always-turbofan --no-stress-flush-code
|
|
|
|
// Flags: --no-turbofan
|
2022-10-20 23:48:13 +00:00
|
|
|
// Flags: --expose-gc
|
2017-07-25 10:01:51 +00:00
|
|
|
// Files: test/mjsunit/code-coverage-utils.js
|
|
|
|
|
2022-10-20 23:48:13 +00:00
|
|
|
(async function () {
|
2017-07-25 10:01:51 +00:00
|
|
|
|
2022-10-20 23:48:13 +00:00
|
|
|
%DebugToggleBlockCoverage(true);
|
|
|
|
|
|
|
|
await TestCoverage(
|
|
|
|
"optimized and inlined functions",
|
|
|
|
`
|
2017-07-25 10:01:51 +00:00
|
|
|
function g() { if (true) nop(); } // 0000
|
|
|
|
function f() { g(); g(); } // 0050
|
2019-06-14 10:59:02 +00:00
|
|
|
%PrepareFunctionForOptimization(f); // 0100
|
|
|
|
f(); f(); %OptimizeFunctionOnNextCall(f); // 0150
|
|
|
|
f(); f(); f(); f(); f(); f(); // 0200
|
2022-10-20 23:48:13 +00:00
|
|
|
`,
|
|
|
|
[ {"start":0,"end":249,"count":1},
|
|
|
|
{"start":0,"end":33,"count":16},
|
|
|
|
{"start":50,"end":76,"count":8} ]
|
|
|
|
);
|
|
|
|
|
|
|
|
// In contrast to the corresponding test in -opt.js, f is not optimized here
|
|
|
|
// and therefore reports its invocation count correctly.
|
|
|
|
await TestCoverage(
|
|
|
|
"Partial coverage collection",
|
|
|
|
`
|
2017-07-28 08:37:57 +00:00
|
|
|
!function() { // 0000
|
|
|
|
function f(x) { // 0050
|
|
|
|
if (x) { nop(); } else { nop(); } // 0100
|
|
|
|
} // 0150
|
2019-06-14 10:59:02 +00:00
|
|
|
%PrepareFunctionForOptimization(f); // 0200
|
|
|
|
f(true); f(true); // 0250
|
|
|
|
%OptimizeFunctionOnNextCall(f); // 0300
|
|
|
|
%DebugCollectCoverage(); // 0350
|
|
|
|
f(false); // 0400
|
|
|
|
}(); // 0450
|
2022-10-20 23:48:13 +00:00
|
|
|
`,
|
|
|
|
[ {"start":52,"end":153,"count":1},
|
|
|
|
{"start":111,"end":121,"count":0} ]
|
|
|
|
);
|
|
|
|
|
2017-07-28 08:37:57 +00:00
|
|
|
|
2022-10-20 23:48:13 +00:00
|
|
|
%DebugToggleBlockCoverage(false);
|
2017-07-28 08:37:57 +00:00
|
|
|
|
2022-10-20 23:48:13 +00:00
|
|
|
})();
|