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
<?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="1542" onload="init(evt)" viewBox="0 0 1200 1542" 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="1542.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1525" > </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="1525" > </text>
<g id="frames">
<g >
<title>_ZN2v814ScriptCompiler22CompileUnboundInternalEPNS_7IsolateEPNS0_6SourceENS0_14CompileOptionsENS0_13NoCacheReasonE (1 samples, 10.00%)</title><rect x="718.0" y="1029" width="118.0" height="15.0" fill="rgb(228,146,19)" rx="2" ry="2" />
<text x="721.00" y="1039.5" >_ZN2v814Script..</text>
</g>
<g >
<title>_ZN2v88internal6Parser12ParseProgramEPNS0_7IsolateEPNS0_9ParseInfoE (1 samples, 10.00%)</title><rect x="836.0" y="1029" width="118.0" height="15.0" fill="rgb(223,93,25)" rx="2" ry="2" />
<text x="839.00" y="1039.5" >_ZN2v88interna..</text>
</g>
<g >
<title>Builtin:CompileLazy (1 samples, 10.00%)</title><rect x="954.0" y="1269" width="118.0" height="15.0" fill="rgb(235,46,4)" rx="2" ry="2" />
<text x="957.00" y="1279.5" >Builtin:Compil..</text>
</g>
<g >
<title>_ZN2v88internal7Scanner7AdvanceILb0ELb1EEEvv (1 samples, 10.00%)</title><rect x="836.0" y="37" width="118.0" height="15.0" fill="rgb(249,76,11)" rx="2" ry="2" />
<text x="839.00" y="47.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE21ParseBinaryExpressionEibPb (1 samples, 10.00%)</title><rect x="836.0" y="149" width="118.0" height="15.0" fill="rgb(210,20,19)" rx="2" ry="2" />
<text x="839.00" y="159.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.require internal/bootstrap/loaders.js:150 (1 samples, 10.00%)</title><rect x="836.0" y="1285" width="118.0" height="15.0" fill="rgb(248,116,42)" rx="2" ry="2" />
<text x="839.00" y="1295.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal6Parser13ParseFunctionEPKNS0_12AstRawStringEiNS0_12FunctionKindENS0_15FunctionLiteral12FunctionTypeEPNS0_16DeclarationScopeEPiSA_PbSA_SA_PNS0_8ZoneListIS4_EESB_ (1 samples, 10.00%)</title><rect x="836.0" y="661" width="118.0" height="15.0" fill="rgb(215,137,54)" rx="2" ry="2" />
<text x="839.00" y="671.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal7Factory26AllocateRawWithImmortalMapEiNS0_13PretenureFlagEPNS0_3MapENS0_19AllocationAlignmentE.constprop.141 (1 samples, 10.00%)</title><rect x="718.0" y="901" width="118.0" height="15.0" fill="rgb(223,225,0)" rx="2" ry="2" />
<text x="721.00" y="911.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_115CompileToplevelEPNS0_9ParseInfoEPNS0_7IsolateE (1 samples, 10.00%)</title><rect x="836.0" y="1061" width="118.0" height="15.0" fill="rgb(220,132,2)" rx="2" ry="2" />
<text x="839.00" y="1071.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator16VisitIfStatementEPNS0_11IfStatementE (1 samples, 10.00%)</title><rect x="954.0" y="1013" width="118.0" height="15.0" fill="rgb(248,177,21)" rx="2" ry="2" />
<text x="957.00" y="1023.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal4Heap8ScavengeEv (1 samples, 10.00%)</title><rect x="600.0" y="1077" width="118.0" height="15.0" fill="rgb(220,94,13)" rx="2" ry="2" />
<text x="603.00" y="1087.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE22ParseStatementListItemEPb (1 samples, 10.00%)</title><rect x="836.0" y="245" width="118.0" height="15.0" fill="rgb(207,76,37)" rx="2" ry="2" />
<text x="839.00" y="255.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_119HandleApiCallHelperILb1EEENS0_11MaybeHandleINS0_6ObjectEEEPNS0_7IsolateENS0_6HandleINS0_10HeapObjectEEESA_NS8_INS0_20FunctionTemplateInfoEEENS8_IS4_EENS0_16BuiltinArgumentsE (1 samples, 10.00%)</title><rect x="836.0" y="1141" width="118.0" height="15.0" fill="rgb(248,62,2)" rx="2" ry="2" />
<text x="839.00" y="1151.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:Module._compile internal/modules/cjs/loader.js:705 (5 samples, 50.00%)</title><rect x="10.0" y="1221" width="590.0" height="15.0" fill="rgb(226,142,29)" rx="2" ry="2" />
<text x="13.00" y="1231.5" >InterpretedFunction:Module._compile internal/modules/cjs/loader.js:705</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE20ParseUnaryExpressionEPb (1 samples, 10.00%)</title><rect x="836.0" y="421" width="118.0" height="15.0" fill="rgb(229,29,37)" rx="2" ry="2" />
<text x="839.00" y="431.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_120ElementsAccessorBaseINS1_29FastPackedSmiElementsAccessorENS1_18ElementsKindTraitsILNS0_12ElementsKindE0EEEE6SpliceENS0_6HandleINS0_7JSArrayEEEjjPNS0_9ArgumentsEj (1 samples, 10.00%)</title><rect x="364.0" y="1141" width="118.0" height="15.0" fill="rgb(224,93,3)" rx="2" ry="2" />
<text x="367.00" y="1151.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE22ParseStatementListItemEPb (1 samples, 10.00%)</title><rect x="836.0" y="533" width="118.0" height="15.0" fill="rgb(247,48,7)" rx="2" ry="2" />
<text x="839.00" y="543.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal7Factory19NewRawOneByteStringEiNS0_13PretenureFlagE (1 samples, 10.00%)</title><rect x="718.0" y="917" width="118.0" height="15.0" fill="rgb(251,151,24)" rx="2" ry="2" />
<text x="721.00" y="927.5" >_ZN2v88interna..</text>
</g>
<g >
<title>Builtin:GrowFastSmiOrObjectElements (1 samples, 10.00%)</title><rect x="10.0" y="1205" width="118.0" height="15.0" fill="rgb(248,178,0)" rx="2" ry="2" />
<text x="13.00" y="1215.5" >Builtin:GrowFa..</text>
</g>
<g >
<title>_ZN2v88internal6Script12InitLineEndsENS0_6HandleIS1_EE (1 samples, 10.00%)</title><rect x="718.0" y="981" width="118.0" height="15.0" fill="rgb(215,8,45)" rx="2" ry="2" />
<text x="721.00" y="991.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE25ParseAssignmentExpressionEbPb (1 samples, 10.00%)</title><rect x="836.0" y="469" width="118.0" height="15.0" fill="rgb(251,87,52)" rx="2" ry="2" />
<text x="839.00" y="479.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal15ItemParallelJob3RunESt10shared_ptrINS0_8CountersEE (1 samples, 10.00%)</title><rect x="600.0" y="1061" width="118.0" height="15.0" fill="rgb(233,218,40)" rx="2" ry="2" />
<text x="603.00" y="1071.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal7Factory10NewJSArrayENS0_12ElementsKindENS0_13PretenureFlagE (1 samples, 10.00%)</title><rect x="364.0" y="1109" width="118.0" height="15.0" fill="rgb(239,131,13)" rx="2" ry="2" />
<text x="367.00" y="1119.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator15VisitStatementsEPNS0_8ZoneListIPNS0_9StatementEEE (1 samples, 10.00%)</title><rect x="954.0" y="1045" width="118.0" height="15.0" fill="rgb(246,202,33)" rx="2" ry="2" />
<text x="957.00" y="1055.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal8Compiler30GetSharedFunctionInfoForScriptENS0_6HandleINS0_6StringEEERKNS1_13ScriptDetailsENS_19ScriptOriginOptionsEPNS_9ExtensionEPNS0_10ScriptDataENS_14ScriptCompiler14CompileOptionsENSD_13NoCacheReasonENS0_11NativesFlagE (1 samples, 10.00%)</title><rect x="836.0" y="1077" width="118.0" height="15.0" fill="rgb(211,123,28)" rx="2" ry="2" />
<text x="839.00" y="1087.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE17ParseClassLiteralENS0_19PreParserIdentifierENS0_7Scanner8LocationEbiPb (1 samples, 10.00%)</title><rect x="836.0" y="325" width="118.0" height="15.0" fill="rgb(206,91,15)" rx="2" ry="2" />
<text x="839.00" y="335.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE18ParseStatementListEPNS0_8ZoneListIPNS0_9StatementEEENS0_5Token5ValueEbPb (1 samples, 10.00%)</title><rect x="836.0" y="629" width="118.0" height="15.0" fill="rgb(212,177,29)" rx="2" ry="2" />
<text x="839.00" y="639.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator9VisitCallEPNS0_4CallE (1 samples, 10.00%)</title><rect x="954.0" y="933" width="118.0" height="15.0" fill="rgb(253,148,21)" rx="2" ry="2" />
<text x="957.00" y="943.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_129ExecuteUnoptimizedCompileJobsEPNS0_9ParseInfoEPNS0_15FunctionLiteralEPNS0_19AccountingAllocatorEPSt12forward_listISt10unique_ptrINS0_25UnoptimizedCompilationJobESt14default_deleteISA_EESaISD_EE (1 samples, 10.00%)</title><rect x="954.0" y="1173" width="118.0" height="15.0" fill="rgb(235,186,41)" rx="2" ry="2" />
<text x="957.00" y="1183.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction: internal/async_hooks.js:1 (1 samples, 10.00%)</title><rect x="836.0" y="1253" width="118.0" height="15.0" fill="rgb(215,86,46)" rx="2" ry="2" />
<text x="839.00" y="1263.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal9Scavenger7ProcessEPNS0_14OneshotBarrierE (1 samples, 10.00%)</title><rect x="600.0" y="1013" width="118.0" height="15.0" fill="rgb(212,155,6)" rx="2" ry="2" />
<text x="603.00" y="1023.5" >_ZN2v88interna..</text>
</g>
<g >
<title>BytecodeHandler:Construct (1 samples, 10.00%)</title><rect x="718.0" y="1141" width="118.0" height="15.0" fill="rgb(243,213,5)" rx="2" ry="2" />
<text x="721.00" y="1151.5" >BytecodeHandle..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE20ParseReturnStatementEPb (1 samples, 10.00%)</title><rect x="836.0" y="501" width="118.0" height="15.0" fill="rgb(230,83,46)" rx="2" ry="2" />
<text x="839.00" y="511.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.require internal/bootstrap/loaders.js:150 (1 samples, 10.00%)</title><rect x="836.0" y="1237" width="118.0" height="15.0" fill="rgb(252,195,41)" rx="2" ry="2" />
<text x="839.00" y="1247.5" >InterpretedFun..</text>
</g>
<g >
<title>Builtin:GrowFastSmiOrObjectElements (1 samples, 10.00%)</title><rect x="128.0" y="1189" width="118.0" height="15.0" fill="rgb(206,74,5)" rx="2" ry="2" />
<text x="131.00" y="1199.5" >Builtin:GrowFa..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 10.00%)</title><rect x="1072.0" y="1333" width="118.0" height="15.0" fill="rgb(206,61,54)" rx="2" ry="2" />
<text x="1075.00" y="1343.5" >_raw_spin_unlo..</text>
</g>
<g >
<title>_ZN2v88internal21Builtin_HandleApiCallEiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 10.00%)</title><rect x="836.0" y="1157" width="118.0" height="15.0" fill="rgb(208,63,50)" rx="2" ry="2" />
<text x="839.00" y="1167.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE36ParseMemberWithNewPrefixesExpressionEPbS4_ (1 samples, 10.00%)</title><rect x="836.0" y="837" width="118.0" height="15.0" fill="rgb(252,69,41)" rx="2" ry="2" />
<text x="839.00" y="847.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE27ParseExpressionCoverGrammarEbPb (1 samples, 10.00%)</title><rect x="836.0" y="949" width="118.0" height="15.0" fill="rgb(233,173,39)" rx="2" ry="2" />
<text x="839.00" y="959.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction: internal/modules/cjs/helpers.js:1 (1 samples, 10.00%)</title><rect x="718.0" y="1189" width="118.0" height="15.0" fill="rgb(208,28,54)" rx="2" ry="2" />
<text x="721.00" y="1199.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE17ParseFunctionBodyENS0_13PreParserListINS0_18PreParserStatementEEENS0_19PreParserIdentifierEiRKNS0_25PreParserFormalParametersENS0_12FunctionKindENS0_15FunctionLiteral12FunctionTypeEPb (1 samples, 10.00%)</title><rect x="836.0" y="277" width="118.0" height="15.0" fill="rgb(220,129,25)" rx="2" ry="2" />
<text x="839.00" y="287.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:bootstrapNodeJSCore internal/bootstrap/node.js:15 (9 samples, 90.00%)</title><rect x="10.0" y="1333" width="1062.0" height="15.0" fill="rgb(221,214,18)" rx="2" ry="2" />
<text x="13.00" y="1343.5" >InterpretedFunction:bootstrapNodeJSCore internal/bootstrap/node.js:15</text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_119HandleApiCallHelperILb1EEENS0_11MaybeHandleINS0_6ObjectEEEPNS0_7IsolateENS0_6HandleINS0_10HeapObjectEEESA_NS8_INS0_20FunctionTemplateInfoEEENS8_IS4_EENS0_16BuiltinArgumentsE (1 samples, 10.00%)</title><rect x="718.0" y="1077" width="118.0" height="15.0" fill="rgb(228,128,9)" rx="2" ry="2" />
<text x="721.00" y="1087.5" >_ZN2v88interna..</text>
</g>
<g >
<title>Builtin:JSBuiltinsConstructStub (1 samples, 10.00%)</title><rect x="718.0" y="1125" width="118.0" height="15.0" fill="rgb(246,43,29)" rx="2" ry="2" />
<text x="721.00" y="1135.5" >Builtin:JSBuil..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE22ParsePostfixExpressionEPb (1 samples, 10.00%)</title><rect x="836.0" y="405" width="118.0" height="15.0" fill="rgb(249,39,51)" rx="2" ry="2" />
<text x="839.00" y="415.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal15ItemParallelJob4Task11RunInternalEv (1 samples, 10.00%)</title><rect x="600.0" y="1045" width="118.0" height="15.0" fill="rgb(220,190,14)" rx="2" ry="2" />
<text x="603.00" y="1055.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11StoreBuffer29MoveAllEntriesToRememberedSetEv (1 samples, 10.00%)</title><rect x="482.0" y="1077" width="118.0" height="15.0" fill="rgb(207,131,43)" rx="2" ry="2" />
<text x="485.00" y="1087.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal19Runtime_CompileLazyEiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 10.00%)</title><rect x="954.0" y="1237" width="118.0" height="15.0" fill="rgb(215,137,16)" rx="2" ry="2" />
<text x="957.00" y="1247.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE26ParseConditionalExpressionEbPb (1 samples, 10.00%)</title><rect x="836.0" y="773" width="118.0" height="15.0" fill="rgb(251,4,40)" rx="2" ry="2" />
<text x="839.00" y="783.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:setupGlobalConsole internal/bootstrap/node.js:404 (1 samples, 10.00%)</title><rect x="718.0" y="1301" width="118.0" height="15.0" fill="rgb(237,160,24)" rx="2" ry="2" />
<text x="721.00" y="1311.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_ (9 samples, 90.00%)</title><rect x="10.0" y="1397" width="1062.0" height="15.0" fill="rgb(219,75,54)" rx="2" ry="2" />
<text x="13.00" y="1407.5" >_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_</text>
</g>
<g >
<title>_ZN2v88internal6String11SlowFlattenENS0_6HandleINS0_10ConsStringEEENS0_13PretenureFlagE (1 samples, 10.00%)</title><rect x="718.0" y="933" width="118.0" height="15.0" fill="rgb(248,41,53)" rx="2" ry="2" />
<text x="721.00" y="943.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11StoreBuffer26MoveEntriesToRememberedSetEi (1 samples, 10.00%)</title><rect x="482.0" y="1061" width="118.0" height="15.0" fill="rgb(249,44,29)" rx="2" ry="2" />
<text x="485.00" y="1071.5" >_ZN2v88interna..</text>
</g>
<g >
<title>Builtin:CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (2 samples, 20.00%)</title><rect x="246.0" y="1189" width="236.0" height="15.0" fill="rgb(205,125,2)" rx="2" ry="2" />
<text x="249.00" y="1199.5" >Builtin:CEntry_Return1_DontSave..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE14ParseStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEENS0_30AllowLabelledFunctionStatementEPb (1 samples, 10.00%)</title><rect x="836.0" y="981" width="118.0" height="15.0" fill="rgb(228,203,19)" rx="2" ry="2" />
<text x="839.00" y="991.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter25InterpreterCompilationJob14ExecuteJobImplEv (1 samples, 10.00%)</title><rect x="954.0" y="1157" width="118.0" height="15.0" fill="rgb(214,111,40)" rx="2" ry="2" />
<text x="957.00" y="1167.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal19Builtin_ArraySpliceEiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 20.00%)</title><rect x="246.0" y="1173" width="236.0" height="15.0" fill="rgb(216,200,28)" rx="2" ry="2" />
<text x="249.00" y="1183.5" >_ZN2v88internal19Builtin_ArrayS..</text>
</g>
<g >
<title>_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_23GarbageCollectionReasonENS_15GCCallbackFlagsE (1 samples, 10.00%)</title><rect x="718.0" y="869" width="118.0" height="15.0" fill="rgb(228,142,40)" rx="2" ry="2" />
<text x="721.00" y="879.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE22ParsePrimaryExpressionEPbS4_ (1 samples, 10.00%)</title><rect x="836.0" y="341" width="118.0" height="15.0" fill="rgb(219,162,16)" rx="2" ry="2" />
<text x="839.00" y="351.5" >_ZN2v88interna..</text>
</g>
<g >
<title>__x64_sys_futex (1 samples, 10.00%)</title><rect x="1072.0" y="1413" width="118.0" height="15.0" fill="rgb(222,77,5)" rx="2" ry="2" />
<text x="1075.00" y="1423.5" >__x64_sys_futex</text>
</g>
<g >
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (1 samples, 10.00%)</title><rect x="600.0" y="1125" width="118.0" height="15.0" fill="rgb(224,191,6)" rx="2" ry="2" />
<text x="603.00" y="1135.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_23GarbageCollectionReasonENS_15GCCallbackFlagsE (1 samples, 10.00%)</title><rect x="482.0" y="1109" width="118.0" height="15.0" fill="rgb(225,107,21)" rx="2" ry="2" />
<text x="485.00" y="1119.5" >_ZN2v88interna..</text>
</g>
<g >
<title>try_to_wake_up (1 samples, 10.00%)</title><rect x="1072.0" y="1349" width="118.0" height="15.0" fill="rgb(224,76,11)" rx="2" ry="2" />
<text x="1075.00" y="1359.5" >try_to_wake_up</text>
</g>
<g >
<title>_ZN2v88internal16LargeObjectSpace8FindPageEm (1 samples, 10.00%)</title><rect x="482.0" y="1045" width="118.0" height="15.0" fill="rgb(214,39,20)" rx="2" ry="2" />
<text x="485.00" y="1055.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator16GenerateBytecodeEm (1 samples, 10.00%)</title><rect x="954.0" y="1141" width="118.0" height="15.0" fill="rgb(224,125,7)" rx="2" ry="2" />
<text x="957.00" y="1151.5" >_ZN2v88interna..</text>
</g>
<g >
<title>LazyCompile:* /home/mmarchini/workspace/misc/node-performance-problem/foo.js:1 (3 samples, 30.00%)</title><rect x="246.0" y="1205" width="354.0" height="15.0" fill="rgb(229,3,9)" rx="2" ry="2" />
<text x="249.00" y="1215.5" >LazyCompile:* /home/mmarchini/workspace/misc/nod..</text>
</g>
<g >
<title>_ZN2v814ScriptCompiler22CompileUnboundInternalEPNS_7IsolateEPNS0_6SourceENS0_14CompileOptionsENS0_13NoCacheReasonE (1 samples, 10.00%)</title><rect x="836.0" y="1093" width="118.0" height="15.0" fill="rgb(245,19,43)" rx="2" ry="2" />
<text x="839.00" y="1103.5" >_ZN2v814Script..</text>
</g>
<g >
<title>__do_page_fault (1 samples, 10.00%)</title><rect x="128.0" y="1157" width="118.0" height="15.0" fill="rgb(212,27,21)" rx="2" ry="2" />
<text x="131.00" y="1167.5" >__do_page_fault</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE20ParseUnaryExpressionEPb (1 samples, 10.00%)</title><rect x="836.0" y="885" width="118.0" height="15.0" fill="rgb(212,128,33)" rx="2" ry="2" />
<text x="839.00" y="895.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal7Factory10NewJSArrayENS0_12ElementsKindEiiNS0_26ArrayStorageAllocationModeENS0_13PretenureFlagE (1 samples, 10.00%)</title><rect x="364.0" y="1125" width="118.0" height="15.0" fill="rgb(224,142,43)" rx="2" ry="2" />
<text x="367.00" y="1135.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal6Parser20ParseFunctionLiteralEPKNS0_12AstRawStringENS0_7Scanner8LocationENS0_20FunctionNameValidityENS0_12FunctionKindEiNS0_15FunctionLiteral12FunctionTypeENS0_12LanguageModeEPNS0_8ZoneListIS4_EEPb (1 samples, 10.00%)</title><rect x="836.0" y="677" width="118.0" height="15.0" fill="rgb(234,64,45)" rx="2" ry="2" />
<text x="839.00" y="687.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE20ParseUnaryExpressionEPb (1 samples, 10.00%)</title><rect x="836.0" y="741" width="118.0" height="15.0" fill="rgb(233,224,44)" rx="2" ry="2" />
<text x="839.00" y="751.5" >_ZN2v88interna..</text>
</g>
<g >
<title>Builtin:StringAdd_CheckNone_NotTenured (1 samples, 10.00%)</title><rect x="600.0" y="1189" width="118.0" height="15.0" fill="rgb(249,217,12)" rx="2" ry="2" />
<text x="603.00" y="1199.5" >Builtin:String..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE34ParseExpressionOrLabelledStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEENS0_30AllowLabelledFunctionStatementEPb (1 samples, 10.00%)</title><rect x="836.0" y="965" width="118.0" height="15.0" fill="rgb(243,11,46)" rx="2" ry="2" />
<text x="839.00" y="975.5" >_ZN2v88interna..</text>
</g>
<g >
<title>__libc_start_main (9 samples, 90.00%)</title><rect x="10.0" y="1461" width="1062.0" height="15.0" fill="rgb(247,71,19)" rx="2" ry="2" />
<text x="13.00" y="1471.5" >__libc_start_main</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator35VisitBlockDeclarationsAndStatementsEPNS0_5BlockE (1 samples, 10.00%)</title><rect x="954.0" y="981" width="118.0" height="15.0" fill="rgb(252,55,10)" rx="2" ry="2" />
<text x="957.00" y="991.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorENS_15GCCallbackFlagsE (1 samples, 10.00%)</title><rect x="600.0" y="1093" width="118.0" height="15.0" fill="rgb(209,137,39)" rx="2" ry="2" />
<text x="603.00" y="1103.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE14ParseStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEENS0_30AllowLabelledFunctionStatementEPb (1 samples, 10.00%)</title><rect x="836.0" y="229" width="118.0" height="15.0" fill="rgb(230,125,2)" rx="2" ry="2" />
<text x="839.00" y="239.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE25ParseHoistableDeclarationEiNS0_18ParseFunctionFlagsEPNS0_8ZoneListIPKNS0_12AstRawStringEEEbPb (1 samples, 10.00%)</title><rect x="836.0" y="613" width="118.0" height="15.0" fill="rgb(225,82,32)" rx="2" ry="2" />
<text x="839.00" y="623.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal6String17CalculateLineEndsENS0_6HandleIS1_EEb (1 samples, 10.00%)</title><rect x="718.0" y="965" width="118.0" height="15.0" fill="rgb(207,94,32)" rx="2" ry="2" />
<text x="721.00" y="975.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE22ParsePostfixExpressionEPb (1 samples, 10.00%)</title><rect x="836.0" y="117" width="118.0" height="15.0" fill="rgb(237,139,3)" rx="2" ry="2" />
<text x="839.00" y="127.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal7Factory15NewFillerObjectEibNS0_15AllocationSpaceE (1 samples, 10.00%)</title><rect x="482.0" y="1141" width="118.0" height="15.0" fill="rgb(223,47,27)" rx="2" ry="2" />
<text x="485.00" y="1151.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internalL24Builtin_Impl_ArraySpliceENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 20.00%)</title><rect x="246.0" y="1157" width="236.0" height="15.0" fill="rgb(222,168,47)" rx="2" ry="2" />
<text x="249.00" y="1167.5" >_ZN2v88internalL24Builtin_Impl_..</text>
</g>
<g >
<title>_ZN4node5StartEPN2v87IsolateEPNS_11IsolateDataERKSt6vectorISsSaISsEES9_ (9 samples, 90.00%)</title><rect x="10.0" y="1429" width="1062.0" height="15.0" fill="rgb(223,205,28)" rx="2" ry="2" />
<text x="13.00" y="1439.5" >_ZN4node5StartEPN2v87IsolateEPNS_11IsolateDataERKSt6vectorISsSaISsEES9_</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE27ParseExpressionCoverGrammarEbPb (1 samples, 10.00%)</title><rect x="836.0" y="197" width="118.0" height="15.0" fill="rgb(212,195,14)" rx="2" ry="2" />
<text x="839.00" y="207.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction: internal/modules/cjs/loader.js:1 (1 samples, 10.00%)</title><rect x="718.0" y="1237" width="118.0" height="15.0" fill="rgb(210,5,54)" rx="2" ry="2" />
<text x="721.00" y="1247.5" >InterpretedFun..</text>
</g>
<g >
<title>InterpretedFunction:startup internal/bootstrap/node.js:30 (9 samples, 90.00%)</title><rect x="10.0" y="1317" width="1062.0" height="15.0" fill="rgb(238,36,12)" rx="2" ry="2" />
<text x="13.00" y="1327.5" >InterpretedFunction:startup internal/bootstrap/node.js:30</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE36ParseMemberWithNewPrefixesExpressionEPbS4_ (1 samples, 10.00%)</title><rect x="836.0" y="373" width="118.0" height="15.0" fill="rgb(236,136,45)" rx="2" ry="2" />
<text x="839.00" y="383.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.require internal/bootstrap/loaders.js:150 (1 samples, 10.00%)</title><rect x="600.0" y="1253" width="118.0" height="15.0" fill="rgb(216,209,47)" rx="2" ry="2" />
<text x="603.00" y="1263.5" >InterpretedFun..</text>
</g>
<g >
<title>Stub:JSEntryStub (9 samples, 90.00%)</title><rect x="10.0" y="1365" width="1062.0" height="15.0" fill="rgb(209,224,18)" rx="2" ry="2" />
<text x="13.00" y="1375.5" >Stub:JSEntryStub</text>
</g>
<g >
<title>_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorENS_15GCCallbackFlagsE (1 samples, 10.00%)</title><rect x="482.0" y="1093" width="118.0" height="15.0" fill="rgb(247,150,9)" rx="2" ry="2" />
<text x="485.00" y="1103.5" >_ZN2v88interna..</text>
</g>
<g >
<title>all (10 samples, 100%)</title><rect x="10.0" y="1493" width="1180.0" height="15.0" fill="rgb(215,136,45)" rx="2" ry="2" />
<text x="13.00" y="1503.5" ></text>
</g>
<g >
<title>InterpretedFunction: internal/process/main_thread_only.js:1 (1 samples, 10.00%)</title><rect x="600.0" y="1269" width="118.0" height="15.0" fill="rgb(232,4,26)" rx="2" ry="2" />
<text x="603.00" y="1279.5" >InterpretedFun..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.require internal/bootstrap/loaders.js:150 (1 samples, 10.00%)</title><rect x="718.0" y="1269" width="118.0" height="15.0" fill="rgb(217,78,40)" rx="2" ry="2" />
<text x="721.00" y="1279.5" >InterpretedFun..</text>
</g>
<g >
<title>do_syscall_64 (1 samples, 10.00%)</title><rect x="1072.0" y="1429" width="118.0" height="15.0" fill="rgb(222,154,36)" rx="2" ry="2" />
<text x="1075.00" y="1439.5" >do_syscall_64</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE22ParsePrimaryExpressionEPbS4_ (1 samples, 10.00%)</title><rect x="836.0" y="821" width="118.0" height="15.0" fill="rgb(253,171,17)" rx="2" ry="2" />
<text x="839.00" y="831.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:setupSignalHandlers internal/process/main_thread_only.js:68 (1 samples, 10.00%)</title><rect x="954.0" y="1301" width="118.0" height="15.0" fill="rgb(241,36,14)" rx="2" ry="2" />
<text x="957.00" y="1311.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN4node10contextify16ContextifyScript3NewERKN2v820FunctionCallbackInfoINS2_5ValueEEE (1 samples, 10.00%)</title><rect x="836.0" y="1125" width="118.0" height="15.0" fill="rgb(212,220,22)" rx="2" ry="2" />
<text x="839.00" y="1135.5" >_ZN4node10cont..</text>
</g>
<g >
<title>_ZN2v88internal14ScavengingTask13RunInParallelEv (1 samples, 10.00%)</title><rect x="600.0" y="1029" width="118.0" height="15.0" fill="rgb(208,41,30)" rx="2" ry="2" />
<text x="603.00" y="1039.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal6String7FlattenENS0_6HandleIS1_EENS0_13PretenureFlagE (1 samples, 10.00%)</title><rect x="718.0" y="949" width="118.0" height="15.0" fill="rgb(222,88,52)" rx="2" ry="2" />
<text x="721.00" y="959.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE21ParseBinaryExpressionEibPb (1 samples, 10.00%)</title><rect x="836.0" y="901" width="118.0" height="15.0" fill="rgb(213,26,48)" rx="2" ry="2" />
<text x="839.00" y="911.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE14ParseStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEENS0_30AllowLabelledFunctionStatementEPb (1 samples, 10.00%)</title><rect x="836.0" y="517" width="118.0" height="15.0" fill="rgb(213,149,8)" rx="2" ry="2" />
<text x="839.00" y="527.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator10VisitBlockEPNS0_5BlockE (1 samples, 10.00%)</title><rect x="954.0" y="1077" width="118.0" height="15.0" fill="rgb(209,174,46)" rx="2" ry="2" />
<text x="957.00" y="1087.5" >_ZN2v88interna..</text>
</g>
<g >
<title>Builtin:CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 10.00%)</title><rect x="600.0" y="1173" width="118.0" height="15.0" fill="rgb(206,121,47)" rx="2" ry="2" />
<text x="603.00" y="1183.5" >Builtin:CEntry..</text>
</g>
<g >
<title>Builtin:JSBuiltinsConstructStub (1 samples, 10.00%)</title><rect x="836.0" y="1189" width="118.0" height="15.0" fill="rgb(244,77,47)" rx="2" ry="2" />
<text x="839.00" y="1199.5" >Builtin:JSBuil..</text>
</g>
<g >
<title>Builtin:CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 10.00%)</title><rect x="954.0" y="1253" width="118.0" height="15.0" fill="rgb(214,184,30)" rx="2" ry="2" />
<text x="957.00" y="1263.5" >Builtin:CEntry..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.require internal/bootstrap/loaders.js:150 (1 samples, 10.00%)</title><rect x="718.0" y="1221" width="118.0" height="15.0" fill="rgb(228,204,28)" rx="2" ry="2" />
<text x="721.00" y="1231.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal6Parser20ParseFunctionLiteralEPKNS0_12AstRawStringENS0_7Scanner8LocationENS0_20FunctionNameValidityENS0_12FunctionKindEiNS0_15FunctionLiteral12FunctionTypeENS0_12LanguageModeEPNS0_8ZoneListIS4_EEPb (1 samples, 10.00%)</title><rect x="836.0" y="597" width="118.0" height="15.0" fill="rgb(245,134,23)" rx="2" ry="2" />
<text x="839.00" y="607.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction: /home/mmarchini/workspace/misc/node-performance-problem/foo.js:1 (1 samples, 10.00%)</title><rect x="128.0" y="1205" width="118.0" height="15.0" fill="rgb(233,91,6)" rx="2" ry="2" />
<text x="131.00" y="1215.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN4node15LoadEnvironmentEPNS_11EnvironmentE (9 samples, 90.00%)</title><rect x="10.0" y="1413" width="1062.0" height="15.0" fill="rgb(231,43,2)" rx="2" ry="2" />
<text x="13.00" y="1423.5" >_ZN4node15LoadEnvironmentEPNS_11EnvironmentE</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE27ParseLeftHandSideExpressionEPb (1 samples, 10.00%)</title><rect x="836.0" y="709" width="118.0" height="15.0" fill="rgb(230,192,19)" rx="2" ry="2" />
<text x="839.00" y="719.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:Module.runMain internal/modules/cjs/loader.js:818 (5 samples, 50.00%)</title><rect x="10.0" y="1301" width="590.0" height="15.0" fill="rgb(228,56,41)" rx="2" ry="2" />
<text x="13.00" y="1311.5" >InterpretedFunction:Module.runMain internal/modules/cjs/loader.js:818</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.require internal/bootstrap/loaders.js:150 (1 samples, 10.00%)</title><rect x="718.0" y="1173" width="118.0" height="15.0" fill="rgb(238,69,12)" rx="2" ry="2" />
<text x="721.00" y="1183.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator14VisitForEffectEPNS0_10ExpressionE (1 samples, 10.00%)</title><rect x="954.0" y="949" width="118.0" height="15.0" fill="rgb(253,188,2)" rx="2" ry="2" />
<text x="957.00" y="959.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE17ParseFunctionBodyEPNS0_8ZoneListIPNS0_9StatementEEEPKNS0_12AstRawStringEiRKNS0_22ParserFormalParametersENS0_12FunctionKindENS0_15FunctionLiteral12FunctionTypeEPb (1 samples, 10.00%)</title><rect x="836.0" y="645" width="118.0" height="15.0" fill="rgb(241,57,27)" rx="2" ry="2" />
<text x="839.00" y="655.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v814ScriptCompiler20CompileUnboundScriptEPNS_7IsolateEPNS0_6SourceENS0_14CompileOptionsENS0_13NoCacheReasonE (1 samples, 10.00%)</title><rect x="718.0" y="1045" width="118.0" height="15.0" fill="rgb(227,99,19)" rx="2" ry="2" />
<text x="721.00" y="1055.5" >_ZN2v814Script..</text>
</g>
<g >
<title>_ZN2v88internal8Compiler30GetSharedFunctionInfoForScriptENS0_6HandleINS0_6StringEEERKNS1_13ScriptDetailsENS_19ScriptOriginOptionsEPNS_9ExtensionEPNS0_10ScriptDataENS_14ScriptCompiler14CompileOptionsENSD_13NoCacheReasonENS0_11NativesFlagE (1 samples, 10.00%)</title><rect x="718.0" y="1013" width="118.0" height="15.0" fill="rgb(245,107,16)" rx="2" ry="2" />
<text x="721.00" y="1023.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.compile internal/bootstrap/loaders.js:303 (1 samples, 10.00%)</title><rect x="600.0" y="1237" width="118.0" height="15.0" fill="rgb(214,114,4)" rx="2" ry="2" />
<text x="603.00" y="1247.5" >InterpretedFun..</text>
</g>
<g >
<title>Builtin:JSEntryTrampoline (9 samples, 90.00%)</title><rect x="10.0" y="1349" width="1062.0" height="15.0" fill="rgb(251,193,10)" rx="2" ry="2" />
<text x="13.00" y="1359.5" >Builtin:JSEntryTrampoline</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE18ParseStatementListENS0_13PreParserListINS0_18PreParserStatementEEENS0_5Token5ValueEbPb (1 samples, 10.00%)</title><rect x="836.0" y="261" width="118.0" height="15.0" fill="rgb(212,105,33)" rx="2" ry="2" />
<text x="839.00" y="271.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorENS_15GCCallbackFlagsE (1 samples, 10.00%)</title><rect x="718.0" y="853" width="118.0" height="15.0" fill="rgb(241,148,39)" rx="2" ry="2" />
<text x="721.00" y="863.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE22ParsePostfixExpressionEPb (1 samples, 10.00%)</title><rect x="836.0" y="725" width="118.0" height="15.0" fill="rgb(237,175,47)" rx="2" ry="2" />
<text x="839.00" y="735.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE27ParseExpressionCoverGrammarEbPb (1 samples, 10.00%)</title><rect x="836.0" y="805" width="118.0" height="15.0" fill="rgb(223,44,39)" rx="2" ry="2" />
<text x="839.00" y="815.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE27ParseLeftHandSideExpressionEPb (1 samples, 10.00%)</title><rect x="836.0" y="101" width="118.0" height="15.0" fill="rgb(241,45,25)" rx="2" ry="2" />
<text x="839.00" y="111.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE21ParseBinaryExpressionEibPb (1 samples, 10.00%)</title><rect x="836.0" y="437" width="118.0" height="15.0" fill="rgb(235,99,21)" rx="2" ry="2" />
<text x="839.00" y="447.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.compile internal/bootstrap/loaders.js:303 (1 samples, 10.00%)</title><rect x="836.0" y="1269" width="118.0" height="15.0" fill="rgb(252,42,0)" rx="2" ry="2" />
<text x="839.00" y="1279.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE26ParseConditionalExpressionEbPb (1 samples, 10.00%)</title><rect x="836.0" y="917" width="118.0" height="15.0" fill="rgb(207,45,44)" rx="2" ry="2" />
<text x="839.00" y="927.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (1 samples, 10.00%)</title><rect x="718.0" y="885" width="118.0" height="15.0" fill="rgb(254,79,5)" rx="2" ry="2" />
<text x="721.00" y="895.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.compile internal/bootstrap/loaders.js:303 (1 samples, 10.00%)</title><rect x="718.0" y="1157" width="118.0" height="15.0" fill="rgb(215,211,11)" rx="2" ry="2" />
<text x="721.00" y="1167.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE25ParseAssignmentExpressionEbPb (1 samples, 10.00%)</title><rect x="836.0" y="69" width="118.0" height="15.0" fill="rgb(238,161,10)" rx="2" ry="2" />
<text x="839.00" y="79.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (1 samples, 10.00%)</title><rect x="482.0" y="1125" width="118.0" height="15.0" fill="rgb(238,90,54)" rx="2" ry="2" />
<text x="485.00" y="1135.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE25ParseAssignmentExpressionEbPb (1 samples, 10.00%)</title><rect x="836.0" y="933" width="118.0" height="15.0" fill="rgb(221,13,52)" rx="2" ry="2" />
<text x="839.00" y="943.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter25BytecodeRegisterOptimizer21RegisterListFreeEventENS1_12RegisterListE (1 samples, 10.00%)</title><rect x="954.0" y="917" width="118.0" height="15.0" fill="rgb(210,58,24)" rx="2" ry="2" />
<text x="957.00" y="927.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:setupInspector internal/bootstrap/node.js:442 (1 samples, 10.00%)</title><rect x="718.0" y="1285" width="118.0" height="15.0" fill="rgb(225,93,46)" rx="2" ry="2" />
<text x="721.00" y="1295.5" >InterpretedFun..</text>
</g>
<g >
<title>page_fault (1 samples, 10.00%)</title><rect x="128.0" y="1173" width="118.0" height="15.0" fill="rgb(217,70,51)" rx="2" ry="2" />
<text x="131.00" y="1183.5" >page_fault</text>
</g>
<g >
<title>_ZN4node5StartEiPPc (9 samples, 90.00%)</title><rect x="10.0" y="1445" width="1062.0" height="15.0" fill="rgb(237,113,6)" rx="2" ry="2" />
<text x="13.00" y="1455.5" >_ZN4node5StartEiPPc</text>
</g>
<g >
<title>_ZN2v88internal6Parser12SkipFunctionEPKNS0_12AstRawStringENS0_12FunctionKindENS0_15FunctionLiteral12FunctionTypeEPNS0_16DeclarationScopeEPiPPNS0_26ProducedPreParsedScopeDataEbbPb (1 samples, 10.00%)</title><rect x="836.0" y="581" width="118.0" height="15.0" fill="rgb(222,172,6)" rx="2" ry="2" />
<text x="839.00" y="591.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal21Builtin_HandleApiCallEiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 10.00%)</title><rect x="718.0" y="1093" width="118.0" height="15.0" fill="rgb(212,183,8)" rx="2" ry="2" />
<text x="721.00" y="1103.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal26Runtime_AllocateInNewSpaceEiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 10.00%)</title><rect x="600.0" y="1157" width="118.0" height="15.0" fill="rgb(246,125,10)" rx="2" ry="2" />
<text x="603.00" y="1167.5" >_ZN2v88interna..</text>
</g>
<g >
<title>Builtin:GrowFastSmiOrObjectElements (1 samples, 10.00%)</title><rect x="482.0" y="1189" width="118.0" height="15.0" fill="rgb(233,2,24)" rx="2" ry="2" />
<text x="485.00" y="1199.5" >Builtin:GrowFa..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.compile internal/bootstrap/loaders.js:303 (1 samples, 10.00%)</title><rect x="600.0" y="1285" width="118.0" height="15.0" fill="rgb(207,220,39)" rx="2" ry="2" />
<text x="603.00" y="1295.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal7parsing12ParseProgramEPNS0_9ParseInfoEPNS0_7IsolateE (1 samples, 10.00%)</title><rect x="836.0" y="1045" width="118.0" height="15.0" fill="rgb(232,173,33)" rx="2" ry="2" />
<text x="839.00" y="1055.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator35VisitBlockDeclarationsAndStatementsEPNS0_5BlockE (1 samples, 10.00%)</title><rect x="954.0" y="1061" width="118.0" height="15.0" fill="rgb(252,201,37)" rx="2" ry="2" />
<text x="957.00" y="1071.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal8Compiler7CompileENS0_6HandleINS0_18SharedFunctionInfoEEENS1_18ClearExceptionFlagE (1 samples, 10.00%)</title><rect x="954.0" y="1205" width="118.0" height="15.0" fill="rgb(234,58,16)" rx="2" ry="2" />
<text x="957.00" y="1215.5" >_ZN2v88interna..</text>
</g>
<g >
<title>Handler:UnknownBytecodeHadler (1 samples, 10.00%)</title><rect x="600.0" y="1205" width="118.0" height="15.0" fill="rgb(238,67,38)" rx="2" ry="2" />
<text x="603.00" y="1215.5" >Handler:Unknow..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE14ParseArgumentsEPNS0_7Scanner8LocationEbPbS7_ (1 samples, 10.00%)</title><rect x="836.0" y="85" width="118.0" height="15.0" fill="rgb(253,111,46)" rx="2" ry="2" />
<text x="839.00" y="95.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE18ParseStatementListEPNS0_8ZoneListIPNS0_9StatementEEENS0_5Token5ValueEbPb (1 samples, 10.00%)</title><rect x="836.0" y="997" width="118.0" height="15.0" fill="rgb(208,186,28)" rx="2" ry="2" />
<text x="839.00" y="1007.5" >_ZN2v88interna..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 10.00%)</title><rect x="1072.0" y="1445" width="118.0" height="15.0" fill="rgb(236,112,9)" rx="2" ry="2" />
<text x="1075.00" y="1455.5" >entry_SYSCALL_..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator16VisitIfStatementEPNS0_11IfStatementE (1 samples, 10.00%)</title><rect x="954.0" y="1029" width="118.0" height="15.0" fill="rgb(221,2,2)" rx="2" ry="2" />
<text x="957.00" y="1039.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal6Parser14DoParseProgramEPNS0_7IsolateEPNS0_9ParseInfoE (1 samples, 10.00%)</title><rect x="836.0" y="1013" width="118.0" height="15.0" fill="rgb(217,17,21)" rx="2" ry="2" />
<text x="839.00" y="1023.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator10VisitBlockEPNS0_5BlockE (1 samples, 10.00%)</title><rect x="954.0" y="997" width="118.0" height="15.0" fill="rgb(231,216,7)" rx="2" ry="2" />
<text x="957.00" y="1007.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator16VisitIfStatementEPNS0_11IfStatementE (1 samples, 10.00%)</title><rect x="954.0" y="1093" width="118.0" height="15.0" fill="rgb(224,179,41)" rx="2" ry="2" />
<text x="957.00" y="1103.5" >_ZN2v88interna..</text>
</g>
<g >
<title>Builtin:CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 10.00%)</title><rect x="482.0" y="1173" width="118.0" height="15.0" fill="rgb(212,174,20)" rx="2" ry="2" />
<text x="485.00" y="1183.5" >Builtin:CEntry..</text>
</g>
<g >
<title>futex_wake (1 samples, 10.00%)</title><rect x="1072.0" y="1381" width="118.0" height="15.0" fill="rgb(228,116,29)" rx="2" ry="2" />
<text x="1075.00" y="1391.5" >futex_wake</text>
</g>
<g >
<title>InterpretedFunction:setupProcessFatal internal/bootstrap/node.js:479 (1 samples, 10.00%)</title><rect x="836.0" y="1301" width="118.0" height="15.0" fill="rgb(205,87,36)" rx="2" ry="2" />
<text x="839.00" y="1311.5" >InterpretedFun..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.wrap internal/bootstrap/loaders.js:230 (1 samples, 10.00%)</title><rect x="600.0" y="1221" width="118.0" height="15.0" fill="rgb(228,12,24)" rx="2" ry="2" />
<text x="603.00" y="1231.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE20ParseUnaryExpressionEPb (1 samples, 10.00%)</title><rect x="836.0" y="133" width="118.0" height="15.0" fill="rgb(241,78,23)" rx="2" ry="2" />
<text x="839.00" y="143.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.compile internal/bootstrap/loaders.js:303 (1 samples, 10.00%)</title><rect x="718.0" y="1253" width="118.0" height="15.0" fill="rgb(252,114,14)" rx="2" ry="2" />
<text x="721.00" y="1263.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_23GarbageCollectionReasonENS_15GCCallbackFlagsE (1 samples, 10.00%)</title><rect x="600.0" y="1109" width="118.0" height="15.0" fill="rgb(239,36,48)" rx="2" ry="2" />
<text x="603.00" y="1119.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:Module.load internal/modules/cjs/loader.js:645 (5 samples, 50.00%)</title><rect x="10.0" y="1253" width="590.0" height="15.0" fill="rgb(220,15,12)" rx="2" ry="2" />
<text x="13.00" y="1263.5" >InterpretedFunction:Module.load internal/modules/cjs/loader.js:645</text>
</g>
<g >
<title>BytecodeHandler:Construct (1 samples, 10.00%)</title><rect x="836.0" y="1205" width="118.0" height="15.0" fill="rgb(236,25,15)" rx="2" ry="2" />
<text x="839.00" y="1215.5" >BytecodeHandle..</text>
</g>
<g >
<title>node (10 samples, 100.00%)</title><rect x="10.0" y="1477" width="1180.0" height="15.0" fill="rgb(232,53,8)" rx="2" ry="2" />
<text x="13.00" y="1487.5" >node</text>
</g>
<g >
<title>InterpretedFunction:Module._load internal/modules/cjs/loader.js:557 (5 samples, 50.00%)</title><rect x="10.0" y="1285" width="590.0" height="15.0" fill="rgb(208,193,28)" rx="2" ry="2" />
<text x="13.00" y="1295.5" >InterpretedFunction:Module._load internal/modules/cjs/loader.js:557</text>
</g>
<g >
<title>_ZN2v88internal8Compiler7CompileENS0_6HandleINS0_10JSFunctionEEENS1_18ClearExceptionFlagE (1 samples, 10.00%)</title><rect x="954.0" y="1221" width="118.0" height="15.0" fill="rgb(239,125,37)" rx="2" ry="2" />
<text x="957.00" y="1231.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal7Factory15NewFillerObjectEibNS0_15AllocationSpaceE (1 samples, 10.00%)</title><rect x="600.0" y="1141" width="118.0" height="15.0" fill="rgb(207,64,16)" rx="2" ry="2" />
<text x="603.00" y="1151.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE34ParseExpressionOrLabelledStatementEPNS0_8ZoneListIPKNS0_12AstRawStringEEENS0_30AllowLabelledFunctionStatementEPb (1 samples, 10.00%)</title><rect x="836.0" y="213" width="118.0" height="15.0" fill="rgb(253,205,16)" rx="2" ry="2" />
<text x="839.00" y="223.5" >_ZN2v88interna..</text>
</g>
<g >
<title>Builtin:CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 10.00%)</title><rect x="836.0" y="1173" width="118.0" height="15.0" fill="rgb(240,151,28)" rx="2" ry="2" />
<text x="839.00" y="1183.5" >Builtin:CEntry..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE27ParseExpressionCoverGrammarEbPb (1 samples, 10.00%)</title><rect x="836.0" y="485" width="118.0" height="15.0" fill="rgb(253,218,39)" rx="2" ry="2" />
<text x="839.00" y="495.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE25ParseAssignmentExpressionEbPb (1 samples, 10.00%)</title><rect x="836.0" y="181" width="118.0" height="15.0" fill="rgb(248,164,45)" rx="2" ry="2" />
<text x="839.00" y="191.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE21ParseMemberExpressionEPbS4_ (1 samples, 10.00%)</title><rect x="836.0" y="357" width="118.0" height="15.0" fill="rgb(252,183,49)" rx="2" ry="2" />
<text x="839.00" y="367.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE26ParseConditionalExpressionEbPb (1 samples, 10.00%)</title><rect x="836.0" y="453" width="118.0" height="15.0" fill="rgb(217,180,41)" rx="2" ry="2" />
<text x="839.00" y="463.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE21ParseBinaryExpressionEibPb (1 samples, 10.00%)</title><rect x="836.0" y="757" width="118.0" height="15.0" fill="rgb(247,111,47)" rx="2" ry="2" />
<text x="839.00" y="767.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE27ParseLeftHandSideExpressionEPb (1 samples, 10.00%)</title><rect x="836.0" y="389" width="118.0" height="15.0" fill="rgb(240,102,21)" rx="2" ry="2" />
<text x="839.00" y="399.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.compile internal/bootstrap/loaders.js:303 (1 samples, 10.00%)</title><rect x="718.0" y="1205" width="118.0" height="15.0" fill="rgb(241,223,34)" rx="2" ry="2" />
<text x="721.00" y="1215.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE28ParseClassPropertyDefinitionEPNS3_19ClassLiteralCheckerEPNS3_9ClassInfoEPNS0_19PreParserIdentifierEbPbSA_PNS0_20ClassLiteralProperty4KindESA_SA_SA_ (1 samples, 10.00%)</title><rect x="836.0" y="309" width="118.0" height="15.0" fill="rgb(211,33,50)" rx="2" ry="2" />
<text x="839.00" y="319.5" >_ZN2v88interna..</text>
</g>
<g >
<title>do_futex (1 samples, 10.00%)</title><rect x="1072.0" y="1397" width="118.0" height="15.0" fill="rgb(215,210,42)" rx="2" ry="2" />
<text x="1075.00" y="1407.5" >do_futex</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE26ParseConditionalExpressionEbPb (1 samples, 10.00%)</title><rect x="836.0" y="165" width="118.0" height="15.0" fill="rgb(213,128,46)" rx="2" ry="2" />
<text x="839.00" y="175.5" >_ZN2v88interna..</text>
</g>
<g >
<title>wake_up_q (1 samples, 10.00%)</title><rect x="1072.0" y="1365" width="118.0" height="15.0" fill="rgb(208,169,17)" rx="2" ry="2" />
<text x="1075.00" y="1375.5" >wake_up_q</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator15VisitStatementsEPNS0_8ZoneListIPNS0_9StatementEEE (1 samples, 10.00%)</title><rect x="954.0" y="1109" width="118.0" height="15.0" fill="rgb(223,201,41)" rx="2" ry="2" />
<text x="957.00" y="1119.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal26Runtime_AllocateInNewSpaceEiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 10.00%)</title><rect x="482.0" y="1157" width="118.0" height="15.0" fill="rgb(214,76,28)" rx="2" ry="2" />
<text x="485.00" y="1167.5" >_ZN2v88interna..</text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 10.00%)</title><rect x="1072.0" y="1461" width="118.0" height="15.0" fill="rgb(249,218,27)" rx="2" ry="2" />
<text x="1075.00" y="1471.5" >pthread_cond_s..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE36ParseMemberWithNewPrefixesExpressionEPbS4_ (1 samples, 10.00%)</title><rect x="836.0" y="693" width="118.0" height="15.0" fill="rgb(254,90,54)" rx="2" ry="2" />
<text x="839.00" y="703.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal7Scanner9PeekAheadEv (1 samples, 10.00%)</title><rect x="836.0" y="53" width="118.0" height="15.0" fill="rgb(234,149,32)" rx="2" ry="2" />
<text x="839.00" y="63.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE25ParseAssignmentExpressionEbPb (1 samples, 10.00%)</title><rect x="836.0" y="789" width="118.0" height="15.0" fill="rgb(245,202,34)" rx="2" ry="2" />
<text x="839.00" y="799.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator15VisitStatementsEPNS0_8ZoneListIPNS0_9StatementEEE (1 samples, 10.00%)</title><rect x="954.0" y="965" width="118.0" height="15.0" fill="rgb(223,177,25)" rx="2" ry="2" />
<text x="957.00" y="975.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal9PreParser16PreParseFunctionEPKNS0_12AstRawStringENS0_12FunctionKindENS0_15FunctionLiteral12FunctionTypeEPNS0_16DeclarationScopeEbbPiPPNS0_26ProducedPreParsedScopeDataEi (1 samples, 10.00%)</title><rect x="836.0" y="565" width="118.0" height="15.0" fill="rgb(210,20,0)" rx="2" ry="2" />
<text x="839.00" y="575.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:Module._extensions..js internal/modules/cjs/loader.js:787 (5 samples, 50.00%)</title><rect x="10.0" y="1237" width="590.0" height="15.0" fill="rgb(213,6,13)" rx="2" ry="2" />
<text x="13.00" y="1247.5" >InterpretedFunction:Module._extensions..js internal/modules/cjs/loader.js:787</text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_19NewScriptEPNS0_7IsolateENS0_6HandleINS0_6StringEEENS0_8Compiler13ScriptDetailsENS_19ScriptOriginOptionsENS0_11NativesFlagE (1 samples, 10.00%)</title><rect x="718.0" y="997" width="118.0" height="15.0" fill="rgb(241,18,49)" rx="2" ry="2" />
<text x="721.00" y="1007.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_ (9 samples, 90.00%)</title><rect x="10.0" y="1381" width="1062.0" height="15.0" fill="rgb(230,53,11)" rx="2" ry="2" />
<text x="13.00" y="1391.5" >_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_</text>
</g>
<g >
<title>InterpretedFunction:addListener events.js:271 (1 samples, 10.00%)</title><rect x="954.0" y="1285" width="118.0" height="15.0" fill="rgb(244,74,20)" rx="2" ry="2" />
<text x="957.00" y="1295.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_9PreParserEE18ParseStatementListENS0_13PreParserListINS0_18PreParserStatementEEENS0_5Token5ValueEbPb (1 samples, 10.00%)</title><rect x="836.0" y="549" width="118.0" height="15.0" fill="rgb(250,197,35)" rx="2" ry="2" />
<text x="839.00" y="559.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:tryModuleLoad internal/modules/cjs/loader.js:590 (5 samples, 50.00%)</title><rect x="10.0" y="1269" width="590.0" height="15.0" fill="rgb(241,171,25)" rx="2" ry="2" />
<text x="13.00" y="1279.5" >InterpretedFunction:tryModuleLoad internal/modules/cjs/loader.js:590</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE27ParseLeftHandSideExpressionEPb (1 samples, 10.00%)</title><rect x="836.0" y="853" width="118.0" height="15.0" fill="rgb(233,101,11)" rx="2" ry="2" />
<text x="839.00" y="863.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.compile internal/bootstrap/loaders.js:303 (1 samples, 10.00%)</title><rect x="836.0" y="1221" width="118.0" height="15.0" fill="rgb(230,88,26)" rx="2" ry="2" />
<text x="839.00" y="1231.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v88internal9PreParser20ParseFunctionLiteralENS0_19PreParserIdentifierENS0_7Scanner8LocationENS0_20FunctionNameValidityENS0_12FunctionKindEiNS0_15FunctionLiteral12FunctionTypeENS0_12LanguageModeEPNS0_8ZoneListIPKNS0_12AstRawStringEEEPb (1 samples, 10.00%)</title><rect x="836.0" y="293" width="118.0" height="15.0" fill="rgb(248,71,4)" rx="2" ry="2" />
<text x="839.00" y="303.5" >_ZN2v88interna..</text>
</g>
<g >
<title>Builtin:CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 10.00%)</title><rect x="718.0" y="1109" width="118.0" height="15.0" fill="rgb(215,86,11)" rx="2" ry="2" />
<text x="721.00" y="1119.5" >Builtin:CEntry..</text>
</g>
<g >
<title>_ZN2v88internal10ParserBaseINS0_6ParserEE22ParsePostfixExpressionEPb (1 samples, 10.00%)</title><rect x="836.0" y="869" width="118.0" height="15.0" fill="rgb(248,179,1)" rx="2" ry="2" />
<text x="839.00" y="879.5" >_ZN2v88interna..</text>
</g>
<g >
<title>_ZN2v88internal12_GLOBAL__N_123GenerateUnoptimizedCodeEPNS0_9ParseInfoEPNS0_19AccountingAllocatorEPSt12forward_listISt10unique_ptrINS0_25UnoptimizedCompilationJobESt14default_deleteIS8_EESaISB_EE (1 samples, 10.00%)</title><rect x="954.0" y="1189" width="118.0" height="15.0" fill="rgb(218,85,8)" rx="2" ry="2" />
<text x="957.00" y="1199.5" >_ZN2v88interna..</text>
</g>
<g >
<title>InterpretedFunction:NativeModule.require internal/bootstrap/loaders.js:150 (1 samples, 10.00%)</title><rect x="600.0" y="1301" width="118.0" height="15.0" fill="rgb(247,65,12)" rx="2" ry="2" />
<text x="603.00" y="1311.5" >InterpretedFun..</text>
</g>
<g >
<title>_ZN2v814ScriptCompiler20CompileUnboundScriptEPNS_7IsolateEPNS0_6SourceENS0_14CompileOptionsENS0_13NoCacheReasonE (1 samples, 10.00%)</title><rect x="836.0" y="1109" width="118.0" height="15.0" fill="rgb(220,101,45)" rx="2" ry="2" />
<text x="839.00" y="1119.5" >_ZN2v814Script..</text>
</g>
<g >
<title>_ZN2v88internal11interpreter17BytecodeGenerator20GenerateBytecodeBodyEv (1 samples, 10.00%)</title><rect x="954.0" y="1125" width="118.0" height="15.0" fill="rgb(234,67,0)" rx="2" ry="2" />
<text x="957.00" y="1135.5" >_ZN2v88interna..</text>
</g>
<g >
<title>cfree (1 samples, 10.00%)</title><rect x="718.0" y="837" width="118.0" height="15.0" fill="rgb(223,35,53)" rx="2" ry="2" />
<text x="721.00" y="847.5" >cfree</text>
</g>
<g >
<title>_ZN4node10contextify16ContextifyScript3NewERKN2v820FunctionCallbackInfoINS2_5ValueEEE (1 samples, 10.00%)</title><rect x="718.0" y="1061" width="118.0" height="15.0" fill="rgb(243,120,37)" rx="2" ry="2" />
<text x="721.00" y="1071.5" >_ZN4node10cont..</text>
</g>
</g>
</svg>
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment