-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
trace_events: add support for builtin trace
PR-URL: #21899 Reviewed-By: Ali Ijaz Sheikh <[email protected]>
- Loading branch information
Showing
4 changed files
with
126 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
n: [100000], | ||
method: ['trace', 'emit', 'isTraceCategoryEnabled', 'categoryGroupEnabled'] | ||
}, { | ||
flags: ['--expose-internals', '--trace-event-categories', 'foo'] | ||
}); | ||
|
||
const { | ||
trace, | ||
isTraceCategoryEnabled, | ||
emit, | ||
categoryGroupEnabled | ||
} = process.binding('trace_events'); | ||
|
||
const { | ||
TRACE_EVENT_PHASE_NESTABLE_ASYNC_BEGIN: kBeforeEvent | ||
} = process.binding('constants').trace; | ||
|
||
function doEmit(n) { | ||
bench.start(); | ||
for (var i = 0; i < n; i++) { | ||
emit(kBeforeEvent, 'foo', 'test', 0, 'arg1', 1); | ||
} | ||
bench.end(n); | ||
} | ||
|
||
function doTrace(n) { | ||
bench.start(); | ||
for (var i = 0; i < n; i++) { | ||
trace(kBeforeEvent, 'foo', 'test', 0, 'test'); | ||
} | ||
bench.end(n); | ||
} | ||
|
||
function doIsTraceCategoryEnabled(n) { | ||
bench.start(); | ||
for (var i = 0; i < n; i++) { | ||
isTraceCategoryEnabled('foo'); | ||
isTraceCategoryEnabled('bar'); | ||
} | ||
bench.end(n); | ||
} | ||
|
||
function doCategoryGroupEnabled(n) { | ||
bench.start(); | ||
for (var i = 0; i < n; i++) { | ||
categoryGroupEnabled('foo'); | ||
categoryGroupEnabled('bar'); | ||
} | ||
bench.end(n); | ||
} | ||
|
||
function main({ n, method }) { | ||
switch (method) { | ||
case '': | ||
case 'trace': | ||
doTrace(n); | ||
break; | ||
case 'emit': | ||
doEmit(n); | ||
break; | ||
case 'isTraceCategoryEnabled': | ||
doIsTraceCategoryEnabled(n); | ||
break; | ||
case 'categoryGroupEnabled': | ||
doCategoryGroupEnabled(n); | ||
break; | ||
default: | ||
throw new Error(`Unexpected method "${method}"`); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters