Skip to content

Instantly share code, notes, and snippets.

@zpodlovics
Created August 28, 2018 17:33
Show Gist options
  • Save zpodlovics/8b7a3fa3890388f1ad1e233e85275283 to your computer and use it in GitHub Desktop.
Save zpodlovics/8b7a3fa3890388f1ad1e233e85275283 to your computer and use it in GitHub Desktop.
fable1-flamegraph.svg
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="1142" onload="init(evt)" viewBox="0 0 1200 1142" 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">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
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") + 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;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
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);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("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_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "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.style["opacity"] = "1.0";
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.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1142.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="1125" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="1125" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap33YoungGenerationMutatorUtilizationEv (1 samples, 0.01%)</title><rect x="1075.0" y="613" width="0.1" height="15.0" fill="rgb(219,143,0)" rx="2" ry="2" />
<text text-anchor="" x="1078.00" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="373.3" y="453" width="0.5" height="15.0" fill="rgb(245,157,15)" rx="2" ry="2" />
<text text-anchor="" x="376.26" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector31AddInputsToFrameStateDescriptorEPNS1_20FrameStateDescriptorEPNS1_4NodeEPNS1_16OperandGeneratorEPNS1_23StateObjectDeduplicatorEPNS0_10ZoneVectorINS1_18InstructionOperandEEENS1_19FrameStateInputKindEPNS0_4ZoneE (1 samples, 0.01%)</title><rect x="610.2" y="485" width="0.1" height="15.0" fill="rgb(231,58,8)" rx="2" ry="2" />
<text text-anchor="" x="613.17" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector9VisitNodeEPNS1_4NodeE (1 samples, 0.01%)</title><rect x="1181.3" y="565" width="0.1" height="15.0" fill="rgb(253,223,24)" rx="2" ry="2" />
<text text-anchor="" x="1184.26" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="350.0" y="549" width="0.4" height="15.0" fill="rgb(236,179,12)" rx="2" ry="2" />
<text text-anchor="" x="353.05" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8NewSpace16EnsureAllocationEiNS0_19AllocationAlignmentE (1 samples, 0.01%)</title><rect x="1075.3" y="629" width="0.1" height="15.0" fill="rgb(206,73,9)" rx="2" ry="2" />
<text text-anchor="" x="1078.26" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="694.3" y="597" width="0.2" height="15.0" fill="rgb(241,194,40)" rx="2" ry="2" />
<text text-anchor="" x="697.27" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (8,488 samples, 93.79%)</title><rect x="75.6" y="725" width="1106.7" height="15.0" fill="rgb(223,173,6)" rx="2" ry="2" />
<text text-anchor="" x="78.58" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1187.0" y="693" width="0.5" height="15.0" fill="rgb(230,100,16)" rx="2" ry="2" />
<text text-anchor="" x="1190.00" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="373.1" y="597" width="0.7" height="15.0" fill="rgb(218,123,9)" rx="2" ry="2" />
<text text-anchor="" x="376.13" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (24 samples, 0.27%)</title><rect x="492.2" y="661" width="3.1" height="15.0" fill="rgb(224,96,22)" rx="2" ry="2" />
<text text-anchor="" x="495.17" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="75.5" y="581" width="0.1" height="15.0" fill="rgb(217,207,13)" rx="2" ry="2" />
<text text-anchor="" x="78.45" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="582.9" y="485" width="0.1" height="15.0" fill="rgb(217,196,50)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="821" width="0.6" height="15.0" fill="rgb(224,0,29)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.07%)</title><rect x="349.7" y="661" width="0.7" height="15.0" fill="rgb(235,98,54)" rx="2" ry="2" />
<text text-anchor="" x="352.66" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="821" width="0.1" height="15.0" fill="rgb(236,45,26)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="421" width="0.1" height="15.0" fill="rgb(236,39,14)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="773" width="0.6" height="15.0" fill="rgb(253,69,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler17StateValuesAccess8iteratordeEv (1 samples, 0.01%)</title><rect x="1181.3" y="469" width="0.1" height="15.0" fill="rgb(211,130,49)" rx="2" ry="2" />
<text text-anchor="" x="1184.26" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (7 samples, 0.08%)</title><rect x="372.9" y="645" width="0.9" height="15.0" fill="rgb(224,125,35)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_ (1 samples, 0.01%)</title><rect x="373.9" y="613" width="0.1" height="15.0" fill="rgb(219,227,45)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="517" width="0.1" height="15.0" fill="rgb(213,96,30)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="437" width="0.1" height="15.0" fill="rgb(225,103,11)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (827 samples, 9.14%)</title><rect x="382.0" y="661" width="107.8" height="15.0" fill="rgb(231,13,31)" rx="2" ry="2" />
<text text-anchor="" x="384.99" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88intern..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (1 samples, 0.01%)</title><rect x="490.1" y="645" width="0.1" height="15.0" fill="rgb(245,152,43)" rx="2" ry="2" />
<text text-anchor="" x="493.08" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler21PropertyAccessBuilder20BuildCheckHeapObjectEPNS1_4NodeEPS4_S4_ (1 samples, 0.01%)</title><rect x="609.8" y="469" width="0.1" height="15.0" fill="rgb(213,40,11)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="764.8" y="613" width="0.1" height="15.0" fill="rgb(240,123,19)" rx="2" ry="2" />
<text text-anchor="" x="767.81" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="837" width="0.6" height="15.0" fill="rgb(213,43,19)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12KeyedStoreIC18UpdateStoreElementENS0_6HandleINS0_3MapEEENS0_20KeyedAccessStoreModeEb (1 samples, 0.01%)</title><rect x="373.9" y="181" width="0.1" height="15.0" fill="rgb(210,193,40)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeSetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (15 samples, 0.17%)</title><rect x="1075.4" y="693" width="1.9" height="15.0" fill="rgb(240,13,35)" rx="2" ry="2" />
<text text-anchor="" x="1078.39" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="933" width="0.6" height="15.0" fill="rgb(206,49,53)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="440.9" y="517" width="0.3" height="15.0" fill="rgb(250,228,19)" rx="2" ry="2" />
<text text-anchor="" x="443.93" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="755.2" y="533" width="0.5" height="15.0" fill="rgb(210,206,19)" rx="2" ry="2" />
<text text-anchor="" x="758.16" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler13CodeAssembler12GenerateCodeEPNS1_18CodeAssemblerStateE (1 samples, 0.01%)</title><rect x="373.9" y="117" width="0.1" height="15.0" fill="rgb(212,158,23)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (8 samples, 0.09%)</title><rect x="878.2" y="677" width="1.1" height="15.0" fill="rgb(231,141,43)" rx="2" ry="2" />
<text text-anchor="" x="881.25" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="582.9" y="549" width="0.1" height="15.0" fill="rgb(238,197,7)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (23 samples, 0.25%)</title><rect x="569.9" y="645" width="3.0" height="15.0" fill="rgb(222,201,10)" rx="2" ry="2" />
<text text-anchor="" x="572.88" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.07%)</title><rect x="349.7" y="613" width="0.7" height="15.0" fill="rgb(214,151,24)" rx="2" ry="2" />
<text text-anchor="" x="352.66" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="824.8" y="581" width="0.4" height="15.0" fill="rgb(216,171,38)" rx="2" ry="2" />
<text text-anchor="" x="827.79" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="10.9" y="709" width="0.1" height="15.0" fill="rgb(248,16,35)" rx="2" ry="2" />
<text text-anchor="" x="13.91" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="373.1" y="613" width="0.7" height="15.0" fill="rgb(248,80,41)" rx="2" ry="2" />
<text text-anchor="" x="376.13" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="885" width="0.1" height="15.0" fill="rgb(214,33,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="341" width="0.1" height="15.0" fill="rgb(223,210,50)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (186 samples, 2.06%)</title><rect x="991.3" y="677" width="24.2" height="15.0" fill="rgb(231,65,47)" rx="2" ry="2" />
<text text-anchor="" x="994.29" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (3 samples, 0.03%)</title><rect x="489.8" y="661" width="0.4" height="15.0" fill="rgb(232,89,42)" rx="2" ry="2" />
<text text-anchor="" x="492.82" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl11CreateGraphEv (1 samples, 0.01%)</title><rect x="1077.3" y="613" width="0.2" height="15.0" fill="rgb(221,94,49)" rx="2" ry="2" />
<text text-anchor="" x="1080.35" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="1189.3" y="1029" width="0.2" height="15.0" fill="rgb(208,208,23)" rx="2" ry="2" />
<text text-anchor="" x="1192.35" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Runtime_InterpreterDeserializeLazyEiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="582.9" y="677" width="0.1" height="15.0" fill="rgb(225,43,40)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.3" y="949" width="0.1" height="15.0" fill="rgb(248,50,45)" rx="2" ry="2" />
<text text-anchor="" x="14.30" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="582.9" y="533" width="0.1" height="15.0" fill="rgb(205,188,24)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (12 samples, 0.13%)</title><rect x="876.7" y="677" width="1.5" height="15.0" fill="rgb(214,174,14)" rx="2" ry="2" />
<text text-anchor="" x="879.68" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="825.0" y="469" width="0.2" height="15.0" fill="rgb(213,43,46)" rx="2" ry="2" />
<text text-anchor="" x="828.05" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.10%)</title><rect x="229.7" y="629" width="1.2" height="15.0" fill="rgb(251,15,39)" rx="2" ry="2" />
<text text-anchor="" x="232.70" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal48Runtime_StringReplaceNonGlobalRegExpWithFunctionEiPPNS0_6ObjectEPNS0_7IsolateE (5 samples, 0.06%)</title><rect x="373.1" y="629" width="0.7" height="15.0" fill="rgb(219,2,54)" rx="2" ry="2" />
<text text-anchor="" x="376.13" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (3 samples, 0.03%)</title><rect x="489.8" y="677" width="0.4" height="15.0" fill="rgb(250,104,14)" rx="2" ry="2" />
<text text-anchor="" x="492.82" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="824.9" y="501" width="0.3" height="15.0" fill="rgb(222,124,53)" rx="2" ry="2" />
<text text-anchor="" x="827.92" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (10 samples, 0.11%)</title><rect x="495.3" y="661" width="1.3" height="15.0" fill="rgb(247,52,10)" rx="2" ry="2" />
<text text-anchor="" x="498.30" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="373.1" y="581" width="0.7" height="15.0" fill="rgb(206,158,4)" rx="2" ry="2" />
<text text-anchor="" x="376.13" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="582.9" y="565" width="0.1" height="15.0" fill="rgb(229,70,34)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector31AddInputsToFrameStateDescriptorEPNS1_20FrameStateDescriptorEPNS1_4NodeEPNS1_16OperandGeneratorEPNS1_23StateObjectDeduplicatorEPNS0_10ZoneVectorINS1_18InstructionOperandEEENS1_19FrameStateInputKindEPNS0_4ZoneE (1 samples, 0.01%)</title><rect x="1181.3" y="501" width="0.1" height="15.0" fill="rgb(236,73,41)" rx="2" ry="2" />
<text text-anchor="" x="1184.26" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="927.8" y="565" width="0.1" height="15.0" fill="rgb(218,150,47)" rx="2" ry="2" />
<text text-anchor="" x="930.79" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="607.4" y="581" width="0.2" height="15.0" fill="rgb(216,32,27)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (2 samples, 0.02%)</title><rect x="1185.3" y="1045" width="0.3" height="15.0" fill="rgb(220,148,48)" rx="2" ry="2" />
<text text-anchor="" x="1188.31" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="537.7" y="597" width="0.4" height="15.0" fill="rgb(213,56,53)" rx="2" ry="2" />
<text text-anchor="" x="540.68" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1130.3" y="677" width="0.1" height="15.0" fill="rgb(253,106,7)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler16LiveRangeBuilder6DefineENS1_16LifetimePositionEPNS1_18InstructionOperandEPvNS1_19UsePositionHintTypeE.constprop.425 (1 samples, 0.01%)</title><rect x="609.9" y="533" width="0.1" height="15.0" fill="rgb(221,108,49)" rx="2" ry="2" />
<text text-anchor="" x="612.91" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="75.1" y="661" width="0.5" height="15.0" fill="rgb(232,227,30)" rx="2" ry="2" />
<text text-anchor="" x="78.06" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="441.1" y="485" width="0.1" height="15.0" fill="rgb(252,220,35)" rx="2" ry="2" />
<text text-anchor="" x="444.06" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="901" width="0.1" height="15.0" fill="rgb(207,132,19)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="968.1" y="597" width="0.1" height="15.0" fill="rgb(219,185,52)" rx="2" ry="2" />
<text text-anchor="" x="971.08" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="371.7" y="629" width="0.6" height="15.0" fill="rgb(241,24,30)" rx="2" ry="2" />
<text text-anchor="" x="374.69" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="607.4" y="485" width="0.2" height="15.0" fill="rgb(239,135,35)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="685.0" y="645" width="0.5" height="15.0" fill="rgb(224,141,12)" rx="2" ry="2" />
<text text-anchor="" x="688.01" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler29JSNativeContextSpecialization6ReduceEPNS1_4NodeE (1 samples, 0.01%)</title><rect x="609.8" y="533" width="0.1" height="15.0" fill="rgb(222,121,50)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (60 samples, 0.66%)</title><rect x="1067.6" y="645" width="7.8" height="15.0" fill="rgb(219,69,51)" rx="2" ry="2" />
<text text-anchor="" x="1070.57" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="997" width="0.1" height="15.0" fill="rgb(246,118,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="373.1" y="565" width="0.7" height="15.0" fill="rgb(231,88,2)" rx="2" ry="2" />
<text text-anchor="" x="376.13" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="373.3" y="469" width="0.5" height="15.0" fill="rgb(217,204,17)" rx="2" ry="2" />
<text text-anchor="" x="376.26" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="440.8" y="565" width="0.4" height="15.0" fill="rgb(218,133,45)" rx="2" ry="2" />
<text text-anchor="" x="443.80" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="482.1" y="533" width="0.3" height="15.0" fill="rgb(249,28,45)" rx="2" ry="2" />
<text text-anchor="" x="485.13" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (1,059 samples, 11.70%)</title><rect x="617.6" y="677" width="138.1" height="15.0" fill="rgb(233,105,54)" rx="2" ry="2" />
<text text-anchor="" x="620.60" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88internalL3..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19LinearScanAllocator17AllocateRegistersEv (1 samples, 0.01%)</title><rect x="610.0" y="565" width="0.2" height="15.0" fill="rgb(252,114,45)" rx="2" ry="2" />
<text text-anchor="" x="613.04" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="837" width="0.1" height="15.0" fill="rgb(233,154,9)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal8compiler9LiveRange6CoversENS1_16LifetimePositionE (1 samples, 0.01%)</title><rect x="610.0" y="549" width="0.2" height="15.0" fill="rgb(244,166,21)" rx="2" ry="2" />
<text text-anchor="" x="613.04" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (6 samples, 0.07%)</title><rect x="1066.7" y="645" width="0.7" height="15.0" fill="rgb(218,142,3)" rx="2" ry="2" />
<text text-anchor="" x="1069.65" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1185.2" y="693" width="0.1" height="15.0" fill="rgb(218,25,23)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="773" width="0.6" height="15.0" fill="rgb(221,30,27)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeGetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.02%)</title><rect x="583.0" y="661" width="0.3" height="15.0" fill="rgb(253,44,9)" rx="2" ry="2" />
<text text-anchor="" x="586.05" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="917" width="0.5" height="15.0" fill="rgb(236,131,31)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="453" width="0.1" height="15.0" fill="rgb(216,84,17)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="325" width="0.1" height="15.0" fill="rgb(213,20,6)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl17AllocateRegistersEPKNS0_21RegisterConfigurationEPNS1_14CallDescriptorEb (2 samples, 0.02%)</title><rect x="609.9" y="581" width="0.3" height="15.0" fill="rgb(230,159,4)" rx="2" ry="2" />
<text text-anchor="" x="612.91" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="482.1" y="517" width="0.3" height="15.0" fill="rgb(216,23,45)" rx="2" ry="2" />
<text text-anchor="" x="485.13" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="789" width="0.6" height="15.0" fill="rgb(252,195,18)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1014.5" y="485" width="0.1" height="15.0" fill="rgb(211,76,25)" rx="2" ry="2" />
<text text-anchor="" x="1017.50" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector10VisitBlockEPNS1_10BasicBlockE (1 samples, 0.01%)</title><rect x="610.2" y="549" width="0.1" height="15.0" fill="rgb(248,166,52)" rx="2" ry="2" />
<text text-anchor="" x="613.17" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="537.7" y="565" width="0.4" height="15.0" fill="rgb(240,63,3)" rx="2" ry="2" />
<text text-anchor="" x="540.68" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (9 samples, 0.10%)</title><rect x="616.4" y="677" width="1.2" height="15.0" fill="rgb(207,58,3)" rx="2" ry="2" />
<text text-anchor="" x="619.43" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.07%)</title><rect x="349.7" y="645" width="0.7" height="15.0" fill="rgb(207,58,20)" rx="2" ry="2" />
<text text-anchor="" x="352.66" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="371.7" y="613" width="0.6" height="15.0" fill="rgb(212,132,23)" rx="2" ry="2" />
<text text-anchor="" x="374.69" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1130.3" y="645" width="0.1" height="15.0" fill="rgb(215,202,34)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (4 samples, 0.04%)</title><rect x="1046.7" y="661" width="0.5" height="15.0" fill="rgb(245,62,7)" rx="2" ry="2" />
<text text-anchor="" x="1049.70" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="685.4" y="549" width="0.1" height="15.0" fill="rgb(228,163,33)" rx="2" ry="2" />
<text text-anchor="" x="688.40" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl17AllocateRegistersEPKNS0_21RegisterConfigurationEPNS1_14CallDescriptorEb (1 samples, 0.01%)</title><rect x="1186.5" y="933" width="0.1" height="15.0" fill="rgb(232,39,8)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (5 samples, 0.06%)</title><rect x="1022.3" y="677" width="0.7" height="15.0" fill="rgb(242,94,48)" rx="2" ry="2" />
<text text-anchor="" x="1025.32" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="901" width="1173.7" height="15.0" fill="rgb(231,41,38)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl3RunINS1_25InstructionSelectionPhaseEPNS1_7LinkageEEEvT0_ (1 samples, 0.01%)</title><rect x="1181.3" y="613" width="0.1" height="15.0" fill="rgb(231,210,28)" rx="2" ry="2" />
<text text-anchor="" x="1184.26" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector31AddInputsToFrameStateDescriptorEPNS1_20FrameStateDescriptorEPNS1_4NodeEPNS1_16OperandGeneratorEPNS1_23StateObjectDeduplicatorEPNS0_10ZoneVectorINS1_18InstructionOperandEEENS1_19FrameStateInputKindEPNS0_4ZoneE (1 samples, 0.01%)</title><rect x="1181.3" y="485" width="0.1" height="15.0" fill="rgb(253,1,20)" rx="2" ry="2" />
<text text-anchor="" x="1184.26" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="927.7" y="629" width="0.2" height="15.0" fill="rgb(221,194,34)" rx="2" ry="2" />
<text text-anchor="" x="930.66" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler8Schedule8PlanNodeEPNS1_10BasicBlockEPNS1_4NodeE (1 samples, 0.01%)</title><rect x="1181.4" y="581" width="0.1" height="15.0" fill="rgb(212,128,36)" rx="2" ry="2" />
<text text-anchor="" x="1184.39" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="1013" width="0.6" height="15.0" fill="rgb(228,159,50)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1187.0" y="741" width="0.5" height="15.0" fill="rgb(210,129,9)" rx="2" ry="2" />
<text text-anchor="" x="1190.00" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal27OptimizingCompileDispatcher11CompileTask11RunInternalEv (8 samples, 0.09%)</title><rect x="1186.5" y="1013" width="1.0" height="15.0" fill="rgb(233,194,54)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (6 samples, 0.07%)</title><rect x="979.6" y="661" width="0.7" height="15.0" fill="rgb(217,212,30)" rx="2" ry="2" />
<text text-anchor="" x="982.56" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="373.3" y="373" width="0.5" height="15.0" fill="rgb(249,31,14)" rx="2" ry="2" />
<text text-anchor="" x="376.26" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="373.8" y="629" width="0.1" height="15.0" fill="rgb(207,171,0)" rx="2" ry="2" />
<text text-anchor="" x="376.78" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="990.6" y="613" width="0.2" height="15.0" fill="rgb(224,171,28)" rx="2" ry="2" />
<text text-anchor="" x="993.64" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12GraphReducer6ReduceEPNS1_4NodeE (1 samples, 0.01%)</title><rect x="609.8" y="549" width="0.1" height="15.0" fill="rgb(226,94,10)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Compiler22GetOptimizedCodeForOSRENS0_6HandleINS0_10JSFunctionEEENS0_9BailoutIdEPNS0_15JavaScriptFrameE (3 samples, 0.03%)</title><rect x="609.9" y="661" width="0.4" height="15.0" fill="rgb(250,10,44)" rx="2" ry="2" />
<text text-anchor="" x="612.91" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="685.3" y="565" width="0.2" height="15.0" fill="rgb(220,44,54)" rx="2" ry="2" />
<text text-anchor="" x="688.27" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (1 samples, 0.01%)</title><rect x="583.2" y="629" width="0.1" height="15.0" fill="rgb(235,205,14)" rx="2" ry="2" />
<text text-anchor="" x="586.18" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="764.8" y="645" width="0.1" height="15.0" fill="rgb(222,24,24)" rx="2" ry="2" />
<text text-anchor="" x="767.81" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="757" width="0.6" height="15.0" fill="rgb(223,225,2)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.13%)</title><rect x="1187.8" y="837" width="1.5" height="15.0" fill="rgb(212,220,18)" rx="2" ry="2" />
<text text-anchor="" x="1190.78" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="824.9" y="517" width="0.3" height="15.0" fill="rgb(253,129,25)" rx="2" ry="2" />
<text text-anchor="" x="827.92" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="501" width="0.1" height="15.0" fill="rgb(208,79,38)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="694.4" y="453" width="0.1" height="15.0" fill="rgb(250,135,11)" rx="2" ry="2" />
<text text-anchor="" x="697.40" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler13MoveOptimizer3RunEv (1 samples, 0.01%)</title><rect x="373.9" y="53" width="0.1" height="15.0" fill="rgb(239,69,28)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="990.6" y="677" width="0.2" height="15.0" fill="rgb(209,78,46)" rx="2" ry="2" />
<text text-anchor="" x="993.64" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="373" width="0.1" height="15.0" fill="rgb(237,181,38)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (2 samples, 0.02%)</title><rect x="583.0" y="645" width="0.3" height="15.0" fill="rgb(231,38,48)" rx="2" ry="2" />
<text text-anchor="" x="586.05" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (13 samples, 0.14%)</title><rect x="1187.7" y="965" width="1.6" height="15.0" fill="rgb(241,135,30)" rx="2" ry="2" />
<text text-anchor="" x="1190.65" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="869" width="0.1" height="15.0" fill="rgb(218,56,14)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1014.5" y="517" width="0.1" height="15.0" fill="rgb(224,210,29)" rx="2" ry="2" />
<text text-anchor="" x="1017.50" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="824.7" y="645" width="0.5" height="15.0" fill="rgb(223,160,15)" rx="2" ry="2" />
<text text-anchor="" x="827.66" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1130.3" y="597" width="0.1" height="15.0" fill="rgb(248,112,32)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="607.4" y="629" width="0.2" height="15.0" fill="rgb(207,139,10)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (1 samples, 0.01%)</title><rect x="969.0" y="677" width="0.1" height="15.0" fill="rgb(214,20,2)" rx="2" ry="2" />
<text text-anchor="" x="971.99" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (469 samples, 5.18%)</title><rect x="694.5" y="661" width="61.2" height="15.0" fill="rgb(221,219,11)" rx="2" ry="2" />
<text text-anchor="" x="697.53" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v8..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="694.4" y="501" width="0.1" height="15.0" fill="rgb(254,219,22)" rx="2" ry="2" />
<text text-anchor="" x="697.40" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (16 samples, 0.18%)</title><rect x="1171.5" y="709" width="2.1" height="15.0" fill="rgb(235,142,22)" rx="2" ry="2" />
<text text-anchor="" x="1174.49" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="933" width="0.2" height="15.0" fill="rgb(245,151,22)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal36Runtime_CompileForOnStackReplacementEiPPNS0_6ObjectEPNS0_7IsolateE (3 samples, 0.03%)</title><rect x="609.9" y="677" width="0.4" height="15.0" fill="rgb(245,194,11)" rx="2" ry="2" />
<text text-anchor="" x="612.91" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12KeyedStoreIC19StoreElementHandlerENS0_6HandleINS0_3MapEEENS0_20KeyedAccessStoreModeE (1 samples, 0.01%)</title><rect x="373.9" y="165" width="0.1" height="15.0" fill="rgb(217,199,36)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="1061" width="0.5" height="15.0" fill="rgb(229,120,30)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (6,536 samples, 72.22%)</title><rect x="230.9" y="709" width="852.2" height="15.0" fill="rgb(205,128,33)" rx="2" ry="2" />
<text text-anchor="" x="233.88" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="773" width="0.2" height="15.0" fill="rgb(212,109,28)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="755.3" y="501" width="0.4" height="15.0" fill="rgb(254,81,4)" rx="2" ry="2" />
<text text-anchor="" x="758.29" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="981" width="0.5" height="15.0" fill="rgb(237,164,54)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.13%)</title><rect x="1187.8" y="885" width="1.5" height="15.0" fill="rgb(249,39,28)" rx="2" ry="2" />
<text text-anchor="" x="1190.78" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="490.2" y="661" width="0.1" height="15.0" fill="rgb(247,28,11)" rx="2" ry="2" />
<text text-anchor="" x="493.21" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (335 samples, 3.70%)</title><rect x="825.2" y="661" width="43.7" height="15.0" fill="rgb(225,47,49)" rx="2" ry="2" />
<text text-anchor="" x="828.18" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="441.1" y="469" width="0.1" height="15.0" fill="rgb(246,93,42)" rx="2" ry="2" />
<text text-anchor="" x="444.06" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeSetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (3 samples, 0.03%)</title><rect x="375.1" y="645" width="0.4" height="15.0" fill="rgb(235,132,37)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="990.6" y="629" width="0.2" height="15.0" fill="rgb(235,89,20)" rx="2" ry="2" />
<text text-anchor="" x="993.64" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="607.4" y="469" width="0.2" height="15.0" fill="rgb(245,215,44)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="373.3" y="533" width="0.5" height="15.0" fill="rgb(208,213,34)" rx="2" ry="2" />
<text text-anchor="" x="376.26" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="949" width="0.6" height="15.0" fill="rgb(213,151,23)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="757" width="0.6" height="15.0" fill="rgb(235,69,6)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="261" width="0.1" height="15.0" fill="rgb(254,73,51)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="968.1" y="629" width="0.1" height="15.0" fill="rgb(243,124,27)" rx="2" ry="2" />
<text text-anchor="" x="971.08" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (845 samples, 9.34%)</title><rect x="764.9" y="677" width="110.2" height="15.0" fill="rgb(219,81,43)" rx="2" ry="2" />
<text text-anchor="" x="767.94" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88intern..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="537.8" y="533" width="0.3" height="15.0" fill="rgb(226,146,8)" rx="2" ry="2" />
<text text-anchor="" x="540.81" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1185.2" y="613" width="0.1" height="15.0" fill="rgb(237,76,52)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (8 samples, 0.09%)</title><rect x="1177.9" y="709" width="1.0" height="15.0" fill="rgb(236,95,44)" rx="2" ry="2" />
<text text-anchor="" x="1180.87" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (870 samples, 9.61%)</title><rect x="376.4" y="677" width="113.4" height="15.0" fill="rgb(231,40,18)" rx="2" ry="2" />
<text text-anchor="" x="379.39" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88interna..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="75.1" y="693" width="0.5" height="15.0" fill="rgb(213,146,52)" rx="2" ry="2" />
<text text-anchor="" x="78.06" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="901" width="0.6" height="15.0" fill="rgb(248,142,18)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_match (5 samples, 0.06%)</title><rect x="1185.6" y="1045" width="0.6" height="15.0" fill="rgb(214,210,43)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="492.0" y="661" width="0.2" height="15.0" fill="rgb(232,215,21)" rx="2" ry="2" />
<text text-anchor="" x="495.04" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="968.1" y="613" width="0.1" height="15.0" fill="rgb(207,153,49)" rx="2" ry="2" />
<text text-anchor="" x="971.08" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (269 samples, 2.97%)</title><rect x="1136.4" y="677" width="35.1" height="15.0" fill="rgb(254,178,5)" rx="2" ry="2" />
<text text-anchor="" x="1139.41" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1185.2" y="549" width="0.1" height="15.0" fill="rgb(218,152,35)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler29JSNativeContextSpecialization26ReduceNamedAccessFromNexusEPNS1_4NodeES4_RKNS0_13FeedbackNexusENS0_6HandleINS0_4NameEEENS1_10AccessModeE (1 samples, 0.01%)</title><rect x="609.8" y="501" width="0.1" height="15.0" fill="rgb(253,171,44)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node9inspector12_GLOBAL__N_120InspectorConsoleCallERKN2v820FunctionCallbackInfoINS2_5ValueEEE (1 samples, 0.01%)</title><rect x="373.9" y="629" width="0.1" height="15.0" fill="rgb(233,54,33)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (38 samples, 0.42%)</title><rect x="927.9" y="661" width="5.0" height="15.0" fill="rgb(239,179,3)" rx="2" ry="2" />
<text text-anchor="" x="930.92" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl17AllocateRegistersEPKNS0_21RegisterConfigurationEPNS1_14CallDescriptorEb (1 samples, 0.01%)</title><rect x="373.9" y="69" width="0.1" height="15.0" fill="rgb(236,166,20)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler16LiveRangeBuilder15BuildLiveRangesEv (1 samples, 0.01%)</title><rect x="609.9" y="565" width="0.1" height="15.0" fill="rgb(237,1,48)" rx="2" ry="2" />
<text text-anchor="" x="612.91" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal8compiler4Type9BitsetLubEv (1 samples, 0.01%)</title><rect x="1186.7" y="869" width="0.2" height="15.0" fill="rgb(253,78,37)" rx="2" ry="2" />
<text text-anchor="" x="1189.74" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal8compiler9LiveRange17FirstIntersectionEPS2_ (1 samples, 0.01%)</title><rect x="1186.5" y="869" width="0.1" height="15.0" fill="rgb(206,67,39)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="372.0" y="597" width="0.3" height="15.0" fill="rgb(251,137,8)" rx="2" ry="2" />
<text text-anchor="" x="374.95" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="10.0" y="981" width="0.1" height="15.0" fill="rgb(227,168,54)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeGetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (398 samples, 4.40%)</title><rect x="1023.5" y="677" width="51.9" height="15.0" fill="rgb(227,70,48)" rx="2" ry="2" />
<text text-anchor="" x="1026.50" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14CancelableTask3RunEv (8 samples, 0.09%)</title><rect x="1186.5" y="1029" width="1.0" height="15.0" fill="rgb(242,139,52)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1185.2" y="597" width="0.1" height="15.0" fill="rgb(238,103,6)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (46 samples, 0.51%)</title><rect x="1130.4" y="677" width="6.0" height="15.0" fill="rgb(231,88,54)" rx="2" ry="2" />
<text text-anchor="" x="1133.41" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="997" width="0.5" height="15.0" fill="rgb(205,62,9)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1016.5" y="677" width="0.1" height="15.0" fill="rgb(205,123,19)" rx="2" ry="2" />
<text text-anchor="" x="1019.46" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="885" width="0.6" height="15.0" fill="rgb(213,142,21)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (4 samples, 0.04%)</title><rect x="582.4" y="645" width="0.5" height="15.0" fill="rgb(251,216,22)" rx="2" ry="2" />
<text text-anchor="" x="585.40" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="901" width="0.2" height="15.0" fill="rgb(250,48,14)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (1 samples, 0.01%)</title><rect x="11.2" y="1045" width="0.1" height="15.0" fill="rgb(229,212,33)" rx="2" ry="2" />
<text text-anchor="" x="14.17" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1130.3" y="549" width="0.1" height="15.0" fill="rgb(205,113,35)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14SetPermissionsEPvmNS_13PageAllocator10PermissionE (1 samples, 0.01%)</title><rect x="582.9" y="597" width="0.1" height="15.0" fill="rgb(225,149,9)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeSetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (203 samples, 2.24%)</title><rect x="583.3" y="677" width="26.5" height="15.0" fill="rgb(234,14,18)" rx="2" ry="2" />
<text text-anchor="" x="586.31" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (8 samples, 0.09%)</title><rect x="1089.3" y="693" width="1.1" height="15.0" fill="rgb(234,80,4)" rx="2" ry="2" />
<text text-anchor="" x="1092.34" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (411 samples, 4.54%)</title><rect x="1021.8" y="693" width="53.6" height="15.0" fill="rgb(214,174,28)" rx="2" ry="2" />
<text text-anchor="" x="1024.80" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="901" width="0.6" height="15.0" fill="rgb(221,71,22)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="607.4" y="597" width="0.2" height="15.0" fill="rgb(234,145,36)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="965" width="0.6" height="15.0" fill="rgb(212,42,34)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="482.1" y="565" width="0.3" height="15.0" fill="rgb(242,203,28)" rx="2" ry="2" />
<text text-anchor="" x="485.13" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="805" width="0.6" height="15.0" fill="rgb(223,134,19)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (237 samples, 2.62%)</title><rect x="984.6" y="693" width="30.9" height="15.0" fill="rgb(210,119,5)" rx="2" ry="2" />
<text text-anchor="" x="987.64" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="11.0" y="1045" width="0.2" height="15.0" fill="rgb(221,183,28)" rx="2" ry="2" />
<text text-anchor="" x="14.04" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="537.7" y="581" width="0.4" height="15.0" fill="rgb(247,144,9)" rx="2" ry="2" />
<text text-anchor="" x="540.68" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="10.1" y="1013" width="0.2" height="15.0" fill="rgb(215,73,15)" rx="2" ry="2" />
<text text-anchor="" x="13.13" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="824.7" y="629" width="0.5" height="15.0" fill="rgb(222,185,16)" rx="2" ry="2" />
<text text-anchor="" x="827.66" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="997" width="0.6" height="15.0" fill="rgb(236,220,27)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="837" width="0.6" height="15.0" fill="rgb(225,93,10)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="821" width="1173.7" height="15.0" fill="rgb(230,208,7)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="75.5" y="549" width="0.1" height="15.0" fill="rgb(215,97,25)" rx="2" ry="2" />
<text text-anchor="" x="78.45" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1016.5" y="661" width="0.1" height="15.0" fill="rgb(247,149,46)" rx="2" ry="2" />
<text text-anchor="" x="1019.46" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="440.8" y="581" width="0.4" height="15.0" fill="rgb(230,25,1)" rx="2" ry="2" />
<text text-anchor="" x="443.80" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal25Runtime_KeyedStoreIC_MissEiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="373.9" y="213" width="0.1" height="15.0" fill="rgb(229,201,39)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="869" width="0.5" height="15.0" fill="rgb(216,220,7)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.02%)</title><rect x="1082.3" y="693" width="0.3" height="15.0" fill="rgb(217,210,35)" rx="2" ry="2" />
<text text-anchor="" x="1085.30" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22RegisterAllocationData10AddGapMoveEiNS1_11Instruction11GapPositionERKNS1_18InstructionOperandES7_.constprop.427 (1 samples, 0.01%)</title><rect x="1181.1" y="565" width="0.2" height="15.0" fill="rgb(253,62,47)" rx="2" ry="2" />
<text text-anchor="" x="1184.13" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector20InitializeCallBufferEPNS1_4NodeEPNS1_10CallBufferENS_4base5FlagsINS2_14CallBufferFlagEiEEbi (1 samples, 0.01%)</title><rect x="610.2" y="501" width="0.1" height="15.0" fill="rgb(214,53,29)" rx="2" ry="2" />
<text text-anchor="" x="613.17" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (2 samples, 0.02%)</title><rect x="372.9" y="581" width="0.2" height="15.0" fill="rgb(207,16,6)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="853" width="1173.7" height="15.0" fill="rgb(254,137,36)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="607.4" y="533" width="0.2" height="15.0" fill="rgb(209,142,31)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="10.0" y="1013" width="0.1" height="15.0" fill="rgb(210,196,26)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1130.3" y="613" width="0.1" height="15.0" fill="rgb(210,183,27)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.09%)</title><rect x="10.0" y="1045" width="1.0" height="15.0" fill="rgb(215,23,2)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="10.0" y="997" width="0.1" height="15.0" fill="rgb(238,198,36)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (633 samples, 6.99%)</title><rect x="490.3" y="677" width="82.6" height="15.0" fill="rgb(249,11,24)" rx="2" ry="2" />
<text text-anchor="" x="493.34" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (2,015 samples, 22.27%)</title><rect x="350.4" y="693" width="262.8" height="15.0" fill="rgb(251,57,38)" rx="2" ry="2" />
<text text-anchor="" x="353.44" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal16CompilationCache7IterateEPNS0_11RootVisitorE (1 samples, 0.01%)</title><rect x="1074.6" y="581" width="0.1" height="15.0" fill="rgb(246,109,28)" rx="2" ry="2" />
<text text-anchor="" x="1077.61" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1014.5" y="629" width="0.1" height="15.0" fill="rgb(221,107,35)" rx="2" ry="2" />
<text text-anchor="" x="1017.50" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="685.1" y="597" width="0.4" height="15.0" fill="rgb(237,48,41)" rx="2" ry="2" />
<text text-anchor="" x="688.14" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="949" width="1173.7" height="15.0" fill="rgb(254,215,37)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (2 samples, 0.02%)</title><rect x="374.3" y="629" width="0.3" height="15.0" fill="rgb(243,121,20)" rx="2" ry="2" />
<text text-anchor="" x="377.30" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="469" width="0.1" height="15.0" fill="rgb(215,66,5)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="968.1" y="645" width="0.1" height="15.0" fill="rgb(247,62,9)" rx="2" ry="2" />
<text text-anchor="" x="971.08" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19RootScavengeVisitor16VisitRootPointerENS0_4RootEPKcPPNS0_6ObjectE (1 samples, 0.01%)</title><rect x="1074.7" y="565" width="0.2" height="15.0" fill="rgb(239,185,2)" rx="2" ry="2" />
<text text-anchor="" x="1077.74" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (7 samples, 0.08%)</title><rect x="1180.2" y="709" width="0.9" height="15.0" fill="rgb(238,157,19)" rx="2" ry="2" />
<text text-anchor="" x="1183.22" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="10.9" y="693" width="0.1" height="15.0" fill="rgb(250,52,48)" rx="2" ry="2" />
<text text-anchor="" x="13.91" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="694.4" y="533" width="0.1" height="15.0" fill="rgb(222,91,24)" rx="2" ry="2" />
<text text-anchor="" x="697.40" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.13%)</title><rect x="229.3" y="693" width="1.6" height="15.0" fill="rgb(227,182,43)" rx="2" ry="2" />
<text text-anchor="" x="232.31" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="537.7" y="629" width="0.4" height="15.0" fill="rgb(242,202,39)" rx="2" ry="2" />
<text text-anchor="" x="540.68" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6ParserC1EPNS0_9ParseInfoE (1 samples, 0.01%)</title><rect x="373.0" y="501" width="0.1" height="15.0" fill="rgb(245,33,43)" rx="2" ry="2" />
<text text-anchor="" x="376.00" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="927.5" y="661" width="0.4" height="15.0" fill="rgb(208,217,44)" rx="2" ry="2" />
<text text-anchor="" x="930.53" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="372.1" y="565" width="0.2" height="15.0" fill="rgb(231,109,50)" rx="2" ry="2" />
<text text-anchor="" x="375.08" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl11CreateGraphEv (1 samples, 0.01%)</title><rect x="609.8" y="597" width="0.1" height="15.0" fill="rgb(233,163,5)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector31AddInputsToFrameStateDescriptorEPNS1_20FrameStateDescriptorEPNS1_4NodeEPNS1_16OperandGeneratorEPNS1_23StateObjectDeduplicatorEPNS0_10ZoneVectorINS1_18InstructionOperandEEENS1_19FrameStateInputKindEPNS0_4ZoneE (1 samples, 0.01%)</title><rect x="610.2" y="453" width="0.1" height="15.0" fill="rgb(243,21,16)" rx="2" ry="2" />
<text text-anchor="" x="613.17" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="372.1" y="549" width="0.2" height="15.0" fill="rgb(249,115,15)" rx="2" ry="2" />
<text text-anchor="" x="375.08" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Runtime_CompileOptimized_ConcurrentEiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="1077.3" y="693" width="0.2" height="15.0" fill="rgb(215,130,47)" rx="2" ry="2" />
<text text-anchor="" x="1080.35" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="885" width="0.2" height="15.0" fill="rgb(248,16,17)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="755.7" y="677" width="0.1" height="15.0" fill="rgb(253,193,41)" rx="2" ry="2" />
<text text-anchor="" x="758.68" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (13 samples, 0.14%)</title><rect x="1187.7" y="933" width="1.6" height="15.0" fill="rgb(212,129,50)" rx="2" ry="2" />
<text text-anchor="" x="1190.65" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1130.3" y="661" width="0.1" height="15.0" fill="rgb(224,207,25)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="949" width="0.6" height="15.0" fill="rgb(239,51,1)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1014.5" y="581" width="0.1" height="15.0" fill="rgb(231,11,31)" rx="2" ry="2" />
<text text-anchor="" x="1017.50" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="837" width="1173.7" height="15.0" fill="rgb(207,157,25)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (9,004 samples, 99.49%)</title><rect x="11.3" y="1045" width="1174.0" height="15.0" fill="rgb(214,83,6)" rx="2" ry="2" />
<text text-anchor="" x="14.30" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="373" width="0.1" height="15.0" fill="rgb(216,200,10)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (9 samples, 0.10%)</title><rect x="1176.7" y="709" width="1.2" height="15.0" fill="rgb(209,155,45)" rx="2" ry="2" />
<text text-anchor="" x="1179.70" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="949" width="0.1" height="15.0" fill="rgb(237,171,43)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler5Graph7NewNodeEPKNS1_8OperatorEiPKPNS1_4NodeEb (1 samples, 0.01%)</title><rect x="609.8" y="453" width="0.1" height="15.0" fill="rgb(237,98,41)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1130.3" y="629" width="0.1" height="15.0" fill="rgb(206,175,52)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="405" width="0.1" height="15.0" fill="rgb(223,48,1)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="440.8" y="549" width="0.4" height="15.0" fill="rgb(218,71,33)" rx="2" ry="2" />
<text text-anchor="" x="443.80" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="869" width="0.6" height="15.0" fill="rgb(218,134,1)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.13%)</title><rect x="229.3" y="661" width="1.6" height="15.0" fill="rgb(236,96,8)" rx="2" ry="2" />
<text text-anchor="" x="232.31" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="853" width="0.2" height="15.0" fill="rgb(239,73,44)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector9VisitCallEPNS1_4NodeEPNS1_10BasicBlockE (1 samples, 0.01%)</title><rect x="610.2" y="517" width="0.1" height="15.0" fill="rgb(214,24,44)" rx="2" ry="2" />
<text text-anchor="" x="613.17" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="821" width="0.2" height="15.0" fill="rgb(214,54,0)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (2 samples, 0.02%)</title><rect x="372.9" y="613" width="0.2" height="15.0" fill="rgb(222,11,22)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal38Runtime_CompileOptimized_NotConcurrentEiPPNS0_6ObjectEPNS0_7IsolateE (4 samples, 0.04%)</title><rect x="1181.1" y="709" width="0.6" height="15.0" fill="rgb(212,211,2)" rx="2" ry="2" />
<text text-anchor="" x="1184.13" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (4 samples, 0.04%)</title><rect x="1021.3" y="661" width="0.5" height="15.0" fill="rgb(223,122,9)" rx="2" ry="2" />
<text text-anchor="" x="1024.28" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="917" width="0.2" height="15.0" fill="rgb(225,39,21)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="773" width="1173.7" height="15.0" fill="rgb(229,152,31)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (33 samples, 0.36%)</title><rect x="980.3" y="661" width="4.3" height="15.0" fill="rgb(226,172,28)" rx="2" ry="2" />
<text text-anchor="" x="983.34" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal8compiler11UsePosition12HintRegisterEPi (1 samples, 0.01%)</title><rect x="609.9" y="517" width="0.1" height="15.0" fill="rgb(210,116,29)" rx="2" ry="2" />
<text text-anchor="" x="612.91" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (57 samples, 0.63%)</title><rect x="482.4" y="645" width="7.4" height="15.0" fill="rgb(211,37,29)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.07%)</title><rect x="371.6" y="645" width="0.7" height="15.0" fill="rgb(234,81,49)" rx="2" ry="2" />
<text text-anchor="" x="374.56" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="565" width="0.1" height="15.0" fill="rgb(228,45,43)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (2 samples, 0.02%)</title><rect x="372.9" y="597" width="0.2" height="15.0" fill="rgb(241,24,28)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.07%)</title><rect x="371.6" y="661" width="0.7" height="15.0" fill="rgb(251,46,34)" rx="2" ry="2" />
<text text-anchor="" x="374.56" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (77 samples, 0.85%)</title><rect x="572.9" y="677" width="10.0" height="15.0" fill="rgb(210,222,46)" rx="2" ry="2" />
<text text-anchor="" x="575.88" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="981" width="0.6" height="15.0" fill="rgb(246,85,50)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (1 samples, 0.01%)</title><rect x="572.9" y="661" width="0.1" height="15.0" fill="rgb(206,53,1)" rx="2" ry="2" />
<text text-anchor="" x="575.88" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="440.8" y="629" width="0.4" height="15.0" fill="rgb(231,90,10)" rx="2" ry="2" />
<text text-anchor="" x="443.80" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="1013" width="0.6" height="15.0" fill="rgb(207,24,11)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="373.1" y="549" width="0.7" height="15.0" fill="rgb(219,191,29)" rx="2" ry="2" />
<text text-anchor="" x="376.13" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector18SelectInstructionsEv (1 samples, 0.01%)</title><rect x="610.2" y="565" width="0.1" height="15.0" fill="rgb(221,151,5)" rx="2" ry="2" />
<text text-anchor="" x="613.17" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="824.7" y="661" width="0.5" height="15.0" fill="rgb(232,160,33)" rx="2" ry="2" />
<text text-anchor="" x="827.66" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="469" width="0.1" height="15.0" fill="rgb(243,27,49)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="372.2" y="533" width="0.1" height="15.0" fill="rgb(254,26,32)" rx="2" ry="2" />
<text text-anchor="" x="375.21" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="1029" width="0.1" height="15.0" fill="rgb(252,65,52)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="482.0" y="629" width="0.4" height="15.0" fill="rgb(231,191,39)" rx="2" ry="2" />
<text text-anchor="" x="485.00" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (5 samples, 0.06%)</title><rect x="968.3" y="677" width="0.7" height="15.0" fill="rgb(237,180,2)" rx="2" ry="2" />
<text text-anchor="" x="971.34" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_116GetOptimizedCodeENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_9BailoutIdEPNS0_15JavaScriptFrameE (1 samples, 0.01%)</title><rect x="609.8" y="645" width="0.1" height="15.0" fill="rgb(224,165,45)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.0" y="1013" width="0.2" height="15.0" fill="rgb(231,7,44)" rx="2" ry="2" />
<text text-anchor="" x="14.04" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="609.8" y="421" width="0.1" height="15.0" fill="rgb(208,125,43)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="764.8" y="597" width="0.1" height="15.0" fill="rgb(227,185,9)" rx="2" ry="2" />
<text text-anchor="" x="767.81" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19LinearScanAllocator17AllocateRegistersEv (1 samples, 0.01%)</title><rect x="1186.5" y="917" width="0.1" height="15.0" fill="rgb(248,52,41)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="917" width="0.1" height="15.0" fill="rgb(223,62,13)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="805" width="0.6" height="15.0" fill="rgb(220,217,28)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (14 samples, 0.15%)</title><rect x="1187.5" y="1029" width="1.8" height="15.0" fill="rgb(245,186,36)" rx="2" ry="2" />
<text text-anchor="" x="1190.52" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="755.7" y="661" width="0.1" height="15.0" fill="rgb(230,89,47)" rx="2" ry="2" />
<text text-anchor="" x="758.68" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="75.1" y="629" width="0.5" height="15.0" fill="rgb(215,179,18)" rx="2" ry="2" />
<text text-anchor="" x="78.06" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="440.9" y="501" width="0.3" height="15.0" fill="rgb(253,108,36)" rx="2" ry="2" />
<text text-anchor="" x="443.93" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeSetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (194 samples, 2.14%)</title><rect x="584.5" y="661" width="25.3" height="15.0" fill="rgb(219,71,11)" rx="2" ry="2" />
<text text-anchor="" x="587.48" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="949" width="0.2" height="15.0" fill="rgb(222,25,35)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="581" width="0.1" height="15.0" fill="rgb(232,96,37)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="10.9" y="741" width="0.1" height="15.0" fill="rgb(232,63,26)" rx="2" ry="2" />
<text text-anchor="" x="13.91" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler31EffectControlLinearizationPhase3RunEPNS1_12PipelineDataEPNS0_4ZoneE (1 samples, 0.01%)</title><rect x="1181.5" y="629" width="0.2" height="15.0" fill="rgb(242,137,49)" rx="2" ry="2" />
<text text-anchor="" x="1184.52" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="821" width="0.6" height="15.0" fill="rgb(253,56,31)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl18SelectInstructionsEPNS1_7LinkageE (3 samples, 0.03%)</title><rect x="609.9" y="597" width="0.4" height="15.0" fill="rgb(217,132,38)" rx="2" ry="2" />
<text text-anchor="" x="612.91" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorENS_15GCCallbackFlagsE (5 samples, 0.06%)</title><rect x="1074.3" y="613" width="0.7" height="15.0" fill="rgb(205,52,20)" rx="2" ry="2" />
<text text-anchor="" x="1077.35" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="933" width="1173.7" height="15.0" fill="rgb(249,177,37)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE (4 samples, 0.04%)</title><rect x="1181.1" y="645" width="0.6" height="15.0" fill="rgb(244,203,32)" rx="2" ry="2" />
<text text-anchor="" x="1184.13" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (678 samples, 7.49%)</title><rect x="1083.1" y="709" width="88.4" height="15.0" fill="rgb(247,153,38)" rx="2" ry="2" />
<text text-anchor="" x="1086.08" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88int..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="607.4" y="613" width="0.2" height="15.0" fill="rgb(232,174,38)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="482.1" y="549" width="0.3" height="15.0" fill="rgb(240,64,39)" rx="2" ry="2" />
<text text-anchor="" x="485.13" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="761.0" y="645" width="0.2" height="15.0" fill="rgb(212,200,32)" rx="2" ry="2" />
<text text-anchor="" x="764.03" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strcmp (5 samples, 0.06%)</title><rect x="10.4" y="1029" width="0.6" height="15.0" fill="rgb(251,210,24)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="761.0" y="597" width="0.2" height="15.0" fill="rgb(248,220,10)" rx="2" ry="2" />
<text text-anchor="" x="764.03" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.3" y="933" width="0.1" height="15.0" fill="rgb(213,140,41)" rx="2" ry="2" />
<text text-anchor="" x="14.30" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler14OperationTyper25SpeculativeSafeIntegerAddENS1_4TypeES3_ (1 samples, 0.01%)</title><rect x="1186.7" y="917" width="0.2" height="15.0" fill="rgb(227,71,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.74" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8CountersC1EPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="11.4" y="981" width="0.2" height="15.0" fill="rgb(248,218,7)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.02%)</title><rect x="612.9" y="677" width="0.3" height="15.0" fill="rgb(205,83,47)" rx="2" ry="2" />
<text text-anchor="" x="615.91" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (48 samples, 0.53%)</title><rect x="868.9" y="661" width="6.2" height="15.0" fill="rgb(213,173,35)" rx="2" ry="2" />
<text text-anchor="" x="871.86" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="501" width="0.1" height="15.0" fill="rgb(237,180,24)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="965" width="0.1" height="15.0" fill="rgb(254,69,46)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="350.0" y="517" width="0.4" height="15.0" fill="rgb(217,209,24)" rx="2" ry="2" />
<text text-anchor="" x="353.05" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="389" width="0.1" height="15.0" fill="rgb(207,19,27)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl21ComputeScheduledGraphEv (1 samples, 0.01%)</title><rect x="1181.4" y="629" width="0.1" height="15.0" fill="rgb(228,168,24)" rx="2" ry="2" />
<text text-anchor="" x="1184.39" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="582.9" y="469" width="0.1" height="15.0" fill="rgb(227,119,26)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl17AllocateRegistersEPKNS0_21RegisterConfigurationEPNS1_14CallDescriptorEb (1 samples, 0.01%)</title><rect x="1181.1" y="613" width="0.2" height="15.0" fill="rgb(208,112,48)" rx="2" ry="2" />
<text text-anchor="" x="1184.13" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14PrepareJobImplEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="609.8" y="613" width="0.1" height="15.0" fill="rgb(216,180,40)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="230.6" y="549" width="0.3" height="15.0" fill="rgb(245,75,40)" rx="2" ry="2" />
<text text-anchor="" x="233.61" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_ (1 samples, 0.01%)</title><rect x="373.9" y="597" width="0.1" height="15.0" fill="rgb(242,16,35)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.3" y="901" width="0.1" height="15.0" fill="rgb(240,120,28)" rx="2" ry="2" />
<text text-anchor="" x="14.30" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="1029" width="0.6" height="15.0" fill="rgb(231,198,20)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (76 samples, 0.84%)</title><rect x="573.0" y="661" width="9.9" height="15.0" fill="rgb(242,185,23)" rx="2" ry="2" />
<text text-anchor="" x="576.01" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="933" width="0.5" height="15.0" fill="rgb(211,94,17)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler14OperationTyper17ToNumberOrNumericENS0_6Object10ConversionENS1_4TypeE (1 samples, 0.01%)</title><rect x="1186.7" y="901" width="0.2" height="15.0" fill="rgb(241,166,30)" rx="2" ry="2" />
<text text-anchor="" x="1189.74" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1130.3" y="533" width="0.1" height="15.0" fill="rgb(214,160,49)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.10%)</title><rect x="229.7" y="613" width="1.2" height="15.0" fill="rgb(240,170,12)" rx="2" ry="2" />
<text text-anchor="" x="232.70" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="694.4" y="469" width="0.1" height="15.0" fill="rgb(230,189,53)" rx="2" ry="2" />
<text text-anchor="" x="697.40" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_ (9,002 samples, 99.47%)</title><rect x="11.6" y="981" width="1173.7" height="15.0" fill="rgb(217,190,49)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="440.8" y="597" width="0.4" height="15.0" fill="rgb(231,124,5)" rx="2" ry="2" />
<text text-anchor="" x="443.80" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="482.3" y="501" width="0.1" height="15.0" fill="rgb(205,92,37)" rx="2" ry="2" />
<text text-anchor="" x="485.26" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (2 samples, 0.02%)</title><rect x="991.0" y="677" width="0.3" height="15.0" fill="rgb(243,9,47)" rx="2" ry="2" />
<text text-anchor="" x="994.03" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 0.02%)</title><rect x="583.0" y="677" width="0.3" height="15.0" fill="rgb(250,132,27)" rx="2" ry="2" />
<text text-anchor="" x="586.05" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="685.1" y="581" width="0.4" height="15.0" fill="rgb(205,202,12)" rx="2" ry="2" />
<text text-anchor="" x="688.14" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v87Isolate3NewERKNS0_12CreateParamsE (2 samples, 0.02%)</title><rect x="11.3" y="1013" width="0.3" height="15.0" fill="rgb(216,67,41)" rx="2" ry="2" />
<text text-anchor="" x="14.30" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node5StartEPN2v87IsolateEPNS_11IsolateDataEiPKPKciS8_ (9,002 samples, 99.47%)</title><rect x="11.6" y="1013" width="1173.7" height="15.0" fill="rgb(234,159,6)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN4node5StartEPN2v87IsolateEPNS_11IsolateDataEiPKPKciS8_</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="968.1" y="565" width="0.1" height="15.0" fill="rgb(242,27,39)" rx="2" ry="2" />
<text text-anchor="" x="971.08" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="761.0" y="629" width="0.2" height="15.0" fill="rgb(206,148,43)" rx="2" ry="2" />
<text text-anchor="" x="764.03" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="825.0" y="485" width="0.2" height="15.0" fill="rgb(246,144,46)" rx="2" ry="2" />
<text text-anchor="" x="828.05" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12KeyedStoreIC5StoreENS0_6HandleINS0_6ObjectEEES4_S4_.constprop.187 (1 samples, 0.01%)</title><rect x="373.9" y="197" width="0.1" height="15.0" fill="rgb(245,126,5)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="755.2" y="629" width="0.5" height="15.0" fill="rgb(213,198,24)" rx="2" ry="2" />
<text text-anchor="" x="758.16" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="482.3" y="469" width="0.1" height="15.0" fill="rgb(205,227,2)" rx="2" ry="2" />
<text text-anchor="" x="485.26" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal21Builtin_HandleApiCallEiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="373.9" y="661" width="0.1" height="15.0" fill="rgb(223,42,27)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_116GetOptimizedCodeENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_9BailoutIdEPNS0_15JavaScriptFrameE (4 samples, 0.04%)</title><rect x="1181.1" y="677" width="0.6" height="15.0" fill="rgb(222,152,17)" rx="2" ry="2" />
<text text-anchor="" x="1184.13" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="927.7" y="613" width="0.2" height="15.0" fill="rgb(240,135,44)" rx="2" ry="2" />
<text text-anchor="" x="930.66" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal23OptimizedCompilationJob10PrepareJobEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="609.8" y="629" width="0.1" height="15.0" fill="rgb(215,96,8)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler4Node3NewEPNS0_4ZoneEjPKNS1_8OperatorEiPKPS2_b (1 samples, 0.01%)</title><rect x="609.8" y="437" width="0.1" height="15.0" fill="rgb(210,203,33)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="437" width="0.1" height="15.0" fill="rgb(216,93,33)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.13%)</title><rect x="229.3" y="709" width="1.6" height="15.0" fill="rgb(225,68,29)" rx="2" ry="2" />
<text text-anchor="" x="232.31" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Snapshot18DeserializeHandlerEPNS0_7IsolateENS0_11interpreter8BytecodeENS4_12OperandScaleE (1 samples, 0.01%)</title><rect x="582.9" y="645" width="0.1" height="15.0" fill="rgb(208,223,54)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="350.0" y="565" width="0.4" height="15.0" fill="rgb(233,1,1)" rx="2" ry="2" />
<text text-anchor="" x="353.05" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (126 samples, 1.39%)</title><rect x="968.2" y="693" width="16.4" height="15.0" fill="rgb(243,134,3)" rx="2" ry="2" />
<text text-anchor="" x="971.21" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="917" width="0.6" height="15.0" fill="rgb(225,130,8)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler9Scheduler11PrepareUsesEv (1 samples, 0.01%)</title><rect x="1181.5" y="597" width="0.2" height="15.0" fill="rgb(228,218,29)" rx="2" ry="2" />
<text text-anchor="" x="1184.52" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9,016 samples, 99.62%)</title><rect x="10.0" y="1061" width="1175.6" height="15.0" fill="rgb(226,213,48)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel.kallsyms]]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="75.1" y="645" width="0.5" height="15.0" fill="rgb(249,135,20)" rx="2" ry="2" />
<text text-anchor="" x="78.06" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="372.1" y="581" width="0.2" height="15.0" fill="rgb(250,210,16)" rx="2" ry="2" />
<text text-anchor="" x="375.08" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="482.3" y="453" width="0.1" height="15.0" fill="rgb(234,81,12)" rx="2" ry="2" />
<text text-anchor="" x="485.26" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="755.6" y="469" width="0.1" height="15.0" fill="rgb(205,15,44)" rx="2" ry="2" />
<text text-anchor="" x="758.55" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="927.5" y="645" width="0.4" height="15.0" fill="rgb(213,163,2)" rx="2" ry="2" />
<text text-anchor="" x="930.53" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="789" width="0.1" height="15.0" fill="rgb(215,173,35)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="1013" width="0.5" height="15.0" fill="rgb(253,140,2)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler13MoveOptimizer13OptimizeMergeEPNS1_16InstructionBlockE (1 samples, 0.01%)</title><rect x="373.9" y="37" width="0.1" height="15.0" fill="rgb(206,66,32)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12GraphReducer9ReduceTopEv (1 samples, 0.01%)</title><rect x="609.8" y="565" width="0.1" height="15.0" fill="rgb(245,217,29)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="853" width="0.6" height="15.0" fill="rgb(206,181,25)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl18SelectInstructionsEPNS1_7LinkageE (1 samples, 0.01%)</title><rect x="1186.5" y="949" width="0.1" height="15.0" fill="rgb(235,85,22)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.13%)</title><rect x="1187.8" y="901" width="1.5" height="15.0" fill="rgb(212,57,35)" rx="2" ry="2" />
<text text-anchor="" x="1190.78" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="789" width="0.6" height="15.0" fill="rgb(241,46,38)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="824.8" y="533" width="0.4" height="15.0" fill="rgb(227,146,9)" rx="2" ry="2" />
<text text-anchor="" x="827.79" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="389" width="0.1" height="15.0" fill="rgb(219,205,45)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (5 samples, 0.06%)</title><rect x="1081.3" y="693" width="0.6" height="15.0" fill="rgb(244,210,38)" rx="2" ry="2" />
<text text-anchor="" x="1084.26" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (2 samples, 0.02%)</title><rect x="372.9" y="629" width="0.2" height="15.0" fill="rgb(209,20,7)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="694.3" y="629" width="0.2" height="15.0" fill="rgb(224,97,24)" rx="2" ry="2" />
<text text-anchor="" x="697.27" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="1013" width="0.1" height="15.0" fill="rgb(223,62,24)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8GCTracer5StartENS0_16GarbageCollectorENS0_23GarbageCollectionReasonEPKc (1 samples, 0.01%)</title><rect x="1075.1" y="613" width="0.2" height="15.0" fill="rgb(253,7,6)" rx="2" ry="2" />
<text text-anchor="" x="1078.13" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15DeoptimizerDataC1EPNS0_4HeapE (1 samples, 0.01%)</title><rect x="11.3" y="965" width="0.1" height="15.0" fill="rgb(238,91,45)" rx="2" ry="2" />
<text text-anchor="" x="14.30" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="607.4" y="517" width="0.2" height="15.0" fill="rgb(227,1,12)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (3 samples, 0.03%)</title><rect x="376.0" y="645" width="0.4" height="15.0" fill="rgb(244,137,29)" rx="2" ry="2" />
<text text-anchor="" x="379.00" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="965" width="0.6" height="15.0" fill="rgb(229,165,27)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector18SelectInstructionsEv (1 samples, 0.01%)</title><rect x="1181.3" y="597" width="0.1" height="15.0" fill="rgb(223,174,40)" rx="2" ry="2" />
<text text-anchor="" x="1184.26" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="350.2" y="501" width="0.2" height="15.0" fill="rgb(231,12,35)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (3 samples, 0.03%)</title><rect x="584.1" y="661" width="0.4" height="15.0" fill="rgb(209,16,2)" rx="2" ry="2" />
<text text-anchor="" x="587.09" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="933" width="0.1" height="15.0" fill="rgb(224,39,20)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="949" width="0.6" height="15.0" fill="rgb(218,114,18)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="755.2" y="565" width="0.5" height="15.0" fill="rgb(215,63,32)" rx="2" ry="2" />
<text text-anchor="" x="758.16" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="805" width="1173.7" height="15.0" fill="rgb(242,58,13)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node12NodePlatform22CallOnBackgroundThreadEPN2v84TaskENS1_8Platform15ExpectedRuntimeE (1 samples, 0.01%)</title><rect x="1074.9" y="581" width="0.1" height="15.0" fill="rgb(245,150,11)" rx="2" ry="2" />
<text text-anchor="" x="1077.87" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="997" width="0.6" height="15.0" fill="rgb(224,144,19)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="755.2" y="549" width="0.5" height="15.0" fill="rgb(205,214,49)" rx="2" ry="2" />
<text text-anchor="" x="758.16" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="10.9" y="725" width="0.1" height="15.0" fill="rgb(254,127,14)" rx="2" ry="2" />
<text text-anchor="" x="13.91" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_119HandleApiCallHelperILb0EEENS0_11MaybeHandleINS0_6ObjectEEEPNS0_7IsolateENS0_6HandleINS0_10HeapObjectEEESA_NS8_INS0_20FunctionTemplateInfoEEENS8_IS4_EENS0_16BuiltinArgumentsE (1 samples, 0.01%)</title><rect x="373.9" y="645" width="0.1" height="15.0" fill="rgb(253,206,50)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler8Pipeline23GenerateCodeForCodeStubEPNS0_7IsolateEPNS1_14CallDescriptorEPNS1_5GraphEPNS1_8ScheduleENS0_4Code4KindEPKcjiPNS0_20JumpOptimizationInfoENS0_24PoisoningMitigationLevelE (1 samples, 0.01%)</title><rect x="373.9" y="101" width="0.1" height="15.0" fill="rgb(216,184,51)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="537.9" y="517" width="0.2" height="15.0" fill="rgb(228,199,29)" rx="2" ry="2" />
<text text-anchor="" x="540.94" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="757" width="1173.7" height="15.0" fill="rgb(211,66,52)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler16LiveRangeBuilder19ProcessInstructionsEPKNS1_16InstructionBlockEPNS0_9BitVectorE (1 samples, 0.01%)</title><rect x="609.9" y="549" width="0.1" height="15.0" fill="rgb(245,35,53)" rx="2" ry="2" />
<text text-anchor="" x="612.91" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="482.3" y="437" width="0.1" height="15.0" fill="rgb(254,15,20)" rx="2" ry="2" />
<text text-anchor="" x="485.26" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="773" width="0.1" height="15.0" fill="rgb(208,84,19)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="927.8" y="549" width="0.1" height="15.0" fill="rgb(209,171,44)" rx="2" ry="2" />
<text text-anchor="" x="930.79" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="684.9" y="661" width="0.6" height="15.0" fill="rgb(224,172,53)" rx="2" ry="2" />
<text text-anchor="" x="687.88" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="901" width="0.6" height="15.0" fill="rgb(225,159,17)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="309" width="0.1" height="15.0" fill="rgb(223,160,26)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler9Scheduler12ScheduleLateEv (1 samples, 0.01%)</title><rect x="1181.4" y="597" width="0.1" height="15.0" fill="rgb(233,203,33)" rx="2" ry="2" />
<text text-anchor="" x="1184.39" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19RootScavengeVisitor17VisitRootPointersENS0_4RootEPKcPPNS0_6ObjectES7_ (1 samples, 0.01%)</title><rect x="1074.6" y="565" width="0.1" height="15.0" fill="rgb(217,60,2)" rx="2" ry="2" />
<text text-anchor="" x="1077.61" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14ExecuteJobImplEv (8 samples, 0.09%)</title><rect x="1186.5" y="981" width="1.0" height="15.0" fill="rgb(221,178,17)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="685.1" y="613" width="0.4" height="15.0" fill="rgb(217,71,47)" rx="2" ry="2" />
<text text-anchor="" x="688.14" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Runtime_CompileOptimized_ConcurrentEiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="609.8" y="677" width="0.1" height="15.0" fill="rgb(228,112,21)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="607.4" y="501" width="0.2" height="15.0" fill="rgb(245,13,9)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (24 samples, 0.27%)</title><rect x="1173.6" y="709" width="3.1" height="15.0" fill="rgb(244,64,28)" rx="2" ry="2" />
<text text-anchor="" x="1176.57" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="229" width="0.1" height="15.0" fill="rgb(210,80,15)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9 samples, 0.10%)</title><rect x="372.7" y="661" width="1.2" height="15.0" fill="rgb(232,207,33)" rx="2" ry="2" />
<text text-anchor="" x="375.74" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (1,094 samples, 12.09%)</title><rect x="613.2" y="693" width="142.6" height="15.0" fill="rgb(254,73,23)" rx="2" ry="2" />
<text text-anchor="" x="616.17" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88internal33B..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="537.7" y="549" width="0.4" height="15.0" fill="rgb(246,219,48)" rx="2" ry="2" />
<text text-anchor="" x="540.68" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="482.0" y="597" width="0.4" height="15.0" fill="rgb(211,133,33)" rx="2" ry="2" />
<text text-anchor="" x="485.00" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="821" width="0.6" height="15.0" fill="rgb(210,174,53)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="607.4" y="645" width="0.2" height="15.0" fill="rgb(222,163,25)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="490.2" y="677" width="0.1" height="15.0" fill="rgb(232,167,15)" rx="2" ry="2" />
<text text-anchor="" x="493.21" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal23OptimizedCompilationJob10ExecuteJobEv (8 samples, 0.09%)</title><rect x="1186.5" y="997" width="1.0" height="15.0" fill="rgb(211,36,8)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="350.0" y="533" width="0.4" height="15.0" fill="rgb(252,91,52)" rx="2" ry="2" />
<text text-anchor="" x="353.05" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1185.7" y="773" width="0.5" height="15.0" fill="rgb(207,14,10)" rx="2" ry="2" />
<text text-anchor="" x="1188.70" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="609.8" y="405" width="0.1" height="15.0" fill="rgb(238,13,50)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler17ConstraintBuilder21MeetConstraintsBeforeEi (1 samples, 0.01%)</title><rect x="1181.1" y="581" width="0.2" height="15.0" fill="rgb(242,10,8)" rx="2" ry="2" />
<text text-anchor="" x="1184.13" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="869" width="0.2" height="15.0" fill="rgb(206,105,38)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="1045" width="0.5" height="15.0" fill="rgb(232,49,28)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4nodeL16BackgroundRunnerEPv (23 samples, 0.25%)</title><rect x="1186.5" y="1045" width="3.0" height="15.0" fill="rgb(241,97,11)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8CodeStub7GetCodeEv (1 samples, 0.01%)</title><rect x="373.9" y="149" width="0.1" height="15.0" fill="rgb(219,216,3)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.07%)</title><rect x="371.6" y="677" width="0.7" height="15.0" fill="rgb(230,69,16)" rx="2" ry="2" />
<text text-anchor="" x="374.56" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeGetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (4 samples, 0.04%)</title><rect x="1082.6" y="693" width="0.5" height="15.0" fill="rgb(235,210,44)" rx="2" ry="2" />
<text text-anchor="" x="1085.56" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="482.1" y="581" width="0.3" height="15.0" fill="rgb(221,83,52)" rx="2" ry="2" />
<text text-anchor="" x="485.13" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="277" width="0.1" height="15.0" fill="rgb(232,56,29)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (198 samples, 2.19%)</title><rect x="1049.6" y="661" width="25.8" height="15.0" fill="rgb(223,42,17)" rx="2" ry="2" />
<text text-anchor="" x="1052.57" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="694.3" y="581" width="0.2" height="15.0" fill="rgb(240,16,47)" rx="2" ry="2" />
<text text-anchor="" x="697.27" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="761.0" y="661" width="0.2" height="15.0" fill="rgb(253,48,19)" rx="2" ry="2" />
<text text-anchor="" x="764.03" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="755.2" y="597" width="0.5" height="15.0" fill="rgb(233,151,10)" rx="2" ry="2" />
<text text-anchor="" x="758.16" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.13%)</title><rect x="1187.8" y="821" width="1.5" height="15.0" fill="rgb(224,145,28)" rx="2" ry="2" />
<text text-anchor="" x="1190.78" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (9,050 samples, 100%)</title><rect x="10.0" y="1093" width="1180.0" height="15.0" fill="rgb(228,172,9)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler18SimplifiedLoweringC2EPNS1_7JSGraphEPNS0_4ZoneEPNS1_19SourcePositionTableEPNS1_15NodeOriginTableENS0_24PoisoningMitigationLevelE (5 samples, 0.06%)</title><rect x="1186.9" y="965" width="0.6" height="15.0" fill="rgb(221,223,31)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl18SelectInstructionsEPNS1_7LinkageE (2 samples, 0.02%)</title><rect x="1181.1" y="629" width="0.3" height="15.0" fill="rgb(248,221,50)" rx="2" ry="2" />
<text text-anchor="" x="1184.13" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="373.3" y="501" width="0.5" height="15.0" fill="rgb(208,39,40)" rx="2" ry="2" />
<text text-anchor="" x="376.26" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="75.1" y="725" width="0.5" height="15.0" fill="rgb(224,73,54)" rx="2" ry="2" />
<text text-anchor="" x="78.06" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="685.4" y="533" width="0.1" height="15.0" fill="rgb(246,78,48)" rx="2" ry="2" />
<text text-anchor="" x="688.40" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.23.so] (5 samples, 0.06%)</title><rect x="1185.6" y="1061" width="0.6" height="15.0" fill="rgb(226,189,35)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="533" width="0.1" height="15.0" fill="rgb(208,125,26)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="10.1" y="1029" width="0.2" height="15.0" fill="rgb(243,166,39)" rx="2" ry="2" />
<text text-anchor="" x="13.13" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal22SerializerDeserializer7IterateEPNS0_7IsolateEPNS0_11RootVisitorE (1 samples, 0.01%)</title><rect x="1074.7" y="581" width="0.2" height="15.0" fill="rgb(248,86,37)" rx="2" ry="2" />
<text text-anchor="" x="1077.74" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (23 samples, 0.25%)</title><rect x="1186.5" y="1061" width="3.0" height="15.0" fill="rgb(210,143,42)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="373.3" y="421" width="0.5" height="15.0" fill="rgb(219,25,43)" rx="2" ry="2" />
<text text-anchor="" x="376.26" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="869" width="1173.7" height="15.0" fill="rgb(206,149,25)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19Runtime_CompileLazyEiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="373.0" y="565" width="0.1" height="15.0" fill="rgb(238,23,51)" rx="2" ry="2" />
<text text-anchor="" x="376.00" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="755.2" y="613" width="0.5" height="15.0" fill="rgb(236,202,27)" rx="2" ry="2" />
<text text-anchor="" x="758.16" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.07%)</title><rect x="349.7" y="693" width="0.7" height="15.0" fill="rgb(243,169,22)" rx="2" ry="2" />
<text text-anchor="" x="352.66" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1014.5" y="613" width="0.1" height="15.0" fill="rgb(239,153,47)" rx="2" ry="2" />
<text text-anchor="" x="1017.50" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="764.8" y="629" width="0.1" height="15.0" fill="rgb(213,41,15)" rx="2" ry="2" />
<text text-anchor="" x="767.81" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="869" width="0.6" height="15.0" fill="rgb(212,19,11)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.09%)</title><rect x="229.8" y="597" width="1.1" height="15.0" fill="rgb(243,208,45)" rx="2" ry="2" />
<text text-anchor="" x="232.83" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="805" width="0.1" height="15.0" fill="rgb(206,130,41)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (6 samples, 0.07%)</title><rect x="1080.5" y="693" width="0.8" height="15.0" fill="rgb(223,131,16)" rx="2" ry="2" />
<text text-anchor="" x="1083.48" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (119 samples, 1.31%)</title><rect x="969.1" y="677" width="15.5" height="15.0" fill="rgb(205,56,16)" rx="2" ry="2" />
<text text-anchor="" x="972.12" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="885" width="0.5" height="15.0" fill="rgb(249,127,3)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE (3 samples, 0.03%)</title><rect x="1186.5" y="965" width="0.4" height="15.0" fill="rgb(218,98,16)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (585 samples, 6.46%)</title><rect x="496.6" y="661" width="76.3" height="15.0" fill="rgb(215,58,38)" rx="2" ry="2" />
<text text-anchor="" x="499.60" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl18SelectInstructionsEPNS1_7LinkageE (1 samples, 0.01%)</title><rect x="373.9" y="85" width="0.1" height="15.0" fill="rgb(211,203,10)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Compiler7CompileENS0_6HandleINS0_10JSFunctionEEENS1_18ClearExceptionFlagE (1 samples, 0.01%)</title><rect x="373.0" y="549" width="0.1" height="15.0" fill="rgb(212,160,31)" rx="2" ry="2" />
<text text-anchor="" x="376.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="565" width="0.1" height="15.0" fill="rgb(237,43,45)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="609.8" y="357" width="0.1" height="15.0" fill="rgb(245,123,7)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="482.3" y="485" width="0.1" height="15.0" fill="rgb(211,24,9)" rx="2" ry="2" />
<text text-anchor="" x="485.26" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (23 samples, 0.25%)</title><rect x="761.2" y="677" width="3.0" height="15.0" fill="rgb(233,223,9)" rx="2" ry="2" />
<text text-anchor="" x="764.16" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="789" width="0.2" height="15.0" fill="rgb(208,154,48)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="694.4" y="485" width="0.1" height="15.0" fill="rgb(227,106,51)" rx="2" ry="2" />
<text text-anchor="" x="697.40" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="755.2" y="517" width="0.5" height="15.0" fill="rgb(226,133,33)" rx="2" ry="2" />
<text text-anchor="" x="758.16" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1185.2" y="661" width="0.1" height="15.0" fill="rgb(212,83,11)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal8compiler4Type6SlowIsES2_ (1 samples, 0.01%)</title><rect x="1186.7" y="885" width="0.2" height="15.0" fill="rgb(251,191,46)" rx="2" ry="2" />
<text text-anchor="" x="1189.74" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="837" width="0.6" height="15.0" fill="rgb(215,53,14)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="405" width="0.1" height="15.0" fill="rgb(230,96,35)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Compiler16CompileOptimizedENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeE (1 samples, 0.01%)</title><rect x="1077.3" y="677" width="0.2" height="15.0" fill="rgb(232,26,50)" rx="2" ry="2" />
<text text-anchor="" x="1080.35" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="485" width="0.1" height="15.0" fill="rgb(206,43,1)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1186.9" y="853" width="0.6" height="15.0" fill="rgb(215,159,15)" rx="2" ry="2" />
<text text-anchor="" x="1189.87" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (23 samples, 0.25%)</title><rect x="377.8" y="661" width="3.0" height="15.0" fill="rgb(223,33,6)" rx="2" ry="2" />
<text text-anchor="" x="380.82" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_116GetOptimizedCodeENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_9BailoutIdEPNS0_15JavaScriptFrameE (1 samples, 0.01%)</title><rect x="1077.3" y="661" width="0.2" height="15.0" fill="rgb(213,189,37)" rx="2" ry="2" />
<text text-anchor="" x="1080.35" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_csu_init (1 samples, 0.01%)</title><rect x="1186.2" y="1061" width="0.1" height="15.0" fill="rgb(239,213,45)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="357" width="0.1" height="15.0" fill="rgb(245,99,28)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="245" width="0.1" height="15.0" fill="rgb(232,217,39)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="373.3" y="405" width="0.5" height="15.0" fill="rgb(214,124,25)" rx="2" ry="2" />
<text text-anchor="" x="376.26" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="607.4" y="565" width="0.2" height="15.0" fill="rgb(211,52,26)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="853" width="0.6" height="15.0" fill="rgb(216,22,25)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="582.9" y="517" width="0.1" height="15.0" fill="rgb(253,21,25)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler29JSNativeContextSpecialization17ReduceJSLoadNamedEPNS1_4NodeE (1 samples, 0.01%)</title><rect x="609.8" y="517" width="0.1" height="15.0" fill="rgb(250,10,34)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (40 samples, 0.44%)</title><rect x="1016.6" y="677" width="5.2" height="15.0" fill="rgb(224,218,35)" rx="2" ry="2" />
<text text-anchor="" x="1019.59" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (13 samples, 0.14%)</title><rect x="1187.7" y="981" width="1.6" height="15.0" fill="rgb(215,20,6)" rx="2" ry="2" />
<text text-anchor="" x="1190.65" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="293" width="0.1" height="15.0" fill="rgb(245,90,13)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (4 samples, 0.04%)</title><rect x="374.6" y="661" width="0.5" height="15.0" fill="rgb(227,153,52)" rx="2" ry="2" />
<text text-anchor="" x="377.56" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (69 samples, 0.76%)</title><rect x="685.5" y="661" width="9.0" height="15.0" fill="rgb(219,63,9)" rx="2" ry="2" />
<text text-anchor="" x="688.53" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="901" width="0.5" height="15.0" fill="rgb(244,72,33)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v87Isolate10InitializeEPS0_RKNS0_12CreateParamsE (1 samples, 0.01%)</title><rect x="11.3" y="997" width="0.1" height="15.0" fill="rgb(209,28,39)" rx="2" ry="2" />
<text text-anchor="" x="14.30" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="549" width="0.1" height="15.0" fill="rgb(254,57,51)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="755.4" y="485" width="0.3" height="15.0" fill="rgb(211,180,41)" rx="2" ry="2" />
<text text-anchor="" x="758.42" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="824.8" y="565" width="0.4" height="15.0" fill="rgb(231,191,51)" rx="2" ry="2" />
<text text-anchor="" x="827.79" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="764.8" y="661" width="0.1" height="15.0" fill="rgb(236,15,16)" rx="2" ry="2" />
<text text-anchor="" x="767.81" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Compiler16CompileOptimizedENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeE (1 samples, 0.01%)</title><rect x="609.8" y="661" width="0.1" height="15.0" fill="rgb(236,229,27)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (4 samples, 0.04%)</title><rect x="374.0" y="645" width="0.6" height="15.0" fill="rgb(205,172,19)" rx="2" ry="2" />
<text text-anchor="" x="377.04" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="549" width="0.1" height="15.0" fill="rgb(226,149,46)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (7 samples, 0.08%)</title><rect x="375.5" y="677" width="0.9" height="15.0" fill="rgb(224,176,14)" rx="2" ry="2" />
<text text-anchor="" x="378.47" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="517" width="0.1" height="15.0" fill="rgb(251,74,37)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (5 samples, 0.06%)</title><rect x="1088.7" y="693" width="0.6" height="15.0" fill="rgb(231,141,53)" rx="2" ry="2" />
<text text-anchor="" x="1091.69" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="440.8" y="613" width="0.4" height="15.0" fill="rgb(230,152,41)" rx="2" ry="2" />
<text text-anchor="" x="443.80" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (6 samples, 0.07%)</title><rect x="764.2" y="677" width="0.7" height="15.0" fill="rgb(253,164,45)" rx="2" ry="2" />
<text text-anchor="" x="767.16" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node5StartEiPPc (9,004 samples, 99.49%)</title><rect x="11.3" y="1029" width="1174.0" height="15.0" fill="rgb(232,130,51)" rx="2" ry="2" />
<text text-anchor="" x="14.30" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN4node5StartEiPPc</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector31AddInputsToFrameStateDescriptorEPNS1_20FrameStateDescriptorEPNS1_4NodeEPNS1_16OperandGeneratorEPNS1_23StateObjectDeduplicatorEPNS0_10ZoneVectorINS1_18InstructionOperandEEENS1_19FrameStateInputKindEPNS0_4ZoneE (1 samples, 0.01%)</title><rect x="610.2" y="469" width="0.1" height="15.0" fill="rgb(253,79,47)" rx="2" ry="2" />
<text text-anchor="" x="613.17" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="694.4" y="565" width="0.1" height="15.0" fill="rgb(205,79,43)" rx="2" ry="2" />
<text text-anchor="" x="697.40" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22RepresentationSelector18UpdateFeedbackTypeEPNS1_4NodeE (2 samples, 0.02%)</title><rect x="1186.6" y="933" width="0.3" height="15.0" fill="rgb(252,127,5)" rx="2" ry="2" />
<text text-anchor="" x="1189.61" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (682 samples, 7.54%)</title><rect x="879.3" y="677" width="88.9" height="15.0" fill="rgb(212,143,30)" rx="2" ry="2" />
<text text-anchor="" x="882.29" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88int..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="853" width="0.1" height="15.0" fill="rgb(248,111,48)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="981" width="0.6" height="15.0" fill="rgb(250,24,23)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="10.0" y="1029" width="0.1" height="15.0" fill="rgb(252,71,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="1029" width="0.5" height="15.0" fill="rgb(219,25,9)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (1 samples, 0.01%)</title><rect x="375.9" y="645" width="0.1" height="15.0" fill="rgb(249,57,35)" rx="2" ry="2" />
<text text-anchor="" x="378.87" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler9Scheduler15ComputeScheduleEPNS0_4ZoneEPNS1_5GraphENS_4base5FlagsINS2_4FlagEiEE (1 samples, 0.01%)</title><rect x="1181.5" y="613" width="0.2" height="15.0" fill="rgb(232,99,6)" rx="2" ry="2" />
<text text-anchor="" x="1184.52" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler17ConstraintBuilder23MeetRegisterConstraintsEv (1 samples, 0.01%)</title><rect x="1181.1" y="597" width="0.2" height="15.0" fill="rgb(231,199,9)" rx="2" ry="2" />
<text text-anchor="" x="1184.13" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (316 samples, 3.49%)</title><rect x="441.2" y="645" width="41.2" height="15.0" fill="rgb(241,115,42)" rx="2" ry="2" />
<text text-anchor="" x="444.19" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (66 samples, 0.73%)</title><rect x="1006.0" y="661" width="8.6" height="15.0" fill="rgb(218,208,40)" rx="2" ry="2" />
<text text-anchor="" x="1009.02" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (4 samples, 0.04%)</title><rect x="1023.0" y="677" width="0.5" height="15.0" fill="rgb(215,156,46)" rx="2" ry="2" />
<text text-anchor="" x="1025.97" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="837" width="0.2" height="15.0" fill="rgb(210,215,5)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.13%)</title><rect x="1187.8" y="869" width="1.5" height="15.0" fill="rgb(241,181,30)" rx="2" ry="2" />
<text text-anchor="" x="1190.78" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.07%)</title><rect x="349.7" y="629" width="0.7" height="15.0" fill="rgb(230,31,41)" rx="2" ry="2" />
<text text-anchor="" x="352.66" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector10VisitBlockEPNS1_10BasicBlockE (1 samples, 0.01%)</title><rect x="1181.3" y="581" width="0.1" height="15.0" fill="rgb(242,221,19)" rx="2" ry="2" />
<text text-anchor="" x="1184.26" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Compiler7CompileENS0_6HandleINS0_18SharedFunctionInfoEEENS1_18ClearExceptionFlagE (1 samples, 0.01%)</title><rect x="373.0" y="533" width="0.1" height="15.0" fill="rgb(213,154,25)" rx="2" ry="2" />
<text text-anchor="" x="376.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="981" width="0.1" height="15.0" fill="rgb(228,190,21)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1185.2" y="565" width="0.1" height="15.0" fill="rgb(210,66,23)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1185.7" y="805" width="0.5" height="15.0" fill="rgb(228,110,46)" rx="2" ry="2" />
<text text-anchor="" x="1188.70" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (714 samples, 7.89%)</title><rect x="875.1" y="693" width="93.1" height="15.0" fill="rgb(214,198,13)" rx="2" ry="2" />
<text text-anchor="" x="878.12" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="75.1" y="597" width="0.5" height="15.0" fill="rgb(222,45,42)" rx="2" ry="2" />
<text text-anchor="" x="78.06" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="373.3" y="389" width="0.5" height="15.0" fill="rgb(245,195,9)" rx="2" ry="2" />
<text text-anchor="" x="376.26" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node20SigintWatchdogHelperC1Ev (1 samples, 0.01%)</title><rect x="1186.2" y="1045" width="0.1" height="15.0" fill="rgb(205,21,26)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="533" width="0.1" height="15.0" fill="rgb(236,181,38)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="933" width="0.6" height="15.0" fill="rgb(208,139,6)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10PagedSpace20SetReadAndExecutableEv (1 samples, 0.01%)</title><rect x="582.9" y="629" width="0.1" height="15.0" fill="rgb(235,155,25)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE (3 samples, 0.03%)</title><rect x="609.9" y="613" width="0.4" height="15.0" fill="rgb(251,79,29)" rx="2" ry="2" />
<text text-anchor="" x="612.91" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1130.3" y="517" width="0.1" height="15.0" fill="rgb(233,39,16)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="789" width="1173.7" height="15.0" fill="rgb(235,58,23)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="372.9" y="485" width="0.1" height="15.0" fill="rgb(247,157,39)" rx="2" ry="2" />
<text text-anchor="" x="375.87" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="885" width="0.6" height="15.0" fill="rgb(238,186,2)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.13%)</title><rect x="229.3" y="677" width="1.6" height="15.0" fill="rgb(217,86,21)" rx="2" ry="2" />
<text text-anchor="" x="232.31" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="933" width="0.6" height="15.0" fill="rgb(247,90,20)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_sse2 (1 samples, 0.01%)</title><rect x="373.0" y="485" width="0.1" height="15.0" fill="rgb(216,35,32)" rx="2" ry="2" />
<text text-anchor="" x="376.00" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="373.3" y="517" width="0.5" height="15.0" fill="rgb(214,122,49)" rx="2" ry="2" />
<text text-anchor="" x="376.26" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1186.2" y="757" width="0.1" height="15.0" fill="rgb(226,81,45)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (3 samples, 0.03%)</title><rect x="1081.9" y="693" width="0.4" height="15.0" fill="rgb(209,69,39)" rx="2" ry="2" />
<text text-anchor="" x="1084.91" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1014.5" y="533" width="0.1" height="15.0" fill="rgb(240,173,33)" rx="2" ry="2" />
<text text-anchor="" x="1017.50" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11interpreter11Interpreter37GetAndMaybeDeserializeBytecodeHandlerENS1_8BytecodeENS1_12OperandScaleE (1 samples, 0.01%)</title><rect x="582.9" y="661" width="0.1" height="15.0" fill="rgb(216,18,28)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="453" width="0.1" height="15.0" fill="rgb(213,182,14)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (9 samples, 0.10%)</title><rect x="1077.5" y="693" width="1.1" height="15.0" fill="rgb(217,163,30)" rx="2" ry="2" />
<text text-anchor="" x="1080.48" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___mprotect (1 samples, 0.01%)</title><rect x="582.9" y="581" width="0.1" height="15.0" fill="rgb(241,65,29)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="373.3" y="437" width="0.5" height="15.0" fill="rgb(250,62,3)" rx="2" ry="2" />
<text text-anchor="" x="376.26" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node15LoadEnvironmentEPNS_11EnvironmentE (9,002 samples, 99.47%)</title><rect x="11.6" y="997" width="1173.7" height="15.0" fill="rgb(232,65,53)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN4node15LoadEnvironmentEPNS_11EnvironmentE</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (244 samples, 2.70%)</title><rect x="538.1" y="645" width="31.8" height="15.0" fill="rgb(209,51,6)" rx="2" ry="2" />
<text text-anchor="" x="541.07" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="537.7" y="613" width="0.4" height="15.0" fill="rgb(229,67,24)" rx="2" ry="2" />
<text text-anchor="" x="540.68" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="230.6" y="565" width="0.3" height="15.0" fill="rgb(248,148,26)" rx="2" ry="2" />
<text text-anchor="" x="233.61" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="755.2" y="581" width="0.5" height="15.0" fill="rgb(205,197,47)" rx="2" ry="2" />
<text text-anchor="" x="758.16" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="10.0" y="965" width="0.1" height="15.0" fill="rgb(215,6,8)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap8ScavengeEv (5 samples, 0.06%)</title><rect x="1074.3" y="597" width="0.7" height="15.0" fill="rgb(220,110,1)" rx="2" ry="2" />
<text text-anchor="" x="1077.35" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1185.2" y="645" width="0.1" height="15.0" fill="rgb(238,132,54)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector31AddInputsToFrameStateDescriptorEPNS1_20FrameStateDescriptorEPNS1_4NodeEPNS1_16OperandGeneratorEPNS1_23StateObjectDeduplicatorEPNS0_10ZoneVectorINS1_18InstructionOperandEEENS1_19FrameStateInputKindEPNS0_4ZoneE (1 samples, 0.01%)</title><rect x="1181.3" y="517" width="0.1" height="15.0" fill="rgb(251,22,4)" rx="2" ry="2" />
<text text-anchor="" x="1184.26" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector9VisitNodeEPNS1_4NodeE (1 samples, 0.01%)</title><rect x="610.2" y="533" width="0.1" height="15.0" fill="rgb(216,173,4)" rx="2" ry="2" />
<text text-anchor="" x="613.17" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>node (9,046 samples, 99.96%)</title><rect x="10.0" y="1077" width="1179.5" height="15.0" fill="rgb(232,153,8)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >node</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Snapshot10InitializeEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="11.3" y="981" width="0.1" height="15.0" fill="rgb(245,215,3)" rx="2" ry="2" />
<text text-anchor="" x="14.30" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (1 samples, 0.01%)</title><rect x="1186.3" y="1061" width="0.2" height="15.0" fill="rgb(224,204,53)" rx="2" ry="2" />
<text text-anchor="" x="1189.35" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="694.4" y="437" width="0.1" height="15.0" fill="rgb(213,224,1)" rx="2" ry="2" />
<text text-anchor="" x="697.40" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="968.1" y="581" width="0.1" height="15.0" fill="rgb(206,100,27)" rx="2" ry="2" />
<text text-anchor="" x="971.08" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1187.0" y="725" width="0.5" height="15.0" fill="rgb(240,23,43)" rx="2" ry="2" />
<text text-anchor="" x="1190.00" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1016.5" y="645" width="0.1" height="15.0" fill="rgb(211,110,0)" rx="2" ry="2" />
<text text-anchor="" x="1019.46" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="990.6" y="645" width="0.2" height="15.0" fill="rgb(253,112,6)" rx="2" ry="2" />
<text text-anchor="" x="993.64" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="75.1" y="613" width="0.5" height="15.0" fill="rgb(240,212,13)" rx="2" ry="2" />
<text text-anchor="" x="78.06" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf (4 samples, 0.04%)</title><rect x="1189.5" y="1077" width="0.5" height="15.0" fill="rgb(242,25,49)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1130.3" y="565" width="0.1" height="15.0" fill="rgb(243,208,51)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="805" width="0.2" height="15.0" fill="rgb(244,123,34)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14ExecuteJobImplEv (3 samples, 0.03%)</title><rect x="609.9" y="629" width="0.4" height="15.0" fill="rgb(247,190,12)" rx="2" ry="2" />
<text text-anchor="" x="612.91" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.3" y="869" width="0.1" height="15.0" fill="rgb(253,21,36)" rx="2" ry="2" />
<text text-anchor="" x="14.30" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="761.0" y="613" width="0.2" height="15.0" fill="rgb(221,177,49)" rx="2" ry="2" />
<text text-anchor="" x="764.03" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_23GarbageCollectionReasonENS_15GCCallbackFlagsE (7 samples, 0.08%)</title><rect x="1074.3" y="629" width="1.0" height="15.0" fill="rgb(251,220,18)" rx="2" ry="2" />
<text text-anchor="" x="1077.35" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1185.2" y="709" width="0.1" height="15.0" fill="rgb(214,182,53)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1187.0" y="709" width="0.5" height="15.0" fill="rgb(247,158,54)" rx="2" ry="2" />
<text text-anchor="" x="1190.00" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeSetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (3 samples, 0.03%)</title><rect x="375.1" y="661" width="0.4" height="15.0" fill="rgb(223,122,41)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (36 samples, 0.40%)</title><rect x="1069.7" y="629" width="4.6" height="15.0" fill="rgb(210,182,40)" rx="2" ry="2" />
<text text-anchor="" x="1072.65" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (14 samples, 0.15%)</title><rect x="1078.6" y="693" width="1.9" height="15.0" fill="rgb(236,35,4)" rx="2" ry="2" />
<text text-anchor="" x="1081.65" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="869" width="0.6" height="15.0" fill="rgb(248,30,54)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (4 samples, 0.04%)</title><rect x="374.6" y="645" width="0.5" height="15.0" fill="rgb(227,73,16)" rx="2" ry="2" />
<text text-anchor="" x="377.56" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="609.8" y="389" width="0.1" height="15.0" fill="rgb(217,65,30)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="685.0" y="629" width="0.5" height="15.0" fill="rgb(224,164,2)" rx="2" ry="2" />
<text text-anchor="" x="688.01" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (13 samples, 0.14%)</title><rect x="1187.7" y="997" width="1.6" height="15.0" fill="rgb(213,16,47)" rx="2" ry="2" />
<text text-anchor="" x="1190.65" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.13%)</title><rect x="1187.8" y="853" width="1.5" height="15.0" fill="rgb(254,10,42)" rx="2" ry="2" />
<text text-anchor="" x="1190.78" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (271 samples, 2.99%)</title><rect x="932.9" y="661" width="35.3" height="15.0" fill="rgb(236,129,2)" rx="2" ry="2" />
<text text-anchor="" x="935.88" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.07%)</title><rect x="230.1" y="581" width="0.8" height="15.0" fill="rgb(211,31,16)" rx="2" ry="2" />
<text text-anchor="" x="233.09" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1185.2" y="629" width="0.1" height="15.0" fill="rgb(253,154,40)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="927.7" y="597" width="0.2" height="15.0" fill="rgb(247,74,7)" rx="2" ry="2" />
<text text-anchor="" x="930.66" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.13%)</title><rect x="1187.8" y="917" width="1.5" height="15.0" fill="rgb(216,109,45)" rx="2" ry="2" />
<text text-anchor="" x="1190.78" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Compiler16CompileOptimizedENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeE (4 samples, 0.04%)</title><rect x="1181.1" y="693" width="0.6" height="15.0" fill="rgb(206,211,18)" rx="2" ry="2" />
<text text-anchor="" x="1184.13" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (23 samples, 0.25%)</title><rect x="1182.3" y="725" width="3.0" height="15.0" fill="rgb(249,172,21)" rx="2" ry="2" />
<text text-anchor="" x="1185.31" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (4 samples, 0.04%)</title><rect x="374.0" y="661" width="0.6" height="15.0" fill="rgb(215,48,50)" rx="2" ry="2" />
<text text-anchor="" x="377.04" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="694.4" y="517" width="0.1" height="15.0" fill="rgb(233,148,40)" rx="2" ry="2" />
<text text-anchor="" x="697.40" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14ExecuteJobImplEv (4 samples, 0.04%)</title><rect x="1181.1" y="661" width="0.6" height="15.0" fill="rgb(229,10,33)" rx="2" ry="2" />
<text text-anchor="" x="1184.13" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="349.8" y="581" width="0.6" height="15.0" fill="rgb(249,101,5)" rx="2" ry="2" />
<text text-anchor="" x="352.79" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1130.3" y="581" width="0.1" height="15.0" fill="rgb(246,94,50)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="917" width="0.6" height="15.0" fill="rgb(210,29,11)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="885" width="1173.7" height="15.0" fill="rgb(213,169,2)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12GraphTrimmer9TrimGraphEv (1 samples, 0.01%)</title><rect x="1077.3" y="597" width="0.2" height="15.0" fill="rgb(234,18,48)" rx="2" ry="2" />
<text text-anchor="" x="1080.35" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.3" y="917" width="0.1" height="15.0" fill="rgb(240,71,45)" rx="2" ry="2" />
<text text-anchor="" x="14.30" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1014.5" y="597" width="0.1" height="15.0" fill="rgb(208,11,40)" rx="2" ry="2" />
<text text-anchor="" x="1017.50" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.07%)</title><rect x="349.7" y="677" width="0.7" height="15.0" fill="rgb(239,107,19)" rx="2" ry="2" />
<text text-anchor="" x="352.66" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector20InitializeCallBufferEPNS1_4NodeEPNS1_10CallBufferENS_4base5FlagsINS2_14CallBufferFlagEiEEbi (1 samples, 0.01%)</title><rect x="1181.3" y="533" width="0.1" height="15.0" fill="rgb(229,6,21)" rx="2" ry="2" />
<text text-anchor="" x="1184.26" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1185.2" y="677" width="0.1" height="15.0" fill="rgb(222,198,10)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (9 samples, 0.10%)</title><rect x="380.8" y="661" width="1.2" height="15.0" fill="rgb(253,167,5)" rx="2" ry="2" />
<text text-anchor="" x="383.82" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal16TurboFanCodeStub12GenerateCodeEv (1 samples, 0.01%)</title><rect x="373.9" y="133" width="0.1" height="15.0" fill="rgb(233,40,18)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.3" y="885" width="0.1" height="15.0" fill="rgb(210,43,23)" rx="2" ry="2" />
<text text-anchor="" x="14.30" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_consolidate (1 samples, 0.01%)</title><rect x="10.3" y="1029" width="0.1" height="15.0" fill="rgb(233,3,28)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_116GetOptimizedCodeENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_9BailoutIdEPNS0_15JavaScriptFrameE (3 samples, 0.03%)</title><rect x="609.9" y="645" width="0.4" height="15.0" fill="rgb(246,130,6)" rx="2" ry="2" />
<text text-anchor="" x="612.91" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11MemoryChunk20SetReadAndExecutableEv (1 samples, 0.01%)</title><rect x="582.9" y="613" width="0.1" height="15.0" fill="rgb(245,101,7)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="824.7" y="613" width="0.5" height="15.0" fill="rgb(222,80,10)" rx="2" ry="2" />
<text text-anchor="" x="827.66" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="75.1" y="709" width="0.5" height="15.0" fill="rgb(247,81,43)" rx="2" ry="2" />
<text text-anchor="" x="78.06" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_ (9,002 samples, 99.47%)</title><rect x="11.6" y="965" width="1173.7" height="15.0" fill="rgb(252,2,41)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="694.4" y="549" width="0.1" height="15.0" fill="rgb(238,70,23)" rx="2" ry="2" />
<text text-anchor="" x="697.40" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (5 samples, 0.06%)</title><rect x="1181.7" y="709" width="0.6" height="15.0" fill="rgb(247,200,10)" rx="2" ry="2" />
<text text-anchor="" x="1184.66" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1185.2" y="533" width="0.1" height="15.0" fill="rgb(235,66,12)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="482.0" y="613" width="0.4" height="15.0" fill="rgb(242,63,37)" rx="2" ry="2" />
<text text-anchor="" x="485.00" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (48 samples, 0.53%)</title><rect x="1015.5" y="693" width="6.3" height="15.0" fill="rgb(226,53,32)" rx="2" ry="2" />
<text text-anchor="" x="1018.54" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (13 samples, 0.14%)</title><rect x="1187.7" y="1013" width="1.6" height="15.0" fill="rgb(237,37,0)" rx="2" ry="2" />
<text text-anchor="" x="1190.65" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="10.4" y="885" width="0.6" height="15.0" fill="rgb(205,187,32)" rx="2" ry="2" />
<text text-anchor="" x="13.39" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler9Scheduler15ComputeScheduleEPNS0_4ZoneEPNS1_5GraphENS_4base5FlagsINS2_4FlagEiEE (1 samples, 0.01%)</title><rect x="1181.4" y="613" width="0.1" height="15.0" fill="rgb(225,207,33)" rx="2" ry="2" />
<text text-anchor="" x="1184.39" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (17 samples, 0.19%)</title><rect x="607.6" y="645" width="2.2" height="15.0" fill="rgb(247,116,35)" rx="2" ry="2" />
<text text-anchor="" x="610.56" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="373.3" y="485" width="0.5" height="15.0" fill="rgb(245,41,11)" rx="2" ry="2" />
<text text-anchor="" x="376.26" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="755.2" y="645" width="0.5" height="15.0" fill="rgb(234,176,21)" rx="2" ry="2" />
<text text-anchor="" x="758.16" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="949" width="0.5" height="15.0" fill="rgb(215,92,9)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (8 samples, 0.09%)</title><rect x="611.9" y="677" width="1.0" height="15.0" fill="rgb(228,31,14)" rx="2" ry="2" />
<text text-anchor="" x="614.87" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="75.1" y="677" width="0.5" height="15.0" fill="rgb(215,60,12)" rx="2" ry="2" />
<text text-anchor="" x="78.06" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="373.8" y="645" width="0.1" height="15.0" fill="rgb(228,156,53)" rx="2" ry="2" />
<text text-anchor="" x="376.78" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler29JSNativeContextSpecialization17ReduceNamedAccessEPNS1_4NodeES4_RKSt6vectorINS0_6HandleINS0_3MapEEESaIS8_EENS6_INS0_4NameEEENS1_10AccessModeES4_ (1 samples, 0.01%)</title><rect x="609.8" y="485" width="0.1" height="15.0" fill="rgb(218,164,28)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1014.5" y="549" width="0.1" height="15.0" fill="rgb(206,80,30)" rx="2" ry="2" />
<text text-anchor="" x="1017.50" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="230.7" y="533" width="0.2" height="15.0" fill="rgb(250,204,17)" rx="2" ry="2" />
<text text-anchor="" x="233.74" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1185.7" y="789" width="0.5" height="15.0" fill="rgb(216,157,25)" rx="2" ry="2" />
<text text-anchor="" x="1188.70" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7parsing13ParseFunctionEPNS0_9ParseInfoENS0_6HandleINS0_18SharedFunctionInfoEEEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="373.0" y="517" width="0.1" height="15.0" fill="rgb(219,194,34)" rx="2" ry="2" />
<text text-anchor="" x="376.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1014.5" y="645" width="0.1" height="15.0" fill="rgb(235,88,22)" rx="2" ry="2" />
<text text-anchor="" x="1017.50" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (2 samples, 0.02%)</title><rect x="990.8" y="677" width="0.2" height="15.0" fill="rgb(245,162,4)" rx="2" ry="2" />
<text text-anchor="" x="993.77" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="1189.5" y="965" width="0.5" height="15.0" fill="rgb(213,154,2)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19LinearScanAllocator25FindFreeRegistersForRangeEPNS1_9LiveRangeENS0_6VectorINS1_16LifetimePositionEEE (1 samples, 0.01%)</title><rect x="1186.5" y="885" width="0.1" height="15.0" fill="rgb(217,194,48)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7IsolateC2Ev (1 samples, 0.01%)</title><rect x="11.4" y="997" width="0.2" height="15.0" fill="rgb(247,216,25)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (2 samples, 0.02%)</title><rect x="374.8" y="629" width="0.3" height="15.0" fill="rgb(225,2,18)" rx="2" ry="2" />
<text text-anchor="" x="377.82" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.04%)</title><rect x="373.3" y="357" width="0.5" height="15.0" fill="rgb(221,71,29)" rx="2" ry="2" />
<text text-anchor="" x="376.26" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="440.8" y="645" width="0.4" height="15.0" fill="rgb(240,30,16)" rx="2" ry="2" />
<text text-anchor="" x="443.80" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_23GarbageCollectionReasonENS_15GCCallbackFlagsE (1 samples, 0.01%)</title><rect x="1067.4" y="645" width="0.2" height="15.0" fill="rgb(244,157,32)" rx="2" ry="2" />
<text text-anchor="" x="1070.44" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="990.6" y="661" width="0.2" height="15.0" fill="rgb(235,27,6)" rx="2" ry="2" />
<text text-anchor="" x="993.64" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler18SimplifiedLowering13LowerAllNodesEv (2 samples, 0.02%)</title><rect x="1186.6" y="949" width="0.3" height="15.0" fill="rgb(215,185,10)" rx="2" ry="2" />
<text text-anchor="" x="1189.61" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (18 samples, 0.20%)</title><rect x="1047.2" y="661" width="2.4" height="15.0" fill="rgb(249,22,11)" rx="2" ry="2" />
<text text-anchor="" x="1050.23" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (24 samples, 0.27%)</title><rect x="372.3" y="677" width="3.2" height="15.0" fill="rgb(218,166,54)" rx="2" ry="2" />
<text text-anchor="" x="375.34" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="761.0" y="677" width="0.2" height="15.0" fill="rgb(239,79,46)" rx="2" ry="2" />
<text text-anchor="" x="764.03" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="694.3" y="613" width="0.2" height="15.0" fill="rgb(218,152,19)" rx="2" ry="2" />
<text text-anchor="" x="697.27" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1185.2" y="581" width="0.1" height="15.0" fill="rgb(242,25,19)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="694.3" y="645" width="0.2" height="15.0" fill="rgb(238,42,29)" rx="2" ry="2" />
<text text-anchor="" x="697.27" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="582.9" y="501" width="0.1" height="15.0" fill="rgb(221,206,42)" rx="2" ry="2" />
<text text-anchor="" x="585.92" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.4" y="965" width="0.2" height="15.0" fill="rgb(228,229,18)" rx="2" ry="2" />
<text text-anchor="" x="14.43" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (1 samples, 0.01%)</title><rect x="373.9" y="421" width="0.1" height="15.0" fill="rgb(240,19,2)" rx="2" ry="2" />
<text text-anchor="" x="376.91" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (12 samples, 0.13%)</title><rect x="610.3" y="677" width="1.6" height="15.0" fill="rgb(239,39,52)" rx="2" ry="2" />
<text text-anchor="" x="613.30" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="1185.6" y="917" width="0.6" height="15.0" fill="rgb(218,10,47)" rx="2" ry="2" />
<text text-anchor="" x="1188.57" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12GraphReducer10ReduceNodeEPNS1_4NodeE (1 samples, 0.01%)</title><rect x="609.8" y="581" width="0.1" height="15.0" fill="rgb(235,8,6)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="824.8" y="597" width="0.4" height="15.0" fill="rgb(207,11,20)" rx="2" ry="2" />
<text text-anchor="" x="827.79" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14PrepareJobImplEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="1077.3" y="629" width="0.2" height="15.0" fill="rgb(232,123,20)" rx="2" ry="2" />
<text text-anchor="" x="1080.35" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector9VisitCallEPNS1_4NodeEPNS1_10BasicBlockE (1 samples, 0.01%)</title><rect x="1181.3" y="549" width="0.1" height="15.0" fill="rgb(225,26,30)" rx="2" ry="2" />
<text text-anchor="" x="1184.26" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="609.8" y="373" width="0.1" height="15.0" fill="rgb(236,78,3)" rx="2" ry="2" />
<text text-anchor="" x="612.78" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (18 samples, 0.20%)</title><rect x="614.1" y="677" width="2.3" height="15.0" fill="rgb(244,147,16)" rx="2" ry="2" />
<text text-anchor="" x="617.08" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (11 samples, 0.12%)</title><rect x="229.4" y="645" width="1.5" height="15.0" fill="rgb(248,107,33)" rx="2" ry="2" />
<text text-anchor="" x="232.44" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (622 samples, 6.87%)</title><rect x="1090.4" y="693" width="81.1" height="15.0" fill="rgb(230,68,45)" rx="2" ry="2" />
<text text-anchor="" x="1093.38" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (13 samples, 0.14%)</title><rect x="1187.7" y="949" width="1.6" height="15.0" fill="rgb(229,128,27)" rx="2" ry="2" />
<text text-anchor="" x="1190.65" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="11.0" y="1029" width="0.2" height="15.0" fill="rgb(226,174,7)" rx="2" ry="2" />
<text text-anchor="" x="14.04" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1014.5" y="565" width="0.1" height="15.0" fill="rgb(229,74,41)" rx="2" ry="2" />
<text text-anchor="" x="1017.50" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal8compiler15SparseInputMask13InputIterator6IsRealEv (1 samples, 0.01%)</title><rect x="610.2" y="437" width="0.1" height="15.0" fill="rgb(249,212,8)" rx="2" ry="2" />
<text text-anchor="" x="613.17" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal23OptimizedCompilationJob10PrepareJobEPNS0_7IsolateE (1 samples, 0.01%)</title><rect x="1077.3" y="645" width="0.2" height="15.0" fill="rgb(225,138,17)" rx="2" ry="2" />
<text text-anchor="" x="1080.35" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="741" width="1173.7" height="15.0" fill="rgb(241,58,54)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (10 samples, 0.11%)</title><rect x="1178.9" y="709" width="1.3" height="15.0" fill="rgb(209,19,26)" rx="2" ry="2" />
<text text-anchor="" x="1181.92" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl3RunINS1_25InstructionSelectionPhaseEPNS1_7LinkageEEEvT0_ (1 samples, 0.01%)</title><rect x="610.2" y="581" width="0.1" height="15.0" fill="rgb(210,89,1)" rx="2" ry="2" />
<text text-anchor="" x="613.17" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="11.2" y="1029" width="0.1" height="15.0" fill="rgb(227,179,30)" rx="2" ry="2" />
<text text-anchor="" x="14.17" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="607.4" y="549" width="0.2" height="15.0" fill="rgb(205,127,53)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (7 samples, 0.08%)</title><rect x="375.5" y="661" width="0.9" height="15.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="378.47" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="440.8" y="533" width="0.4" height="15.0" fill="rgb(236,77,20)" rx="2" ry="2" />
<text text-anchor="" x="443.80" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19014.map] (9,002 samples, 99.47%)</title><rect x="11.6" y="917" width="1173.7" height="15.0" fill="rgb(223,38,25)" rx="2" ry="2" />
<text text-anchor="" x="14.56" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19014.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.02%)</title><rect x="927.7" y="581" width="0.2" height="15.0" fill="rgb(252,151,5)" rx="2" ry="2" />
<text text-anchor="" x="930.66" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (7 samples, 0.08%)</title><rect x="1014.6" y="661" width="0.9" height="15.0" fill="rgb(237,76,30)" rx="2" ry="2" />
<text text-anchor="" x="1017.63" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19LinearScanAllocator19ProcessCurrentRangeEPNS1_9LiveRangeE (1 samples, 0.01%)</title><rect x="1186.5" y="901" width="0.1" height="15.0" fill="rgb(222,150,36)" rx="2" ry="2" />
<text text-anchor="" x="1189.48" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="1014.5" y="501" width="0.1" height="15.0" fill="rgb(242,193,48)" rx="2" ry="2" />
<text text-anchor="" x="1017.50" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="75.5" y="565" width="0.1" height="15.0" fill="rgb(230,135,42)" rx="2" ry="2" />
<text text-anchor="" x="78.45" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="537.7" y="645" width="0.4" height="15.0" fill="rgb(246,153,41)" rx="2" ry="2" />
<text text-anchor="" x="540.68" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.03%)</title><rect x="824.8" y="549" width="0.4" height="15.0" fill="rgb(217,103,35)" rx="2" ry="2" />
<text text-anchor="" x="827.79" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.06%)</title><rect x="349.8" y="597" width="0.6" height="15.0" fill="rgb(212,9,31)" rx="2" ry="2" />
<text text-anchor="" x="352.79" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (915 samples, 10.11%)</title><rect x="755.8" y="693" width="119.3" height="15.0" fill="rgb(239,115,6)" rx="2" ry="2" />
<text text-anchor="" x="758.81" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88interna..</text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment