Skip to content

Instantly share code, notes, and snippets.

@mmarchini
Created September 26, 2020 23:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmarchini/5da624b8c62fe1ecfe4944726a3cf4c6 to your computer and use it in GitHub Desktop.
Save mmarchini/5da624b8c62fe1ecfe4944726a3cf4c6 to your computer and use it in GitHub Desktop.
const total = 200000
const batch = 32768
const tokens1 = [], tokens2 = []
const one = () => {
tokens1.push(0);
if (tokens1.length > 0 && tokens2.length > 0) {
tokens1.splice(0, 1);
tokens2.splice(0, 1);
}
}
const two = () => {
tokens2.push(0);
if (tokens1.length > 0 && tokens2.length > 0) {
tokens1.splice(0, 1);
tokens2.splice(0, 1);
}
}
console.log(process.version)
console.time()
for (let t = 0; t < total; t += batch) {
for (let i = 0; i < batch; i++) one()
for (let i = 0; i < batch; i++) two()
}
console.timeEnd()
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1094" onload="init(evt)" viewBox="0 0 1200 1094" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
}
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
search();
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) {
currentSearchTerm = term;
search();
}
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (currentSearchTerm === null) return;
var term = currentSearchTerm;
var re = new RegExp(term, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1094.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1077" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="1077" > </text>
<g id="frames">
<g >
<title>InterpretedFunction:nativeModuleRequire internal/bootstrap/loaders.js:296 (2 samples, 0.64%)</title><rect x="1178.7" y="789" width="7.5" height="15.0" fill="rgb(237,219,49)" rx="2" ry="2" />
<text x="1181.65" y="799.5" ></text>
</g>
<g >
<title>_ZN4node11Environment16RunBootstrappingEv (2 samples, 0.64%)</title><rect x="1178.7" y="933" width="7.5" height="15.0" fill="rgb(219,125,43)" rx="2" ry="2" />
<text x="1181.65" y="943.5" ></text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_16InvokeEPNS0_7IsolateERKNS1_12InvokeParamsE (2 samples, 0.64%)</title><rect x="1178.7" y="853" width="7.5" height="15.0" fill="rgb(222,84,50)" rx="2" ry="2" />
<text x="1181.65" y="863.5" ></text>
</g>
<g >
<title>Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (1 samples, 0.32%)</title><rect x="1178.7" y="709" width="3.7" height="15.0" fill="rgb(241,13,41)" rx="2" ry="2" />
<text x="1181.65" y="719.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE27ParseExpressionCoverGrammarEv (1 samples, 0.32%)</title><rect x="1178.7" y="149" width="3.7" height="15.0" fill="rgb(254,118,25)" rx="2" ry="2" />
<text x="1181.65" y="159.5" ></text>
</g>
<g >
<title>LazyCompile:*two /home/mmarchini/workspace/misc/node-performance-problem/foo.js:12 (7 samples, 2.24%)</title><rect x="44.0" y="709" width="26.5" height="15.0" fill="rgb(235,89,49)" rx="2" ry="2" />
<text x="47.04" y="719.5" >L..</text>
</g>
<g >
<title>_ZN4node7binding18GetInternalBindingERKN2v820FunctionCallbackInfoINS1_5ValueEEE (1 samples, 0.32%)</title><rect x="1182.4" y="661" width="3.8" height="15.0" fill="rgb(236,200,32)" rx="2" ry="2" />
<text x="1185.44" y="671.5" ></text>
</g>
<g >
<title>_ZN2v88internal8OldSpaceD0Ev (1 samples, 0.32%)</title><rect x="1186.2" y="917" width="3.8" height="15.0" fill="rgb(241,215,8)" rx="2" ry="2" />
<text x="1189.22" y="927.5" ></text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_119HandleApiCallHelperILb0EEENS0_11MaybeHandleINS0_6ObjectEEEPNS0_7IsolateENS0_6HandleINS0_10HeapObjectEEESA_NS8_INS0_20FunctionTemplateInfoEEENS8_IS4_EENS0_16BuiltinArgumentsE (1 samples, 0.32%)</title><rect x="1182.4" y="677" width="3.8" height="15.0" fill="rgb(219,77,29)" rx="2" ry="2" />
<text x="1185.44" y="687.5" ></text>
</g>
<g >
<title>InterpretedFunction:nativeModuleRequire internal/bootstrap/loaders.js:296 (1 samples, 0.32%)</title><rect x="1174.9" y="773" width="3.8" height="15.0" fill="rgb(212,149,15)" rx="2" ry="2" />
<text x="1177.87" y="783.5" ></text>
</g>
<g >
<title>_ZN4node19ExecuteBootstrapperEPNS_11EnvironmentEPKcPSt6vectorIN2v85LocalINS5_6StringEEESaIS8_EEPS4_INS6_INS5_5ValueEEESaISD_EE (308 samples, 98.72%)</title><rect x="13.8" y="917" width="1164.9" height="15.0" fill="rgb(234,103,12)" rx="2" ry="2" />
<text x="16.78" y="927.5" >_ZN4node19ExecuteBootstrapperEPNS_11EnvironmentEPKcPSt6vectorIN2v85LocalINS5_6StringEEESaIS8_EEPS4_INS6_INS5_5ValueEEESaISD_EE</text>
</g>
<g >
<title>_ZN2v814ScriptCompiler24CompileFunctionInContextENS_5LocalINS_7ContextEEEPNS0_6SourceEmPNS1_INS_6StringEEEmPNS1_INS_6ObjectEEENS0_14CompileOptionsENS0_13NoCacheReasonEPNS1_INS_14ScriptOrModuleEEE (1 samples, 0.32%)</title><rect x="1174.9" y="485" width="3.8" height="15.0" fill="rgb(241,162,1)" rx="2" ry="2" />
<text x="1177.87" y="495.5" ></text>
</g>
<g >
<title>_ZN2v88internal6Parser20ParseFunctionLiteralEPKNS0_12AstRawStringENS0_7Scanner8LocationENS0_20FunctionNameValidityENS0_12FunctionKindEiNS0_18FunctionSyntaxKindENS0_12LanguageModeEPNS0_8ZoneListIS4_EE (1 samples, 0.32%)</title><rect x="1174.9" y="373" width="3.8" height="15.0" fill="rgb(245,215,0)" rx="2" ry="2" />
<text x="1177.87" y="383.5" ></text>
</g>
<g >
<title>Builtins_GrowFastSmiOrObjectElements (1 samples, 0.32%)</title><rect x="13.8" y="709" width="3.8" height="15.0" fill="rgb(235,116,14)" rx="2" ry="2" />
<text x="16.78" y="719.5" ></text>
</g>
<g >
<title>_ZN2v88internal11StringTable9LookupKeyINS0_19SequentialStringKeyIhEEEENS0_6HandleINS0_6StringEEEPNS0_7IsolateEPT_ (1 samples, 0.32%)</title><rect x="1182.4" y="565" width="3.8" height="15.0" fill="rgb(211,98,16)" rx="2" ry="2" />
<text x="1185.44" y="575.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (2 samples, 0.64%)</title><rect x="62.9" y="693" width="7.6" height="15.0" fill="rgb(240,144,34)" rx="2" ry="2" />
<text x="65.95" y="703.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE10ParseBlockEPNS0_8ZoneListIPKNS0_12AstRawStringEEE (1 samples, 0.32%)</title><rect x="1178.7" y="197" width="3.7" height="15.0" fill="rgb(254,162,41)" rx="2" ry="2" />
<text x="1181.65" y="207.5" ></text>
</g>
<g >
<title>InterpretedFunction:prepareMainThreadExecution internal/bootstrap/pre_execution.js:17 (1 samples, 0.32%)</title><rect x="1174.9" y="805" width="3.8" height="15.0" fill="rgb(218,150,7)" rx="2" ry="2" />
<text x="1177.87" y="815.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE14ParseStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEES9_NS0_30AllowLabelledFunctionStatementE (1 samples, 0.32%)</title><rect x="1178.7" y="181" width="3.7" height="15.0" fill="rgb(243,152,48)" rx="2" ry="2" />
<text x="1181.65" y="191.5" ></text>
</g>
<g >
<title>_ZN4node13native_module18NativeModuleLoader16LookupAndCompileEN2v85LocalINS2_7ContextEEEPKcPSt6vectorINS3_INS2_6StringEEESaISA_EEPNS1_6ResultE (1 samples, 0.32%)</title><rect x="1178.7" y="613" width="3.7" height="15.0" fill="rgb(233,107,12)" rx="2" ry="2" />
<text x="1181.65" y="623.5" ></text>
</g>
<g >
<title>_ZN4node13native_module18NativeModuleLoader15CompileAsModuleEN2v85LocalINS2_7ContextEEEPKcPNS1_6ResultE (1 samples, 0.32%)</title><rect x="1178.7" y="629" width="3.7" height="15.0" fill="rgb(248,95,26)" rx="2" ry="2" />
<text x="1181.65" y="639.5" ></text>
</g>
<g >
<title>do_munmap (1 samples, 0.32%)</title><rect x="1186.2" y="789" width="3.8" height="15.0" fill="rgb(215,132,15)" rx="2" ry="2" />
<text x="1189.22" y="799.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.32%)</title><rect x="1186.2" y="837" width="3.8" height="15.0" fill="rgb(218,193,19)" rx="2" ry="2" />
<text x="1189.22" y="847.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (1 samples, 0.32%)</title><rect x="1186.2" y="757" width="3.8" height="15.0" fill="rgb(243,2,37)" rx="2" ry="2" />
<text x="1189.22" y="767.5" ></text>
</g>
<g >
<title>_ZN2v88internal6Parser12ParseWrappedEPNS0_7IsolateEPNS0_9ParseInfoEPNS0_10ScopedListIPNS0_9StatementEPvEEPNS0_16DeclarationScopeEPNS0_4ZoneE (1 samples, 0.32%)</title><rect x="1178.7" y="501" width="3.7" height="15.0" fill="rgb(211,228,37)" rx="2" ry="2" />
<text x="1181.65" y="511.5" ></text>
</g>
<g >
<title>_ZN2v88internal8Compiler18GetWrappedFunctionENS0_6HandleINS0_6StringEEENS2_INS0_10FixedArrayEEENS2_INS0_7ContextEEERKNS1_13ScriptDetailsENS_19ScriptOriginOptionsEPNS0_10ScriptDataENS_14ScriptCompiler14CompileOptionsENSF_13NoCacheReasonE (1 samples, 0.32%)</title><rect x="1174.9" y="469" width="3.8" height="15.0" fill="rgb(250,6,5)" rx="2" ry="2" />
<text x="1177.87" y="479.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE22ParsePrimaryExpressionEv (1 samples, 0.32%)</title><rect x="1178.7" y="373" width="3.7" height="15.0" fill="rgb(209,12,34)" rx="2" ry="2" />
<text x="1181.65" y="383.5" ></text>
</g>
<g >
<title>__munmap (1 samples, 0.32%)</title><rect x="1186.2" y="869" width="3.8" height="15.0" fill="rgb(217,4,17)" rx="2" ry="2" />
<text x="1189.22" y="879.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE37ParseAssignmentExpressionCoverGrammarEv (1 samples, 0.32%)</title><rect x="1174.9" y="261" width="3.8" height="15.0" fill="rgb(240,106,29)" rx="2" ry="2" />
<text x="1177.87" y="271.5" ></text>
</g>
<g >
<title>_ZN2v88internal11StringTable14AddKeyNoResizeEPNS0_7IsolateEPNS0_14StringTableKeyE (1 samples, 0.32%)</title><rect x="1182.4" y="549" width="3.8" height="15.0" fill="rgb(237,217,3)" rx="2" ry="2" />
<text x="1185.44" y="559.5" ></text>
</g>
<g >
<title>Builtins_ArrayPrototypeSplice (283 samples, 90.71%)</title><rect x="70.5" y="709" width="1070.3" height="15.0" fill="rgb(253,218,11)" rx="2" ry="2" />
<text x="73.51" y="719.5" >Builtins_ArrayPrototypeSplice</text>
</g>
<g >
<title>InterpretedFunction:executeUserEntryPoint internal/modules/run_main.js:65 (307 samples, 98.40%)</title><rect x="13.8" y="805" width="1161.1" height="15.0" fill="rgb(252,148,18)" rx="2" ry="2" />
<text x="16.78" y="815.5" >InterpretedFunction:executeUserEntryPoint internal/modules/run_main.js:65</text>
</g>
<g >
<title>InterpretedFunction:compileForInternalLoader internal/bootstrap/loaders.js:263 (1 samples, 0.32%)</title><rect x="1174.9" y="709" width="3.8" height="15.0" fill="rgb(216,30,3)" rx="2" ry="2" />
<text x="1177.87" y="719.5" ></text>
</g>
<g >
<title>_ZN2v88internal7parsing12ParseProgramEPNS0_9ParseInfoENS0_6HandleINS0_6ScriptEEENS0_11MaybeHandleINS0_9ScopeInfoEEEPNS0_7IsolateENS1_29ReportErrorsAndStatisticsModeE (1 samples, 0.32%)</title><rect x="1174.9" y="437" width="3.8" height="15.0" fill="rgb(247,13,52)" rx="2" ry="2" />
<text x="1177.87" y="447.5" ></text>
</g>
<g >
<title>_ZN2v88internal7parsing12ParseProgramEPNS0_9ParseInfoENS0_6HandleINS0_6ScriptEEENS0_11MaybeHandleINS0_9ScopeInfoEEEPNS0_7IsolateENS1_29ReportErrorsAndStatisticsModeE (1 samples, 0.32%)</title><rect x="1178.7" y="549" width="3.7" height="15.0" fill="rgb(228,69,53)" rx="2" ry="2" />
<text x="1181.65" y="559.5" ></text>
</g>
<g >
<title>__libc_start_main (311 samples, 99.68%)</title><rect x="13.8" y="1013" width="1176.2" height="15.0" fill="rgb(215,98,35)" rx="2" ry="2" />
<text x="16.78" y="1023.5" >__libc_start_main</text>
</g>
<g >
<title>tlb_flush_mmu_free (1 samples, 0.32%)</title><rect x="1186.2" y="725" width="3.8" height="15.0" fill="rgb(234,227,51)" rx="2" ry="2" />
<text x="1189.22" y="735.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE37ParseAssignmentExpressionCoverGrammarEv (1 samples, 0.32%)</title><rect x="1178.7" y="405" width="3.7" height="15.0" fill="rgb(240,151,5)" rx="2" ry="2" />
<text x="1181.65" y="415.5" ></text>
</g>
<g >
<title>_ZN2v88internal19SequentialStringKeyIhE8AsHandleEPNS0_7IsolateE (1 samples, 0.32%)</title><rect x="1182.4" y="533" width="3.8" height="15.0" fill="rgb(242,24,29)" rx="2" ry="2" />
<text x="1185.44" y="543.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.32%)</title><rect x="1186.2" y="853" width="3.8" height="15.0" fill="rgb(227,49,38)" rx="2" ry="2" />
<text x="1189.22" y="863.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE22ParseVariableStatementENS3_26VariableDeclarationContextEPNS0_8ZoneListIPKNS0_12AstRawStringEEE (1 samples, 0.32%)</title><rect x="1178.7" y="437" width="3.7" height="15.0" fill="rgb(250,8,18)" rx="2" ry="2" />
<text x="1181.65" y="447.5" ></text>
</g>
<g >
<title>_ZN4node16NodeMainInstance3RunEv (310 samples, 99.36%)</title><rect x="13.8" y="981" width="1172.4" height="15.0" fill="rgb(227,206,4)" rx="2" ry="2" />
<text x="16.78" y="991.5" >_ZN4node16NodeMainInstance3RunEv</text>
</g>
<g >
<title>[libc-2.31.so] (1 samples, 0.32%)</title><rect x="40.3" y="693" width="3.7" height="15.0" fill="rgb(230,93,2)" rx="2" ry="2" />
<text x="43.26" y="703.5" ></text>
</g>
<g >
<title>InterpretedFunction: internal/modules/cjs/helpers.js:1 (1 samples, 0.32%)</title><rect x="1174.9" y="645" width="3.8" height="15.0" fill="rgb(244,195,52)" rx="2" ry="2" />
<text x="1177.87" y="655.5" ></text>
</g>
<g >
<title>_ZN4node19ExecuteBootstrapperEPNS_11EnvironmentEPKcPSt6vectorIN2v85LocalINS5_6StringEEESaIS8_EEPS4_INS6_INS5_5ValueEEESaISD_EE (2 samples, 0.64%)</title><rect x="1178.7" y="901" width="7.5" height="15.0" fill="rgb(253,59,25)" rx="2" ry="2" />
<text x="1181.65" y="911.5" ></text>
</g>
<g >
<title>_ZN2v88internalL26Builtin_Impl_HandleApiCallENS0_16BuiltinArgumentsEPNS0_7IsolateE (1 samples, 0.32%)</title><rect x="1178.7" y="677" width="3.7" height="15.0" fill="rgb(243,130,48)" rx="2" ry="2" />
<text x="1181.65" y="687.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE22ParsePrimaryExpressionEv (1 samples, 0.32%)</title><rect x="1174.9" y="229" width="3.8" height="15.0" fill="rgb(232,190,32)" rx="2" ry="2" />
<text x="1177.87" y="239.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE34ParseExpressionOrLabelledStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEES9_NS0_30AllowLabelledFunctionStatementE (1 samples, 0.32%)</title><rect x="1174.9" y="309" width="3.8" height="15.0" fill="rgb(238,207,51)" rx="2" ry="2" />
<text x="1177.87" y="319.5" ></text>
</g>
<g >
<title>_ZN2v88internal4Heap8TearDownEv (1 samples, 0.32%)</title><rect x="1186.2" y="933" width="3.8" height="15.0" fill="rgb(207,3,51)" rx="2" ry="2" />
<text x="1189.22" y="943.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE37ParseAssignmentExpressionCoverGrammarEv (1 samples, 0.32%)</title><rect x="1174.9" y="277" width="3.8" height="15.0" fill="rgb(230,199,0)" rx="2" ry="2" />
<text x="1177.87" y="287.5" ></text>
</g>
<g >
<title>_ZN2v88internal6Parser12ParseProgramEPNS0_7IsolateENS0_6HandleINS0_6ScriptEEEPNS0_9ParseInfoENS0_11MaybeHandleINS0_9ScopeInfoEEE (1 samples, 0.32%)</title><rect x="1178.7" y="533" width="3.7" height="15.0" fill="rgb(209,203,25)" rx="2" ry="2" />
<text x="1181.65" y="543.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE22ParseLogicalExpressionEv (1 samples, 0.32%)</title><rect x="1178.7" y="101" width="3.7" height="15.0" fill="rgb(254,8,15)" rx="2" ry="2" />
<text x="1181.65" y="111.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE29ParseLeftHandSideContinuationENS0_19PreParserExpressionE (1 samples, 0.32%)</title><rect x="1178.7" y="85" width="3.7" height="15.0" fill="rgb(232,203,13)" rx="2" ry="2" />
<text x="1181.65" y="95.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE20ParseStandardForLoopEiPNS0_8ZoneListIPKNS0_12AstRawStringEEES9_PNS0_19PreParserExpressionEPNS0_18PreParserStatementESD_.constprop.388 (1 samples, 0.32%)</title><rect x="1178.7" y="229" width="3.7" height="15.0" fill="rgb(217,162,50)" rx="2" ry="2" />
<text x="1181.65" y="239.5" ></text>
</g>
<g >
<title>Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (1 samples, 0.32%)</title><rect x="1174.9" y="597" width="3.8" height="15.0" fill="rgb(242,209,46)" rx="2" ry="2" />
<text x="1177.87" y="607.5" ></text>
</g>
<g >
<title>Builtins_JSEntryTrampoline (308 samples, 98.72%)</title><rect x="13.8" y="837" width="1164.9" height="15.0" fill="rgb(253,85,27)" rx="2" ry="2" />
<text x="16.78" y="847.5" >Builtins_JSEntryTrampoline</text>
</g>
<g >
<title>_ZN2v88internal6Parser13ParseFunctionEPNS0_10ScopedListIPNS0_9StatementEPvEEPKNS0_12AstRawStringEiNS0_12FunctionKindENS0_18FunctionSyntaxKindEPNS0_16DeclarationScopeEPiSF_PbSF_SF_PNS0_8ZoneListISA_EE (1 samples, 0.32%)</title><rect x="1178.7" y="469" width="3.7" height="15.0" fill="rgb(249,57,24)" rx="2" ry="2" />
<text x="1181.65" y="479.5" ></text>
</g>
<g >
<title>_ZN2v88internalL26Builtin_Impl_HandleApiCallENS0_16BuiltinArgumentsEPNS0_7IsolateE (1 samples, 0.32%)</title><rect x="1182.4" y="693" width="3.8" height="15.0" fill="rgb(229,182,31)" rx="2" ry="2" />
<text x="1185.44" y="703.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE17ParseFunctionBodyEPNS0_10ScopedListIPNS0_9StatementEPvEEPKNS0_12AstRawStringEiRKNS0_22ParserFormalParametersENS0_12FunctionKindENS0_18FunctionSyntaxKindENS3_16FunctionBodyTypeE (1 samples, 0.32%)</title><rect x="1178.7" y="453" width="3.7" height="15.0" fill="rgb(251,152,14)" rx="2" ry="2" />
<text x="1181.65" y="463.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE17ParseFunctionBodyEPNS0_10ScopedListIPNS0_9StatementEPvEEPKNS0_12AstRawStringEiRKNS0_22ParserFormalParametersENS0_12FunctionKindENS0_18FunctionSyntaxKindENS3_16FunctionBodyTypeE (1 samples, 0.32%)</title><rect x="1174.9" y="341" width="3.8" height="15.0" fill="rgb(226,28,52)" rx="2" ry="2" />
<text x="1177.87" y="351.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE14ParseStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEES9_NS0_30AllowLabelledFunctionStatementE (1 samples, 0.32%)</title><rect x="1174.9" y="325" width="3.8" height="15.0" fill="rgb(248,90,24)" rx="2" ry="2" />
<text x="1177.87" y="335.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE14ParseStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEES9_NS0_30AllowLabelledFunctionStatementE (1 samples, 0.32%)</title><rect x="1174.9" y="133" width="3.8" height="15.0" fill="rgb(232,146,11)" rx="2" ry="2" />
<text x="1177.87" y="143.5" ></text>
</g>
<g >
<title>vm_munmap (1 samples, 0.32%)</title><rect x="1186.2" y="805" width="3.8" height="15.0" fill="rgb(225,133,1)" rx="2" ry="2" />
<text x="1189.22" y="815.5" ></text>
</g>
<g >
<title>Builtins_ArrayPrototypeSplice (5 samples, 1.60%)</title><rect x="44.0" y="693" width="18.9" height="15.0" fill="rgb(248,82,45)" rx="2" ry="2" />
<text x="47.04" y="703.5" ></text>
</g>
<g >
<title>_ZN4node15DefineConstantsEPN2v87IsolateENS0_5LocalINS0_6ObjectEEE (1 samples, 0.32%)</title><rect x="1182.4" y="645" width="3.8" height="15.0" fill="rgb(231,183,0)" rx="2" ry="2" />
<text x="1185.44" y="655.5" ></text>
</g>
<g >
<title>_ZN2v88internal9PreParser32ParseStatementListAndLogFunctionEPNS0_25PreParserFormalParametersE (1 samples, 0.32%)</title><rect x="1174.9" y="149" width="3.8" height="15.0" fill="rgb(207,36,22)" rx="2" ry="2" />
<text x="1177.87" y="159.5" ></text>
</g>
<g >
<title>all (312 samples, 100%)</title><rect x="10.0" y="1045" width="1180.0" height="15.0" fill="rgb(221,77,9)" rx="2" ry="2" />
<text x="13.00" y="1055.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE29ParseObjectPropertyDefinitionEPNS3_17ParsePropertyInfoEPb (1 samples, 0.32%)</title><rect x="1178.7" y="341" width="3.7" height="15.0" fill="rgb(222,83,6)" rx="2" ry="2" />
<text x="1181.65" y="351.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE22ParseLogicalExpressionEv (1 samples, 0.32%)</title><rect x="1174.9" y="53" width="3.8" height="15.0" fill="rgb(250,66,44)" rx="2" ry="2" />
<text x="1177.87" y="63.5" ></text>
</g>
<g >
<title>_ZN4node14StartExecutionEPNS_11EnvironmentESt8functionIFN2v810MaybeLocalINS3_5ValueEEERKNS_26StartExecutionCallbackInfoEEE (308 samples, 98.72%)</title><rect x="13.8" y="949" width="1164.9" height="15.0" fill="rgb(237,40,13)" rx="2" ry="2" />
<text x="16.78" y="959.5" >_ZN4node14StartExecutionEPNS_11EnvironmentESt8functionIFN2v810MaybeLocalINS3_5ValueEEERKNS_26StartExecutionCallbackInfoEEE</text>
</g>
<g >
<title>InterpretedFunction:compileForInternalLoader internal/bootstrap/loaders.js:263 (1 samples, 0.32%)</title><rect x="1174.9" y="757" width="3.8" height="15.0" fill="rgb(250,90,17)" rx="2" ry="2" />
<text x="1177.87" y="767.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE17ParseForStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEES9_ (1 samples, 0.32%)</title><rect x="1178.7" y="245" width="3.7" height="15.0" fill="rgb(233,91,0)" rx="2" ry="2" />
<text x="1181.65" y="255.5" ></text>
</g>
<g >
<title>_ZN2v86String11NewFromUtf8EPNS_7IsolateEPKcNS_13NewStringTypeEi (1 samples, 0.32%)</title><rect x="1182.4" y="613" width="3.8" height="15.0" fill="rgb(211,117,21)" rx="2" ry="2" />
<text x="1185.44" y="623.5" ></text>
</g>
<g >
<title>_ZN2v88internal10PagedSpace8TearDownEv (1 samples, 0.32%)</title><rect x="1186.2" y="901" width="3.8" height="15.0" fill="rgb(237,143,18)" rx="2" ry="2" />
<text x="1189.22" y="911.5" ></text>
</g>
<g >
<title>_ZN2v88internal21Builtin_HandleApiCallEiPmPNS0_7IsolateE (1 samples, 0.32%)</title><rect x="1178.7" y="693" width="3.7" height="15.0" fill="rgb(225,58,31)" rx="2" ry="2" />
<text x="1181.65" y="703.5" ></text>
</g>
<g >
<title>[unknown] (1 samples, 0.32%)</title><rect x="10.0" y="1013" width="3.8" height="15.0" fill="rgb(225,105,27)" rx="2" ry="2" />
<text x="13.00" y="1023.5" ></text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_16InvokeEPNS0_7IsolateERKNS1_12InvokeParamsE (308 samples, 98.72%)</title><rect x="13.8" y="869" width="1164.9" height="15.0" fill="rgb(248,93,31)" rx="2" ry="2" />
<text x="16.78" y="879.5" >_ZN2v88internal12_GLOBAL__N_16InvokeEPNS0_7IsolateERKNS1_12InvokeParamsE</text>
</g>
<g >
<title>InterpretedFunction:Module._load internal/modules/cjs/loader.js:722 (307 samples, 98.40%)</title><rect x="13.8" y="789" width="1161.1" height="15.0" fill="rgb(213,175,22)" rx="2" ry="2" />
<text x="16.78" y="799.5" >InterpretedFunction:Module._load internal/modules/cjs/loader.js:722</text>
</g>
<g >
<title>[libc-2.31.so] (9 samples, 2.88%)</title><rect x="1140.8" y="709" width="34.1" height="15.0" fill="rgb(211,126,30)" rx="2" ry="2" />
<text x="1143.83" y="719.5" >[l..</text>
</g>
<g >
<title>_ZN2v88internal6Parser12SkipFunctionEPKNS0_12AstRawStringENS0_12FunctionKindENS0_18FunctionSyntaxKindEPNS0_16DeclarationScopeEPiS9_PPNS0_20ProducedPreparseDataE (1 samples, 0.32%)</title><rect x="1178.7" y="309" width="3.7" height="15.0" fill="rgb(215,214,45)" rx="2" ry="2" />
<text x="1181.65" y="319.5" ></text>
</g>
<g >
<title>__x64_sys_munmap (1 samples, 0.32%)</title><rect x="1186.2" y="821" width="3.8" height="15.0" fill="rgb(207,155,12)" rx="2" ry="2" />
<text x="1189.22" y="831.5" ></text>
</g>
<g >
<title>unmap_region (1 samples, 0.32%)</title><rect x="1186.2" y="773" width="3.8" height="15.0" fill="rgb(211,172,51)" rx="2" ry="2" />
<text x="1189.22" y="783.5" ></text>
</g>
<g >
<title>_ZN2v88internal21Builtin_HandleApiCallEiPmPNS0_7IsolateE (1 samples, 0.32%)</title><rect x="1182.4" y="709" width="3.8" height="15.0" fill="rgb(248,38,28)" rx="2" ry="2" />
<text x="1185.44" y="719.5" ></text>
</g>
<g >
<title>Builtins_JSEntry (2 samples, 0.64%)</title><rect x="1178.7" y="837" width="7.5" height="15.0" fill="rgb(225,226,28)" rx="2" ry="2" />
<text x="1181.65" y="847.5" ></text>
</g>
<g >
<title>_ZN4node13native_module18NativeModuleLoader15CompileAsModuleEN2v85LocalINS2_7ContextEEEPKcPNS1_6ResultE (1 samples, 0.32%)</title><rect x="1174.9" y="517" width="3.8" height="15.0" fill="rgb(253,49,3)" rx="2" ry="2" />
<text x="1177.87" y="527.5" ></text>
</g>
<g >
<title>_ZN4node13native_module15NativeModuleEnv15CompileFunctionERKN2v820FunctionCallbackInfoINS2_5ValueEEE (1 samples, 0.32%)</title><rect x="1174.9" y="533" width="3.8" height="15.0" fill="rgb(237,188,33)" rx="2" ry="2" />
<text x="1177.87" y="543.5" ></text>
</g>
<g >
<title>release_pages (1 samples, 0.32%)</title><rect x="1186.2" y="709" width="3.8" height="15.0" fill="rgb(206,32,21)" rx="2" ry="2" />
<text x="1189.22" y="719.5" ></text>
</g>
<g >
<title>_ZN4node12_GLOBAL__N_121DefineSignalConstantsEN2v85LocalINS1_6ObjectEEE (1 samples, 0.32%)</title><rect x="1182.4" y="629" width="3.8" height="15.0" fill="rgb(239,66,16)" rx="2" ry="2" />
<text x="1185.44" y="639.5" ></text>
</g>
<g >
<title>InterpretedFunction: internal/modules/cjs/loader.js:1 (1 samples, 0.32%)</title><rect x="1174.9" y="741" width="3.8" height="15.0" fill="rgb(205,100,2)" rx="2" ry="2" />
<text x="1177.87" y="751.5" ></text>
</g>
<g >
<title>_ZN2v88internal6Parser20ParseFunctionLiteralEPKNS0_12AstRawStringENS0_7Scanner8LocationENS0_20FunctionNameValidityENS0_12FunctionKindEiNS0_18FunctionSyntaxKindENS0_12LanguageModeEPNS0_8ZoneListIS4_EE (1 samples, 0.32%)</title><rect x="1178.7" y="325" width="3.7" height="15.0" fill="rgb(228,161,4)" rx="2" ry="2" />
<text x="1181.65" y="335.5" ></text>
</g>
<g >
<title>InterpretedFunction:nativeModuleRequire internal/bootstrap/loaders.js:296 (1 samples, 0.32%)</title><rect x="1174.9" y="725" width="3.8" height="15.0" fill="rgb(223,40,4)" rx="2" ry="2" />
<text x="1177.87" y="735.5" ></text>
</g>
<g >
<title>_ZN2v88internal7Scanner4NextEv (1 samples, 0.32%)</title><rect x="1178.7" y="53" width="3.7" height="15.0" fill="rgb(240,41,0)" rx="2" ry="2" />
<text x="1181.65" y="63.5" ></text>
</g>
<g >
<title>InterpretedFunction: internal/util.js:1 (1 samples, 0.32%)</title><rect x="1182.4" y="757" width="3.8" height="15.0" fill="rgb(221,0,6)" rx="2" ry="2" />
<text x="1185.44" y="767.5" ></text>
</g>
<g >
<title>_ZN2v88internal9PreParser32ParseStatementListAndLogFunctionEPNS0_25PreParserFormalParametersE (1 samples, 0.32%)</title><rect x="1178.7" y="277" width="3.7" height="15.0" fill="rgb(254,92,16)" rx="2" ry="2" />
<text x="1181.65" y="287.5" ></text>
</g>
<g >
<title>_ZN4node16NodeMainInstance21CreateMainEnvironmentEPi (2 samples, 0.64%)</title><rect x="1178.7" y="965" width="7.5" height="15.0" fill="rgb(235,202,40)" rx="2" ry="2" />
<text x="1181.65" y="975.5" ></text>
</g>
<g >
<title>_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_ (308 samples, 98.72%)</title><rect x="13.8" y="885" width="1164.9" height="15.0" fill="rgb(234,109,53)" rx="2" ry="2" />
<text x="16.78" y="895.5" >_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_</text>
</g>
<g >
<title>_ZN2v88internal11FactoryBaseINS0_7FactoryEE28NewOneByteInternalizedStringERKNS0_6VectorIKhEEj (1 samples, 0.32%)</title><rect x="1182.4" y="517" width="3.8" height="15.0" fill="rgb(220,198,8)" rx="2" ry="2" />
<text x="1185.44" y="527.5" ></text>
</g>
<g >
<title>_ZN4node17CreateEnvironmentEPNS_11IsolateDataEN2v85LocalINS2_7ContextEEERKSt6vectorISsSaISsEESA_NS_16EnvironmentFlags5FlagsENS_8ThreadIdESt10unique_ptrINS_21InspectorParentHandleESt14default_deleteISF_EE (2 samples, 0.64%)</title><rect x="1178.7" y="949" width="7.5" height="15.0" fill="rgb(249,27,3)" rx="2" ry="2" />
<text x="1181.65" y="959.5" ></text>
</g>
<g >
<title>_ZN4node5StartEiPPc (311 samples, 99.68%)</title><rect x="13.8" y="997" width="1176.2" height="15.0" fill="rgb(217,151,25)" rx="2" ry="2" />
<text x="16.78" y="1007.5" >_ZN4node5StartEiPPc</text>
</g>
<g >
<title>Builtins_JSEntryTrampoline (2 samples, 0.64%)</title><rect x="1178.7" y="821" width="7.5" height="15.0" fill="rgb(218,194,6)" rx="2" ry="2" />
<text x="1181.65" y="831.5" ></text>
</g>
<g >
<title>InterpretedFunction:nativeModuleRequire internal/bootstrap/loaders.js:296 (1 samples, 0.32%)</title><rect x="1174.9" y="629" width="3.8" height="15.0" fill="rgb(248,63,40)" rx="2" ry="2" />
<text x="1177.87" y="639.5" ></text>
</g>
<g >
<title>InterpretedFunction:Module._compile internal/modules/cjs/loader.js:1030 (307 samples, 98.40%)</title><rect x="13.8" y="741" width="1161.1" height="15.0" fill="rgb(233,160,25)" rx="2" ry="2" />
<text x="16.78" y="751.5" >InterpretedFunction:Module._compile internal/modules/cjs/loader.js:1030</text>
</g>
<g >
<title>_ZN4node16NodeMainInstanceD1Ev (1 samples, 0.32%)</title><rect x="1186.2" y="981" width="3.8" height="15.0" fill="rgb(231,135,41)" rx="2" ry="2" />
<text x="1189.22" y="991.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE22ParseLogicalExpressionEv (1 samples, 0.32%)</title><rect x="1178.7" y="389" width="3.7" height="15.0" fill="rgb(219,139,36)" rx="2" ry="2" />
<text x="1181.65" y="399.5" ></text>
</g>
<g >
<title>_ZN4node11Environment13BootstrapNodeEv (2 samples, 0.64%)</title><rect x="1178.7" y="917" width="7.5" height="15.0" fill="rgb(218,97,27)" rx="2" ry="2" />
<text x="1181.65" y="927.5" ></text>
</g>
<g >
<title>InterpretedFunction:two /home/mmarchini/workspace/misc/node-performance-problem/foo.js:12 (7 samples, 2.24%)</title><rect x="17.6" y="709" width="26.4" height="15.0" fill="rgb(217,119,45)" rx="2" ry="2" />
<text x="20.56" y="719.5" >I..</text>
</g>
<g >
<title>_ZN2v88internal7Factory21InternalizeUtf8StringERKNS0_6VectorIKcEE (1 samples, 0.32%)</title><rect x="1182.4" y="597" width="3.8" height="15.0" fill="rgb(206,209,31)" rx="2" ry="2" />
<text x="1185.44" y="607.5" ></text>
</g>
<g >
<title>Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (1 samples, 0.32%)</title><rect x="1182.4" y="725" width="3.8" height="15.0" fill="rgb(221,122,49)" rx="2" ry="2" />
<text x="1185.44" y="735.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE18ParseObjectLiteralEv (1 samples, 0.32%)</title><rect x="1178.7" y="357" width="3.7" height="15.0" fill="rgb(222,62,26)" rx="2" ry="2" />
<text x="1181.65" y="367.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE23ParseFunctionExpressionEv (1 samples, 0.32%)</title><rect x="1174.9" y="213" width="3.8" height="15.0" fill="rgb(225,28,51)" rx="2" ry="2" />
<text x="1177.87" y="223.5" ></text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_119HandleApiCallHelperILb0EEENS0_11MaybeHandleINS0_6ObjectEEEPNS0_7IsolateENS0_6HandleINS0_10HeapObjectEEESA_NS8_INS0_20FunctionTemplateInfoEEENS8_IS4_EENS0_16BuiltinArgumentsE (1 samples, 0.32%)</title><rect x="1174.9" y="549" width="3.8" height="15.0" fill="rgb(220,160,31)" rx="2" ry="2" />
<text x="1177.87" y="559.5" ></text>
</g>
<g >
<title>_ZN2v88internalL26Builtin_Impl_HandleApiCallENS0_16BuiltinArgumentsEPNS0_7IsolateE (1 samples, 0.32%)</title><rect x="1174.9" y="565" width="3.8" height="15.0" fill="rgb(231,214,27)" rx="2" ry="2" />
<text x="1177.87" y="575.5" ></text>
</g>
<g >
<title>_ZN2v88internal23GetCurrentStackPositionEv (1 samples, 0.32%)</title><rect x="1174.9" y="37" width="3.8" height="15.0" fill="rgb(220,153,20)" rx="2" ry="2" />
<text x="1177.87" y="47.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE37ParseAssignmentExpressionCoverGrammarEv (1 samples, 0.32%)</title><rect x="1174.9" y="69" width="3.8" height="15.0" fill="rgb(240,55,41)" rx="2" ry="2" />
<text x="1177.87" y="79.5" ></text>
</g>
<g >
<title>_ZN4node13native_module15NativeModuleEnv15CompileFunctionERKN2v820FunctionCallbackInfoINS2_5ValueEEE (1 samples, 0.32%)</title><rect x="1178.7" y="645" width="3.7" height="15.0" fill="rgb(234,52,3)" rx="2" ry="2" />
<text x="1181.65" y="655.5" ></text>
</g>
<g >
<title>_ZN2v88internal6Parser12ParseProgramEPNS0_7IsolateENS0_6HandleINS0_6ScriptEEEPNS0_9ParseInfoENS0_11MaybeHandleINS0_9ScopeInfoEEE (1 samples, 0.32%)</title><rect x="1174.9" y="421" width="3.8" height="15.0" fill="rgb(238,91,41)" rx="2" ry="2" />
<text x="1177.87" y="431.5" ></text>
</g>
<g >
<title>InterpretedFunction: internal/source_map/source_map_cache.js:1 (1 samples, 0.32%)</title><rect x="1174.9" y="693" width="3.8" height="15.0" fill="rgb(215,95,10)" rx="2" ry="2" />
<text x="1177.87" y="703.5" ></text>
</g>
<g >
<title>_ZN2v88internal7Isolate6DeinitEv (1 samples, 0.32%)</title><rect x="1186.2" y="949" width="3.8" height="15.0" fill="rgb(217,42,19)" rx="2" ry="2" />
<text x="1189.22" y="959.5" ></text>
</g>
<g >
<title>Builtins_ArrayPrototypeSplice (6 samples, 1.92%)</title><rect x="17.6" y="693" width="22.7" height="15.0" fill="rgb(235,169,38)" rx="2" ry="2" />
<text x="20.56" y="703.5" >B..</text>
</g>
<g >
<title>arch_tlb_finish_mmu (1 samples, 0.32%)</title><rect x="1186.2" y="741" width="3.8" height="15.0" fill="rgb(237,229,51)" rx="2" ry="2" />
<text x="1189.22" y="751.5" ></text>
</g>
<g >
<title>InterpretedFunction: internal/url.js:1 (1 samples, 0.32%)</title><rect x="1178.7" y="757" width="3.7" height="15.0" fill="rgb(213,69,11)" rx="2" ry="2" />
<text x="1181.65" y="767.5" ></text>
</g>
<g >
<title>_ZN2v88internal21Builtin_HandleApiCallEiPmPNS0_7IsolateE (1 samples, 0.32%)</title><rect x="1174.9" y="581" width="3.8" height="15.0" fill="rgb(254,35,40)" rx="2" ry="2" />
<text x="1177.87" y="591.5" ></text>
</g>
<g >
<title>free_unref_page_list (1 samples, 0.32%)</title><rect x="1186.2" y="693" width="3.8" height="15.0" fill="rgb(226,195,18)" rx="2" ry="2" />
<text x="1189.22" y="703.5" ></text>
</g>
<g >
<title>_ZN2v88internal7Isolate6DeleteEPS1_ (1 samples, 0.32%)</title><rect x="1186.2" y="965" width="3.8" height="15.0" fill="rgb(237,52,18)" rx="2" ry="2" />
<text x="1189.22" y="975.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE22ParseLogicalExpressionEv (1 samples, 0.32%)</title><rect x="1174.9" y="245" width="3.8" height="15.0" fill="rgb(223,139,21)" rx="2" ry="2" />
<text x="1177.87" y="255.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE20ParseStandardForLoopEiPNS0_8ZoneListIPKNS0_12AstRawStringEEES9_PNS0_19PreParserExpressionEPNS0_18PreParserStatementESD_.constprop.388 (1 samples, 0.32%)</title><rect x="1174.9" y="101" width="3.8" height="15.0" fill="rgb(234,139,6)" rx="2" ry="2" />
<text x="1177.87" y="111.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE14ParseStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEES9_NS0_30AllowLabelledFunctionStatementE (1 samples, 0.32%)</title><rect x="1178.7" y="261" width="3.7" height="15.0" fill="rgb(219,135,42)" rx="2" ry="2" />
<text x="1181.65" y="271.5" ></text>
</g>
<g >
<title>_ZN2v88internal13VirtualMemory4FreeEv (1 samples, 0.32%)</title><rect x="1186.2" y="885" width="3.8" height="15.0" fill="rgb(217,81,15)" rx="2" ry="2" />
<text x="1189.22" y="895.5" ></text>
</g>
<g >
<title>InterpretedFunction:compileForInternalLoader internal/bootstrap/loaders.js:263 (1 samples, 0.32%)</title><rect x="1178.7" y="725" width="3.7" height="15.0" fill="rgb(220,94,28)" rx="2" ry="2" />
<text x="1181.65" y="735.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE37ParseAssignmentExpressionCoverGrammarEv (1 samples, 0.32%)</title><rect x="1178.7" y="117" width="3.7" height="15.0" fill="rgb(238,81,16)" rx="2" ry="2" />
<text x="1181.65" y="127.5" ></text>
</g>
<g >
<title>InterpretedFunction:compileForInternalLoader internal/bootstrap/loaders.js:263 (1 samples, 0.32%)</title><rect x="1174.9" y="661" width="3.8" height="15.0" fill="rgb(235,103,8)" rx="2" ry="2" />
<text x="1177.87" y="671.5" ></text>
</g>
<g >
<title>_ZN2v88internal6Parser13ParseFunctionEPNS0_10ScopedListIPNS0_9StatementEPvEEPKNS0_12AstRawStringEiNS0_12FunctionKindENS0_18FunctionSyntaxKindEPNS0_16DeclarationScopeEPiSF_PbSF_SF_PNS0_8ZoneListISA_EE (1 samples, 0.32%)</title><rect x="1174.9" y="357" width="3.8" height="15.0" fill="rgb(246,13,16)" rx="2" ry="2" />
<text x="1177.87" y="367.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE27ParseExpressionCoverGrammarEv (1 samples, 0.32%)</title><rect x="1174.9" y="85" width="3.8" height="15.0" fill="rgb(225,84,20)" rx="2" ry="2" />
<text x="1177.87" y="95.5" ></text>
</g>
<g >
<title>_ZN2v88internal11FactoryBaseINS0_7FactoryEE36AllocateRawOneByteInternalizedStringEij (1 samples, 0.32%)</title><rect x="1182.4" y="501" width="3.8" height="15.0" fill="rgb(223,220,1)" rx="2" ry="2" />
<text x="1185.44" y="511.5" ></text>
</g>
<g >
<title>_ZN4node15LoadEnvironmentEPNS_11EnvironmentE (308 samples, 98.72%)</title><rect x="13.8" y="965" width="1164.9" height="15.0" fill="rgb(247,7,21)" rx="2" ry="2" />
<text x="16.78" y="975.5" >_ZN4node15LoadEnvironmentEPNS_11EnvironmentE</text>
</g>
<g >
<title>InterpretedFunction:Module._extensions..js internal/modules/cjs/loader.js:1085 (307 samples, 98.40%)</title><rect x="13.8" y="757" width="1161.1" height="15.0" fill="rgb(210,91,35)" rx="2" ry="2" />
<text x="16.78" y="767.5" >InterpretedFunction:Module._extensions..js internal/modules/cjs/loader.js:1085</text>
</g>
<g >
<title>Builtins_ExtractFastJSArray (2 samples, 0.64%)</title><rect x="1133.3" y="693" width="7.5" height="15.0" fill="rgb(218,59,18)" rx="2" ry="2" />
<text x="1136.27" y="703.5" ></text>
</g>
<g >
<title>LazyCompile:* /home/mmarchini/workspace/misc/node-performance-problem/foo.js:1 (292 samples, 93.59%)</title><rect x="70.5" y="725" width="1104.4" height="15.0" fill="rgb(207,91,39)" rx="2" ry="2" />
<text x="73.51" y="735.5" >LazyCompile:* /home/mmarchini/workspace/misc/node-performance-problem/foo.js:1</text>
</g>
<g >
<title>_ZN2v88internal6Parser12ParseWrappedEPNS0_7IsolateEPNS0_9ParseInfoEPNS0_10ScopedListIPNS0_9StatementEPvEEPNS0_16DeclarationScopeEPNS0_4ZoneE (1 samples, 0.32%)</title><rect x="1174.9" y="389" width="3.8" height="15.0" fill="rgb(206,66,48)" rx="2" ry="2" />
<text x="1177.87" y="399.5" ></text>
</g>
<g >
<title>InterpretedFunction:compileForInternalLoader internal/bootstrap/loaders.js:263 (2 samples, 0.64%)</title><rect x="1178.7" y="773" width="7.5" height="15.0" fill="rgb(211,109,38)" rx="2" ry="2" />
<text x="1181.65" y="783.5" ></text>
</g>
<g >
<title>InterpretedFunction:compileForInternalLoader internal/bootstrap/loaders.js:263 (1 samples, 0.32%)</title><rect x="1174.9" y="613" width="3.8" height="15.0" fill="rgb(247,159,48)" rx="2" ry="2" />
<text x="1177.87" y="623.5" ></text>
</g>
<g >
<title>_ZN2v88internal6Parser14DoParseProgramEPNS0_7IsolateEPNS0_9ParseInfoE (1 samples, 0.32%)</title><rect x="1174.9" y="405" width="3.8" height="15.0" fill="rgb(225,96,12)" rx="2" ry="2" />
<text x="1177.87" y="415.5" ></text>
</g>
<g >
<title>_ZN2v88internal6Parser12SkipFunctionEPKNS0_12AstRawStringENS0_12FunctionKindENS0_18FunctionSyntaxKindEPNS0_16DeclarationScopeEPiS9_PPNS0_20ProducedPreparseDataE (1 samples, 0.32%)</title><rect x="1174.9" y="181" width="3.8" height="15.0" fill="rgb(233,196,22)" rx="2" ry="2" />
<text x="1177.87" y="191.5" ></text>
</g>
<g >
<title>InterpretedFunction:nativeModuleRequire internal/bootstrap/loaders.js:296 (1 samples, 0.32%)</title><rect x="1178.7" y="741" width="3.7" height="15.0" fill="rgb(230,126,43)" rx="2" ry="2" />
<text x="1181.65" y="751.5" ></text>
</g>
<g >
<title>_ZN2v88internal6Parser20ParseFunctionLiteralEPKNS0_12AstRawStringENS0_7Scanner8LocationENS0_20FunctionNameValidityENS0_12FunctionKindEiNS0_18FunctionSyntaxKindENS0_12LanguageModeEPNS0_8ZoneListIS4_EE (1 samples, 0.32%)</title><rect x="1174.9" y="197" width="3.8" height="15.0" fill="rgb(254,60,13)" rx="2" ry="2" />
<text x="1177.87" y="207.5" ></text>
</g>
<g >
<title>_ZN2v88internal9PreParser16PreParseFunctionEPKNS0_12AstRawStringENS0_12FunctionKindENS0_18FunctionSyntaxKindEPNS0_16DeclarationScopeEPiPPNS0_20ProducedPreparseDataE (1 samples, 0.32%)</title><rect x="1174.9" y="165" width="3.8" height="15.0" fill="rgb(214,181,6)" rx="2" ry="2" />
<text x="1177.87" y="175.5" ></text>
</g>
<g >
<title>_ZN2v88internal9PreParser16PreParseFunctionEPKNS0_12AstRawStringENS0_12FunctionKindENS0_18FunctionSyntaxKindEPNS0_16DeclarationScopeEPiPPNS0_20ProducedPreparseDataE (1 samples, 0.32%)</title><rect x="1178.7" y="293" width="3.7" height="15.0" fill="rgb(215,85,2)" rx="2" ry="2" />
<text x="1181.65" y="303.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE34ParseExpressionOrLabelledStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEES9_NS0_30AllowLabelledFunctionStatementE (1 samples, 0.32%)</title><rect x="1178.7" y="165" width="3.7" height="15.0" fill="rgb(231,113,28)" rx="2" ry="2" />
<text x="1181.65" y="175.5" ></text>
</g>
<g >
<title>Builtins_RecordWrite (1 samples, 0.32%)</title><rect x="13.8" y="693" width="3.8" height="15.0" fill="rgb(239,181,43)" rx="2" ry="2" />
<text x="16.78" y="703.5" ></text>
</g>
<g >
<title>InterpretedFunction:Module.load internal/modules/cjs/loader.js:929 (307 samples, 98.40%)</title><rect x="13.8" y="773" width="1161.1" height="15.0" fill="rgb(214,54,15)" rx="2" ry="2" />
<text x="16.78" y="783.5" >InterpretedFunction:Module.load internal/modules/cjs/loader.js:929</text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_115CompileToplevelEPNS0_9ParseInfoENS0_6HandleINS0_6ScriptEEENS0_11MaybeHandleINS0_9ScopeInfoEEEPNS0_7IsolateEPNS0_15IsCompiledScopeE (1 samples, 0.32%)</title><rect x="1178.7" y="565" width="3.7" height="15.0" fill="rgb(205,88,10)" rx="2" ry="2" />
<text x="1181.65" y="575.5" ></text>
</g>
<g >
<title>_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_ (2 samples, 0.64%)</title><rect x="1178.7" y="885" width="7.5" height="15.0" fill="rgb(221,200,3)" rx="2" ry="2" />
<text x="1181.65" y="895.5" ></text>
</g>
<g >
<title>node (312 samples, 100.00%)</title><rect x="10.0" y="1029" width="1180.0" height="15.0" fill="rgb(245,168,29)" rx="2" ry="2" />
<text x="13.00" y="1039.5" >node</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE17ParseForStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEES9_ (1 samples, 0.32%)</title><rect x="1174.9" y="117" width="3.8" height="15.0" fill="rgb(225,222,27)" rx="2" ry="2" />
<text x="1177.87" y="127.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE14ParseStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEES9_NS0_30AllowLabelledFunctionStatementE (1 samples, 0.32%)</title><rect x="1178.7" y="213" width="3.7" height="15.0" fill="rgb(212,84,32)" rx="2" ry="2" />
<text x="1181.65" y="223.5" ></text>
</g>
<g >
<title>_ZN2v88internal6Parser14DoParseProgramEPNS0_7IsolateEPNS0_9ParseInfoE (1 samples, 0.32%)</title><rect x="1178.7" y="517" width="3.7" height="15.0" fill="rgb(222,27,9)" rx="2" ry="2" />
<text x="1181.65" y="527.5" ></text>
</g>
<g >
<title>InterpretedFunction: internal/bootstrap/node.js:1 (2 samples, 0.64%)</title><rect x="1178.7" y="805" width="7.5" height="15.0" fill="rgb(247,36,41)" rx="2" ry="2" />
<text x="1181.65" y="815.5" ></text>
</g>
<g >
<title>_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_ (2 samples, 0.64%)</title><rect x="1178.7" y="869" width="7.5" height="15.0" fill="rgb(248,31,45)" rx="2" ry="2" />
<text x="1181.65" y="879.5" ></text>
</g>
<g >
<title>write (1 samples, 0.32%)</title><rect x="10.0" y="997" width="3.8" height="15.0" fill="rgb(245,30,40)" rx="2" ry="2" />
<text x="13.00" y="1007.5" ></text>
</g>
<g >
<title>InterpretedFunction: internal/main/run_main_module.js:1 (308 samples, 98.72%)</title><rect x="13.8" y="821" width="1164.9" height="15.0" fill="rgb(218,99,29)" rx="2" ry="2" />
<text x="16.78" y="831.5" >InterpretedFunction: internal/main/run_main_module.js:1</text>
</g>
<g >
<title>InterpretedFunction: /home/mmarchini/workspace/misc/node-performance-problem/foo.js:1 (15 samples, 4.81%)</title><rect x="13.8" y="725" width="56.7" height="15.0" fill="rgb(221,122,7)" rx="2" ry="2" />
<text x="16.78" y="735.5" >Interp..</text>
</g>
<g >
<title>_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_ (308 samples, 98.72%)</title><rect x="13.8" y="901" width="1164.9" height="15.0" fill="rgb(211,102,48)" rx="2" ry="2" />
<text x="16.78" y="911.5" >_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_</text>
</g>
<g >
<title>_ZN2v814ScriptCompiler24CompileFunctionInContextENS_5LocalINS_7ContextEEEPNS0_6SourceEmPNS1_INS_6StringEEEmPNS1_INS_6ObjectEEENS0_14CompileOptionsENS0_13NoCacheReasonEPNS1_INS_14ScriptOrModuleEEE (1 samples, 0.32%)</title><rect x="1178.7" y="597" width="3.7" height="15.0" fill="rgb(249,42,32)" rx="2" ry="2" />
<text x="1181.65" y="607.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE37ParseAssignmentExpressionCoverGrammarEv (1 samples, 0.32%)</title><rect x="1178.7" y="133" width="3.7" height="15.0" fill="rgb(253,59,18)" rx="2" ry="2" />
<text x="1181.65" y="143.5" ></text>
</g>
<g >
<title>_ZN2v88internal7Factory17InternalizeStringENS0_6VectorIKhEEb (1 samples, 0.32%)</title><rect x="1182.4" y="581" width="3.8" height="15.0" fill="rgb(232,94,19)" rx="2" ry="2" />
<text x="1185.44" y="591.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE14ParseArgumentsEPNS0_23PreParserExpressionListEPbNS0_20ParsingArrowHeadFlagE (1 samples, 0.32%)</title><rect x="1178.7" y="69" width="3.7" height="15.0" fill="rgb(227,205,2)" rx="2" ry="2" />
<text x="1181.65" y="79.5" ></text>
</g>
<g >
<title>_ZN4nodeL14StartExecutionEPNS_11EnvironmentEPKc (308 samples, 98.72%)</title><rect x="13.8" y="933" width="1164.9" height="15.0" fill="rgb(208,142,17)" rx="2" ry="2" />
<text x="16.78" y="943.5" >_ZN4nodeL14StartExecutionEPNS_11EnvironmentEPKc</text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_115CompileToplevelEPNS0_9ParseInfoENS0_6HandleINS0_6ScriptEEENS0_11MaybeHandleINS0_9ScopeInfoEEEPNS0_7IsolateEPNS0_15IsCompiledScopeE (1 samples, 0.32%)</title><rect x="1174.9" y="453" width="3.8" height="15.0" fill="rgb(254,80,6)" rx="2" ry="2" />
<text x="1177.87" y="463.5" ></text>
</g>
<g >
<title>InterpretedFunction:nativeModuleRequire internal/bootstrap/loaders.js:296 (1 samples, 0.32%)</title><rect x="1174.9" y="677" width="3.8" height="15.0" fill="rgb(249,106,23)" rx="2" ry="2" />
<text x="1177.87" y="687.5" ></text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_119HandleApiCallHelperILb0EEENS0_11MaybeHandleINS0_6ObjectEEEPNS0_7IsolateENS0_6HandleINS0_10HeapObjectEEESA_NS8_INS0_20FunctionTemplateInfoEEENS8_IS4_EENS0_16BuiltinArgumentsE (1 samples, 0.32%)</title><rect x="1178.7" y="661" width="3.7" height="15.0" fill="rgb(218,92,14)" rx="2" ry="2" />
<text x="1181.65" y="671.5" ></text>
</g>
<g >
<title>_ZN2v88internal8Compiler18GetWrappedFunctionENS0_6HandleINS0_6StringEEENS2_INS0_10FixedArrayEEENS2_INS0_7ContextEEERKNS1_13ScriptDetailsENS_19ScriptOriginOptionsEPNS0_10ScriptDataENS_14ScriptCompiler14CompileOptionsENSF_13NoCacheReasonE (1 samples, 0.32%)</title><rect x="1178.7" y="581" width="3.7" height="15.0" fill="rgb(224,110,19)" rx="2" ry="2" />
<text x="1181.65" y="591.5" ></text>
</g>
<g >
<title>_ZN4node13native_module18NativeModuleLoader16LookupAndCompileEN2v85LocalINS2_7ContextEEEPKcPSt6vectorINS3_INS2_6StringEEESaISA_EEPNS1_6ResultE (1 samples, 0.32%)</title><rect x="1174.9" y="501" width="3.8" height="15.0" fill="rgb(208,123,47)" rx="2" ry="2" />
<text x="1177.87" y="511.5" ></text>
</g>
<g >
<title>Builtins_JSEntry (308 samples, 98.72%)</title><rect x="13.8" y="853" width="1164.9" height="15.0" fill="rgb(216,175,24)" rx="2" ry="2" />
<text x="16.78" y="863.5" >Builtins_JSEntry</text>
</g>
<g >
<title>_ZN2v88internal6Parser20ParseFunctionLiteralEPKNS0_12AstRawStringENS0_7Scanner8LocationENS0_20FunctionNameValidityENS0_12FunctionKindEiNS0_18FunctionSyntaxKindENS0_12LanguageModeEPNS0_8ZoneListIS4_EE (1 samples, 0.32%)</title><rect x="1178.7" y="485" width="3.7" height="15.0" fill="rgb(242,81,51)" rx="2" ry="2" />
<text x="1181.65" y="495.5" ></text>
</g>
<g >
<title>InterpretedFunction:internalBinding internal/bootstrap/loaders.js:132 (1 samples, 0.32%)</title><rect x="1182.4" y="741" width="3.8" height="15.0" fill="rgb(240,72,47)" rx="2" ry="2" />
<text x="1185.44" y="751.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE27ParseExpressionCoverGrammarEv (1 samples, 0.32%)</title><rect x="1174.9" y="293" width="3.8" height="15.0" fill="rgb(252,102,24)" rx="2" ry="2" />
<text x="1177.87" y="303.5" ></text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE25ParseVariableDeclarationsENS3_26VariableDeclarationContextEPNS3_24DeclarationParsingResultEPNS0_8ZoneListIPKNS0_12AstRawStringEEE (1 samples, 0.32%)</title><rect x="1178.7" y="421" width="3.7" height="15.0" fill="rgb(210,223,16)" rx="2" ry="2" />
<text x="1181.65" y="431.5" ></text>
</g>
<g >
<title>InterpretedFunction:initializeCJSLoader internal/bootstrap/pre_execution.js:404 (1 samples, 0.32%)</title><rect x="1174.9" y="789" width="3.8" height="15.0" fill="rgb(219,138,42)" rx="2" ry="2" />
<text x="1177.87" y="799.5" ></text>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment