MCPcopy Index your code
hub / github.com/nodejs/node / printHeavyProfHeader

Method printHeavyProfHeader

deps/v8/tools/tickprocessor.mjs:999–1006  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

997 }
998
999 printHeavyProfHeader() {
1000 print('\n [Bottom up (heavy) profile]:');
1001 print(' Note: percentage shows a share of a particular caller in the ' +
1002 'total\n' +
1003 ' amount of its parent calls.');
1004 print(` Callers occupying less than ${TickProcessor.CALL_PROFILE_CUTOFF_PCT.toFixed(1)}% are not shown.\n`);
1005 print(' ticks parent name');
1006 }
1007
1008 processProfile(profile, filterP, func) {
1009 for (let i = 0, n = profile.length; i < n; ++i) {

Callers 1

printStatisticsMethod · 0.95

Calls 1

printFunction · 0.70

Tested by

no test coverage detected