1
Fork 0
test-zig-cc/results/llvm-nosandbox.svg

414 lines
1021 KiB
XML

<?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="918" onload="init(evt)" viewBox="0 0 1200 918" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:"Verdana"; font-size:12px; fill:rgb(0,0,0); }
#title { text-anchor:middle; font-size:17px; }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
var el = frames.children;
for(var i = 0; i < el.length; i++) {
update_text(el[i]);
}
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad - 100;
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
if (!isEdge) {
svg.removeAttribute("viewBox");
}
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg: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) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *\$/.test(txt) || t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
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, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
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 = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
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.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// 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;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="918" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="901.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1090" y="24.00">Search</text><text id="matched" x="1090" y="901.00"> </text><svg id="frames" x="10" width="1180" total_samples="304002"><g><title>_dl_update_slotinfo (170 samples, 0.06%)</title><rect x="0.4191%" y="821" width="0.0559%" height="15" fill="rgb(227,0,7)" fg:x="1274" fg:w="170"/><text x="0.6691%" y="831.50"></text></g><g><title>resource_allocate_bytes (32 samples, 0.01%)</title><rect x="0.5362%" y="821" width="0.0105%" height="15" fill="rgb(217,0,24)" fg:x="1630" fg:w="32"/><text x="0.7862%" y="831.50"></text></g><g><title>update_get_addr (57 samples, 0.02%)</title><rect x="0.5513%" y="821" width="0.0187%" height="15" fill="rgb(221,193,54)" fg:x="1676" fg:w="57"/><text x="0.8013%" y="831.50"></text></g><g><title>[anon] (1,638 samples, 0.54%)</title><rect x="0.0329%" y="837" width="0.5388%" height="15" fill="rgb(248,212,6)" fg:x="100" fg:w="1638"/><text x="0.2829%" y="847.50"></text></g><g><title>[perf-720743.map] (178 samples, 0.06%)</title><rect x="0.5727%" y="837" width="0.0586%" height="15" fill="rgb(208,68,35)" fg:x="1741" fg:w="178"/><text x="0.8227%" y="847.50"></text></g><g><title>[unknown] (103 samples, 0.03%)</title><rect x="0.6312%" y="837" width="0.0339%" height="15" fill="rgb(232,128,0)" fg:x="1919" fg:w="103"/><text x="0.8812%" y="847.50"></text></g><g><title>CompileBroker::collect_statistics (34 samples, 0.01%)</title><rect x="0.6776%" y="725" width="0.0112%" height="15" fill="rgb(207,160,47)" fg:x="2060" fg:w="34"/><text x="0.9276%" y="735.50"></text></g><g><title>jio_vsnprintf (63 samples, 0.02%)</title><rect x="0.6905%" y="693" width="0.0207%" height="15" fill="rgb(228,23,34)" fg:x="2099" fg:w="63"/><text x="0.9405%" y="703.50"></text></g><g><title>os::vsnprintf (62 samples, 0.02%)</title><rect x="0.6908%" y="677" width="0.0204%" height="15" fill="rgb(218,30,26)" fg:x="2100" fg:w="62"/><text x="0.9408%" y="687.50"></text></g><g><title>__vsnprintf_internal (59 samples, 0.02%)</title><rect x="0.6918%" y="661" width="0.0194%" height="15" fill="rgb(220,122,19)" fg:x="2103" fg:w="59"/><text x="0.9418%" y="671.50"></text></g><g><title>__vfprintf_internal (50 samples, 0.02%)</title><rect x="0.6947%" y="645" width="0.0164%" height="15" fill="rgb(250,228,42)" fg:x="2112" fg:w="50"/><text x="0.9447%" y="655.50"></text></g><g><title>CompileBroker::post_compile (71 samples, 0.02%)</title><rect x="0.6888%" y="725" width="0.0234%" height="15" fill="rgb(240,193,28)" fg:x="2094" fg:w="71"/><text x="0.9388%" y="735.50"></text></g><g><title>StringEventLog::log (69 samples, 0.02%)</title><rect x="0.6895%" y="709" width="0.0227%" height="15" fill="rgb(216,20,37)" fg:x="2096" fg:w="69"/><text x="0.9395%" y="719.50"></text></g><g><title>Method::print_short_name (54 samples, 0.02%)</title><rect x="0.7230%" y="709" width="0.0178%" height="15" fill="rgb(206,188,39)" fg:x="2198" fg:w="54"/><text x="0.9730%" y="719.50"></text></g><g><title>CompileTask::print (112 samples, 0.04%)</title><rect x="0.7220%" y="725" width="0.0368%" height="15" fill="rgb(217,207,13)" fg:x="2195" fg:w="112"/><text x="0.9720%" y="735.50"></text></g><g><title>outputStream::print (55 samples, 0.02%)</title><rect x="0.7408%" y="709" width="0.0181%" height="15" fill="rgb(231,73,38)" fg:x="2252" fg:w="55"/><text x="0.9908%" y="719.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (53 samples, 0.02%)</title><rect x="0.7414%" y="693" width="0.0174%" height="15" fill="rgb(225,20,46)" fg:x="2254" fg:w="53"/><text x="0.9914%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (36 samples, 0.01%)</title><rect x="0.8122%" y="533" width="0.0118%" height="15" fill="rgb(210,31,41)" fg:x="2469" fg:w="36"/><text x="1.0622%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (47 samples, 0.02%)</title><rect x="0.8115%" y="549" width="0.0155%" height="15" fill="rgb(221,200,47)" fg:x="2467" fg:w="47"/><text x="1.0615%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (67 samples, 0.02%)</title><rect x="0.8112%" y="565" width="0.0220%" height="15" fill="rgb(226,26,5)" fg:x="2466" fg:w="67"/><text x="1.0612%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (107 samples, 0.04%)</title><rect x="0.8092%" y="581" width="0.0352%" height="15" fill="rgb(249,33,26)" fg:x="2460" fg:w="107"/><text x="1.0592%" y="591.50"></text></g><g><title>SubstitutionResolver::block_do (34 samples, 0.01%)</title><rect x="0.8332%" y="565" width="0.0112%" height="15" fill="rgb(235,183,28)" fg:x="2533" fg:w="34"/><text x="1.0832%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (171 samples, 0.06%)</title><rect x="0.8066%" y="597" width="0.0562%" height="15" fill="rgb(221,5,38)" fg:x="2452" fg:w="171"/><text x="1.0566%" y="607.50"></text></g><g><title>SubstitutionResolver::block_do (56 samples, 0.02%)</title><rect x="0.8444%" y="581" width="0.0184%" height="15" fill="rgb(247,18,42)" fg:x="2567" fg:w="56"/><text x="1.0944%" y="591.50"></text></g><g><title>SubstitutionResolver::block_do (76 samples, 0.02%)</title><rect x="0.8635%" y="597" width="0.0250%" height="15" fill="rgb(241,131,45)" fg:x="2625" fg:w="76"/><text x="1.1135%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (261 samples, 0.09%)</title><rect x="0.8030%" y="613" width="0.0859%" height="15" fill="rgb(249,31,29)" fg:x="2441" fg:w="261"/><text x="1.0530%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (264 samples, 0.09%)</title><rect x="0.8026%" y="629" width="0.0868%" height="15" fill="rgb(225,111,53)" fg:x="2440" fg:w="264"/><text x="1.0526%" y="639.50"></text></g><g><title>ValueMap::ValueMap (39 samples, 0.01%)</title><rect x="0.8937%" y="629" width="0.0128%" height="15" fill="rgb(238,160,17)" fg:x="2717" fg:w="39"/><text x="1.1437%" y="639.50"></text></g><g><title>ValueMap::find_insert (56 samples, 0.02%)</title><rect x="0.9066%" y="629" width="0.0184%" height="15" fill="rgb(214,148,48)" fg:x="2756" fg:w="56"/><text x="1.1566%" y="639.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (498 samples, 0.16%)</title><rect x="0.7766%" y="645" width="0.1638%" height="15" fill="rgb(232,36,49)" fg:x="2361" fg:w="498"/><text x="1.0266%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (34 samples, 0.01%)</title><rect x="0.9516%" y="533" width="0.0112%" height="15" fill="rgb(209,103,24)" fg:x="2893" fg:w="34"/><text x="1.2016%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (53 samples, 0.02%)</title><rect x="0.9503%" y="549" width="0.0174%" height="15" fill="rgb(229,88,8)" fg:x="2889" fg:w="53"/><text x="1.2003%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (72 samples, 0.02%)</title><rect x="0.9497%" y="565" width="0.0237%" height="15" fill="rgb(213,181,19)" fg:x="2887" fg:w="72"/><text x="1.1997%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (99 samples, 0.03%)</title><rect x="0.9477%" y="581" width="0.0326%" height="15" fill="rgb(254,191,54)" fg:x="2881" fg:w="99"/><text x="1.1977%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (126 samples, 0.04%)</title><rect x="0.9431%" y="597" width="0.0414%" height="15" fill="rgb(241,83,37)" fg:x="2867" fg:w="126"/><text x="1.1931%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (128 samples, 0.04%)</title><rect x="0.9428%" y="613" width="0.0421%" height="15" fill="rgb(233,36,39)" fg:x="2866" fg:w="128"/><text x="1.1928%" y="623.50"></text></g><g><title>ciMethod::get_method_blocks (33 samples, 0.01%)</title><rect x="1.0293%" y="533" width="0.0109%" height="15" fill="rgb(226,3,54)" fg:x="3129" fg:w="33"/><text x="1.2793%" y="543.50"></text></g><g><title>ciMethodBlocks::ciMethodBlocks (32 samples, 0.01%)</title><rect x="1.0296%" y="517" width="0.0105%" height="15" fill="rgb(245,192,40)" fg:x="3130" fg:w="32"/><text x="1.2796%" y="527.50"></text></g><g><title>MethodLiveness::init_basic_blocks (71 samples, 0.02%)</title><rect x="1.0174%" y="549" width="0.0234%" height="15" fill="rgb(238,167,29)" fg:x="3093" fg:w="71"/><text x="1.2674%" y="559.50"></text></g><g><title>BlockListBuilder::set_leaders (140 samples, 0.05%)</title><rect x="0.9960%" y="597" width="0.0461%" height="15" fill="rgb(232,182,51)" fg:x="3028" fg:w="140"/><text x="1.2460%" y="607.50"></text></g><g><title>ciMethod::bci_block_start (102 samples, 0.03%)</title><rect x="1.0085%" y="581" width="0.0336%" height="15" fill="rgb(231,60,39)" fg:x="3066" fg:w="102"/><text x="1.2585%" y="591.50"></text></g><g><title>MethodLiveness::compute_liveness (99 samples, 0.03%)</title><rect x="1.0095%" y="565" width="0.0326%" height="15" fill="rgb(208,69,12)" fg:x="3069" fg:w="99"/><text x="1.2595%" y="575.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (158 samples, 0.05%)</title><rect x="0.9905%" y="613" width="0.0520%" height="15" fill="rgb(235,93,37)" fg:x="3011" fg:w="158"/><text x="1.2405%" y="623.50"></text></g><g><title>GraphBuilder::connect_to_end (45 samples, 0.01%)</title><rect x="1.0474%" y="597" width="0.0148%" height="15" fill="rgb(213,116,39)" fg:x="3184" fg:w="45"/><text x="1.2974%" y="607.50"></text></g><g><title>BlockBegin::try_merge (54 samples, 0.02%)</title><rect x="1.0826%" y="581" width="0.0178%" height="15" fill="rgb(222,207,29)" fg:x="3291" fg:w="54"/><text x="1.3326%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (68 samples, 0.02%)</title><rect x="1.1378%" y="501" width="0.0224%" height="15" fill="rgb(206,96,30)" fg:x="3459" fg:w="68"/><text x="1.3878%" y="511.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (85 samples, 0.03%)</title><rect x="1.1329%" y="517" width="0.0280%" height="15" fill="rgb(218,138,4)" fg:x="3444" fg:w="85"/><text x="1.3829%" y="527.50"></text></g><g><title>ciField::ciField (127 samples, 0.04%)</title><rect x="1.1257%" y="533" width="0.0418%" height="15" fill="rgb(250,191,14)" fg:x="3422" fg:w="127"/><text x="1.3757%" y="543.50"></text></g><g><title>ciEnv::get_field_by_index (144 samples, 0.05%)</title><rect x="1.1217%" y="549" width="0.0474%" height="15" fill="rgb(239,60,40)" fg:x="3410" fg:w="144"/><text x="1.3717%" y="559.50"></text></g><g><title>ciBytecodeStream::get_field (166 samples, 0.05%)</title><rect x="1.1214%" y="565" width="0.0546%" height="15" fill="rgb(206,27,48)" fg:x="3409" fg:w="166"/><text x="1.3714%" y="575.50"></text></g><g><title>GraphBuilder::access_field (228 samples, 0.07%)</title><rect x="1.1049%" y="581" width="0.0750%" height="15" fill="rgb(225,35,8)" fg:x="3359" fg:w="228"/><text x="1.3549%" y="591.50"></text></g><g><title>GraphBuilder::append_with_bci (39 samples, 0.01%)</title><rect x="1.2326%" y="565" width="0.0128%" height="15" fill="rgb(250,213,24)" fg:x="3747" fg:w="39"/><text x="1.4826%" y="575.50"></text></g><g><title>MethodLiveness::get_liveness_at (32 samples, 0.01%)</title><rect x="1.3099%" y="469" width="0.0105%" height="15" fill="rgb(247,123,22)" fg:x="3982" fg:w="32"/><text x="1.5599%" y="479.50"></text></g><g><title>BlockBegin::try_merge (65 samples, 0.02%)</title><rect x="1.2997%" y="501" width="0.0214%" height="15" fill="rgb(231,138,38)" fg:x="3951" fg:w="65"/><text x="1.5497%" y="511.50"></text></g><g><title>ciMethod::liveness_at_bci (36 samples, 0.01%)</title><rect x="1.3092%" y="485" width="0.0118%" height="15" fill="rgb(231,145,46)" fg:x="3980" fg:w="36"/><text x="1.5592%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (44 samples, 0.01%)</title><rect x="1.3559%" y="421" width="0.0145%" height="15" fill="rgb(251,118,11)" fg:x="4122" fg:w="44"/><text x="1.6059%" y="431.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (58 samples, 0.02%)</title><rect x="1.3530%" y="437" width="0.0191%" height="15" fill="rgb(217,147,25)" fg:x="4113" fg:w="58"/><text x="1.6030%" y="447.50"></text></g><g><title>ciField::ciField (97 samples, 0.03%)</title><rect x="1.3457%" y="453" width="0.0319%" height="15" fill="rgb(247,81,37)" fg:x="4091" fg:w="97"/><text x="1.5957%" y="463.50"></text></g><g><title>ciEnv::get_field_by_index (112 samples, 0.04%)</title><rect x="1.3414%" y="469" width="0.0368%" height="15" fill="rgb(209,12,38)" fg:x="4078" fg:w="112"/><text x="1.5914%" y="479.50"></text></g><g><title>ciBytecodeStream::get_field (133 samples, 0.04%)</title><rect x="1.3408%" y="485" width="0.0437%" height="15" fill="rgb(227,1,9)" fg:x="4076" fg:w="133"/><text x="1.5908%" y="495.50"></text></g><g><title>GraphBuilder::access_field (190 samples, 0.06%)</title><rect x="1.3266%" y="501" width="0.0625%" height="15" fill="rgb(248,47,43)" fg:x="4033" fg:w="190"/><text x="1.5766%" y="511.50"></text></g><g><title>BlockBegin::try_merge (35 samples, 0.01%)</title><rect x="1.4454%" y="421" width="0.0115%" height="15" fill="rgb(221,10,30)" fg:x="4394" fg:w="35"/><text x="1.6954%" y="431.50"></text></g><g><title>ciField::ciField (36 samples, 0.01%)</title><rect x="1.4671%" y="373" width="0.0118%" height="15" fill="rgb(210,229,1)" fg:x="4460" fg:w="36"/><text x="1.7171%" y="383.50"></text></g><g><title>ciEnv::get_field_by_index (41 samples, 0.01%)</title><rect x="1.4661%" y="389" width="0.0135%" height="15" fill="rgb(222,148,37)" fg:x="4457" fg:w="41"/><text x="1.7161%" y="399.50"></text></g><g><title>ciBytecodeStream::get_field (46 samples, 0.02%)</title><rect x="1.4658%" y="405" width="0.0151%" height="15" fill="rgb(234,67,33)" fg:x="4456" fg:w="46"/><text x="1.7158%" y="415.50"></text></g><g><title>GraphBuilder::access_field (75 samples, 0.02%)</title><rect x="1.4592%" y="421" width="0.0247%" height="15" fill="rgb(247,98,35)" fg:x="4436" fg:w="75"/><text x="1.7092%" y="431.50"></text></g><g><title>GraphBuilder::access_field (39 samples, 0.01%)</title><rect x="1.5174%" y="341" width="0.0128%" height="15" fill="rgb(247,138,52)" fg:x="4613" fg:w="39"/><text x="1.7674%" y="351.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (47 samples, 0.02%)</title><rect x="1.5585%" y="213" width="0.0155%" height="15" fill="rgb(213,79,30)" fg:x="4738" fg:w="47"/><text x="1.8085%" y="223.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (46 samples, 0.02%)</title><rect x="1.5589%" y="197" width="0.0151%" height="15" fill="rgb(246,177,23)" fg:x="4739" fg:w="46"/><text x="1.8089%" y="207.50"></text></g><g><title>GraphBuilder::try_inline_full (57 samples, 0.02%)</title><rect x="1.5585%" y="229" width="0.0187%" height="15" fill="rgb(230,62,27)" fg:x="4738" fg:w="57"/><text x="1.8085%" y="239.50"></text></g><g><title>GraphBuilder::try_inline (61 samples, 0.02%)</title><rect x="1.5585%" y="245" width="0.0201%" height="15" fill="rgb(216,154,8)" fg:x="4738" fg:w="61"/><text x="1.8085%" y="255.50"></text></g><g><title>GraphBuilder::invoke (84 samples, 0.03%)</title><rect x="1.5562%" y="261" width="0.0276%" height="15" fill="rgb(244,35,45)" fg:x="4731" fg:w="84"/><text x="1.8062%" y="271.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (131 samples, 0.04%)</title><rect x="1.5447%" y="293" width="0.0431%" height="15" fill="rgb(251,115,12)" fg:x="4696" fg:w="131"/><text x="1.7947%" y="303.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (131 samples, 0.04%)</title><rect x="1.5447%" y="277" width="0.0431%" height="15" fill="rgb(240,54,50)" fg:x="4696" fg:w="131"/><text x="1.7947%" y="287.50"></text></g><g><title>GraphBuilder::try_inline_full (189 samples, 0.06%)</title><rect x="1.5408%" y="309" width="0.0622%" height="15" fill="rgb(233,84,52)" fg:x="4684" fg:w="189"/><text x="1.7908%" y="319.50"></text></g><g><title>GraphBuilder::try_inline (203 samples, 0.07%)</title><rect x="1.5395%" y="325" width="0.0668%" height="15" fill="rgb(207,117,47)" fg:x="4680" fg:w="203"/><text x="1.7895%" y="335.50"></text></g><g><title>ciBytecodeStream::get_method (39 samples, 0.01%)</title><rect x="1.6102%" y="325" width="0.0128%" height="15" fill="rgb(249,43,39)" fg:x="4895" fg:w="39"/><text x="1.8602%" y="335.50"></text></g><g><title>ciEnv::get_method_by_index_impl (35 samples, 0.01%)</title><rect x="1.6115%" y="309" width="0.0115%" height="15" fill="rgb(209,38,44)" fg:x="4899" fg:w="35"/><text x="1.8615%" y="319.50"></text></g><g><title>GraphBuilder::invoke (276 samples, 0.09%)</title><rect x="1.5349%" y="341" width="0.0908%" height="15" fill="rgb(236,212,23)" fg:x="4666" fg:w="276"/><text x="1.7849%" y="351.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (384 samples, 0.13%)</title><rect x="1.5085%" y="373" width="0.1263%" height="15" fill="rgb(242,79,21)" fg:x="4586" fg:w="384"/><text x="1.7585%" y="383.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (383 samples, 0.13%)</title><rect x="1.5089%" y="357" width="0.1260%" height="15" fill="rgb(211,96,35)" fg:x="4587" fg:w="383"/><text x="1.7589%" y="367.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (34 samples, 0.01%)</title><rect x="1.6372%" y="357" width="0.0112%" height="15" fill="rgb(253,215,40)" fg:x="4977" fg:w="34"/><text x="1.8872%" y="367.50"></text></g><g><title>GraphBuilder::push_scope (52 samples, 0.02%)</title><rect x="1.6365%" y="373" width="0.0171%" height="15" fill="rgb(211,81,21)" fg:x="4975" fg:w="52"/><text x="1.8865%" y="383.50"></text></g><g><title>ciMethod::ensure_method_data (45 samples, 0.01%)</title><rect x="1.6549%" y="373" width="0.0148%" height="15" fill="rgb(208,190,38)" fg:x="5031" fg:w="45"/><text x="1.9049%" y="383.50"></text></g><g><title>ciMethod::ensure_method_data (43 samples, 0.01%)</title><rect x="1.6556%" y="357" width="0.0141%" height="15" fill="rgb(235,213,38)" fg:x="5033" fg:w="43"/><text x="1.9056%" y="367.50"></text></g><g><title>GraphBuilder::try_inline_full (514 samples, 0.17%)</title><rect x="1.5010%" y="389" width="0.1691%" height="15" fill="rgb(237,122,38)" fg:x="4563" fg:w="514"/><text x="1.7510%" y="399.50"></text></g><g><title>GraphBuilder::try_inline (31 samples, 0.01%)</title><rect x="1.6753%" y="293" width="0.0102%" height="15" fill="rgb(244,218,35)" fg:x="5093" fg:w="31"/><text x="1.9253%" y="303.50"></text></g><g><title>GraphBuilder::invoke (34 samples, 0.01%)</title><rect x="1.6753%" y="309" width="0.0112%" height="15" fill="rgb(240,68,47)" fg:x="5093" fg:w="34"/><text x="1.9253%" y="319.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (45 samples, 0.01%)</title><rect x="1.6720%" y="341" width="0.0148%" height="15" fill="rgb(210,16,53)" fg:x="5083" fg:w="45"/><text x="1.9220%" y="351.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (45 samples, 0.01%)</title><rect x="1.6720%" y="325" width="0.0148%" height="15" fill="rgb(235,124,12)" fg:x="5083" fg:w="45"/><text x="1.9220%" y="335.50"></text></g><g><title>GraphBuilder::try_inline (47 samples, 0.02%)</title><rect x="1.6720%" y="373" width="0.0155%" height="15" fill="rgb(224,169,11)" fg:x="5083" fg:w="47"/><text x="1.9220%" y="383.50"></text></g><g><title>GraphBuilder::try_inline_full (47 samples, 0.02%)</title><rect x="1.6720%" y="357" width="0.0155%" height="15" fill="rgb(250,166,2)" fg:x="5083" fg:w="47"/><text x="1.9220%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (570 samples, 0.19%)</title><rect x="1.5010%" y="405" width="0.1875%" height="15" fill="rgb(242,216,29)" fg:x="4563" fg:w="570"/><text x="1.7510%" y="415.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (50 samples, 0.02%)</title><rect x="1.6720%" y="389" width="0.0164%" height="15" fill="rgb(230,116,27)" fg:x="5083" fg:w="50"/><text x="1.9220%" y="399.50"></text></g><g><title>ciMethod::ciMethod (53 samples, 0.02%)</title><rect x="1.7158%" y="341" width="0.0174%" height="15" fill="rgb(228,99,48)" fg:x="5216" fg:w="53"/><text x="1.9658%" y="351.50"></text></g><g><title>ciSignature::ciSignature (41 samples, 0.01%)</title><rect x="1.7197%" y="325" width="0.0135%" height="15" fill="rgb(253,11,6)" fg:x="5228" fg:w="41"/><text x="1.9697%" y="335.50"></text></g><g><title>ciObjectFactory::get_metadata (66 samples, 0.02%)</title><rect x="1.7118%" y="373" width="0.0217%" height="15" fill="rgb(247,143,39)" fg:x="5204" fg:w="66"/><text x="1.9618%" y="383.50"></text></g><g><title>ciObjectFactory::create_new_metadata (58 samples, 0.02%)</title><rect x="1.7145%" y="357" width="0.0191%" height="15" fill="rgb(236,97,10)" fg:x="5212" fg:w="58"/><text x="1.9645%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (110 samples, 0.04%)</title><rect x="1.6977%" y="389" width="0.0362%" height="15" fill="rgb(233,208,19)" fg:x="5161" fg:w="110"/><text x="1.9477%" y="399.50"></text></g><g><title>ciBytecodeStream::get_method (117 samples, 0.04%)</title><rect x="1.6957%" y="405" width="0.0385%" height="15" fill="rgb(216,164,2)" fg:x="5155" fg:w="117"/><text x="1.9457%" y="415.50"></text></g><g><title>GraphBuilder::invoke (749 samples, 0.25%)</title><rect x="1.4947%" y="421" width="0.2464%" height="15" fill="rgb(220,129,5)" fg:x="4544" fg:w="749"/><text x="1.7447%" y="431.50"></text></g><g><title>GraphBuilder::method_return (42 samples, 0.01%)</title><rect x="1.7428%" y="421" width="0.0138%" height="15" fill="rgb(242,17,10)" fg:x="5298" fg:w="42"/><text x="1.9928%" y="431.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,003 samples, 0.33%)</title><rect x="1.4326%" y="453" width="0.3299%" height="15" fill="rgb(242,107,0)" fg:x="4355" fg:w="1003"/><text x="1.6826%" y="463.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (995 samples, 0.33%)</title><rect x="1.4352%" y="437" width="0.3273%" height="15" fill="rgb(251,28,31)" fg:x="4363" fg:w="995"/><text x="1.6852%" y="447.50"></text></g><g><title>BlockListBuilder::set_leaders (64 samples, 0.02%)</title><rect x="1.7697%" y="421" width="0.0211%" height="15" fill="rgb(233,223,10)" fg:x="5380" fg:w="64"/><text x="2.0197%" y="431.50"></text></g><g><title>ciMethod::bci_block_start (47 samples, 0.02%)</title><rect x="1.7753%" y="405" width="0.0155%" height="15" fill="rgb(215,21,27)" fg:x="5397" fg:w="47"/><text x="2.0253%" y="415.50"></text></g><g><title>MethodLiveness::compute_liveness (45 samples, 0.01%)</title><rect x="1.7760%" y="389" width="0.0148%" height="15" fill="rgb(232,23,21)" fg:x="5399" fg:w="45"/><text x="2.0260%" y="399.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (78 samples, 0.03%)</title><rect x="1.7658%" y="437" width="0.0257%" height="15" fill="rgb(244,5,23)" fg:x="5368" fg:w="78"/><text x="2.0158%" y="447.50"></text></g><g><title>GraphBuilder::push_scope (114 samples, 0.04%)</title><rect x="1.7654%" y="453" width="0.0375%" height="15" fill="rgb(226,81,46)" fg:x="5367" fg:w="114"/><text x="2.0154%" y="463.50"></text></g><g><title>ciMethodData::load_data (50 samples, 0.02%)</title><rect x="1.8112%" y="421" width="0.0164%" height="15" fill="rgb(247,70,30)" fg:x="5506" fg:w="50"/><text x="2.0612%" y="431.50"></text></g><g><title>ciMethod::ensure_method_data (74 samples, 0.02%)</title><rect x="1.8062%" y="437" width="0.0243%" height="15" fill="rgb(212,68,19)" fg:x="5491" fg:w="74"/><text x="2.0562%" y="447.50"></text></g><g><title>ciMethod::ensure_method_data (78 samples, 0.03%)</title><rect x="1.8053%" y="453" width="0.0257%" height="15" fill="rgb(240,187,13)" fg:x="5488" fg:w="78"/><text x="2.0553%" y="463.50"></text></g><g><title>GraphBuilder::try_inline_full (1,243 samples, 0.41%)</title><rect x="1.4224%" y="469" width="0.4089%" height="15" fill="rgb(223,113,26)" fg:x="4324" fg:w="1243"/><text x="1.6724%" y="479.50"></text></g><g><title>GraphBuilder::invoke (40 samples, 0.01%)</title><rect x="1.8395%" y="389" width="0.0132%" height="15" fill="rgb(206,192,2)" fg:x="5592" fg:w="40"/><text x="2.0895%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (48 samples, 0.02%)</title><rect x="1.8372%" y="421" width="0.0158%" height="15" fill="rgb(241,108,4)" fg:x="5585" fg:w="48"/><text x="2.0872%" y="431.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (48 samples, 0.02%)</title><rect x="1.8372%" y="405" width="0.0158%" height="15" fill="rgb(247,173,49)" fg:x="5585" fg:w="48"/><text x="2.0872%" y="415.50"></text></g><g><title>GraphBuilder::try_inline (52 samples, 0.02%)</title><rect x="1.8368%" y="453" width="0.0171%" height="15" fill="rgb(224,114,35)" fg:x="5584" fg:w="52"/><text x="2.0868%" y="463.50"></text></g><g><title>GraphBuilder::try_inline_full (52 samples, 0.02%)</title><rect x="1.8368%" y="437" width="0.0171%" height="15" fill="rgb(245,159,27)" fg:x="5584" fg:w="52"/><text x="2.0868%" y="447.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (54 samples, 0.02%)</title><rect x="1.8368%" y="469" width="0.0178%" height="15" fill="rgb(245,172,44)" fg:x="5584" fg:w="54"/><text x="2.0868%" y="479.50"></text></g><g><title>GraphBuilder::try_inline (1,321 samples, 0.43%)</title><rect x="1.4207%" y="485" width="0.4345%" height="15" fill="rgb(236,23,11)" fg:x="4319" fg:w="1321"/><text x="1.6707%" y="495.50"></text></g><g><title>ciEnv::lookup_method (67 samples, 0.02%)</title><rect x="1.8779%" y="453" width="0.0220%" height="15" fill="rgb(205,117,38)" fg:x="5709" fg:w="67"/><text x="2.1279%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (34 samples, 0.01%)</title><rect x="1.9247%" y="389" width="0.0112%" height="15" fill="rgb(237,72,25)" fg:x="5851" fg:w="34"/><text x="2.1747%" y="399.50"></text></g><g><title>ciMethod::ciMethod (107 samples, 0.04%)</title><rect x="1.9046%" y="421" width="0.0352%" height="15" fill="rgb(244,70,9)" fg:x="5790" fg:w="107"/><text x="2.1546%" y="431.50"></text></g><g><title>ciSignature::ciSignature (89 samples, 0.03%)</title><rect x="1.9105%" y="405" width="0.0293%" height="15" fill="rgb(217,125,39)" fg:x="5808" fg:w="89"/><text x="2.1605%" y="415.50"></text></g><g><title>ciObjectFactory::get_metadata (125 samples, 0.04%)</title><rect x="1.9000%" y="453" width="0.0411%" height="15" fill="rgb(235,36,10)" fg:x="5776" fg:w="125"/><text x="2.1500%" y="463.50"></text></g><g><title>ciObjectFactory::create_new_metadata (117 samples, 0.04%)</title><rect x="1.9026%" y="437" width="0.0385%" height="15" fill="rgb(251,123,47)" fg:x="5784" fg:w="117"/><text x="2.1526%" y="447.50"></text></g><g><title>ciBytecodeStream::get_method (232 samples, 0.08%)</title><rect x="1.8658%" y="485" width="0.0763%" height="15" fill="rgb(221,13,13)" fg:x="5672" fg:w="232"/><text x="2.1158%" y="495.50"></text></g><g><title>ciEnv::get_method_by_index_impl (221 samples, 0.07%)</title><rect x="1.8694%" y="469" width="0.0727%" height="15" fill="rgb(238,131,9)" fg:x="5683" fg:w="221"/><text x="2.1194%" y="479.50"></text></g><g><title>GraphBuilder::invoke (1,679 samples, 0.55%)</title><rect x="1.4033%" y="501" width="0.5523%" height="15" fill="rgb(211,50,8)" fg:x="4266" fg:w="1679"/><text x="1.6533%" y="511.50"></text></g><g><title>GraphBuilder::method_return (54 samples, 0.02%)</title><rect x="1.9576%" y="501" width="0.0178%" height="15" fill="rgb(245,182,24)" fg:x="5951" fg:w="54"/><text x="2.2076%" y="511.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (2,145 samples, 0.71%)</title><rect x="1.2812%" y="533" width="0.7056%" height="15" fill="rgb(242,14,37)" fg:x="3895" fg:w="2145"/><text x="1.5312%" y="543.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,133 samples, 0.70%)</title><rect x="1.2852%" y="517" width="0.7016%" height="15" fill="rgb(246,228,12)" fg:x="3907" fg:w="2133"/><text x="1.5352%" y="527.50"></text></g><g><title>MethodLiveness::init_basic_blocks (47 samples, 0.02%)</title><rect x="2.0158%" y="453" width="0.0155%" height="15" fill="rgb(213,55,15)" fg:x="6128" fg:w="47"/><text x="2.2658%" y="463.50"></text></g><g><title>MethodLiveness::compute_liveness (71 samples, 0.02%)</title><rect x="2.0082%" y="469" width="0.0234%" height="15" fill="rgb(209,9,3)" fg:x="6105" fg:w="71"/><text x="2.2582%" y="479.50"></text></g><g><title>BlockListBuilder::set_leaders (95 samples, 0.03%)</title><rect x="2.0006%" y="501" width="0.0312%" height="15" fill="rgb(230,59,30)" fg:x="6082" fg:w="95"/><text x="2.2506%" y="511.50"></text></g><g><title>ciMethod::bci_block_start (74 samples, 0.02%)</title><rect x="2.0076%" y="485" width="0.0243%" height="15" fill="rgb(209,121,21)" fg:x="6103" fg:w="74"/><text x="2.2576%" y="495.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (117 samples, 0.04%)</title><rect x="1.9941%" y="517" width="0.0385%" height="15" fill="rgb(220,109,13)" fg:x="6062" fg:w="117"/><text x="2.2441%" y="527.50"></text></g><g><title>GraphBuilder::push_scope (176 samples, 0.06%)</title><rect x="1.9914%" y="533" width="0.0579%" height="15" fill="rgb(232,18,1)" fg:x="6054" fg:w="176"/><text x="2.2414%" y="543.50"></text></g><g><title>MethodData::initialize (43 samples, 0.01%)</title><rect x="2.0760%" y="469" width="0.0141%" height="15" fill="rgb(215,41,42)" fg:x="6311" fg:w="43"/><text x="2.3260%" y="479.50"></text></g><g><title>MethodData::allocate (93 samples, 0.03%)</title><rect x="2.0599%" y="485" width="0.0306%" height="15" fill="rgb(224,123,36)" fg:x="6262" fg:w="93"/><text x="2.3099%" y="495.50"></text></g><g><title>Method::build_interpreter_method_data (95 samples, 0.03%)</title><rect x="2.0599%" y="501" width="0.0312%" height="15" fill="rgb(240,125,3)" fg:x="6262" fg:w="95"/><text x="2.3099%" y="511.50"></text></g><g><title>ciMethodData::load_data (58 samples, 0.02%)</title><rect x="2.0921%" y="501" width="0.0191%" height="15" fill="rgb(205,98,50)" fg:x="6360" fg:w="58"/><text x="2.3421%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (185 samples, 0.06%)</title><rect x="2.0569%" y="533" width="0.0609%" height="15" fill="rgb(205,185,37)" fg:x="6253" fg:w="185"/><text x="2.3069%" y="543.50"></text></g><g><title>ciMethod::ensure_method_data (178 samples, 0.06%)</title><rect x="2.0592%" y="517" width="0.0586%" height="15" fill="rgb(238,207,15)" fg:x="6260" fg:w="178"/><text x="2.3092%" y="527.50"></text></g><g><title>GraphBuilder::try_inline_full (2,627 samples, 0.86%)</title><rect x="1.2576%" y="549" width="0.8641%" height="15" fill="rgb(213,199,42)" fg:x="3823" fg:w="2627"/><text x="1.5076%" y="559.50"></text></g><g><title>GraphBuilder::try_inline (2,653 samples, 0.87%)</title><rect x="1.2523%" y="565" width="0.8727%" height="15" fill="rgb(235,201,11)" fg:x="3807" fg:w="2653"/><text x="1.5023%" y="575.50"></text></g><g><title>LinkResolver::resolve_method (55 samples, 0.02%)</title><rect x="2.1763%" y="501" width="0.0181%" height="15" fill="rgb(207,46,11)" fg:x="6616" fg:w="55"/><text x="2.4263%" y="511.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (61 samples, 0.02%)</title><rect x="2.1747%" y="517" width="0.0201%" height="15" fill="rgb(241,35,35)" fg:x="6611" fg:w="61"/><text x="2.4247%" y="527.50"></text></g><g><title>LinkResolver::resolve_static_call_or_null (35 samples, 0.01%)</title><rect x="2.1993%" y="517" width="0.0115%" height="15" fill="rgb(243,32,47)" fg:x="6686" fg:w="35"/><text x="2.4493%" y="527.50"></text></g><g><title>ciEnv::lookup_method (140 samples, 0.05%)</title><rect x="2.1658%" y="533" width="0.0461%" height="15" fill="rgb(247,202,23)" fg:x="6584" fg:w="140"/><text x="2.4158%" y="543.50"></text></g><g><title>SignatureStream::as_symbol (50 samples, 0.02%)</title><rect x="2.2418%" y="469" width="0.0164%" height="15" fill="rgb(219,102,11)" fg:x="6815" fg:w="50"/><text x="2.4918%" y="479.50"></text></g><g><title>SymbolTable::lookup (49 samples, 0.02%)</title><rect x="2.2421%" y="453" width="0.0161%" height="15" fill="rgb(243,110,44)" fg:x="6816" fg:w="49"/><text x="2.4921%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (67 samples, 0.02%)</title><rect x="2.2608%" y="469" width="0.0220%" height="15" fill="rgb(222,74,54)" fg:x="6873" fg:w="67"/><text x="2.5108%" y="479.50"></text></g><g><title>ciSignature::ciSignature (160 samples, 0.05%)</title><rect x="2.2358%" y="485" width="0.0526%" height="15" fill="rgb(216,99,12)" fg:x="6797" fg:w="160"/><text x="2.4858%" y="495.50"></text></g><g><title>ciMethod::ciMethod (206 samples, 0.07%)</title><rect x="2.2210%" y="501" width="0.0678%" height="15" fill="rgb(226,22,26)" fg:x="6752" fg:w="206"/><text x="2.4710%" y="511.50"></text></g><g><title>ciObjectFactory::get_metadata (240 samples, 0.08%)</title><rect x="2.2118%" y="533" width="0.0789%" height="15" fill="rgb(217,163,10)" fg:x="6724" fg:w="240"/><text x="2.4618%" y="543.50"></text></g><g><title>ciObjectFactory::create_new_metadata (217 samples, 0.07%)</title><rect x="2.2194%" y="517" width="0.0714%" height="15" fill="rgb(213,25,53)" fg:x="6747" fg:w="217"/><text x="2.4694%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (427 samples, 0.14%)</title><rect x="2.1533%" y="549" width="0.1405%" height="15" fill="rgb(252,105,26)" fg:x="6546" fg:w="427"/><text x="2.4033%" y="559.50"></text></g><g><title>ciBytecodeStream::get_method (456 samples, 0.15%)</title><rect x="2.1444%" y="565" width="0.1500%" height="15" fill="rgb(220,39,43)" fg:x="6519" fg:w="456"/><text x="2.3944%" y="575.50"></text></g><g><title>ClassHierarchyWalker::is_witness (34 samples, 0.01%)</title><rect x="2.3043%" y="517" width="0.0112%" height="15" fill="rgb(229,68,48)" fg:x="7005" fg:w="34"/><text x="2.5543%" y="527.50"></text></g><g><title>Dependencies::find_unique_concrete_method (39 samples, 0.01%)</title><rect x="2.3033%" y="549" width="0.0128%" height="15" fill="rgb(252,8,32)" fg:x="7002" fg:w="39"/><text x="2.5533%" y="559.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (39 samples, 0.01%)</title><rect x="2.3033%" y="533" width="0.0128%" height="15" fill="rgb(223,20,43)" fg:x="7002" fg:w="39"/><text x="2.5533%" y="543.50"></text></g><g><title>ciMethod::find_monomorphic_target (59 samples, 0.02%)</title><rect x="2.3029%" y="565" width="0.0194%" height="15" fill="rgb(229,81,49)" fg:x="7001" fg:w="59"/><text x="2.5529%" y="575.50"></text></g><g><title>GraphBuilder::invoke (3,382 samples, 1.11%)</title><rect x="1.2135%" y="581" width="1.1125%" height="15" fill="rgb(236,28,36)" fg:x="3689" fg:w="3382"/><text x="1.4635%" y="591.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,923 samples, 1.29%)</title><rect x="1.0622%" y="597" width="1.2905%" height="15" fill="rgb(249,185,26)" fg:x="3229" fg:w="3923"/><text x="1.3122%" y="607.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,986 samples, 1.31%)</title><rect x="1.0464%" y="613" width="1.3112%" height="15" fill="rgb(249,174,33)" fg:x="3181" fg:w="3986"/><text x="1.2964%" y="623.50"></text></g><g><title>GraphBuilder::setup_start_block (44 samples, 0.01%)</title><rect x="2.3579%" y="613" width="0.0145%" height="15" fill="rgb(233,201,37)" fg:x="7168" fg:w="44"/><text x="2.6079%" y="623.50"></text></g><g><title>GraphBuilder::GraphBuilder (4,370 samples, 1.44%)</title><rect x="0.9414%" y="629" width="1.4375%" height="15" fill="rgb(221,78,26)" fg:x="2862" fg:w="4370"/><text x="1.1914%" y="639.50"></text></g><g><title>IR::IR (4,386 samples, 1.44%)</title><rect x="0.9405%" y="645" width="1.4428%" height="15" fill="rgb(250,127,30)" fg:x="2859" fg:w="4386"/><text x="1.1905%" y="655.50"></text></g><g><title>ComputeLinearScanOrder::compute_order (45 samples, 0.01%)</title><rect x="2.3865%" y="613" width="0.0148%" height="15" fill="rgb(230,49,44)" fg:x="7255" fg:w="45"/><text x="2.6365%" y="623.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (76 samples, 0.02%)</title><rect x="2.3832%" y="629" width="0.0250%" height="15" fill="rgb(229,67,23)" fg:x="7245" fg:w="76"/><text x="2.6332%" y="639.50"></text></g><g><title>IR::compute_code (81 samples, 0.03%)</title><rect x="2.3832%" y="645" width="0.0266%" height="15" fill="rgb(249,83,47)" fg:x="7245" fg:w="81"/><text x="2.6332%" y="655.50"></text></g><g><title>BlockList::iterate_backward (99 samples, 0.03%)</title><rect x="2.4118%" y="629" width="0.0326%" height="15" fill="rgb(215,43,3)" fg:x="7332" fg:w="99"/><text x="2.6618%" y="639.50"></text></g><g><title>UseCountComputer::block_do (96 samples, 0.03%)</title><rect x="2.4128%" y="613" width="0.0316%" height="15" fill="rgb(238,154,13)" fg:x="7335" fg:w="96"/><text x="2.6628%" y="623.50"></text></g><g><title>ValueStack::values_do (40 samples, 0.01%)</title><rect x="2.4312%" y="597" width="0.0132%" height="15" fill="rgb(219,56,2)" fg:x="7391" fg:w="40"/><text x="2.6812%" y="607.50"></text></g><g><title>IR::compute_use_counts (136 samples, 0.04%)</title><rect x="2.4099%" y="645" width="0.0447%" height="15" fill="rgb(233,0,4)" fg:x="7326" fg:w="136"/><text x="2.6599%" y="655.50"></text></g><g><title>NullCheckEliminator::merge_state_for (34 samples, 0.01%)</title><rect x="2.5099%" y="597" width="0.0112%" height="15" fill="rgb(235,30,7)" fg:x="7630" fg:w="34"/><text x="2.7599%" y="607.50"></text></g><g><title>NullCheckEliminator::iterate_one (203 samples, 0.07%)</title><rect x="2.4625%" y="613" width="0.0668%" height="15" fill="rgb(250,79,13)" fg:x="7486" fg:w="203"/><text x="2.7125%" y="623.50"></text></g><g><title>IR::eliminate_null_checks (242 samples, 0.08%)</title><rect x="2.4546%" y="645" width="0.0796%" height="15" fill="rgb(211,146,34)" fg:x="7462" fg:w="242"/><text x="2.7046%" y="655.50"></text></g><g><title>Optimizer::eliminate_null_checks (241 samples, 0.08%)</title><rect x="2.4549%" y="629" width="0.0793%" height="15" fill="rgb(228,22,38)" fg:x="7463" fg:w="241"/><text x="2.7049%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (35 samples, 0.01%)</title><rect x="2.5447%" y="565" width="0.0115%" height="15" fill="rgb(235,168,5)" fg:x="7736" fg:w="35"/><text x="2.7947%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (48 samples, 0.02%)</title><rect x="2.5441%" y="581" width="0.0158%" height="15" fill="rgb(221,155,16)" fg:x="7734" fg:w="48"/><text x="2.7941%" y="591.50"></text></g><g><title>IR::optimize_blocks (99 samples, 0.03%)</title><rect x="2.5342%" y="645" width="0.0326%" height="15" fill="rgb(215,215,53)" fg:x="7704" fg:w="99"/><text x="2.7842%" y="655.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (74 samples, 0.02%)</title><rect x="2.5424%" y="629" width="0.0243%" height="15" fill="rgb(223,4,10)" fg:x="7729" fg:w="74"/><text x="2.7924%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (74 samples, 0.02%)</title><rect x="2.5424%" y="613" width="0.0243%" height="15" fill="rgb(234,103,6)" fg:x="7729" fg:w="74"/><text x="2.7924%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (72 samples, 0.02%)</title><rect x="2.5431%" y="597" width="0.0237%" height="15" fill="rgb(227,97,0)" fg:x="7731" fg:w="72"/><text x="2.7931%" y="607.50"></text></g><g><title>IR::split_critical_edges (61 samples, 0.02%)</title><rect x="2.5668%" y="645" width="0.0201%" height="15" fill="rgb(234,150,53)" fg:x="7803" fg:w="61"/><text x="2.8168%" y="655.50"></text></g><g><title>RangeCheckElimination::eliminate (37 samples, 0.01%)</title><rect x="2.5868%" y="645" width="0.0122%" height="15" fill="rgb(228,201,54)" fg:x="7864" fg:w="37"/><text x="2.8368%" y="655.50"></text></g><g><title>Compilation::build_hir (5,557 samples, 1.83%)</title><rect x="0.7727%" y="661" width="1.8279%" height="15" fill="rgb(222,22,37)" fg:x="2349" fg:w="5557"/><text x="1.0227%" y="671.50">C..</text></g><g><title>DebugInformationRecorder::create_scope_values (45 samples, 0.01%)</title><rect x="2.6631%" y="565" width="0.0148%" height="15" fill="rgb(237,53,32)" fg:x="8096" fg:w="45"/><text x="2.9131%" y="575.50"></text></g><g><title>LIR_Assembler::add_call_info (100 samples, 0.03%)</title><rect x="2.6589%" y="597" width="0.0329%" height="15" fill="rgb(233,25,53)" fg:x="8083" fg:w="100"/><text x="2.9089%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (100 samples, 0.03%)</title><rect x="2.6589%" y="581" width="0.0329%" height="15" fill="rgb(210,40,34)" fg:x="8083" fg:w="100"/><text x="2.9089%" y="591.50"></text></g><g><title>LIR_Assembler::call (115 samples, 0.04%)</title><rect x="2.6572%" y="613" width="0.0378%" height="15" fill="rgb(241,220,44)" fg:x="8078" fg:w="115"/><text x="2.9072%" y="623.50"></text></g><g><title>LIR_Assembler::emit_static_call_stub (36 samples, 0.01%)</title><rect x="2.6950%" y="613" width="0.0118%" height="15" fill="rgb(235,28,35)" fg:x="8193" fg:w="36"/><text x="2.9450%" y="623.50"></text></g><g><title>LIR_Assembler::emit_call (205 samples, 0.07%)</title><rect x="2.6444%" y="629" width="0.0674%" height="15" fill="rgb(210,56,17)" fg:x="8039" fg:w="205"/><text x="2.8944%" y="639.50"></text></g><g><title>LIR_Assembler::emit_op0 (43 samples, 0.01%)</title><rect x="2.7118%" y="629" width="0.0141%" height="15" fill="rgb(224,130,29)" fg:x="8244" fg:w="43"/><text x="2.9618%" y="639.50"></text></g><g><title>LIR_Assembler::mem2reg (43 samples, 0.01%)</title><rect x="2.7408%" y="613" width="0.0141%" height="15" fill="rgb(235,212,8)" fg:x="8332" fg:w="43"/><text x="2.9908%" y="623.50"></text></g><g><title>LIR_Assembler::emit_op1 (178 samples, 0.06%)</title><rect x="2.7260%" y="629" width="0.0586%" height="15" fill="rgb(223,33,50)" fg:x="8287" fg:w="178"/><text x="2.9760%" y="639.50"></text></g><g><title>LIR_Assembler::emit_op2 (31 samples, 0.01%)</title><rect x="2.7845%" y="629" width="0.0102%" height="15" fill="rgb(219,149,13)" fg:x="8465" fg:w="31"/><text x="3.0345%" y="639.50"></text></g><g><title>LIR_Assembler::emit_profile_call (74 samples, 0.02%)</title><rect x="2.7950%" y="629" width="0.0243%" height="15" fill="rgb(250,156,29)" fg:x="8497" fg:w="74"/><text x="3.0450%" y="639.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (40 samples, 0.01%)</title><rect x="2.8546%" y="613" width="0.0132%" height="15" fill="rgb(216,193,19)" fg:x="8678" fg:w="40"/><text x="3.1046%" y="623.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (42 samples, 0.01%)</title><rect x="2.8543%" y="629" width="0.0138%" height="15" fill="rgb(216,135,14)" fg:x="8677" fg:w="42"/><text x="3.1043%" y="639.50"></text></g><g><title>LIR_Assembler::emit_code (801 samples, 0.26%)</title><rect x="2.6072%" y="645" width="0.2635%" height="15" fill="rgb(241,47,5)" fg:x="7926" fg:w="801"/><text x="2.8572%" y="655.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (47 samples, 0.02%)</title><rect x="2.8770%" y="645" width="0.0155%" height="15" fill="rgb(233,42,35)" fg:x="8746" fg:w="47"/><text x="3.1270%" y="655.50"></text></g><g><title>MacroAssembler::stop (38 samples, 0.01%)</title><rect x="2.8799%" y="629" width="0.0125%" height="15" fill="rgb(231,13,6)" fg:x="8755" fg:w="38"/><text x="3.1299%" y="639.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (44 samples, 0.01%)</title><rect x="2.9095%" y="565" width="0.0145%" height="15" fill="rgb(207,181,40)" fg:x="8845" fg:w="44"/><text x="3.1595%" y="575.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (69 samples, 0.02%)</title><rect x="2.9052%" y="581" width="0.0227%" height="15" fill="rgb(254,173,49)" fg:x="8832" fg:w="69"/><text x="3.1552%" y="591.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (31 samples, 0.01%)</title><rect x="2.9332%" y="565" width="0.0102%" height="15" fill="rgb(221,1,38)" fg:x="8917" fg:w="31"/><text x="3.1832%" y="575.50"></text></g><g><title>DebugInformationRecorder::describe_scope (53 samples, 0.02%)</title><rect x="2.9279%" y="581" width="0.0174%" height="15" fill="rgb(206,124,46)" fg:x="8901" fg:w="53"/><text x="3.1779%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (169 samples, 0.06%)</title><rect x="2.9000%" y="597" width="0.0556%" height="15" fill="rgb(249,21,11)" fg:x="8816" fg:w="169"/><text x="3.1500%" y="607.50"></text></g><g><title>LIR_Assembler::add_call_info (171 samples, 0.06%)</title><rect x="2.8997%" y="613" width="0.0562%" height="15" fill="rgb(222,201,40)" fg:x="8815" fg:w="171"/><text x="3.1497%" y="623.50"></text></g><g><title>CounterOverflowStub::emit_code (207 samples, 0.07%)</title><rect x="2.8973%" y="629" width="0.0681%" height="15" fill="rgb(235,61,29)" fg:x="8808" fg:w="207"/><text x="3.1473%" y="639.50"></text></g><g><title>CodeEmitInfo::record_debug_info (71 samples, 0.02%)</title><rect x="2.9743%" y="597" width="0.0234%" height="15" fill="rgb(219,207,3)" fg:x="9042" fg:w="71"/><text x="3.2243%" y="607.50"></text></g><g><title>LIR_Assembler::add_call_info (73 samples, 0.02%)</title><rect x="2.9740%" y="613" width="0.0240%" height="15" fill="rgb(222,56,46)" fg:x="9041" fg:w="73"/><text x="3.2240%" y="623.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (81 samples, 0.03%)</title><rect x="2.9730%" y="629" width="0.0266%" height="15" fill="rgb(239,76,54)" fg:x="9038" fg:w="81"/><text x="3.2230%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (31 samples, 0.01%)</title><rect x="3.0010%" y="613" width="0.0102%" height="15" fill="rgb(231,124,27)" fg:x="9123" fg:w="31"/><text x="3.2510%" y="623.50"></text></g><g><title>CodeEmitInfo::record_debug_info (31 samples, 0.01%)</title><rect x="3.0010%" y="597" width="0.0102%" height="15" fill="rgb(249,195,6)" fg:x="9123" fg:w="31"/><text x="3.2510%" y="607.50"></text></g><g><title>NewInstanceStub::emit_code (39 samples, 0.01%)</title><rect x="3.0003%" y="629" width="0.0128%" height="15" fill="rgb(237,174,47)" fg:x="9121" fg:w="39"/><text x="3.2503%" y="639.50"></text></g><g><title>PatchingStub::emit_code (39 samples, 0.01%)</title><rect x="3.0145%" y="629" width="0.0128%" height="15" fill="rgb(206,201,31)" fg:x="9164" fg:w="39"/><text x="3.2645%" y="639.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (442 samples, 0.15%)</title><rect x="2.8924%" y="645" width="0.1454%" height="15" fill="rgb(231,57,52)" fg:x="8793" fg:w="442"/><text x="3.1424%" y="655.50"></text></g><g><title>Compilation::emit_code_body (1,347 samples, 0.44%)</title><rect x="2.6006%" y="661" width="0.4431%" height="15" fill="rgb(248,177,22)" fg:x="7906" fg:w="1347"/><text x="2.8506%" y="671.50"></text></g><g><title>LIRGenerator::block_do_prolog (34 samples, 0.01%)</title><rect x="3.0569%" y="613" width="0.0112%" height="15" fill="rgb(215,211,37)" fg:x="9293" fg:w="34"/><text x="3.3069%" y="623.50"></text></g><g><title>LIRGenerator::increment_event_counter (34 samples, 0.01%)</title><rect x="3.0891%" y="597" width="0.0112%" height="15" fill="rgb(241,128,51)" fg:x="9391" fg:w="34"/><text x="3.3391%" y="607.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (31 samples, 0.01%)</title><rect x="3.0901%" y="581" width="0.0102%" height="15" fill="rgb(227,165,31)" fg:x="9394" fg:w="31"/><text x="3.3401%" y="591.50"></text></g><g><title>LIRGenerator::do_Base (110 samples, 0.04%)</title><rect x="3.0707%" y="613" width="0.0362%" height="15" fill="rgb(228,167,24)" fg:x="9335" fg:w="110"/><text x="3.3207%" y="623.50"></text></g><g><title>LIRGenerator::move_to_phi (60 samples, 0.02%)</title><rect x="3.1191%" y="581" width="0.0197%" height="15" fill="rgb(228,143,12)" fg:x="9482" fg:w="60"/><text x="3.3691%" y="591.50"></text></g><g><title>PhiResolver::create_node (50 samples, 0.02%)</title><rect x="3.1223%" y="565" width="0.0164%" height="15" fill="rgb(249,149,8)" fg:x="9492" fg:w="50"/><text x="3.3723%" y="575.50"></text></g><g><title>LIRGenerator::move_to_phi (269 samples, 0.09%)</title><rect x="3.1161%" y="597" width="0.0885%" height="15" fill="rgb(243,35,44)" fg:x="9473" fg:w="269"/><text x="3.3661%" y="607.50"></text></g><g><title>PhiResolverState::reset (195 samples, 0.06%)</title><rect x="3.1404%" y="581" width="0.0641%" height="15" fill="rgb(246,89,9)" fg:x="9547" fg:w="195"/><text x="3.3904%" y="591.50"></text></g><g><title>GrowableArray&lt;ResolveNode*&gt;::grow (48 samples, 0.02%)</title><rect x="3.1888%" y="565" width="0.0158%" height="15" fill="rgb(233,213,13)" fg:x="9694" fg:w="48"/><text x="3.4388%" y="575.50"></text></g><g><title>LIRGenerator::do_Goto (304 samples, 0.10%)</title><rect x="3.1079%" y="613" width="0.1000%" height="15" fill="rgb(233,141,41)" fg:x="9448" fg:w="304"/><text x="3.3579%" y="623.50"></text></g><g><title>LIRGenerator::do_If (63 samples, 0.02%)</title><rect x="3.2079%" y="613" width="0.0207%" height="15" fill="rgb(239,167,4)" fg:x="9752" fg:w="63"/><text x="3.4579%" y="623.50"></text></g><g><title>FrameMap::java_calling_convention (31 samples, 0.01%)</title><rect x="3.2342%" y="597" width="0.0102%" height="15" fill="rgb(209,217,16)" fg:x="9832" fg:w="31"/><text x="3.4842%" y="607.50"></text></g><g><title>MethodLiveness::get_liveness_at (37 samples, 0.01%)</title><rect x="3.2671%" y="565" width="0.0122%" height="15" fill="rgb(219,88,35)" fg:x="9932" fg:w="37"/><text x="3.5171%" y="575.50"></text></g><g><title>LIRGenerator::state_for (61 samples, 0.02%)</title><rect x="3.2595%" y="597" width="0.0201%" height="15" fill="rgb(220,193,23)" fg:x="9909" fg:w="61"/><text x="3.5095%" y="607.50"></text></g><g><title>ciMethod::liveness_at_bci (39 samples, 0.01%)</title><rect x="3.2668%" y="581" width="0.0128%" height="15" fill="rgb(230,90,52)" fg:x="9931" fg:w="39"/><text x="3.5168%" y="591.50"></text></g><g><title>LIRGenerator::do_Invoke (151 samples, 0.05%)</title><rect x="3.2316%" y="613" width="0.0497%" height="15" fill="rgb(252,106,19)" fg:x="9824" fg:w="151"/><text x="3.4816%" y="623.50"></text></g><g><title>LIRGenerator::do_LoadField (48 samples, 0.02%)</title><rect x="3.2812%" y="613" width="0.0158%" height="15" fill="rgb(206,74,20)" fg:x="9975" fg:w="48"/><text x="3.5312%" y="623.50"></text></g><g><title>LIRGenerator::do_NewInstance (40 samples, 0.01%)</title><rect x="3.3029%" y="613" width="0.0132%" height="15" fill="rgb(230,138,44)" fg:x="10041" fg:w="40"/><text x="3.5529%" y="623.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (38 samples, 0.01%)</title><rect x="3.3345%" y="597" width="0.0125%" height="15" fill="rgb(235,182,43)" fg:x="10137" fg:w="38"/><text x="3.5845%" y="607.50"></text></g><g><title>MethodLiveness::get_liveness_at (36 samples, 0.01%)</title><rect x="3.3549%" y="565" width="0.0118%" height="15" fill="rgb(242,16,51)" fg:x="10199" fg:w="36"/><text x="3.6049%" y="575.50"></text></g><g><title>LIRGenerator::state_for (62 samples, 0.02%)</title><rect x="3.3470%" y="597" width="0.0204%" height="15" fill="rgb(248,9,4)" fg:x="10175" fg:w="62"/><text x="3.5970%" y="607.50"></text></g><g><title>ciMethod::liveness_at_bci (43 samples, 0.01%)</title><rect x="3.3533%" y="581" width="0.0141%" height="15" fill="rgb(210,31,22)" fg:x="10194" fg:w="43"/><text x="3.6033%" y="591.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (113 samples, 0.04%)</title><rect x="3.3339%" y="613" width="0.0372%" height="15" fill="rgb(239,54,39)" fg:x="10135" fg:w="113"/><text x="3.5839%" y="623.50"></text></g><g><title>LIRGenerator::do_StoreField (36 samples, 0.01%)</title><rect x="3.3756%" y="613" width="0.0118%" height="15" fill="rgb(230,99,41)" fg:x="10262" fg:w="36"/><text x="3.6256%" y="623.50"></text></g><g><title>LIRGenerator::block_do (1,075 samples, 0.35%)</title><rect x="3.0457%" y="629" width="0.3536%" height="15" fill="rgb(253,106,12)" fg:x="9259" fg:w="1075"/><text x="3.2957%" y="639.50"></text></g><g><title>BlockList::iterate_forward (1,079 samples, 0.35%)</title><rect x="3.0450%" y="645" width="0.3549%" height="15" fill="rgb(213,46,41)" fg:x="9257" fg:w="1079"/><text x="3.2950%" y="655.50"></text></g><g><title>ControlFlowOptimizer::optimize (41 samples, 0.01%)</title><rect x="3.4000%" y="645" width="0.0135%" height="15" fill="rgb(215,133,35)" fg:x="10336" fg:w="41"/><text x="3.6500%" y="655.50"></text></g><g><title>EdgeMoveOptimizer::optimize (32 samples, 0.01%)</title><rect x="3.4174%" y="629" width="0.0105%" height="15" fill="rgb(213,28,5)" fg:x="10389" fg:w="32"/><text x="3.6674%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (156 samples, 0.05%)</title><rect x="3.4539%" y="597" width="0.0513%" height="15" fill="rgb(215,77,49)" fg:x="10500" fg:w="156"/><text x="3.7039%" y="607.50"></text></g><g><title>IntervalWalker::append_to_unhandled (41 samples, 0.01%)</title><rect x="3.5431%" y="565" width="0.0135%" height="15" fill="rgb(248,100,22)" fg:x="10771" fg:w="41"/><text x="3.7931%" y="575.50"></text></g><g><title>LinearScanWalker::find_free_reg (138 samples, 0.05%)</title><rect x="3.5566%" y="565" width="0.0454%" height="15" fill="rgb(208,67,9)" fg:x="10812" fg:w="138"/><text x="3.8066%" y="575.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (175 samples, 0.06%)</title><rect x="3.6092%" y="565" width="0.0576%" height="15" fill="rgb(219,133,21)" fg:x="10972" fg:w="175"/><text x="3.8592%" y="575.50"></text></g><g><title>Interval::new_split_child (38 samples, 0.01%)</title><rect x="3.6812%" y="533" width="0.0125%" height="15" fill="rgb(246,46,29)" fg:x="11191" fg:w="38"/><text x="3.9312%" y="543.50"></text></g><g><title>Interval::split (69 samples, 0.02%)</title><rect x="3.6730%" y="549" width="0.0227%" height="15" fill="rgb(246,185,52)" fg:x="11166" fg:w="69"/><text x="3.9230%" y="559.50"></text></g><g><title>LinearScanWalker::split_before_usage (97 samples, 0.03%)</title><rect x="3.6668%" y="565" width="0.0319%" height="15" fill="rgb(252,136,11)" fg:x="11147" fg:w="97"/><text x="3.9168%" y="575.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (556 samples, 0.18%)</title><rect x="3.5184%" y="581" width="0.1829%" height="15" fill="rgb(219,138,53)" fg:x="10696" fg:w="556"/><text x="3.7684%" y="591.50"></text></g><g><title>IntervalWalker::append_to_unhandled (49 samples, 0.02%)</title><rect x="3.7168%" y="549" width="0.0161%" height="15" fill="rgb(211,51,23)" fg:x="11299" fg:w="49"/><text x="3.9668%" y="559.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (87 samples, 0.03%)</title><rect x="3.7164%" y="565" width="0.0286%" height="15" fill="rgb(247,221,28)" fg:x="11298" fg:w="87"/><text x="3.9664%" y="575.50"></text></g><g><title>LinearScanWalker::split_before_usage (37 samples, 0.01%)</title><rect x="3.7329%" y="549" width="0.0122%" height="15" fill="rgb(251,222,45)" fg:x="11348" fg:w="37"/><text x="3.9829%" y="559.50"></text></g><g><title>Interval::split_child_before_op_id (34 samples, 0.01%)</title><rect x="3.7470%" y="549" width="0.0112%" height="15" fill="rgb(217,162,53)" fg:x="11391" fg:w="34"/><text x="3.9970%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (182 samples, 0.06%)</title><rect x="3.7013%" y="581" width="0.0599%" height="15" fill="rgb(229,93,14)" fg:x="11252" fg:w="182"/><text x="3.9513%" y="591.50"></text></g><g><title>LinearScanWalker::split_for_spilling (48 samples, 0.02%)</title><rect x="3.7454%" y="565" width="0.0158%" height="15" fill="rgb(209,67,49)" fg:x="11386" fg:w="48"/><text x="3.9954%" y="575.50"></text></g><g><title>LinearScanWalker::insert_move (39 samples, 0.01%)</title><rect x="3.7714%" y="581" width="0.0128%" height="15" fill="rgb(213,87,29)" fg:x="11465" fg:w="39"/><text x="4.0214%" y="591.50"></text></g><g><title>LinearScanWalker::activate_current (854 samples, 0.28%)</title><rect x="3.5052%" y="597" width="0.2809%" height="15" fill="rgb(205,151,52)" fg:x="10656" fg:w="854"/><text x="3.7552%" y="607.50"></text></g><g><title>IntervalWalker::walk_to (1,064 samples, 0.35%)</title><rect x="3.4368%" y="613" width="0.3500%" height="15" fill="rgb(253,215,39)" fg:x="10448" fg:w="1064"/><text x="3.6868%" y="623.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (85 samples, 0.03%)</title><rect x="3.7868%" y="613" width="0.0280%" height="15" fill="rgb(221,220,41)" fg:x="11512" fg:w="85"/><text x="4.0368%" y="623.50"></text></g><g><title>resource_allocate_bytes (58 samples, 0.02%)</title><rect x="3.7957%" y="597" width="0.0191%" height="15" fill="rgb(218,133,21)" fg:x="11539" fg:w="58"/><text x="4.0457%" y="607.50"></text></g><g><title>LinearScan::allocate_registers (1,175 samples, 0.39%)</title><rect x="3.4286%" y="629" width="0.3865%" height="15" fill="rgb(221,193,43)" fg:x="10423" fg:w="1175"/><text x="3.6786%" y="639.50"></text></g><g><title>LIR_OpVisitState::visit (88 samples, 0.03%)</title><rect x="3.8783%" y="597" width="0.0289%" height="15" fill="rgb(240,128,52)" fg:x="11790" fg:w="88"/><text x="4.1283%" y="607.50"></text></g><g><title>Interval::split_child_at_op_id (48 samples, 0.02%)</title><rect x="3.9194%" y="581" width="0.0158%" height="15" fill="rgb(253,114,12)" fg:x="11915" fg:w="48"/><text x="4.1694%" y="591.50"></text></g><g><title>LinearScan::color_lir_opr (90 samples, 0.03%)</title><rect x="3.9079%" y="597" width="0.0296%" height="15" fill="rgb(215,223,47)" fg:x="11880" fg:w="90"/><text x="4.1579%" y="607.50"></text></g><g><title>LinearScan::append_scope_value (34 samples, 0.01%)</title><rect x="3.9450%" y="581" width="0.0112%" height="15" fill="rgb(248,225,23)" fg:x="11993" fg:w="34"/><text x="4.1950%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (56 samples, 0.02%)</title><rect x="3.9750%" y="565" width="0.0184%" height="15" fill="rgb(250,108,0)" fg:x="12084" fg:w="56"/><text x="4.2250%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (112 samples, 0.04%)</title><rect x="3.9602%" y="581" width="0.0368%" height="15" fill="rgb(228,208,7)" fg:x="12039" fg:w="112"/><text x="4.2102%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (195 samples, 0.06%)</title><rect x="3.9375%" y="597" width="0.0641%" height="15" fill="rgb(244,45,10)" fg:x="11970" fg:w="195"/><text x="4.1875%" y="607.50"></text></g><g><title>IntervalWalker::walk_to (110 samples, 0.04%)</title><rect x="4.0246%" y="565" width="0.0362%" height="15" fill="rgb(207,125,25)" fg:x="12235" fg:w="110"/><text x="4.2746%" y="575.50"></text></g><g><title>LinearScan::compute_oop_map (219 samples, 0.07%)</title><rect x="4.0095%" y="581" width="0.0720%" height="15" fill="rgb(210,195,18)" fg:x="12189" fg:w="219"/><text x="4.2595%" y="591.50"></text></g><g><title>LinearScan::compute_oop_map (245 samples, 0.08%)</title><rect x="4.0016%" y="597" width="0.0806%" height="15" fill="rgb(249,80,12)" fg:x="12165" fg:w="245"/><text x="4.2516%" y="607.50"></text></g><g><title>LinearScan::assign_reg_num (808 samples, 0.27%)</title><rect x="3.8171%" y="613" width="0.2658%" height="15" fill="rgb(221,65,9)" fg:x="11604" fg:w="808"/><text x="4.0671%" y="623.50"></text></g><g><title>LinearScan::assign_reg_num (847 samples, 0.28%)</title><rect x="3.8151%" y="629" width="0.2786%" height="15" fill="rgb(235,49,36)" fg:x="11598" fg:w="847"/><text x="4.0651%" y="639.50"></text></g><g><title>BitMap::get_next_one_offset (38 samples, 0.01%)</title><rect x="4.1806%" y="613" width="0.0125%" height="15" fill="rgb(225,32,20)" fg:x="12709" fg:w="38"/><text x="4.4306%" y="623.50"></text></g><g><title>Interval::add_use_pos (32 samples, 0.01%)</title><rect x="4.1990%" y="613" width="0.0105%" height="15" fill="rgb(215,141,46)" fg:x="12765" fg:w="32"/><text x="4.4490%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (94 samples, 0.03%)</title><rect x="4.2125%" y="613" width="0.0309%" height="15" fill="rgb(250,160,47)" fg:x="12806" fg:w="94"/><text x="4.4625%" y="623.50"></text></g><g><title>LIR_OpVisitState::append (36 samples, 0.01%)</title><rect x="4.2316%" y="597" width="0.0118%" height="15" fill="rgb(216,222,40)" fg:x="12864" fg:w="36"/><text x="4.4816%" y="607.50"></text></g><g><title>LinearScan::add_def (72 samples, 0.02%)</title><rect x="4.2434%" y="613" width="0.0237%" height="15" fill="rgb(234,217,39)" fg:x="12900" fg:w="72"/><text x="4.4934%" y="623.50"></text></g><g><title>Interval::add_range (41 samples, 0.01%)</title><rect x="4.2786%" y="597" width="0.0135%" height="15" fill="rgb(207,178,40)" fg:x="13007" fg:w="41"/><text x="4.5286%" y="607.50"></text></g><g><title>Interval::Interval (33 samples, 0.01%)</title><rect x="4.2960%" y="581" width="0.0109%" height="15" fill="rgb(221,136,13)" fg:x="13060" fg:w="33"/><text x="4.5460%" y="591.50"></text></g><g><title>LinearScan::add_temp (107 samples, 0.04%)</title><rect x="4.2746%" y="613" width="0.0352%" height="15" fill="rgb(249,199,10)" fg:x="12995" fg:w="107"/><text x="4.5246%" y="623.50"></text></g><g><title>LinearScan::create_interval (54 samples, 0.02%)</title><rect x="4.2921%" y="597" width="0.0178%" height="15" fill="rgb(249,222,13)" fg:x="13048" fg:w="54"/><text x="4.5421%" y="607.50"></text></g><g><title>Interval::add_range (53 samples, 0.02%)</title><rect x="4.3260%" y="597" width="0.0174%" height="15" fill="rgb(244,185,38)" fg:x="13151" fg:w="53"/><text x="4.5760%" y="607.50"></text></g><g><title>Interval::Interval (67 samples, 0.02%)</title><rect x="4.3510%" y="581" width="0.0220%" height="15" fill="rgb(236,202,9)" fg:x="13227" fg:w="67"/><text x="4.6010%" y="591.50"></text></g><g><title>LinearScan::create_interval (107 samples, 0.04%)</title><rect x="4.3437%" y="597" width="0.0352%" height="15" fill="rgb(250,229,37)" fg:x="13205" fg:w="107"/><text x="4.5937%" y="607.50"></text></g><g><title>LinearScan::add_use (212 samples, 0.07%)</title><rect x="4.3098%" y="613" width="0.0697%" height="15" fill="rgb(206,174,23)" fg:x="13102" fg:w="212"/><text x="4.5598%" y="623.50"></text></g><g><title>LinearScan::use_kind_of_input_operand (33 samples, 0.01%)</title><rect x="4.3845%" y="613" width="0.0109%" height="15" fill="rgb(211,33,43)" fg:x="13329" fg:w="33"/><text x="4.6345%" y="623.50"></text></g><g><title>LinearScan::build_intervals (952 samples, 0.31%)</title><rect x="4.0937%" y="629" width="0.3132%" height="15" fill="rgb(245,58,50)" fg:x="12445" fg:w="952"/><text x="4.3437%" y="639.50"></text></g><g><title>LinearScan::compute_global_live_sets (77 samples, 0.03%)</title><rect x="4.4069%" y="629" width="0.0253%" height="15" fill="rgb(244,68,36)" fg:x="13397" fg:w="77"/><text x="4.6569%" y="639.50"></text></g><g><title>LIR_OpVisitState::visit (103 samples, 0.03%)</title><rect x="4.4885%" y="613" width="0.0339%" height="15" fill="rgb(232,229,15)" fg:x="13645" fg:w="103"/><text x="4.7385%" y="623.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (38 samples, 0.01%)</title><rect x="4.5263%" y="613" width="0.0125%" height="15" fill="rgb(254,30,23)" fg:x="13760" fg:w="38"/><text x="4.7763%" y="623.50"></text></g><g><title>LinearScan::compute_local_live_sets (325 samples, 0.11%)</title><rect x="4.4322%" y="629" width="0.1069%" height="15" fill="rgb(235,160,14)" fg:x="13474" fg:w="325"/><text x="4.6822%" y="639.50"></text></g><g><title>LinearScan::eliminate_spill_moves (76 samples, 0.02%)</title><rect x="4.5391%" y="629" width="0.0250%" height="15" fill="rgb(212,155,44)" fg:x="13799" fg:w="76"/><text x="4.7891%" y="639.50"></text></g><g><title>LinearScan::number_instructions (44 samples, 0.01%)</title><rect x="4.5641%" y="629" width="0.0145%" height="15" fill="rgb(226,2,50)" fg:x="13875" fg:w="44"/><text x="4.8141%" y="639.50"></text></g><g><title>Interval::split_child_at_op_id (52 samples, 0.02%)</title><rect x="4.6059%" y="597" width="0.0171%" height="15" fill="rgb(234,177,6)" fg:x="14002" fg:w="52"/><text x="4.8559%" y="607.50"></text></g><g><title>LinearScan::resolve_collect_mappings (106 samples, 0.03%)</title><rect x="4.5885%" y="613" width="0.0349%" height="15" fill="rgb(217,24,9)" fg:x="13949" fg:w="106"/><text x="4.8385%" y="623.50"></text></g><g><title>LinearScan::resolve_data_flow (158 samples, 0.05%)</title><rect x="4.5809%" y="629" width="0.0520%" height="15" fill="rgb(220,13,46)" fg:x="13926" fg:w="158"/><text x="4.8309%" y="639.50"></text></g><g><title>LinearScan::resolve_exception_handlers (58 samples, 0.02%)</title><rect x="4.6329%" y="629" width="0.0191%" height="15" fill="rgb(239,221,27)" fg:x="14084" fg:w="58"/><text x="4.8829%" y="639.50"></text></g><g><title>__GI___qsort_r (39 samples, 0.01%)</title><rect x="4.6602%" y="613" width="0.0128%" height="15" fill="rgb(222,198,25)" fg:x="14167" fg:w="39"/><text x="4.9102%" y="623.50"></text></g><g><title>msort_with_tmp (37 samples, 0.01%)</title><rect x="4.6608%" y="597" width="0.0122%" height="15" fill="rgb(211,99,13)" fg:x="14169" fg:w="37"/><text x="4.9108%" y="607.50"></text></g><g><title>msort_with_tmp (35 samples, 0.01%)</title><rect x="4.6615%" y="581" width="0.0115%" height="15" fill="rgb(232,111,31)" fg:x="14171" fg:w="35"/><text x="4.9115%" y="591.50"></text></g><g><title>msort_with_tmp (34 samples, 0.01%)</title><rect x="4.6618%" y="565" width="0.0112%" height="15" fill="rgb(245,82,37)" fg:x="14172" fg:w="34"/><text x="4.9118%" y="575.50"></text></g><g><title>msort_with_tmp (33 samples, 0.01%)</title><rect x="4.6621%" y="549" width="0.0109%" height="15" fill="rgb(227,149,46)" fg:x="14173" fg:w="33"/><text x="4.9121%" y="559.50"></text></g><g><title>msort_with_tmp (31 samples, 0.01%)</title><rect x="4.6628%" y="533" width="0.0102%" height="15" fill="rgb(218,36,50)" fg:x="14175" fg:w="31"/><text x="4.9128%" y="543.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (64 samples, 0.02%)</title><rect x="4.6523%" y="629" width="0.0211%" height="15" fill="rgb(226,80,48)" fg:x="14143" fg:w="64"/><text x="4.9023%" y="639.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (54 samples, 0.02%)</title><rect x="4.6733%" y="629" width="0.0178%" height="15" fill="rgb(238,224,15)" fg:x="14207" fg:w="54"/><text x="4.9233%" y="639.50"></text></g><g><title>LinearScan::do_linear_scan (3,878 samples, 1.28%)</title><rect x="3.4158%" y="645" width="1.2756%" height="15" fill="rgb(241,136,10)" fg:x="10384" fg:w="3878"/><text x="3.6658%" y="655.50"></text></g><g><title>Compilation::emit_lir (5,013 samples, 1.65%)</title><rect x="3.0437%" y="661" width="1.6490%" height="15" fill="rgb(208,32,45)" fg:x="9253" fg:w="5013"/><text x="3.2937%" y="671.50"></text></g><g><title>Method::build_interpreter_method_data (69 samples, 0.02%)</title><rect x="4.7036%" y="629" width="0.0227%" height="15" fill="rgb(207,135,9)" fg:x="14299" fg:w="69"/><text x="4.9536%" y="639.50"></text></g><g><title>MethodData::allocate (65 samples, 0.02%)</title><rect x="4.7049%" y="613" width="0.0214%" height="15" fill="rgb(206,86,44)" fg:x="14303" fg:w="65"/><text x="4.9549%" y="623.50"></text></g><g><title>ciMethodData::load_data (58 samples, 0.02%)</title><rect x="4.7269%" y="629" width="0.0191%" height="15" fill="rgb(245,177,15)" fg:x="14370" fg:w="58"/><text x="4.9769%" y="639.50"></text></g><g><title>ciMethod::ensure_method_data (143 samples, 0.05%)</title><rect x="4.7029%" y="645" width="0.0470%" height="15" fill="rgb(206,64,50)" fg:x="14297" fg:w="143"/><text x="4.9529%" y="655.50"></text></g><g><title>Compilation::compile_java_method (12,098 samples, 3.98%)</title><rect x="0.7707%" y="677" width="3.9796%" height="15" fill="rgb(234,36,40)" fg:x="2343" fg:w="12098"/><text x="1.0207%" y="687.50">Comp..</text></g><g><title>ciMethod::ensure_method_data (150 samples, 0.05%)</title><rect x="4.7010%" y="661" width="0.0493%" height="15" fill="rgb(213,64,8)" fg:x="14291" fg:w="150"/><text x="4.9510%" y="671.50"></text></g><g><title>Compilation::initialize (50 samples, 0.02%)</title><rect x="4.7503%" y="677" width="0.0164%" height="15" fill="rgb(210,75,36)" fg:x="14441" fg:w="50"/><text x="5.0003%" y="687.50"></text></g><g><title>CodeBuffer::finalize_oop_references (91 samples, 0.03%)</title><rect x="4.7980%" y="645" width="0.0299%" height="15" fill="rgb(229,88,21)" fg:x="14586" fg:w="91"/><text x="5.0480%" y="655.50"></text></g><g><title>CodeHeap::allocate (48 samples, 0.02%)</title><rect x="4.8283%" y="629" width="0.0158%" height="15" fill="rgb(252,204,47)" fg:x="14678" fg:w="48"/><text x="5.0783%" y="639.50"></text></g><g><title>CodeCache::allocate (78 samples, 0.03%)</title><rect x="4.8279%" y="645" width="0.0257%" height="15" fill="rgb(208,77,27)" fg:x="14677" fg:w="78"/><text x="5.0779%" y="655.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.01%)</title><rect x="4.8621%" y="581" width="0.0115%" height="15" fill="rgb(221,76,26)" fg:x="14781" fg:w="35"/><text x="5.1121%" y="591.50"></text></g><g><title>do_futex (34 samples, 0.01%)</title><rect x="4.8625%" y="565" width="0.0112%" height="15" fill="rgb(225,139,18)" fg:x="14782" fg:w="34"/><text x="5.1125%" y="575.50"></text></g><g><title>futex_wake (34 samples, 0.01%)</title><rect x="4.8625%" y="549" width="0.0112%" height="15" fill="rgb(230,137,11)" fg:x="14782" fg:w="34"/><text x="5.1125%" y="559.50"></text></g><g><title>wake_up_q (31 samples, 0.01%)</title><rect x="4.8635%" y="533" width="0.0102%" height="15" fill="rgb(212,28,1)" fg:x="14785" fg:w="31"/><text x="5.1135%" y="543.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="4.8618%" y="597" width="0.0128%" height="15" fill="rgb(248,164,17)" fg:x="14780" fg:w="39"/><text x="5.1118%" y="607.50"></text></g><g><title>___pthread_cond_signal (41 samples, 0.01%)</title><rect x="4.8615%" y="645" width="0.0135%" height="15" fill="rgb(222,171,42)" fg:x="14779" fg:w="41"/><text x="5.1115%" y="655.50"></text></g><g><title>futex_wake (41 samples, 0.01%)</title><rect x="4.8615%" y="629" width="0.0135%" height="15" fill="rgb(243,84,45)" fg:x="14779" fg:w="41"/><text x="5.1115%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.01%)</title><rect x="4.8618%" y="613" width="0.0132%" height="15" fill="rgb(252,49,23)" fg:x="14780" fg:w="40"/><text x="5.1118%" y="623.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (38 samples, 0.01%)</title><rect x="4.8904%" y="597" width="0.0125%" height="15" fill="rgb(215,19,7)" fg:x="14867" fg:w="38"/><text x="5.1404%" y="607.50"></text></g><g><title>Relocation::pd_call_destination (34 samples, 0.01%)</title><rect x="4.8917%" y="581" width="0.0112%" height="15" fill="rgb(238,81,41)" fg:x="14871" fg:w="34"/><text x="5.1417%" y="591.50"></text></g><g><title>__memmove_sse2_unaligned_erms (36 samples, 0.01%)</title><rect x="4.9144%" y="597" width="0.0118%" height="15" fill="rgb(210,199,37)" fg:x="14940" fg:w="36"/><text x="5.1644%" y="607.50"></text></g><g><title>CodeBuffer::relocate_code_to (140 samples, 0.05%)</title><rect x="4.8809%" y="613" width="0.0461%" height="15" fill="rgb(244,192,49)" fg:x="14838" fg:w="140"/><text x="5.1309%" y="623.50"></text></g><g><title>CodeBuffer::copy_code_to (164 samples, 0.05%)</title><rect x="4.8776%" y="629" width="0.0539%" height="15" fill="rgb(226,211,11)" fg:x="14828" fg:w="164"/><text x="5.1276%" y="639.50"></text></g><g><title>CodeBlob::CodeBlob (36 samples, 0.01%)</title><rect x="4.9375%" y="613" width="0.0118%" height="15" fill="rgb(236,162,54)" fg:x="15010" fg:w="36"/><text x="5.1875%" y="623.50"></text></g><g><title>ImmutableOopMapSet::build_from (35 samples, 0.01%)</title><rect x="4.9378%" y="597" width="0.0115%" height="15" fill="rgb(220,229,9)" fg:x="15011" fg:w="35"/><text x="5.1878%" y="607.50"></text></g><g><title>CompiledMethod::CompiledMethod (48 samples, 0.02%)</title><rect x="4.9371%" y="629" width="0.0158%" height="15" fill="rgb(250,87,22)" fg:x="15009" fg:w="48"/><text x="5.1871%" y="639.50"></text></g><g><title>G1CodeRootSet::add (38 samples, 0.01%)</title><rect x="4.9605%" y="597" width="0.0125%" height="15" fill="rgb(239,43,17)" fg:x="15080" fg:w="38"/><text x="5.2105%" y="607.50"></text></g><g><title>nmethod::oops_do (64 samples, 0.02%)</title><rect x="4.9549%" y="613" width="0.0211%" height="15" fill="rgb(231,177,25)" fg:x="15063" fg:w="64"/><text x="5.2049%" y="623.50"></text></g><g><title>G1CollectedHeap::register_nmethod (65 samples, 0.02%)</title><rect x="4.9549%" y="629" width="0.0214%" height="15" fill="rgb(219,179,1)" fg:x="15063" fg:w="65"/><text x="5.2049%" y="639.50"></text></g><g><title>nmethod::nmethod (363 samples, 0.12%)</title><rect x="4.8750%" y="645" width="0.1194%" height="15" fill="rgb(238,219,53)" fg:x="14820" fg:w="363"/><text x="5.1250%" y="655.50"></text></g><g><title>nmethod::new_nmethod (609 samples, 0.20%)</title><rect x="4.7944%" y="661" width="0.2003%" height="15" fill="rgb(232,167,36)" fg:x="14575" fg:w="609"/><text x="5.0444%" y="671.50"></text></g><g><title>ciEnv::register_method (692 samples, 0.23%)</title><rect x="4.7677%" y="677" width="0.2276%" height="15" fill="rgb(244,19,51)" fg:x="14494" fg:w="692"/><text x="5.0177%" y="687.50"></text></g><g><title>Compilation::compile_method (12,853 samples, 4.23%)</title><rect x="0.7684%" y="693" width="4.2279%" height="15" fill="rgb(224,6,22)" fg:x="2336" fg:w="12853"/><text x="1.0184%" y="703.50">Compi..</text></g><g><title>Compilation::Compilation (12,865 samples, 4.23%)</title><rect x="0.7658%" y="709" width="4.2319%" height="15" fill="rgb(224,145,5)" fg:x="2328" fg:w="12865"/><text x="1.0158%" y="719.50">Compi..</text></g><g><title>Compiler::compile_method (12,886 samples, 4.24%)</title><rect x="0.7599%" y="725" width="4.2388%" height="15" fill="rgb(234,130,49)" fg:x="2310" fg:w="12886"/><text x="1.0099%" y="735.50">Compi..</text></g><g><title>ciObjectFactory::ciObjectFactory (40 samples, 0.01%)</title><rect x="5.0144%" y="709" width="0.0132%" height="15" fill="rgb(254,6,2)" fg:x="15244" fg:w="40"/><text x="5.2644%" y="719.50"></text></g><g><title>ciObjectFactory::get (57 samples, 0.02%)</title><rect x="5.0276%" y="709" width="0.0187%" height="15" fill="rgb(208,96,46)" fg:x="15284" fg:w="57"/><text x="5.2776%" y="719.50"></text></g><g><title>ciObjectFactory::get_metadata (36 samples, 0.01%)</title><rect x="5.0345%" y="693" width="0.0118%" height="15" fill="rgb(239,3,39)" fg:x="15305" fg:w="36"/><text x="5.2845%" y="703.50"></text></g><g><title>ciEnv::ciEnv (109 samples, 0.04%)</title><rect x="5.0108%" y="725" width="0.0359%" height="15" fill="rgb(233,210,1)" fg:x="15233" fg:w="109"/><text x="5.2608%" y="735.50"></text></g><g><title>SignatureStream::as_symbol (42 samples, 0.01%)</title><rect x="5.0615%" y="645" width="0.0138%" height="15" fill="rgb(244,137,37)" fg:x="15387" fg:w="42"/><text x="5.3115%" y="655.50"></text></g><g><title>SymbolTable::lookup (41 samples, 0.01%)</title><rect x="5.0618%" y="629" width="0.0135%" height="15" fill="rgb(240,136,2)" fg:x="15388" fg:w="41"/><text x="5.3118%" y="639.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (39 samples, 0.01%)</title><rect x="5.0773%" y="645" width="0.0128%" height="15" fill="rgb(239,18,37)" fg:x="15435" fg:w="39"/><text x="5.3273%" y="655.50"></text></g><g><title>ciSignature::ciSignature (122 samples, 0.04%)</title><rect x="5.0542%" y="661" width="0.0401%" height="15" fill="rgb(218,185,22)" fg:x="15365" fg:w="122"/><text x="5.3042%" y="671.50"></text></g><g><title>ciMethod::ciMethod (135 samples, 0.04%)</title><rect x="5.0503%" y="677" width="0.0444%" height="15" fill="rgb(225,218,4)" fg:x="15353" fg:w="135"/><text x="5.3003%" y="687.50"></text></g><g><title>ciEnv::get_method_from_handle (158 samples, 0.05%)</title><rect x="5.0467%" y="725" width="0.0520%" height="15" fill="rgb(230,182,32)" fg:x="15342" fg:w="158"/><text x="5.2967%" y="735.50"></text></g><g><title>ciObjectFactory::get_metadata (151 samples, 0.05%)</title><rect x="5.0490%" y="709" width="0.0497%" height="15" fill="rgb(242,56,43)" fg:x="15349" fg:w="151"/><text x="5.2990%" y="719.50"></text></g><g><title>ciObjectFactory::create_new_metadata (148 samples, 0.05%)</title><rect x="5.0500%" y="693" width="0.0487%" height="15" fill="rgb(233,99,24)" fg:x="15352" fg:w="148"/><text x="5.3000%" y="703.50"></text></g><g><title>ciEnv::~ciEnv (36 samples, 0.01%)</title><rect x="5.0987%" y="725" width="0.0118%" height="15" fill="rgb(234,209,42)" fg:x="15500" fg:w="36"/><text x="5.3487%" y="735.50"></text></g><g><title>ciObjectFactory::remove_symbols (32 samples, 0.01%)</title><rect x="5.1000%" y="709" width="0.0105%" height="15" fill="rgb(227,7,12)" fg:x="15504" fg:w="32"/><text x="5.3500%" y="719.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (13,499 samples, 4.44%)</title><rect x="0.6710%" y="741" width="4.4404%" height="15" fill="rgb(245,203,43)" fg:x="2040" fg:w="13499"/><text x="0.9210%" y="751.50">Compi..</text></g><g><title>__do_sys_sysinfo (40 samples, 0.01%)</title><rect x="5.1181%" y="645" width="0.0132%" height="15" fill="rgb(238,205,33)" fg:x="15559" fg:w="40"/><text x="5.3681%" y="655.50"></text></g><g><title>do_sysinfo.isra.0 (36 samples, 0.01%)</title><rect x="5.1194%" y="629" width="0.0118%" height="15" fill="rgb(231,56,7)" fg:x="15563" fg:w="36"/><text x="5.3694%" y="639.50"></text></g><g><title>__x64_sys_sysinfo (41 samples, 0.01%)</title><rect x="5.1181%" y="661" width="0.0135%" height="15" fill="rgb(244,186,29)" fg:x="15559" fg:w="41"/><text x="5.3681%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.01%)</title><rect x="5.1177%" y="693" width="0.0141%" height="15" fill="rgb(234,111,31)" fg:x="15558" fg:w="43"/><text x="5.3677%" y="703.50"></text></g><g><title>do_syscall_64 (43 samples, 0.01%)</title><rect x="5.1177%" y="677" width="0.0141%" height="15" fill="rgb(241,149,10)" fg:x="15558" fg:w="43"/><text x="5.3677%" y="687.50"></text></g><g><title>__sysinfo (46 samples, 0.02%)</title><rect x="5.1174%" y="709" width="0.0151%" height="15" fill="rgb(249,206,44)" fg:x="15557" fg:w="46"/><text x="5.3674%" y="719.50"></text></g><g><title>CompileBroker::possibly_add_compiler_threads (65 samples, 0.02%)</title><rect x="5.1115%" y="741" width="0.0214%" height="15" fill="rgb(251,153,30)" fg:x="15539" fg:w="65"/><text x="5.3615%" y="751.50"></text></g><g><title>os::available_memory (50 samples, 0.02%)</title><rect x="5.1164%" y="725" width="0.0164%" height="15" fill="rgb(239,152,38)" fg:x="15554" fg:w="50"/><text x="5.3664%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.02%)</title><rect x="5.1546%" y="453" width="0.0201%" height="15" fill="rgb(249,139,47)" fg:x="15670" fg:w="61"/><text x="5.4046%" y="463.50"></text></g><g><title>x86_pmu_enable (60 samples, 0.02%)</title><rect x="5.1549%" y="437" width="0.0197%" height="15" fill="rgb(244,64,35)" fg:x="15671" fg:w="60"/><text x="5.4049%" y="447.50"></text></g><g><title>intel_pmu_enable_all (60 samples, 0.02%)</title><rect x="5.1549%" y="421" width="0.0197%" height="15" fill="rgb(216,46,15)" fg:x="15671" fg:w="60"/><text x="5.4049%" y="431.50"></text></g><g><title>native_write_msr (60 samples, 0.02%)</title><rect x="5.1549%" y="405" width="0.0197%" height="15" fill="rgb(250,74,19)" fg:x="15671" fg:w="60"/><text x="5.4049%" y="415.50"></text></g><g><title>finish_task_switch.isra.0 (64 samples, 0.02%)</title><rect x="5.1539%" y="469" width="0.0211%" height="15" fill="rgb(249,42,33)" fg:x="15668" fg:w="64"/><text x="5.4039%" y="479.50"></text></g><g><title>futex_wait_queue_me (81 samples, 0.03%)</title><rect x="5.1500%" y="517" width="0.0266%" height="15" fill="rgb(242,149,17)" fg:x="15656" fg:w="81"/><text x="5.4000%" y="527.50"></text></g><g><title>schedule (75 samples, 0.02%)</title><rect x="5.1519%" y="501" width="0.0247%" height="15" fill="rgb(244,29,21)" fg:x="15662" fg:w="75"/><text x="5.4019%" y="511.50"></text></g><g><title>__schedule (74 samples, 0.02%)</title><rect x="5.1523%" y="485" width="0.0243%" height="15" fill="rgb(220,130,37)" fg:x="15663" fg:w="74"/><text x="5.4023%" y="495.50"></text></g><g><title>do_futex (91 samples, 0.03%)</title><rect x="5.1490%" y="549" width="0.0299%" height="15" fill="rgb(211,67,2)" fg:x="15653" fg:w="91"/><text x="5.3990%" y="559.50"></text></g><g><title>futex_wait (91 samples, 0.03%)</title><rect x="5.1490%" y="533" width="0.0299%" height="15" fill="rgb(235,68,52)" fg:x="15653" fg:w="91"/><text x="5.3990%" y="543.50"></text></g><g><title>__x64_sys_futex (92 samples, 0.03%)</title><rect x="5.1490%" y="565" width="0.0303%" height="15" fill="rgb(246,142,3)" fg:x="15653" fg:w="92"/><text x="5.3990%" y="575.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (99 samples, 0.03%)</title><rect x="5.1483%" y="645" width="0.0326%" height="15" fill="rgb(241,25,7)" fg:x="15651" fg:w="99"/><text x="5.3983%" y="655.50"></text></g><g><title>__futex_abstimed_wait_common (99 samples, 0.03%)</title><rect x="5.1483%" y="629" width="0.0326%" height="15" fill="rgb(242,119,39)" fg:x="15651" fg:w="99"/><text x="5.3983%" y="639.50"></text></g><g><title>__futex_abstimed_wait_common64 (99 samples, 0.03%)</title><rect x="5.1483%" y="613" width="0.0326%" height="15" fill="rgb(241,98,45)" fg:x="15651" fg:w="99"/><text x="5.3983%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (97 samples, 0.03%)</title><rect x="5.1490%" y="597" width="0.0319%" height="15" fill="rgb(254,28,30)" fg:x="15653" fg:w="97"/><text x="5.3990%" y="607.50"></text></g><g><title>do_syscall_64 (97 samples, 0.03%)</title><rect x="5.1490%" y="581" width="0.0319%" height="15" fill="rgb(241,142,54)" fg:x="15653" fg:w="97"/><text x="5.3990%" y="591.50"></text></g><g><title>___pthread_cond_timedwait64 (105 samples, 0.03%)</title><rect x="5.1473%" y="677" width="0.0345%" height="15" fill="rgb(222,85,15)" fg:x="15648" fg:w="105"/><text x="5.3973%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (105 samples, 0.03%)</title><rect x="5.1473%" y="661" width="0.0345%" height="15" fill="rgb(210,85,47)" fg:x="15648" fg:w="105"/><text x="5.3973%" y="671.50"></text></g><g><title>Monitor::wait (116 samples, 0.04%)</title><rect x="5.1454%" y="725" width="0.0382%" height="15" fill="rgb(224,206,25)" fg:x="15642" fg:w="116"/><text x="5.3954%" y="735.50"></text></g><g><title>Monitor::IWait (115 samples, 0.04%)</title><rect x="5.1457%" y="709" width="0.0378%" height="15" fill="rgb(243,201,19)" fg:x="15643" fg:w="115"/><text x="5.3957%" y="719.50"></text></g><g><title>os::PlatformEvent::park (112 samples, 0.04%)</title><rect x="5.1467%" y="693" width="0.0368%" height="15" fill="rgb(236,59,4)" fg:x="15646" fg:w="112"/><text x="5.3967%" y="703.50"></text></g><g><title>TieredThresholdPolicy::select_task (90 samples, 0.03%)</title><rect x="5.1835%" y="725" width="0.0296%" height="15" fill="rgb(254,179,45)" fg:x="15758" fg:w="90"/><text x="5.4335%" y="735.50"></text></g><g><title>CompileQueue::get (246 samples, 0.08%)</title><rect x="5.1329%" y="741" width="0.0809%" height="15" fill="rgb(226,14,10)" fg:x="15604" fg:w="246"/><text x="5.3829%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (13,833 samples, 4.55%)</title><rect x="0.6674%" y="757" width="4.5503%" height="15" fill="rgb(244,27,41)" fg:x="2029" fg:w="13833"/><text x="0.9174%" y="767.50">Compi..</text></g><g><title>__clone3 (13,835 samples, 4.55%)</title><rect x="0.6674%" y="837" width="4.5510%" height="15" fill="rgb(235,35,32)" fg:x="2029" fg:w="13835"/><text x="0.9174%" y="847.50">__clo..</text></g><g><title>start_thread (13,835 samples, 4.55%)</title><rect x="0.6674%" y="821" width="4.5510%" height="15" fill="rgb(218,68,31)" fg:x="2029" fg:w="13835"/><text x="0.9174%" y="831.50">start..</text></g><g><title>thread_native_entry (13,835 samples, 4.55%)</title><rect x="0.6674%" y="805" width="4.5510%" height="15" fill="rgb(207,120,37)" fg:x="2029" fg:w="13835"/><text x="0.9174%" y="815.50">threa..</text></g><g><title>Thread::call_run (13,835 samples, 4.55%)</title><rect x="0.6674%" y="789" width="4.5510%" height="15" fill="rgb(227,98,0)" fg:x="2029" fg:w="13835"/><text x="0.9174%" y="799.50">Threa..</text></g><g><title>JavaThread::thread_main_inner (13,835 samples, 4.55%)</title><rect x="0.6674%" y="773" width="4.5510%" height="15" fill="rgb(207,7,3)" fg:x="2029" fg:w="13835"/><text x="0.9174%" y="783.50">JavaT..</text></g><g><title>C1_CompilerThre (15,888 samples, 5.23%)</title><rect x="0.0115%" y="853" width="5.2263%" height="15" fill="rgb(206,98,19)" fg:x="35" fg:w="15888"/><text x="0.2615%" y="863.50">C1_Com..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (54 samples, 0.02%)</title><rect x="5.2812%" y="837" width="0.0178%" height="15" fill="rgb(217,5,26)" fg:x="16055" fg:w="54"/><text x="5.5312%" y="847.50"></text></g><g><title>RegMask::is_UP (51 samples, 0.02%)</title><rect x="5.2822%" y="821" width="0.0168%" height="15" fill="rgb(235,190,38)" fg:x="16058" fg:w="51"/><text x="5.5322%" y="831.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (38 samples, 0.01%)</title><rect x="5.2990%" y="837" width="0.0125%" height="15" fill="rgb(247,86,24)" fg:x="16109" fg:w="38"/><text x="5.5490%" y="847.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (126 samples, 0.04%)</title><rect x="5.3486%" y="837" width="0.0414%" height="15" fill="rgb(205,101,16)" fg:x="16260" fg:w="126"/><text x="5.5986%" y="847.50"></text></g><g><title>ProjNode::pinned (123 samples, 0.04%)</title><rect x="5.3496%" y="821" width="0.0405%" height="15" fill="rgb(246,168,33)" fg:x="16263" fg:w="123"/><text x="5.5996%" y="831.50"></text></g><g><title>CProjNode::is_CFG (36 samples, 0.01%)</title><rect x="5.4852%" y="821" width="0.0118%" height="15" fill="rgb(231,114,1)" fg:x="16675" fg:w="36"/><text x="5.7352%" y="831.50"></text></g><g><title>IfFalseNode::Opcode (41 samples, 0.01%)</title><rect x="5.6736%" y="821" width="0.0135%" height="15" fill="rgb(207,184,53)" fg:x="17248" fg:w="41"/><text x="5.9236%" y="831.50"></text></g><g><title>IndexSetIterator::advance_and_next (78 samples, 0.03%)</title><rect x="5.7190%" y="821" width="0.0257%" height="15" fill="rgb(224,95,51)" fg:x="17386" fg:w="78"/><text x="5.9690%" y="831.50"></text></g><g><title>MultiNode::is_CFG (93 samples, 0.03%)</title><rect x="5.9243%" y="821" width="0.0306%" height="15" fill="rgb(212,188,45)" fg:x="18010" fg:w="93"/><text x="6.1743%" y="831.50"></text></g><g><title>Node::is_CFG (108 samples, 0.04%)</title><rect x="5.9914%" y="821" width="0.0355%" height="15" fill="rgb(223,154,38)" fg:x="18214" fg:w="108"/><text x="6.2414%" y="831.50"></text></g><g><title>Node::pinned (35 samples, 0.01%)</title><rect x="6.0417%" y="821" width="0.0115%" height="15" fill="rgb(251,22,52)" fg:x="18367" fg:w="35"/><text x="6.2917%" y="831.50"></text></g><g><title>PhiNode::Opcode (46 samples, 0.02%)</title><rect x="6.1983%" y="821" width="0.0151%" height="15" fill="rgb(229,209,22)" fg:x="18843" fg:w="46"/><text x="6.4483%" y="831.50"></text></g><g><title>ProjNode::pinned (36 samples, 0.01%)</title><rect x="6.2493%" y="821" width="0.0118%" height="15" fill="rgb(234,138,34)" fg:x="18998" fg:w="36"/><text x="6.4993%" y="831.50"></text></g><g><title>RegionNode::is_CFG (63 samples, 0.02%)</title><rect x="6.3088%" y="821" width="0.0207%" height="15" fill="rgb(212,95,11)" fg:x="19179" fg:w="63"/><text x="6.5588%" y="831.50"></text></g><g><title>_dl_update_slotinfo (197 samples, 0.06%)</title><rect x="6.5421%" y="821" width="0.0648%" height="15" fill="rgb(240,179,47)" fg:x="19888" fg:w="197"/><text x="6.7921%" y="831.50"></text></g><g><title>find_lowest_bit (71 samples, 0.02%)</title><rect x="6.6980%" y="821" width="0.0234%" height="15" fill="rgb(240,163,11)" fg:x="20362" fg:w="71"/><text x="6.9480%" y="831.50"></text></g><g><title>jmpDirNode::is_block_proj (31 samples, 0.01%)</title><rect x="6.7424%" y="821" width="0.0102%" height="15" fill="rgb(236,37,12)" fg:x="20497" fg:w="31"/><text x="6.9924%" y="831.50"></text></g><g><title>update_get_addr (88 samples, 0.03%)</title><rect x="6.8516%" y="821" width="0.0289%" height="15" fill="rgb(232,164,16)" fg:x="20829" fg:w="88"/><text x="7.1016%" y="831.50"></text></g><g><title>[anon] (4,498 samples, 1.48%)</title><rect x="5.4029%" y="837" width="1.4796%" height="15" fill="rgb(244,205,15)" fg:x="16425" fg:w="4498"/><text x="5.6529%" y="847.50"></text></g><g><title>[perf-720743.map] (31 samples, 0.01%)</title><rect x="6.8842%" y="837" width="0.0102%" height="15" fill="rgb(223,117,47)" fg:x="20928" fg:w="31"/><text x="7.1342%" y="847.50"></text></g><g><title>Compile::inline_string_calls (36 samples, 0.01%)</title><rect x="6.9032%" y="789" width="0.0118%" height="15" fill="rgb(244,107,35)" fg:x="20986" fg:w="36"/><text x="7.1532%" y="799.50"></text></g><g><title>ciTypeFlow::flow_block (36 samples, 0.01%)</title><rect x="6.9184%" y="581" width="0.0118%" height="15" fill="rgb(205,140,8)" fg:x="21032" fg:w="36"/><text x="7.1684%" y="591.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (33 samples, 0.01%)</title><rect x="6.9194%" y="565" width="0.0109%" height="15" fill="rgb(228,84,46)" fg:x="21035" fg:w="33"/><text x="7.1694%" y="575.50"></text></g><g><title>ciTypeFlow::df_flow_types (42 samples, 0.01%)</title><rect x="6.9167%" y="597" width="0.0138%" height="15" fill="rgb(254,188,9)" fg:x="21027" fg:w="42"/><text x="7.1667%" y="607.50"></text></g><g><title>Compile::call_generator (50 samples, 0.02%)</title><rect x="6.9151%" y="677" width="0.0164%" height="15" fill="rgb(206,112,54)" fg:x="21022" fg:w="50"/><text x="7.1651%" y="687.50"></text></g><g><title>InlineTree::ok_to_inline (50 samples, 0.02%)</title><rect x="6.9151%" y="661" width="0.0164%" height="15" fill="rgb(216,84,49)" fg:x="21022" fg:w="50"/><text x="7.1651%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (46 samples, 0.02%)</title><rect x="6.9164%" y="645" width="0.0151%" height="15" fill="rgb(214,194,35)" fg:x="21026" fg:w="46"/><text x="7.1664%" y="655.50"></text></g><g><title>ciTypeFlow::do_flow (46 samples, 0.02%)</title><rect x="6.9164%" y="629" width="0.0151%" height="15" fill="rgb(249,28,3)" fg:x="21026" fg:w="46"/><text x="7.1664%" y="639.50"></text></g><g><title>ciTypeFlow::flow_types (46 samples, 0.02%)</title><rect x="6.9164%" y="613" width="0.0151%" height="15" fill="rgb(222,56,52)" fg:x="21026" fg:w="46"/><text x="7.1664%" y="623.50"></text></g><g><title>ciEnv::get_field_by_index (33 samples, 0.01%)</title><rect x="6.9427%" y="533" width="0.0109%" height="15" fill="rgb(245,217,50)" fg:x="21106" fg:w="33"/><text x="7.1927%" y="543.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (41 samples, 0.01%)</title><rect x="6.9421%" y="565" width="0.0135%" height="15" fill="rgb(213,201,24)" fg:x="21104" fg:w="41"/><text x="7.1921%" y="575.50"></text></g><g><title>ciBytecodeStream::get_field (39 samples, 0.01%)</title><rect x="6.9427%" y="549" width="0.0128%" height="15" fill="rgb(248,116,28)" fg:x="21106" fg:w="39"/><text x="7.1927%" y="559.50"></text></g><g><title>ciObjectFactory::get_metadata (39 samples, 0.01%)</title><rect x="6.9680%" y="517" width="0.0128%" height="15" fill="rgb(219,72,43)" fg:x="21183" fg:w="39"/><text x="7.2180%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (38 samples, 0.01%)</title><rect x="6.9684%" y="501" width="0.0125%" height="15" fill="rgb(209,138,14)" fg:x="21184" fg:w="38"/><text x="7.2184%" y="511.50"></text></g><g><title>ciMethod::ciMethod (33 samples, 0.01%)</title><rect x="6.9700%" y="485" width="0.0109%" height="15" fill="rgb(222,18,33)" fg:x="21189" fg:w="33"/><text x="7.2200%" y="495.50"></text></g><g><title>ciEnv::get_method_by_index_impl (73 samples, 0.02%)</title><rect x="6.9572%" y="533" width="0.0240%" height="15" fill="rgb(213,199,7)" fg:x="21150" fg:w="73"/><text x="7.2072%" y="543.50"></text></g><g><title>ciBytecodeStream::get_method (77 samples, 0.03%)</title><rect x="6.9562%" y="549" width="0.0253%" height="15" fill="rgb(250,110,10)" fg:x="21147" fg:w="77"/><text x="7.2062%" y="559.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (80 samples, 0.03%)</title><rect x="6.9555%" y="565" width="0.0263%" height="15" fill="rgb(248,123,6)" fg:x="21145" fg:w="80"/><text x="7.2055%" y="575.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (137 samples, 0.05%)</title><rect x="6.9398%" y="581" width="0.0451%" height="15" fill="rgb(206,91,31)" fg:x="21097" fg:w="137"/><text x="7.1898%" y="591.50"></text></g><g><title>ciTypeFlow::df_flow_types (159 samples, 0.05%)</title><rect x="6.9328%" y="613" width="0.0523%" height="15" fill="rgb(211,154,13)" fg:x="21076" fg:w="159"/><text x="7.1828%" y="623.50"></text></g><g><title>ciTypeFlow::flow_block (159 samples, 0.05%)</title><rect x="6.9328%" y="597" width="0.0523%" height="15" fill="rgb(225,148,7)" fg:x="21076" fg:w="159"/><text x="7.1828%" y="607.50"></text></g><g><title>InlineTree::ok_to_inline (164 samples, 0.05%)</title><rect x="6.9315%" y="677" width="0.0539%" height="15" fill="rgb(220,160,43)" fg:x="21072" fg:w="164"/><text x="7.1815%" y="687.50"></text></g><g><title>ciMethod::get_flow_analysis (160 samples, 0.05%)</title><rect x="6.9328%" y="661" width="0.0526%" height="15" fill="rgb(213,52,39)" fg:x="21076" fg:w="160"/><text x="7.1828%" y="671.50"></text></g><g><title>ciTypeFlow::do_flow (160 samples, 0.05%)</title><rect x="6.9328%" y="645" width="0.0526%" height="15" fill="rgb(243,137,7)" fg:x="21076" fg:w="160"/><text x="7.1828%" y="655.50"></text></g><g><title>ciTypeFlow::flow_types (160 samples, 0.05%)</title><rect x="6.9328%" y="629" width="0.0526%" height="15" fill="rgb(230,79,13)" fg:x="21076" fg:w="160"/><text x="7.1828%" y="639.50"></text></g><g><title>Compile::call_generator (218 samples, 0.07%)</title><rect x="6.9151%" y="693" width="0.0717%" height="15" fill="rgb(247,105,23)" fg:x="21022" fg:w="218"/><text x="7.1651%" y="703.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (45 samples, 0.01%)</title><rect x="7.0434%" y="469" width="0.0148%" height="15" fill="rgb(223,179,41)" fg:x="21412" fg:w="45"/><text x="7.2934%" y="479.50"></text></g><g><title>ciBytecodeStream::get_method (45 samples, 0.01%)</title><rect x="7.0434%" y="453" width="0.0148%" height="15" fill="rgb(218,9,34)" fg:x="21412" fg:w="45"/><text x="7.2934%" y="463.50"></text></g><g><title>ciEnv::get_method_by_index_impl (41 samples, 0.01%)</title><rect x="7.0447%" y="437" width="0.0135%" height="15" fill="rgb(222,106,8)" fg:x="21416" fg:w="41"/><text x="7.2947%" y="447.50"></text></g><g><title>ciTypeFlow::flow_block (103 samples, 0.03%)</title><rect x="7.0279%" y="501" width="0.0339%" height="15" fill="rgb(211,220,0)" fg:x="21365" fg:w="103"/><text x="7.2779%" y="511.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (87 samples, 0.03%)</title><rect x="7.0332%" y="485" width="0.0286%" height="15" fill="rgb(229,52,16)" fg:x="21381" fg:w="87"/><text x="7.2832%" y="495.50"></text></g><g><title>ciTypeFlow::df_flow_types (115 samples, 0.04%)</title><rect x="7.0246%" y="517" width="0.0378%" height="15" fill="rgb(212,155,18)" fg:x="21355" fg:w="115"/><text x="7.2746%" y="527.50"></text></g><g><title>ciTypeFlow::do_flow (121 samples, 0.04%)</title><rect x="7.0236%" y="549" width="0.0398%" height="15" fill="rgb(242,21,14)" fg:x="21352" fg:w="121"/><text x="7.2736%" y="559.50"></text></g><g><title>ciTypeFlow::flow_types (121 samples, 0.04%)</title><rect x="7.0236%" y="533" width="0.0398%" height="15" fill="rgb(222,19,48)" fg:x="21352" fg:w="121"/><text x="7.2736%" y="543.50"></text></g><g><title>InlineTree::ok_to_inline (159 samples, 0.05%)</title><rect x="7.0118%" y="581" width="0.0523%" height="15" fill="rgb(232,45,27)" fg:x="21316" fg:w="159"/><text x="7.2618%" y="591.50"></text></g><g><title>ciMethod::get_flow_analysis (132 samples, 0.04%)</title><rect x="7.0207%" y="565" width="0.0434%" height="15" fill="rgb(249,103,42)" fg:x="21343" fg:w="132"/><text x="7.2707%" y="575.50"></text></g><g><title>Compile::call_generator (189 samples, 0.06%)</title><rect x="7.0049%" y="597" width="0.0622%" height="15" fill="rgb(246,81,33)" fg:x="21295" fg:w="189"/><text x="7.2549%" y="607.50"></text></g><g><title>ciTypeFlow::df_flow_types (53 samples, 0.02%)</title><rect x="7.1500%" y="421" width="0.0174%" height="15" fill="rgb(252,33,42)" fg:x="21736" fg:w="53"/><text x="7.4000%" y="431.50"></text></g><g><title>ciTypeFlow::flow_block (47 samples, 0.02%)</title><rect x="7.1519%" y="405" width="0.0155%" height="15" fill="rgb(209,212,41)" fg:x="21742" fg:w="47"/><text x="7.4019%" y="415.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (38 samples, 0.01%)</title><rect x="7.1549%" y="389" width="0.0125%" height="15" fill="rgb(207,154,6)" fg:x="21751" fg:w="38"/><text x="7.4049%" y="399.50"></text></g><g><title>ciTypeFlow::do_flow (58 samples, 0.02%)</title><rect x="7.1490%" y="453" width="0.0191%" height="15" fill="rgb(223,64,47)" fg:x="21733" fg:w="58"/><text x="7.3990%" y="463.50"></text></g><g><title>ciTypeFlow::flow_types (58 samples, 0.02%)</title><rect x="7.1490%" y="437" width="0.0191%" height="15" fill="rgb(211,161,38)" fg:x="21733" fg:w="58"/><text x="7.3990%" y="447.50"></text></g><g><title>InlineTree::ok_to_inline (89 samples, 0.03%)</title><rect x="7.1391%" y="485" width="0.0293%" height="15" fill="rgb(219,138,40)" fg:x="21703" fg:w="89"/><text x="7.3891%" y="495.50"></text></g><g><title>ciMethod::get_flow_analysis (64 samples, 0.02%)</title><rect x="7.1473%" y="469" width="0.0211%" height="15" fill="rgb(241,228,46)" fg:x="21728" fg:w="64"/><text x="7.3973%" y="479.50"></text></g><g><title>Compile::call_generator (117 samples, 0.04%)</title><rect x="7.1309%" y="501" width="0.0385%" height="15" fill="rgb(223,209,38)" fg:x="21678" fg:w="117"/><text x="7.3809%" y="511.50"></text></g><g><title>Compile::call_generator (32 samples, 0.01%)</title><rect x="7.2263%" y="405" width="0.0105%" height="15" fill="rgb(236,164,45)" fg:x="21968" fg:w="32"/><text x="7.4763%" y="415.50"></text></g><g><title>Parse::do_one_block (72 samples, 0.02%)</title><rect x="7.2595%" y="357" width="0.0237%" height="15" fill="rgb(231,15,5)" fg:x="22069" fg:w="72"/><text x="7.5095%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (66 samples, 0.02%)</title><rect x="7.2615%" y="341" width="0.0217%" height="15" fill="rgb(252,35,15)" fg:x="22075" fg:w="66"/><text x="7.5115%" y="351.50"></text></g><g><title>Parse::do_all_blocks (81 samples, 0.03%)</title><rect x="7.2585%" y="373" width="0.0266%" height="15" fill="rgb(248,181,18)" fg:x="22066" fg:w="81"/><text x="7.5085%" y="383.50"></text></g><g><title>ParseGenerator::generate (122 samples, 0.04%)</title><rect x="7.2519%" y="405" width="0.0401%" height="15" fill="rgb(233,39,42)" fg:x="22046" fg:w="122"/><text x="7.5019%" y="415.50"></text></g><g><title>Parse::Parse (121 samples, 0.04%)</title><rect x="7.2523%" y="389" width="0.0398%" height="15" fill="rgb(238,110,33)" fg:x="22047" fg:w="121"/><text x="7.5023%" y="399.50"></text></g><g><title>Parse::do_call (249 samples, 0.08%)</title><rect x="7.2253%" y="421" width="0.0819%" height="15" fill="rgb(233,195,10)" fg:x="21965" fg:w="249"/><text x="7.4753%" y="431.50"></text></g><g><title>GraphKit::access_store_at (43 samples, 0.01%)</title><rect x="7.3250%" y="389" width="0.0141%" height="15" fill="rgb(254,105,3)" fg:x="22268" fg:w="43"/><text x="7.5750%" y="399.50"></text></g><g><title>BarrierSetC2::store_at (43 samples, 0.01%)</title><rect x="7.3250%" y="373" width="0.0141%" height="15" fill="rgb(221,225,9)" fg:x="22268" fg:w="43"/><text x="7.5750%" y="383.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (42 samples, 0.01%)</title><rect x="7.3253%" y="357" width="0.0138%" height="15" fill="rgb(224,227,45)" fg:x="22269" fg:w="42"/><text x="7.5753%" y="367.50"></text></g><g><title>Parse::do_put_xxx (47 samples, 0.02%)</title><rect x="7.3243%" y="405" width="0.0155%" height="15" fill="rgb(229,198,43)" fg:x="22266" fg:w="47"/><text x="7.5743%" y="415.50"></text></g><g><title>Parse::do_field_access (91 samples, 0.03%)</title><rect x="7.3134%" y="421" width="0.0299%" height="15" fill="rgb(206,209,35)" fg:x="22233" fg:w="91"/><text x="7.5634%" y="431.50"></text></g><g><title>Parse::do_one_block (482 samples, 0.16%)</title><rect x="7.2098%" y="453" width="0.1586%" height="15" fill="rgb(245,195,53)" fg:x="21918" fg:w="482"/><text x="7.4598%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (470 samples, 0.15%)</title><rect x="7.2138%" y="437" width="0.1546%" height="15" fill="rgb(240,92,26)" fg:x="21930" fg:w="470"/><text x="7.4638%" y="447.50"></text></g><g><title>Parse::do_all_blocks (497 samples, 0.16%)</title><rect x="7.2088%" y="469" width="0.1635%" height="15" fill="rgb(207,40,23)" fg:x="21915" fg:w="497"/><text x="7.4588%" y="479.50"></text></g><g><title>ParseGenerator::generate (573 samples, 0.19%)</title><rect x="7.1940%" y="501" width="0.1885%" height="15" fill="rgb(223,111,35)" fg:x="21870" fg:w="573"/><text x="7.4440%" y="511.50"></text></g><g><title>Parse::Parse (572 samples, 0.19%)</title><rect x="7.1944%" y="485" width="0.1882%" height="15" fill="rgb(229,147,28)" fg:x="21871" fg:w="572"/><text x="7.4444%" y="495.50"></text></g><g><title>Parse::do_one_block (62 samples, 0.02%)</title><rect x="7.3911%" y="437" width="0.0204%" height="15" fill="rgb(211,29,28)" fg:x="22469" fg:w="62"/><text x="7.6411%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.02%)</title><rect x="7.3927%" y="421" width="0.0187%" height="15" fill="rgb(228,72,33)" fg:x="22474" fg:w="57"/><text x="7.6427%" y="431.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.02%)</title><rect x="7.3911%" y="453" width="0.0211%" height="15" fill="rgb(205,214,31)" fg:x="22469" fg:w="64"/><text x="7.6411%" y="463.50"></text></g><g><title>ParseGenerator::generate (70 samples, 0.02%)</title><rect x="7.3904%" y="485" width="0.0230%" height="15" fill="rgb(224,111,15)" fg:x="22467" fg:w="70"/><text x="7.6404%" y="495.50"></text></g><g><title>Parse::Parse (70 samples, 0.02%)</title><rect x="7.3904%" y="469" width="0.0230%" height="15" fill="rgb(253,21,26)" fg:x="22467" fg:w="70"/><text x="7.6404%" y="479.50"></text></g><g><title>PredictedCallGenerator::generate (112 samples, 0.04%)</title><rect x="7.3825%" y="501" width="0.0368%" height="15" fill="rgb(245,139,43)" fg:x="22443" fg:w="112"/><text x="7.6325%" y="511.50"></text></g><g><title>Parse::do_call (926 samples, 0.30%)</title><rect x="7.1292%" y="517" width="0.3046%" height="15" fill="rgb(252,170,7)" fg:x="21673" fg:w="926"/><text x="7.3792%" y="527.50"></text></g><g><title>Parse::do_get_xxx (59 samples, 0.02%)</title><rect x="7.4434%" y="501" width="0.0194%" height="15" fill="rgb(231,118,14)" fg:x="22628" fg:w="59"/><text x="7.6934%" y="511.50"></text></g><g><title>G1BarrierSetC2::post_barrier (38 samples, 0.01%)</title><rect x="7.4671%" y="437" width="0.0125%" height="15" fill="rgb(238,83,0)" fg:x="22700" fg:w="38"/><text x="7.7171%" y="447.50"></text></g><g><title>GraphKit::access_store_at (66 samples, 0.02%)</title><rect x="7.4631%" y="485" width="0.0217%" height="15" fill="rgb(221,39,39)" fg:x="22688" fg:w="66"/><text x="7.7131%" y="495.50"></text></g><g><title>BarrierSetC2::store_at (66 samples, 0.02%)</title><rect x="7.4631%" y="469" width="0.0217%" height="15" fill="rgb(222,119,46)" fg:x="22688" fg:w="66"/><text x="7.7131%" y="479.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (65 samples, 0.02%)</title><rect x="7.4634%" y="453" width="0.0214%" height="15" fill="rgb(222,165,49)" fg:x="22689" fg:w="65"/><text x="7.7134%" y="463.50"></text></g><g><title>Parse::do_put_xxx (70 samples, 0.02%)</title><rect x="7.4628%" y="501" width="0.0230%" height="15" fill="rgb(219,113,52)" fg:x="22687" fg:w="70"/><text x="7.7128%" y="511.50"></text></g><g><title>Parse::do_field_access (159 samples, 0.05%)</title><rect x="7.4378%" y="517" width="0.0523%" height="15" fill="rgb(214,7,15)" fg:x="22611" fg:w="159"/><text x="7.6878%" y="527.50"></text></g><g><title>Parse::do_if (35 samples, 0.01%)</title><rect x="7.4901%" y="517" width="0.0115%" height="15" fill="rgb(235,32,4)" fg:x="22770" fg:w="35"/><text x="7.7401%" y="527.50"></text></g><g><title>Parse::do_one_block (1,280 samples, 0.42%)</title><rect x="7.1046%" y="549" width="0.4210%" height="15" fill="rgb(238,90,54)" fg:x="21598" fg:w="1280"/><text x="7.3546%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (1,258 samples, 0.41%)</title><rect x="7.1118%" y="533" width="0.4138%" height="15" fill="rgb(213,208,19)" fg:x="21620" fg:w="1258"/><text x="7.3618%" y="543.50"></text></g><g><title>Parse::do_all_blocks (1,299 samples, 0.43%)</title><rect x="7.1039%" y="565" width="0.4273%" height="15" fill="rgb(233,156,4)" fg:x="21596" fg:w="1299"/><text x="7.3539%" y="575.50"></text></g><g><title>ParseGenerator::generate (1,398 samples, 0.46%)</title><rect x="7.0881%" y="597" width="0.4599%" height="15" fill="rgb(207,194,5)" fg:x="21548" fg:w="1398"/><text x="7.3381%" y="607.50"></text></g><g><title>Parse::Parse (1,397 samples, 0.46%)</title><rect x="7.0884%" y="581" width="0.4595%" height="15" fill="rgb(206,111,30)" fg:x="21549" fg:w="1397"/><text x="7.3384%" y="591.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.01%)</title><rect x="7.5638%" y="437" width="0.0118%" height="15" fill="rgb(243,70,54)" fg:x="22994" fg:w="36"/><text x="7.8138%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (36 samples, 0.01%)</title><rect x="7.5638%" y="421" width="0.0118%" height="15" fill="rgb(242,28,8)" fg:x="22994" fg:w="36"/><text x="7.8138%" y="431.50"></text></g><g><title>Parse::do_all_blocks (39 samples, 0.01%)</title><rect x="7.5638%" y="453" width="0.0128%" height="15" fill="rgb(219,106,18)" fg:x="22994" fg:w="39"/><text x="7.8138%" y="463.50"></text></g><g><title>ParseGenerator::generate (45 samples, 0.01%)</title><rect x="7.5621%" y="485" width="0.0148%" height="15" fill="rgb(244,222,10)" fg:x="22989" fg:w="45"/><text x="7.8121%" y="495.50"></text></g><g><title>Parse::Parse (45 samples, 0.01%)</title><rect x="7.5621%" y="469" width="0.0148%" height="15" fill="rgb(236,179,52)" fg:x="22989" fg:w="45"/><text x="7.8121%" y="479.50"></text></g><g><title>Parse::do_call (82 samples, 0.03%)</title><rect x="7.5569%" y="501" width="0.0270%" height="15" fill="rgb(213,23,39)" fg:x="22973" fg:w="82"/><text x="7.8069%" y="511.50"></text></g><g><title>Parse::do_one_block (111 samples, 0.04%)</title><rect x="7.5549%" y="533" width="0.0365%" height="15" fill="rgb(238,48,10)" fg:x="22967" fg:w="111"/><text x="7.8049%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (107 samples, 0.04%)</title><rect x="7.5562%" y="517" width="0.0352%" height="15" fill="rgb(251,196,23)" fg:x="22971" fg:w="107"/><text x="7.8062%" y="527.50"></text></g><g><title>Parse::do_all_blocks (114 samples, 0.04%)</title><rect x="7.5542%" y="549" width="0.0375%" height="15" fill="rgb(250,152,24)" fg:x="22965" fg:w="114"/><text x="7.8042%" y="559.50"></text></g><g><title>ParseGenerator::generate (120 samples, 0.04%)</title><rect x="7.5532%" y="581" width="0.0395%" height="15" fill="rgb(209,150,17)" fg:x="22962" fg:w="120"/><text x="7.8032%" y="591.50"></text></g><g><title>Parse::Parse (120 samples, 0.04%)</title><rect x="7.5532%" y="565" width="0.0395%" height="15" fill="rgb(234,202,34)" fg:x="22962" fg:w="120"/><text x="7.8032%" y="575.50"></text></g><g><title>PredictedCallGenerator::generate (158 samples, 0.05%)</title><rect x="7.5483%" y="597" width="0.0520%" height="15" fill="rgb(253,148,53)" fg:x="22947" fg:w="158"/><text x="7.7983%" y="607.50"></text></g><g><title>Parse::do_call (1,856 samples, 0.61%)</title><rect x="7.0049%" y="613" width="0.6105%" height="15" fill="rgb(218,129,16)" fg:x="21295" fg:w="1856"/><text x="7.2549%" y="623.50"></text></g><g><title>G1BarrierSetC2::load_at_resolved (37 samples, 0.01%)</title><rect x="7.6263%" y="549" width="0.0122%" height="15" fill="rgb(216,85,19)" fg:x="23184" fg:w="37"/><text x="7.8763%" y="559.50"></text></g><g><title>BarrierSetC2::load_at_resolved (36 samples, 0.01%)</title><rect x="7.6266%" y="533" width="0.0118%" height="15" fill="rgb(235,228,7)" fg:x="23185" fg:w="36"/><text x="7.8766%" y="543.50"></text></g><g><title>GraphKit::make_load (32 samples, 0.01%)</title><rect x="7.6279%" y="517" width="0.0105%" height="15" fill="rgb(245,175,0)" fg:x="23189" fg:w="32"/><text x="7.8779%" y="527.50"></text></g><g><title>GraphKit::access_load_at (38 samples, 0.01%)</title><rect x="7.6263%" y="581" width="0.0125%" height="15" fill="rgb(208,168,36)" fg:x="23184" fg:w="38"/><text x="7.8763%" y="591.50"></text></g><g><title>BarrierSetC2::load_at (38 samples, 0.01%)</title><rect x="7.6263%" y="565" width="0.0125%" height="15" fill="rgb(246,171,24)" fg:x="23184" fg:w="38"/><text x="7.8763%" y="575.50"></text></g><g><title>Parse::do_get_xxx (67 samples, 0.02%)</title><rect x="7.6217%" y="597" width="0.0220%" height="15" fill="rgb(215,142,24)" fg:x="23170" fg:w="67"/><text x="7.8717%" y="607.50"></text></g><g><title>G1BarrierSetC2::post_barrier (32 samples, 0.01%)</title><rect x="7.6490%" y="533" width="0.0105%" height="15" fill="rgb(250,187,7)" fg:x="23253" fg:w="32"/><text x="7.8990%" y="543.50"></text></g><g><title>GraphKit::access_store_at (82 samples, 0.03%)</title><rect x="7.6444%" y="581" width="0.0270%" height="15" fill="rgb(228,66,33)" fg:x="23239" fg:w="82"/><text x="7.8944%" y="591.50"></text></g><g><title>BarrierSetC2::store_at (81 samples, 0.03%)</title><rect x="7.6447%" y="565" width="0.0266%" height="15" fill="rgb(234,215,21)" fg:x="23240" fg:w="81"/><text x="7.8947%" y="575.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (78 samples, 0.03%)</title><rect x="7.6457%" y="549" width="0.0257%" height="15" fill="rgb(222,191,20)" fg:x="23243" fg:w="78"/><text x="7.8957%" y="559.50"></text></g><g><title>G1BarrierSetC2::pre_barrier (36 samples, 0.01%)</title><rect x="7.6595%" y="533" width="0.0118%" height="15" fill="rgb(245,79,54)" fg:x="23285" fg:w="36"/><text x="7.9095%" y="543.50"></text></g><g><title>Parse::do_put_xxx (88 samples, 0.03%)</title><rect x="7.6437%" y="597" width="0.0289%" height="15" fill="rgb(240,10,37)" fg:x="23237" fg:w="88"/><text x="7.8937%" y="607.50"></text></g><g><title>Parse::do_field_access (164 samples, 0.05%)</title><rect x="7.6197%" y="613" width="0.0539%" height="15" fill="rgb(214,192,32)" fg:x="23164" fg:w="164"/><text x="7.8697%" y="623.50"></text></g><g><title>Parse::do_all_blocks (2,138 samples, 0.70%)</title><rect x="6.9917%" y="661" width="0.7033%" height="15" fill="rgb(209,36,54)" fg:x="21255" fg:w="2138"/><text x="7.2417%" y="671.50"></text></g><g><title>Parse::do_one_block (2,138 samples, 0.70%)</title><rect x="6.9917%" y="645" width="0.7033%" height="15" fill="rgb(220,10,11)" fg:x="21255" fg:w="2138"/><text x="7.2417%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (2,132 samples, 0.70%)</title><rect x="6.9937%" y="629" width="0.7013%" height="15" fill="rgb(221,106,17)" fg:x="21261" fg:w="2132"/><text x="7.2437%" y="639.50"></text></g><g><title>ParseGenerator::generate (2,153 samples, 0.71%)</title><rect x="6.9871%" y="693" width="0.7082%" height="15" fill="rgb(251,142,44)" fg:x="21241" fg:w="2153"/><text x="7.2371%" y="703.50"></text></g><g><title>Parse::Parse (2,153 samples, 0.71%)</title><rect x="6.9871%" y="677" width="0.7082%" height="15" fill="rgb(238,13,15)" fg:x="21241" fg:w="2153"/><text x="7.2371%" y="687.50"></text></g><g><title>Parse::do_call (35 samples, 0.01%)</title><rect x="7.7315%" y="405" width="0.0115%" height="15" fill="rgb(208,107,27)" fg:x="23504" fg:w="35"/><text x="7.9815%" y="415.50"></text></g><g><title>Parse::do_all_blocks (67 samples, 0.02%)</title><rect x="7.7289%" y="453" width="0.0220%" height="15" fill="rgb(205,136,37)" fg:x="23496" fg:w="67"/><text x="7.9789%" y="463.50"></text></g><g><title>Parse::do_one_block (67 samples, 0.02%)</title><rect x="7.7289%" y="437" width="0.0220%" height="15" fill="rgb(250,205,27)" fg:x="23496" fg:w="67"/><text x="7.9789%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (66 samples, 0.02%)</title><rect x="7.7292%" y="421" width="0.0217%" height="15" fill="rgb(210,80,43)" fg:x="23497" fg:w="66"/><text x="7.9792%" y="431.50"></text></g><g><title>ParseGenerator::generate (77 samples, 0.03%)</title><rect x="7.7276%" y="485" width="0.0253%" height="15" fill="rgb(247,160,36)" fg:x="23492" fg:w="77"/><text x="7.9776%" y="495.50"></text></g><g><title>Parse::Parse (77 samples, 0.03%)</title><rect x="7.7276%" y="469" width="0.0253%" height="15" fill="rgb(234,13,49)" fg:x="23492" fg:w="77"/><text x="7.9776%" y="479.50"></text></g><g><title>Parse::do_call (111 samples, 0.04%)</title><rect x="7.7187%" y="501" width="0.0365%" height="15" fill="rgb(234,122,0)" fg:x="23465" fg:w="111"/><text x="7.9687%" y="511.50"></text></g><g><title>Parse::do_all_blocks (180 samples, 0.06%)</title><rect x="7.7148%" y="549" width="0.0592%" height="15" fill="rgb(207,146,38)" fg:x="23453" fg:w="180"/><text x="7.9648%" y="559.50"></text></g><g><title>Parse::do_one_block (179 samples, 0.06%)</title><rect x="7.7151%" y="533" width="0.0589%" height="15" fill="rgb(207,177,25)" fg:x="23454" fg:w="179"/><text x="7.9651%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (177 samples, 0.06%)</title><rect x="7.7157%" y="517" width="0.0582%" height="15" fill="rgb(211,178,42)" fg:x="23456" fg:w="177"/><text x="7.9657%" y="527.50"></text></g><g><title>ParseGenerator::generate (201 samples, 0.07%)</title><rect x="7.7118%" y="581" width="0.0661%" height="15" fill="rgb(230,69,54)" fg:x="23444" fg:w="201"/><text x="7.9618%" y="591.50"></text></g><g><title>Parse::Parse (201 samples, 0.07%)</title><rect x="7.7118%" y="565" width="0.0661%" height="15" fill="rgb(214,135,41)" fg:x="23444" fg:w="201"/><text x="7.9618%" y="575.50"></text></g><g><title>Parse::do_call (260 samples, 0.09%)</title><rect x="7.7023%" y="597" width="0.0855%" height="15" fill="rgb(237,67,25)" fg:x="23415" fg:w="260"/><text x="7.9523%" y="607.50"></text></g><g><title>Parse::do_one_block (325 samples, 0.11%)</title><rect x="7.6980%" y="629" width="0.1069%" height="15" fill="rgb(222,189,50)" fg:x="23402" fg:w="325"/><text x="7.9480%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (323 samples, 0.11%)</title><rect x="7.6986%" y="613" width="0.1062%" height="15" fill="rgb(245,148,34)" fg:x="23404" fg:w="323"/><text x="7.9486%" y="623.50"></text></g><g><title>ParseGenerator::generate (332 samples, 0.11%)</title><rect x="7.6963%" y="677" width="0.1092%" height="15" fill="rgb(222,29,6)" fg:x="23397" fg:w="332"/><text x="7.9463%" y="687.50"></text></g><g><title>Parse::Parse (332 samples, 0.11%)</title><rect x="7.6963%" y="661" width="0.1092%" height="15" fill="rgb(221,189,43)" fg:x="23397" fg:w="332"/><text x="7.9463%" y="671.50"></text></g><g><title>Parse::do_all_blocks (327 samples, 0.11%)</title><rect x="7.6980%" y="645" width="0.1076%" height="15" fill="rgb(207,36,27)" fg:x="23402" fg:w="327"/><text x="7.9480%" y="655.50"></text></g><g><title>Parse::do_call (49 samples, 0.02%)</title><rect x="7.8078%" y="581" width="0.0161%" height="15" fill="rgb(217,90,24)" fg:x="23736" fg:w="49"/><text x="8.0578%" y="591.50"></text></g><g><title>Parse::do_all_blocks (61 samples, 0.02%)</title><rect x="7.8072%" y="629" width="0.0201%" height="15" fill="rgb(224,66,35)" fg:x="23734" fg:w="61"/><text x="8.0572%" y="639.50"></text></g><g><title>Parse::do_one_block (61 samples, 0.02%)</title><rect x="7.8072%" y="613" width="0.0201%" height="15" fill="rgb(221,13,50)" fg:x="23734" fg:w="61"/><text x="8.0572%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.02%)</title><rect x="7.8072%" y="597" width="0.0201%" height="15" fill="rgb(236,68,49)" fg:x="23734" fg:w="61"/><text x="8.0572%" y="607.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.02%)</title><rect x="7.8062%" y="661" width="0.0220%" height="15" fill="rgb(229,146,28)" fg:x="23731" fg:w="67"/><text x="8.0562%" y="671.50"></text></g><g><title>Parse::Parse (67 samples, 0.02%)</title><rect x="7.8062%" y="645" width="0.0220%" height="15" fill="rgb(225,31,38)" fg:x="23731" fg:w="67"/><text x="8.0562%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (71 samples, 0.02%)</title><rect x="7.8055%" y="677" width="0.0234%" height="15" fill="rgb(250,208,3)" fg:x="23729" fg:w="71"/><text x="8.0555%" y="687.50"></text></g><g><title>PredictedCallGenerator::generate (408 samples, 0.13%)</title><rect x="7.6953%" y="693" width="0.1342%" height="15" fill="rgb(246,54,23)" fg:x="23394" fg:w="408"/><text x="7.9453%" y="703.50"></text></g><g><title>Parse::do_call (2,794 samples, 0.92%)</title><rect x="6.9151%" y="709" width="0.9191%" height="15" fill="rgb(243,76,11)" fg:x="21022" fg:w="2794"/><text x="7.1651%" y="719.50"></text></g><g><title>C2Compiler::compile_method (2,870 samples, 0.94%)</title><rect x="6.8953%" y="821" width="0.9441%" height="15" fill="rgb(245,21,50)" fg:x="20962" fg:w="2870"/><text x="7.1453%" y="831.50"></text></g><g><title>Compile::Compile (2,870 samples, 0.94%)</title><rect x="6.8953%" y="805" width="0.9441%" height="15" fill="rgb(228,9,43)" fg:x="20962" fg:w="2870"/><text x="7.1453%" y="815.50"></text></g><g><title>ParseGenerator::generate (2,810 samples, 0.92%)</title><rect x="6.9151%" y="789" width="0.9243%" height="15" fill="rgb(208,100,47)" fg:x="21022" fg:w="2810"/><text x="7.1651%" y="799.50"></text></g><g><title>Parse::Parse (2,810 samples, 0.92%)</title><rect x="6.9151%" y="773" width="0.9243%" height="15" fill="rgb(232,26,8)" fg:x="21022" fg:w="2810"/><text x="7.1651%" y="783.50"></text></g><g><title>Parse::do_all_blocks (2,810 samples, 0.92%)</title><rect x="6.9151%" y="757" width="0.9243%" height="15" fill="rgb(216,166,38)" fg:x="21022" fg:w="2810"/><text x="7.1651%" y="767.50"></text></g><g><title>Parse::do_one_block (2,810 samples, 0.92%)</title><rect x="6.9151%" y="741" width="0.9243%" height="15" fill="rgb(251,202,51)" fg:x="21022" fg:w="2810"/><text x="7.1651%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (2,810 samples, 0.92%)</title><rect x="6.9151%" y="725" width="0.9243%" height="15" fill="rgb(254,216,34)" fg:x="21022" fg:w="2810"/><text x="7.1651%" y="735.50"></text></g><g><title>MachSpillCopyNode::implementation (56 samples, 0.02%)</title><rect x="7.8444%" y="741" width="0.0184%" height="15" fill="rgb(251,32,27)" fg:x="23847" fg:w="56"/><text x="8.0944%" y="751.50"></text></g><g><title>Compile::Output (73 samples, 0.02%)</title><rect x="7.8404%" y="805" width="0.0240%" height="15" fill="rgb(208,127,28)" fg:x="23835" fg:w="73"/><text x="8.0904%" y="815.50"></text></g><g><title>Compile::init_buffer (73 samples, 0.02%)</title><rect x="7.8404%" y="789" width="0.0240%" height="15" fill="rgb(224,137,22)" fg:x="23835" fg:w="73"/><text x="8.0904%" y="799.50"></text></g><g><title>Compile::shorten_branches (62 samples, 0.02%)</title><rect x="7.8440%" y="773" width="0.0204%" height="15" fill="rgb(254,70,32)" fg:x="23846" fg:w="62"/><text x="8.0940%" y="783.50"></text></g><g><title>Compile::scratch_emit_size (62 samples, 0.02%)</title><rect x="7.8440%" y="757" width="0.0204%" height="15" fill="rgb(229,75,37)" fg:x="23846" fg:w="62"/><text x="8.0940%" y="767.50"></text></g><g><title>MachNode::adr_type (41 samples, 0.01%)</title><rect x="7.8809%" y="741" width="0.0135%" height="15" fill="rgb(252,64,23)" fg:x="23958" fg:w="41"/><text x="8.1309%" y="751.50"></text></g><g><title>PhaseCFG::schedule_late (64 samples, 0.02%)</title><rect x="7.8740%" y="773" width="0.0211%" height="15" fill="rgb(232,162,48)" fg:x="23937" fg:w="64"/><text x="8.1240%" y="783.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (64 samples, 0.02%)</title><rect x="7.8740%" y="757" width="0.0211%" height="15" fill="rgb(246,160,12)" fg:x="23937" fg:w="64"/><text x="8.1240%" y="767.50"></text></g><g><title>PhaseCFG::sched_call (244 samples, 0.08%)</title><rect x="7.8950%" y="757" width="0.0803%" height="15" fill="rgb(247,166,0)" fg:x="24001" fg:w="244"/><text x="8.1450%" y="767.50"></text></g><g><title>PhaseCFG::schedule_local (249 samples, 0.08%)</title><rect x="7.8950%" y="773" width="0.0819%" height="15" fill="rgb(249,219,21)" fg:x="24001" fg:w="249"/><text x="8.1450%" y="783.50"></text></g><g><title>PhaseCFG::do_global_code_motion (319 samples, 0.10%)</title><rect x="7.8733%" y="805" width="0.1049%" height="15" fill="rgb(205,209,3)" fg:x="23935" fg:w="319"/><text x="8.1233%" y="815.50"></text></g><g><title>PhaseCFG::global_code_motion (319 samples, 0.10%)</title><rect x="7.8733%" y="789" width="0.1049%" height="15" fill="rgb(243,44,1)" fg:x="23935" fg:w="319"/><text x="8.1233%" y="799.50"></text></g><g><title>Node::add_req (37 samples, 0.01%)</title><rect x="7.9861%" y="741" width="0.0122%" height="15" fill="rgb(206,159,16)" fg:x="24278" fg:w="37"/><text x="8.2361%" y="751.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (54 samples, 0.02%)</title><rect x="7.9819%" y="757" width="0.0178%" height="15" fill="rgb(244,77,30)" fg:x="24265" fg:w="54"/><text x="8.2319%" y="767.50"></text></g><g><title>PhaseChaitin::Split (72 samples, 0.02%)</title><rect x="7.9782%" y="789" width="0.0237%" height="15" fill="rgb(218,69,12)" fg:x="24254" fg:w="72"/><text x="8.2282%" y="799.50"></text></g><g><title>PhaseChaitin::split_USE (61 samples, 0.02%)</title><rect x="7.9819%" y="773" width="0.0201%" height="15" fill="rgb(212,87,7)" fg:x="24265" fg:w="61"/><text x="8.2319%" y="783.50"></text></g><g><title>Compile::Code_Gen (512 samples, 0.17%)</title><rect x="7.8404%" y="821" width="0.1684%" height="15" fill="rgb(245,114,25)" fg:x="23835" fg:w="512"/><text x="8.0904%" y="831.50"></text></g><g><title>PhaseChaitin::Register_Allocate (93 samples, 0.03%)</title><rect x="7.9782%" y="805" width="0.0306%" height="15" fill="rgb(210,61,42)" fg:x="24254" fg:w="93"/><text x="8.2282%" y="815.50"></text></g><g><title>OopFlow::build_oop_map (147 samples, 0.05%)</title><rect x="8.2796%" y="741" width="0.0484%" height="15" fill="rgb(211,52,33)" fg:x="25170" fg:w="147"/><text x="8.5296%" y="751.50"></text></g><g><title>OopFlow::compute_reach (268 samples, 0.09%)</title><rect x="8.2411%" y="757" width="0.0882%" height="15" fill="rgb(234,58,33)" fg:x="25053" fg:w="268"/><text x="8.4911%" y="767.50"></text></g><g><title>__memmove_sse2_unaligned_erms (113 samples, 0.04%)</title><rect x="8.3325%" y="757" width="0.0372%" height="15" fill="rgb(220,115,36)" fg:x="25331" fg:w="113"/><text x="8.5825%" y="767.50"></text></g><g><title>Compile::BuildOopMaps (1,081 samples, 0.36%)</title><rect x="8.0151%" y="773" width="0.3556%" height="15" fill="rgb(243,153,54)" fg:x="24366" fg:w="1081"/><text x="8.2651%" y="783.50"></text></g><g><title>Compile::init_scratch_buffer_blob (38 samples, 0.01%)</title><rect x="8.3769%" y="757" width="0.0125%" height="15" fill="rgb(251,47,18)" fg:x="25466" fg:w="38"/><text x="8.6269%" y="767.50"></text></g><g><title>BufferBlob::create (38 samples, 0.01%)</title><rect x="8.3769%" y="741" width="0.0125%" height="15" fill="rgb(242,102,42)" fg:x="25466" fg:w="38"/><text x="8.6269%" y="751.50"></text></g><g><title>Compile::scratch_emit_size (225 samples, 0.07%)</title><rect x="8.4582%" y="741" width="0.0740%" height="15" fill="rgb(234,31,38)" fg:x="25713" fg:w="225"/><text x="8.7082%" y="751.50"></text></g><g><title>Compile::shorten_branches (471 samples, 0.15%)</title><rect x="8.3894%" y="757" width="0.1549%" height="15" fill="rgb(221,117,51)" fg:x="25504" fg:w="471"/><text x="8.6394%" y="767.50"></text></g><g><title>Compile::init_buffer (530 samples, 0.17%)</title><rect x="8.3707%" y="773" width="0.1743%" height="15" fill="rgb(212,20,18)" fg:x="25447" fg:w="530"/><text x="8.6207%" y="783.50"></text></g><g><title>Compile::Output (1,629 samples, 0.54%)</title><rect x="8.0098%" y="789" width="0.5359%" height="15" fill="rgb(245,133,36)" fg:x="24350" fg:w="1629"/><text x="8.2598%" y="799.50"></text></g><g><title>Compile::FillExceptionTables (34 samples, 0.01%)</title><rect x="8.6095%" y="773" width="0.0112%" height="15" fill="rgb(212,6,19)" fg:x="26173" fg:w="34"/><text x="8.8595%" y="783.50"></text></g><g><title>Compile::FillLocArray (82 samples, 0.03%)</title><rect x="8.6345%" y="757" width="0.0270%" height="15" fill="rgb(218,1,36)" fg:x="26249" fg:w="82"/><text x="8.8845%" y="767.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (55 samples, 0.02%)</title><rect x="8.6700%" y="741" width="0.0181%" height="15" fill="rgb(246,84,54)" fg:x="26357" fg:w="55"/><text x="8.9200%" y="751.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (90 samples, 0.03%)</title><rect x="8.6631%" y="757" width="0.0296%" height="15" fill="rgb(242,110,6)" fg:x="26336" fg:w="90"/><text x="8.9131%" y="767.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (54 samples, 0.02%)</title><rect x="8.6996%" y="741" width="0.0178%" height="15" fill="rgb(214,47,5)" fg:x="26447" fg:w="54"/><text x="8.9496%" y="751.50"></text></g><g><title>DebugInformationRecorder::describe_scope (86 samples, 0.03%)</title><rect x="8.6927%" y="757" width="0.0283%" height="15" fill="rgb(218,159,25)" fg:x="26426" fg:w="86"/><text x="8.9427%" y="767.50"></text></g><g><title>Compile::Process_OopMap_Node (353 samples, 0.12%)</title><rect x="8.6210%" y="773" width="0.1161%" height="15" fill="rgb(215,211,28)" fg:x="26208" fg:w="353"/><text x="8.8710%" y="783.50"></text></g><g><title>Compile::valid_bundle_info (76 samples, 0.02%)</title><rect x="8.7404%" y="773" width="0.0250%" height="15" fill="rgb(238,59,32)" fg:x="26571" fg:w="76"/><text x="8.9904%" y="783.50"></text></g><g><title>MachSpillCopyNode::implementation (45 samples, 0.01%)</title><rect x="8.7740%" y="773" width="0.0148%" height="15" fill="rgb(226,82,3)" fg:x="26673" fg:w="45"/><text x="9.0240%" y="783.50"></text></g><g><title>Compile::fill_buffer (823 samples, 0.27%)</title><rect x="8.5457%" y="789" width="0.2707%" height="15" fill="rgb(240,164,32)" fg:x="25979" fg:w="823"/><text x="8.7957%" y="799.50"></text></g><g><title>Matcher::init_first_stack_mask (45 samples, 0.01%)</title><rect x="8.8358%" y="757" width="0.0148%" height="15" fill="rgb(232,46,7)" fg:x="26861" fg:w="45"/><text x="9.0858%" y="767.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (54 samples, 0.02%)</title><rect x="8.8335%" y="773" width="0.0178%" height="15" fill="rgb(229,129,53)" fg:x="26854" fg:w="54"/><text x="9.0835%" y="783.50"></text></g><g><title>Matcher::is_bmi_pattern (38 samples, 0.01%)</title><rect x="9.0006%" y="757" width="0.0125%" height="15" fill="rgb(234,188,29)" fg:x="27362" fg:w="38"/><text x="9.2506%" y="767.50"></text></g><g><title>Matcher::find_shared (512 samples, 0.17%)</title><rect x="8.8513%" y="773" width="0.1684%" height="15" fill="rgb(246,141,4)" fg:x="26908" fg:w="512"/><text x="9.1013%" y="783.50"></text></g><g><title>Arena::contains (806 samples, 0.27%)</title><rect x="9.1947%" y="757" width="0.2651%" height="15" fill="rgb(229,23,39)" fg:x="27952" fg:w="806"/><text x="9.4447%" y="767.50"></text></g><g><title>Matcher::collect_null_checks (43 samples, 0.01%)</title><rect x="9.4664%" y="757" width="0.0141%" height="15" fill="rgb(206,12,3)" fg:x="28778" fg:w="43"/><text x="9.7164%" y="767.50"></text></g><g><title>Matcher::ReduceInst (39 samples, 0.01%)</title><rect x="9.5187%" y="725" width="0.0128%" height="15" fill="rgb(252,226,20)" fg:x="28937" fg:w="39"/><text x="9.7687%" y="735.50"></text></g><g><title>Matcher::match_tree (171 samples, 0.06%)</title><rect x="9.4924%" y="741" width="0.0562%" height="15" fill="rgb(216,123,35)" fg:x="28857" fg:w="171"/><text x="9.7424%" y="751.50"></text></g><g><title>Node::add_req (52 samples, 0.02%)</title><rect x="9.5315%" y="725" width="0.0171%" height="15" fill="rgb(212,68,40)" fg:x="28976" fg:w="52"/><text x="9.7815%" y="735.50"></text></g><g><title>Matcher::match_sfpt (220 samples, 0.07%)</title><rect x="9.4805%" y="757" width="0.0724%" height="15" fill="rgb(254,125,32)" fg:x="28821" fg:w="220"/><text x="9.7305%" y="767.50"></text></g><g><title>State::DFA (34 samples, 0.01%)</title><rect x="9.7401%" y="677" width="0.0112%" height="15" fill="rgb(253,97,22)" fg:x="29610" fg:w="34"/><text x="9.9901%" y="687.50"></text></g><g><title>Matcher::Label_Root (77 samples, 0.03%)</title><rect x="9.7263%" y="693" width="0.0253%" height="15" fill="rgb(241,101,14)" fg:x="29568" fg:w="77"/><text x="9.9763%" y="703.50"></text></g><g><title>State::DFA (65 samples, 0.02%)</title><rect x="9.7516%" y="693" width="0.0214%" height="15" fill="rgb(238,103,29)" fg:x="29645" fg:w="65"/><text x="10.0016%" y="703.50"></text></g><g><title>Matcher::Label_Root (173 samples, 0.06%)</title><rect x="9.7180%" y="709" width="0.0569%" height="15" fill="rgb(233,195,47)" fg:x="29543" fg:w="173"/><text x="9.9680%" y="719.50"></text></g><g><title>State::_sub_Op_AddP (56 samples, 0.02%)</title><rect x="9.7835%" y="693" width="0.0184%" height="15" fill="rgb(246,218,30)" fg:x="29742" fg:w="56"/><text x="10.0335%" y="703.50"></text></g><g><title>State::DFA (105 samples, 0.03%)</title><rect x="9.7776%" y="709" width="0.0345%" height="15" fill="rgb(219,145,47)" fg:x="29724" fg:w="105"/><text x="10.0276%" y="719.50"></text></g><g><title>Matcher::Label_Root (398 samples, 0.13%)</title><rect x="9.6835%" y="725" width="0.1309%" height="15" fill="rgb(243,12,26)" fg:x="29438" fg:w="398"/><text x="9.9335%" y="735.50"></text></g><g><title>State::DFA (54 samples, 0.02%)</title><rect x="9.8157%" y="725" width="0.0178%" height="15" fill="rgb(214,87,16)" fg:x="29840" fg:w="54"/><text x="10.0657%" y="735.50"></text></g><g><title>Matcher::Label_Root (605 samples, 0.20%)</title><rect x="9.6486%" y="741" width="0.1990%" height="15" fill="rgb(208,99,42)" fg:x="29332" fg:w="605"/><text x="9.8986%" y="751.50"></text></g><g><title>Matcher::ReduceInst_Interior (64 samples, 0.02%)</title><rect x="9.8736%" y="693" width="0.0211%" height="15" fill="rgb(253,99,2)" fg:x="30016" fg:w="64"/><text x="10.1236%" y="703.50"></text></g><g><title>Matcher::ReduceInst (115 samples, 0.04%)</title><rect x="9.8700%" y="709" width="0.0378%" height="15" fill="rgb(220,168,23)" fg:x="30005" fg:w="115"/><text x="10.1200%" y="719.50"></text></g><g><title>Matcher::ReduceOper (35 samples, 0.01%)</title><rect x="9.9111%" y="709" width="0.0115%" height="15" fill="rgb(242,38,24)" fg:x="30130" fg:w="35"/><text x="10.1611%" y="719.50"></text></g><g><title>Matcher::ReduceInst_Interior (232 samples, 0.08%)</title><rect x="9.8611%" y="725" width="0.0763%" height="15" fill="rgb(225,182,9)" fg:x="29978" fg:w="232"/><text x="10.1111%" y="735.50"></text></g><g><title>State::MachOperGenerator (38 samples, 0.01%)</title><rect x="9.9249%" y="709" width="0.0125%" height="15" fill="rgb(243,178,37)" fg:x="30172" fg:w="38"/><text x="10.1749%" y="719.50"></text></g><g><title>State::MachNodeGenerator (79 samples, 0.03%)</title><rect x="9.9493%" y="725" width="0.0260%" height="15" fill="rgb(232,139,19)" fg:x="30246" fg:w="79"/><text x="10.1993%" y="735.50"></text></g><g><title>Matcher::ReduceInst (417 samples, 0.14%)</title><rect x="9.8476%" y="741" width="0.1372%" height="15" fill="rgb(225,201,24)" fg:x="29937" fg:w="417"/><text x="10.0976%" y="751.50"></text></g><g><title>Matcher::match_tree (1,342 samples, 0.44%)</title><rect x="9.5529%" y="757" width="0.4414%" height="15" fill="rgb(221,47,46)" fg:x="29041" fg:w="1342"/><text x="9.8029%" y="767.50"></text></g><g><title>Node::clone (107 samples, 0.04%)</title><rect x="9.9983%" y="757" width="0.0352%" height="15" fill="rgb(249,23,13)" fg:x="30395" fg:w="107"/><text x="10.2483%" y="767.50"></text></g><g><title>Node::out_grow (52 samples, 0.02%)</title><rect x="10.0348%" y="757" width="0.0171%" height="15" fill="rgb(219,9,5)" fg:x="30506" fg:w="52"/><text x="10.2848%" y="767.50"></text></g><g><title>Matcher::xform (3,131 samples, 1.03%)</title><rect x="9.0243%" y="773" width="1.0299%" height="15" fill="rgb(254,171,16)" fg:x="27434" fg:w="3131"/><text x="9.2743%" y="783.50"></text></g><g><title>Matcher::match (3,766 samples, 1.24%)</title><rect x="8.8197%" y="789" width="1.2388%" height="15" fill="rgb(230,171,20)" fg:x="26812" fg:w="3766"/><text x="9.0697%" y="799.50"></text></g><g><title>PhaseBlockLayout::find_edges (88 samples, 0.03%)</title><rect x="10.0598%" y="773" width="0.0289%" height="15" fill="rgb(210,71,41)" fg:x="30582" fg:w="88"/><text x="10.3098%" y="783.50"></text></g><g><title>__GI___qsort_r (47 samples, 0.02%)</title><rect x="10.0957%" y="757" width="0.0155%" height="15" fill="rgb(206,173,20)" fg:x="30691" fg:w="47"/><text x="10.3457%" y="767.50"></text></g><g><title>msort_with_tmp (46 samples, 0.02%)</title><rect x="10.0960%" y="741" width="0.0151%" height="15" fill="rgb(233,88,34)" fg:x="30692" fg:w="46"/><text x="10.3460%" y="751.50"></text></g><g><title>msort_with_tmp (46 samples, 0.02%)</title><rect x="10.0960%" y="725" width="0.0151%" height="15" fill="rgb(223,209,46)" fg:x="30692" fg:w="46"/><text x="10.3460%" y="735.50"></text></g><g><title>msort_with_tmp (38 samples, 0.01%)</title><rect x="10.0986%" y="709" width="0.0125%" height="15" fill="rgb(250,43,18)" fg:x="30700" fg:w="38"/><text x="10.3486%" y="719.50"></text></g><g><title>msort_with_tmp (38 samples, 0.01%)</title><rect x="10.0986%" y="693" width="0.0125%" height="15" fill="rgb(208,13,10)" fg:x="30700" fg:w="38"/><text x="10.3486%" y="703.50"></text></g><g><title>PhaseBlockLayout::grow_traces (69 samples, 0.02%)</title><rect x="10.0887%" y="773" width="0.0227%" height="15" fill="rgb(212,200,36)" fg:x="30670" fg:w="69"/><text x="10.3387%" y="783.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (204 samples, 0.07%)</title><rect x="10.0588%" y="789" width="0.0671%" height="15" fill="rgb(225,90,30)" fg:x="30579" fg:w="204"/><text x="10.3088%" y="799.50"></text></g><g><title>PhaseCFG::PhaseCFG (196 samples, 0.06%)</title><rect x="10.1259%" y="789" width="0.0645%" height="15" fill="rgb(236,182,39)" fg:x="30783" fg:w="196"/><text x="10.3759%" y="799.50"></text></g><g><title>PhaseCFG::build_cfg (184 samples, 0.06%)</title><rect x="10.1299%" y="773" width="0.0605%" height="15" fill="rgb(212,144,35)" fg:x="30795" fg:w="184"/><text x="10.3799%" y="783.50"></text></g><g><title>PhaseCFG::do_DFS (45 samples, 0.01%)</title><rect x="10.2137%" y="757" width="0.0148%" height="15" fill="rgb(228,63,44)" fg:x="31050" fg:w="45"/><text x="10.4637%" y="767.50"></text></g><g><title>PhaseCFG::build_dominator_tree (117 samples, 0.04%)</title><rect x="10.1904%" y="773" width="0.0385%" height="15" fill="rgb(228,109,6)" fg:x="30979" fg:w="117"/><text x="10.4404%" y="783.50"></text></g><g><title>CFGLoop::compute_freq (43 samples, 0.01%)</title><rect x="10.2332%" y="757" width="0.0141%" height="15" fill="rgb(238,117,24)" fg:x="31109" fg:w="43"/><text x="10.4832%" y="767.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (88 samples, 0.03%)</title><rect x="10.2289%" y="773" width="0.0289%" height="15" fill="rgb(242,26,26)" fg:x="31096" fg:w="88"/><text x="10.4789%" y="783.50"></text></g><g><title>PhaseCFG::implicit_null_check (69 samples, 0.02%)</title><rect x="10.4246%" y="757" width="0.0227%" height="15" fill="rgb(221,92,48)" fg:x="31691" fg:w="69"/><text x="10.6746%" y="767.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (64 samples, 0.02%)</title><rect x="10.4476%" y="757" width="0.0211%" height="15" fill="rgb(209,209,32)" fg:x="31761" fg:w="64"/><text x="10.6976%" y="767.50"></text></g><g><title>Node_Backward_Iterator::next (375 samples, 0.12%)</title><rect x="10.5200%" y="741" width="0.1234%" height="15" fill="rgb(221,70,22)" fg:x="31981" fg:w="375"/><text x="10.7700%" y="751.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (185 samples, 0.06%)</title><rect x="10.6434%" y="741" width="0.0609%" height="15" fill="rgb(248,145,5)" fg:x="32356" fg:w="185"/><text x="10.8934%" y="751.50"></text></g><g><title>MachNode::adr_type (43 samples, 0.01%)</title><rect x="10.7489%" y="725" width="0.0141%" height="15" fill="rgb(226,116,26)" fg:x="32677" fg:w="43"/><text x="10.9989%" y="735.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (204 samples, 0.07%)</title><rect x="10.7042%" y="741" width="0.0671%" height="15" fill="rgb(244,5,17)" fg:x="32541" fg:w="204"/><text x="10.9542%" y="751.50"></text></g><g><title>Node_Array::insert (48 samples, 0.02%)</title><rect x="10.7871%" y="725" width="0.0158%" height="15" fill="rgb(252,159,33)" fg:x="32793" fg:w="48"/><text x="11.0371%" y="735.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (98 samples, 0.03%)</title><rect x="10.7713%" y="741" width="0.0322%" height="15" fill="rgb(206,71,0)" fg:x="32745" fg:w="98"/><text x="11.0213%" y="751.50"></text></g><g><title>PhaseCFG::schedule_late (1,026 samples, 0.34%)</title><rect x="10.4687%" y="757" width="0.3375%" height="15" fill="rgb(233,118,54)" fg:x="31825" fg:w="1026"/><text x="10.7187%" y="767.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (77 samples, 0.03%)</title><rect x="10.9348%" y="741" width="0.0253%" height="15" fill="rgb(234,83,48)" fg:x="33242" fg:w="77"/><text x="11.1848%" y="751.50"></text></g><g><title>PhaseCFG::needed_for_next_call (39 samples, 0.01%)</title><rect x="10.9601%" y="741" width="0.0128%" height="15" fill="rgb(228,3,54)" fg:x="33319" fg:w="39"/><text x="11.2101%" y="751.50"></text></g><g><title>PhaseCFG::select (134 samples, 0.04%)</title><rect x="10.9730%" y="741" width="0.0441%" height="15" fill="rgb(226,155,13)" fg:x="33358" fg:w="134"/><text x="11.2230%" y="751.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (84 samples, 0.03%)</title><rect x="11.0170%" y="741" width="0.0276%" height="15" fill="rgb(241,28,37)" fg:x="33492" fg:w="84"/><text x="11.2670%" y="751.50"></text></g><g><title>PhaseChaitin::raise_pressure (36 samples, 0.01%)</title><rect x="11.0328%" y="725" width="0.0118%" height="15" fill="rgb(233,93,10)" fg:x="33540" fg:w="36"/><text x="11.2828%" y="735.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (62 samples, 0.02%)</title><rect x="11.0447%" y="741" width="0.0204%" height="15" fill="rgb(225,113,19)" fg:x="33576" fg:w="62"/><text x="11.2947%" y="751.50"></text></g><g><title>PhaseCFG::schedule_local (795 samples, 0.26%)</title><rect x="10.8062%" y="757" width="0.2615%" height="15" fill="rgb(241,2,18)" fg:x="32851" fg:w="795"/><text x="11.0562%" y="767.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (32 samples, 0.01%)</title><rect x="11.0677%" y="757" width="0.0105%" height="15" fill="rgb(228,207,21)" fg:x="33646" fg:w="32"/><text x="11.3177%" y="767.50"></text></g><g><title>PhaseChaitin::PhaseChaitin (32 samples, 0.01%)</title><rect x="11.0785%" y="757" width="0.0105%" height="15" fill="rgb(213,211,35)" fg:x="33679" fg:w="32"/><text x="11.3285%" y="767.50"></text></g><g><title>RegMask::Size (142 samples, 0.05%)</title><rect x="11.2029%" y="741" width="0.0467%" height="15" fill="rgb(209,83,10)" fg:x="34057" fg:w="142"/><text x="11.4529%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (34 samples, 0.01%)</title><rect x="11.2496%" y="741" width="0.0112%" height="15" fill="rgb(209,164,1)" fg:x="34199" fg:w="34"/><text x="11.4996%" y="751.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (588 samples, 0.19%)</title><rect x="11.0891%" y="757" width="0.1934%" height="15" fill="rgb(213,184,43)" fg:x="33711" fg:w="588"/><text x="11.3391%" y="767.50"></text></g><g><title>PhaseChaitin::mark_ssa (135 samples, 0.04%)</title><rect x="11.2825%" y="757" width="0.0444%" height="15" fill="rgb(231,61,34)" fg:x="34299" fg:w="135"/><text x="11.5325%" y="767.50"></text></g><g><title>IndexSet::initialize (148 samples, 0.05%)</title><rect x="11.3470%" y="741" width="0.0487%" height="15" fill="rgb(235,75,3)" fg:x="34495" fg:w="148"/><text x="11.5970%" y="751.50"></text></g><g><title>PhaseIFG::init (253 samples, 0.08%)</title><rect x="11.3269%" y="757" width="0.0832%" height="15" fill="rgb(220,106,47)" fg:x="34434" fg:w="253"/><text x="11.5769%" y="767.50"></text></g><g><title>[libc.so.6] (44 samples, 0.01%)</title><rect x="11.3956%" y="741" width="0.0145%" height="15" fill="rgb(210,196,33)" fg:x="34643" fg:w="44"/><text x="11.6456%" y="751.50"></text></g><g><title>IndexSet::initialize (78 samples, 0.03%)</title><rect x="11.5292%" y="741" width="0.0257%" height="15" fill="rgb(229,154,42)" fg:x="35049" fg:w="78"/><text x="11.7792%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (41 samples, 0.01%)</title><rect x="11.5881%" y="725" width="0.0135%" height="15" fill="rgb(228,114,26)" fg:x="35228" fg:w="41"/><text x="11.8381%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (122 samples, 0.04%)</title><rect x="11.6022%" y="725" width="0.0401%" height="15" fill="rgb(208,144,1)" fg:x="35271" fg:w="122"/><text x="11.8522%" y="735.50"></text></g><g><title>PhaseLive::add_livein (266 samples, 0.09%)</title><rect x="11.5552%" y="741" width="0.0875%" height="15" fill="rgb(239,112,37)" fg:x="35128" fg:w="266"/><text x="11.8052%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (97 samples, 0.03%)</title><rect x="11.7282%" y="725" width="0.0319%" height="15" fill="rgb(210,96,50)" fg:x="35654" fg:w="97"/><text x="11.9782%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (173 samples, 0.06%)</title><rect x="11.7693%" y="725" width="0.0569%" height="15" fill="rgb(222,178,2)" fg:x="35779" fg:w="173"/><text x="12.0193%" y="735.50"></text></g><g><title>PhaseLive::add_liveout (565 samples, 0.19%)</title><rect x="11.6427%" y="741" width="0.1859%" height="15" fill="rgb(226,74,18)" fg:x="35394" fg:w="565"/><text x="11.8927%" y="751.50"></text></g><g><title>PhaseLive::compute (1,274 samples, 0.42%)</title><rect x="11.4108%" y="757" width="0.4191%" height="15" fill="rgb(225,67,54)" fg:x="34689" fg:w="1274"/><text x="11.6608%" y="767.50"></text></g><g><title>PhaseCFG::global_code_motion (4,797 samples, 1.58%)</title><rect x="10.2578%" y="773" width="1.5780%" height="15" fill="rgb(251,92,32)" fg:x="31184" fg:w="4797"/><text x="10.5078%" y="783.50"></text></g><g><title>PhaseCFG::do_global_code_motion (5,005 samples, 1.65%)</title><rect x="10.1904%" y="789" width="1.6464%" height="15" fill="rgb(228,149,22)" fg:x="30979" fg:w="5005"/><text x="10.4404%" y="799.50"></text></g><g><title>PhaseCFG::fixup_flow (35 samples, 0.01%)</title><rect x="11.8368%" y="789" width="0.0115%" height="15" fill="rgb(243,54,13)" fg:x="35984" fg:w="35"/><text x="12.0868%" y="799.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (101 samples, 0.03%)</title><rect x="11.8483%" y="789" width="0.0332%" height="15" fill="rgb(243,180,28)" fg:x="36019" fg:w="101"/><text x="12.0983%" y="799.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,703 samples, 0.56%)</title><rect x="11.9479%" y="773" width="0.5602%" height="15" fill="rgb(208,167,24)" fg:x="36322" fg:w="1703"/><text x="12.1979%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (527 samples, 0.17%)</title><rect x="12.8328%" y="757" width="0.1734%" height="15" fill="rgb(245,73,45)" fg:x="39012" fg:w="527"/><text x="13.0828%" y="767.50"></text></g><g><title>RegMask::find_first_set (62 samples, 0.02%)</title><rect x="13.0529%" y="741" width="0.0204%" height="15" fill="rgb(237,203,48)" fg:x="39681" fg:w="62"/><text x="13.3029%" y="751.50"></text></g><g><title>PhaseChaitin::bias_color (227 samples, 0.07%)</title><rect x="13.0062%" y="757" width="0.0747%" height="15" fill="rgb(211,197,16)" fg:x="39539" fg:w="227"/><text x="13.2562%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (91 samples, 0.03%)</title><rect x="13.2775%" y="741" width="0.0299%" height="15" fill="rgb(243,99,51)" fg:x="40364" fg:w="91"/><text x="13.5275%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (110 samples, 0.04%)</title><rect x="13.3075%" y="741" width="0.0362%" height="15" fill="rgb(215,123,29)" fg:x="40455" fg:w="110"/><text x="13.5575%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (586 samples, 0.19%)</title><rect x="13.3437%" y="741" width="0.1928%" height="15" fill="rgb(239,186,37)" fg:x="40565" fg:w="586"/><text x="13.5937%" y="751.50"></text></g><g><title>PhaseIFG::re_insert (1,392 samples, 0.46%)</title><rect x="13.0861%" y="757" width="0.4579%" height="15" fill="rgb(252,136,39)" fg:x="39782" fg:w="1392"/><text x="13.3361%" y="767.50"></text></g><g><title>RegMask::clear_to_sets (272 samples, 0.09%)</title><rect x="13.5440%" y="757" width="0.0895%" height="15" fill="rgb(223,213,32)" fg:x="41174" fg:w="272"/><text x="13.7940%" y="767.50"></text></g><g><title>PhaseChaitin::Select (3,437 samples, 1.13%)</title><rect x="12.5081%" y="773" width="1.1306%" height="15" fill="rgb(233,115,5)" fg:x="38025" fg:w="3437"/><text x="12.7581%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (584 samples, 0.19%)</title><rect x="13.7743%" y="757" width="0.1921%" height="15" fill="rgb(207,226,44)" fg:x="41874" fg:w="584"/><text x="14.0243%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (91 samples, 0.03%)</title><rect x="14.2094%" y="741" width="0.0299%" height="15" fill="rgb(208,126,0)" fg:x="43197" fg:w="91"/><text x="14.4594%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (723 samples, 0.24%)</title><rect x="14.2394%" y="741" width="0.2378%" height="15" fill="rgb(244,66,21)" fg:x="43288" fg:w="723"/><text x="14.4894%" y="751.50"></text></g><g><title>PhaseIFG::remove_node (1,585 samples, 0.52%)</title><rect x="13.9664%" y="757" width="0.5214%" height="15" fill="rgb(222,97,12)" fg:x="42458" fg:w="1585"/><text x="14.2164%" y="767.50"></text></g><g><title>PhaseChaitin::Simplify (2,588 samples, 0.85%)</title><rect x="13.6387%" y="773" width="0.8513%" height="15" fill="rgb(219,213,19)" fg:x="41462" fg:w="2588"/><text x="13.8887%" y="783.50"></text></g><g><title>CProjNode::is_block_proj (44 samples, 0.01%)</title><rect x="15.7594%" y="757" width="0.0145%" height="15" fill="rgb(252,169,30)" fg:x="47909" fg:w="44"/><text x="16.0094%" y="767.50"></text></g><g><title>MachNode::ideal_reg (43 samples, 0.01%)</title><rect x="15.8565%" y="741" width="0.0141%" height="15" fill="rgb(206,32,51)" fg:x="48204" fg:w="43"/><text x="16.1065%" y="751.50"></text></g><g><title>MachNode::rematerialize (248 samples, 0.08%)</title><rect x="15.7923%" y="757" width="0.0816%" height="15" fill="rgb(250,172,42)" fg:x="48009" fg:w="248"/><text x="16.0423%" y="767.50"></text></g><g><title>Node::rematerialize (237 samples, 0.08%)</title><rect x="15.8953%" y="757" width="0.0780%" height="15" fill="rgb(209,34,43)" fg:x="48322" fg:w="237"/><text x="16.1453%" y="767.50"></text></g><g><title>Node::replace_by (31 samples, 0.01%)</title><rect x="15.9733%" y="757" width="0.0102%" height="15" fill="rgb(223,11,35)" fg:x="48559" fg:w="31"/><text x="16.2233%" y="767.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (40 samples, 0.01%)</title><rect x="16.0052%" y="741" width="0.0132%" height="15" fill="rgb(251,219,26)" fg:x="48656" fg:w="40"/><text x="16.2552%" y="751.50"></text></g><g><title>PhaseChaitin::split_DEF (56 samples, 0.02%)</title><rect x="16.0025%" y="757" width="0.0184%" height="15" fill="rgb(231,119,3)" fg:x="48648" fg:w="56"/><text x="16.2525%" y="767.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (64 samples, 0.02%)</title><rect x="16.0209%" y="757" width="0.0211%" height="15" fill="rgb(216,97,11)" fg:x="48704" fg:w="64"/><text x="16.2709%" y="767.50"></text></g><g><title>RegMask::is_aligned_pairs (54 samples, 0.02%)</title><rect x="16.0913%" y="725" width="0.0178%" height="15" fill="rgb(223,59,9)" fg:x="48918" fg:w="54"/><text x="16.3413%" y="735.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (127 samples, 0.04%)</title><rect x="16.0703%" y="741" width="0.0418%" height="15" fill="rgb(233,93,31)" fg:x="48854" fg:w="127"/><text x="16.3203%" y="751.50"></text></g><g><title>PhaseChaitin::insert_proj (39 samples, 0.01%)</title><rect x="16.1121%" y="741" width="0.0128%" height="15" fill="rgb(239,81,33)" fg:x="48981" fg:w="39"/><text x="16.3621%" y="751.50"></text></g><g><title>PhaseChaitin::split_USE (257 samples, 0.08%)</title><rect x="16.0420%" y="757" width="0.0845%" height="15" fill="rgb(213,120,34)" fg:x="48768" fg:w="257"/><text x="16.2920%" y="767.50"></text></g><g><title>RegMask::Size (41 samples, 0.01%)</title><rect x="16.1328%" y="757" width="0.0135%" height="15" fill="rgb(243,49,53)" fg:x="49044" fg:w="41"/><text x="16.3828%" y="767.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (40 samples, 0.01%)</title><rect x="16.1614%" y="757" width="0.0132%" height="15" fill="rgb(247,216,33)" fg:x="49131" fg:w="40"/><text x="16.4114%" y="767.50"></text></g><g><title>sysvec_apic_timer_interrupt (40 samples, 0.01%)</title><rect x="16.1614%" y="741" width="0.0132%" height="15" fill="rgb(226,26,14)" fg:x="49131" fg:w="40"/><text x="16.4114%" y="751.50"></text></g><g><title>PhaseChaitin::Split (5,175 samples, 1.70%)</title><rect x="14.4900%" y="773" width="1.7023%" height="15" fill="rgb(215,49,53)" fg:x="44050" fg:w="5175"/><text x="14.7400%" y="783.50"></text></g><g><title>IndexSet::IndexSet (368 samples, 0.12%)</title><rect x="16.6239%" y="757" width="0.1211%" height="15" fill="rgb(245,162,40)" fg:x="50537" fg:w="368"/><text x="16.8739%" y="767.50"></text></g><g><title>MachNode::rematerialize (97 samples, 0.03%)</title><rect x="16.7492%" y="757" width="0.0319%" height="15" fill="rgb(229,68,17)" fg:x="50918" fg:w="97"/><text x="16.9992%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (48 samples, 0.02%)</title><rect x="16.9910%" y="741" width="0.0158%" height="15" fill="rgb(213,182,10)" fg:x="51653" fg:w="48"/><text x="17.2410%" y="751.50"></text></g><g><title>JVMState::debug_start (51 samples, 0.02%)</title><rect x="17.0068%" y="741" width="0.0168%" height="15" fill="rgb(245,125,30)" fg:x="51701" fg:w="51"/><text x="17.2568%" y="751.50"></text></g><g><title>MachNode::rematerialize (144 samples, 0.05%)</title><rect x="17.0262%" y="741" width="0.0474%" height="15" fill="rgb(232,202,2)" fg:x="51760" fg:w="144"/><text x="17.2762%" y="751.50"></text></g><g><title>PhaseChaitin::raise_pressure (181 samples, 0.06%)</title><rect x="17.0811%" y="741" width="0.0595%" height="15" fill="rgb(237,140,51)" fg:x="51927" fg:w="181"/><text x="17.3311%" y="751.50"></text></g><g><title>RegMask::is_UP (78 samples, 0.03%)</title><rect x="17.1150%" y="725" width="0.0257%" height="15" fill="rgb(236,157,25)" fg:x="52030" fg:w="78"/><text x="17.3650%" y="735.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (1,094 samples, 0.36%)</title><rect x="16.7897%" y="757" width="0.3599%" height="15" fill="rgb(219,209,0)" fg:x="51041" fg:w="1094"/><text x="17.0397%" y="767.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (34 samples, 0.01%)</title><rect x="17.1496%" y="757" width="0.0112%" height="15" fill="rgb(240,116,54)" fg:x="52135" fg:w="34"/><text x="17.3996%" y="767.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (60 samples, 0.02%)</title><rect x="17.1607%" y="757" width="0.0197%" height="15" fill="rgb(216,10,36)" fg:x="52169" fg:w="60"/><text x="17.4107%" y="767.50"></text></g><g><title>RegMask::Size (44 samples, 0.01%)</title><rect x="17.1660%" y="741" width="0.0145%" height="15" fill="rgb(222,72,44)" fg:x="52185" fg:w="44"/><text x="17.4160%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (240 samples, 0.08%)</title><rect x="17.3038%" y="741" width="0.0789%" height="15" fill="rgb(232,159,9)" fg:x="52604" fg:w="240"/><text x="17.5538%" y="751.50"></text></g><g><title>RegMask::is_UP (99 samples, 0.03%)</title><rect x="17.3828%" y="741" width="0.0326%" height="15" fill="rgb(210,39,32)" fg:x="52844" fg:w="99"/><text x="17.6328%" y="751.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (719 samples, 0.24%)</title><rect x="17.1805%" y="757" width="0.2365%" height="15" fill="rgb(216,194,45)" fg:x="52229" fg:w="719"/><text x="17.4305%" y="767.50"></text></g><g><title>__tls_get_addr (48 samples, 0.02%)</title><rect x="18.4051%" y="725" width="0.0158%" height="15" fill="rgb(218,18,35)" fg:x="55952" fg:w="48"/><text x="18.6551%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (160 samples, 0.05%)</title><rect x="18.3706%" y="741" width="0.0526%" height="15" fill="rgb(207,83,51)" fg:x="55847" fg:w="160"/><text x="18.6206%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (1,347 samples, 0.44%)</title><rect x="18.4285%" y="741" width="0.4431%" height="15" fill="rgb(225,63,43)" fg:x="56023" fg:w="1347"/><text x="18.6785%" y="751.50"></text></g><g><title>PhaseChaitin::interfere_with_live (4,446 samples, 1.46%)</title><rect x="17.4170%" y="757" width="1.4625%" height="15" fill="rgb(207,57,36)" fg:x="52948" fg:w="4446"/><text x="17.6670%" y="767.50"></text></g><g><title>PhaseChaitin::lower_pressure (151 samples, 0.05%)</title><rect x="18.8795%" y="757" width="0.0497%" height="15" fill="rgb(216,99,33)" fg:x="57394" fg:w="151"/><text x="19.1295%" y="767.50"></text></g><g><title>RegMask::is_UP (52 samples, 0.02%)</title><rect x="18.9120%" y="741" width="0.0171%" height="15" fill="rgb(225,42,16)" fg:x="57493" fg:w="52"/><text x="19.1620%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (269 samples, 0.09%)</title><rect x="19.1440%" y="741" width="0.0885%" height="15" fill="rgb(220,201,45)" fg:x="58198" fg:w="269"/><text x="19.3940%" y="751.50"></text></g><g><title>RegMask::Size (428 samples, 0.14%)</title><rect x="19.2324%" y="741" width="0.1408%" height="15" fill="rgb(225,33,4)" fg:x="58467" fg:w="428"/><text x="19.4824%" y="751.50"></text></g><g><title>RegMask::smear_to_sets (996 samples, 0.33%)</title><rect x="19.3732%" y="741" width="0.3276%" height="15" fill="rgb(224,33,50)" fg:x="58895" fg:w="996"/><text x="19.6232%" y="751.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,369 samples, 0.78%)</title><rect x="18.9292%" y="757" width="0.7793%" height="15" fill="rgb(246,198,51)" fg:x="57545" fg:w="2369"/><text x="19.1792%" y="767.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (49 samples, 0.02%)</title><rect x="19.7084%" y="757" width="0.0161%" height="15" fill="rgb(205,22,4)" fg:x="59914" fg:w="49"/><text x="19.9584%" y="767.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (10,771 samples, 3.54%)</title><rect x="16.1933%" y="773" width="3.5431%" height="15" fill="rgb(206,3,8)" fg:x="49228" fg:w="10771"/><text x="16.4433%" y="783.50">Phas..</text></g><g><title>IndexSetIterator::advance_and_next (99 samples, 0.03%)</title><rect x="19.9328%" y="741" width="0.0326%" height="15" fill="rgb(251,23,15)" fg:x="60596" fg:w="99"/><text x="20.1828%" y="751.50"></text></g><g><title>PhaseChaitin::interfere_with_live (500 samples, 0.16%)</title><rect x="19.8025%" y="757" width="0.1645%" height="15" fill="rgb(252,88,28)" fg:x="60200" fg:w="500"/><text x="20.0525%" y="767.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (706 samples, 0.23%)</title><rect x="19.7364%" y="773" width="0.2322%" height="15" fill="rgb(212,127,14)" fg:x="59999" fg:w="706"/><text x="19.9864%" y="783.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (158 samples, 0.05%)</title><rect x="19.9686%" y="773" width="0.0520%" height="15" fill="rgb(247,145,37)" fg:x="60705" fg:w="158"/><text x="20.2186%" y="783.50"></text></g><g><title>find_hihghest_bit (51 samples, 0.02%)</title><rect x="20.0038%" y="757" width="0.0168%" height="15" fill="rgb(209,117,53)" fg:x="60812" fg:w="51"/><text x="20.2538%" y="767.50"></text></g><g><title>PhaseChaitin::compact (50 samples, 0.02%)</title><rect x="20.0206%" y="773" width="0.0164%" height="15" fill="rgb(212,90,42)" fg:x="60863" fg:w="50"/><text x="20.2706%" y="783.50"></text></g><g><title>PhaseChaitin::de_ssa (140 samples, 0.05%)</title><rect x="20.0370%" y="773" width="0.0461%" height="15" fill="rgb(218,164,37)" fg:x="60913" fg:w="140"/><text x="20.2870%" y="783.50"></text></g><g><title>PhaseChaitin::fixup_spills (97 samples, 0.03%)</title><rect x="20.0831%" y="773" width="0.0319%" height="15" fill="rgb(246,65,34)" fg:x="61053" fg:w="97"/><text x="20.3331%" y="783.50"></text></g><g><title>__tls_get_addr (35 samples, 0.01%)</title><rect x="20.9173%" y="741" width="0.0115%" height="15" fill="rgb(231,100,33)" fg:x="63589" fg:w="35"/><text x="21.1673%" y="751.50"></text></g><g><title>MachCallJavaNode::in_RegMask (117 samples, 0.04%)</title><rect x="20.8913%" y="757" width="0.0385%" height="15" fill="rgb(228,126,14)" fg:x="63510" fg:w="117"/><text x="21.1413%" y="767.50"></text></g><g><title>MachNode::ideal_reg (90 samples, 0.03%)</title><rect x="20.9328%" y="757" width="0.0296%" height="15" fill="rgb(215,173,21)" fg:x="63636" fg:w="90"/><text x="21.1828%" y="767.50"></text></g><g><title>MachNode::in_RegMask (86 samples, 0.03%)</title><rect x="20.9624%" y="757" width="0.0283%" height="15" fill="rgb(210,6,40)" fg:x="63726" fg:w="86"/><text x="21.2124%" y="767.50"></text></g><g><title>MachProjNode::bottom_type (35 samples, 0.01%)</title><rect x="20.9933%" y="757" width="0.0115%" height="15" fill="rgb(212,48,18)" fg:x="63820" fg:w="35"/><text x="21.2433%" y="767.50"></text></g><g><title>RegMask::Size (1,719 samples, 0.57%)</title><rect x="21.0291%" y="757" width="0.5655%" height="15" fill="rgb(230,214,11)" fg:x="63929" fg:w="1719"/><text x="21.2791%" y="767.50"></text></g><g><title>RegMask::clear_to_sets (337 samples, 0.11%)</title><rect x="21.5946%" y="757" width="0.1109%" height="15" fill="rgb(254,105,39)" fg:x="65648" fg:w="337"/><text x="21.8446%" y="767.50"></text></g><g><title>RegMask::is_aligned_pairs (146 samples, 0.05%)</title><rect x="21.7054%" y="757" width="0.0480%" height="15" fill="rgb(245,158,5)" fg:x="65985" fg:w="146"/><text x="21.9554%" y="767.50"></text></g><g><title>RegMask::is_bound1 (173 samples, 0.06%)</title><rect x="21.7535%" y="757" width="0.0569%" height="15" fill="rgb(249,208,11)" fg:x="66131" fg:w="173"/><text x="22.0035%" y="767.50"></text></g><g><title>RegMask::is_bound_pair (139 samples, 0.05%)</title><rect x="21.8104%" y="757" width="0.0457%" height="15" fill="rgb(210,39,28)" fg:x="66304" fg:w="139"/><text x="22.0604%" y="767.50"></text></g><g><title>RegMask::is_vector (43 samples, 0.01%)</title><rect x="21.8564%" y="757" width="0.0141%" height="15" fill="rgb(211,56,53)" fg:x="66444" fg:w="43"/><text x="22.1064%" y="767.50"></text></g><g><title>Dict::Insert (49 samples, 0.02%)</title><rect x="21.8719%" y="741" width="0.0161%" height="15" fill="rgb(226,201,30)" fg:x="66491" fg:w="49"/><text x="22.1219%" y="751.50"></text></g><g><title>Type::hashcons (55 samples, 0.02%)</title><rect x="21.8706%" y="757" width="0.0181%" height="15" fill="rgb(239,101,34)" fg:x="66487" fg:w="55"/><text x="22.1206%" y="767.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (5,507 samples, 1.81%)</title><rect x="20.1150%" y="773" width="1.8115%" height="15" fill="rgb(226,209,5)" fg:x="61150" fg:w="5507"/><text x="20.3650%" y="783.50">P..</text></g><g><title>PhaseChaitin::merge_multidefs (703 samples, 0.23%)</title><rect x="21.9275%" y="773" width="0.2312%" height="15" fill="rgb(250,105,47)" fg:x="66660" fg:w="703"/><text x="22.1775%" y="783.50"></text></g><g><title>Node::replace_by (53 samples, 0.02%)</title><rect x="22.9837%" y="757" width="0.0174%" height="15" fill="rgb(230,72,3)" fg:x="69871" fg:w="53"/><text x="23.2337%" y="767.50"></text></g><g><title>Node_Array::grow (31 samples, 0.01%)</title><rect x="23.0012%" y="757" width="0.0102%" height="15" fill="rgb(232,218,39)" fg:x="69924" fg:w="31"/><text x="23.2512%" y="767.50"></text></g><g><title>RegMask::Size (53 samples, 0.02%)</title><rect x="24.1314%" y="725" width="0.0174%" height="15" fill="rgb(248,166,6)" fg:x="73360" fg:w="53"/><text x="24.3814%" y="735.50"></text></g><g><title>PhaseChaitin::use_prior_register (161 samples, 0.05%)</title><rect x="24.1018%" y="741" width="0.0530%" height="15" fill="rgb(247,89,20)" fg:x="73270" fg:w="161"/><text x="24.3518%" y="751.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (72 samples, 0.02%)</title><rect x="24.1548%" y="741" width="0.0237%" height="15" fill="rgb(248,130,54)" fg:x="73431" fg:w="72"/><text x="24.4048%" y="751.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (32 samples, 0.01%)</title><rect x="24.1679%" y="725" width="0.0105%" height="15" fill="rgb(234,196,4)" fg:x="73471" fg:w="32"/><text x="24.4179%" y="735.50"></text></g><g><title>PhaseChaitin::elide_copy (3,578 samples, 1.18%)</title><rect x="23.0114%" y="757" width="1.1770%" height="15" fill="rgb(250,143,31)" fg:x="69955" fg:w="3578"/><text x="23.2614%" y="767.50"></text></g><g><title>PhaseChaitin::yank (34 samples, 0.01%)</title><rect x="24.1962%" y="741" width="0.0112%" height="15" fill="rgb(211,110,34)" fg:x="73557" fg:w="34"/><text x="24.4462%" y="751.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (59 samples, 0.02%)</title><rect x="24.1893%" y="757" width="0.0194%" height="15" fill="rgb(215,124,48)" fg:x="73536" fg:w="59"/><text x="24.4393%" y="767.50"></text></g><g><title>[libc.so.6] (70 samples, 0.02%)</title><rect x="24.2127%" y="757" width="0.0230%" height="15" fill="rgb(216,46,13)" fg:x="73607" fg:w="70"/><text x="24.4627%" y="767.50"></text></g><g><title>find_lowest_bit (473 samples, 0.16%)</title><rect x="24.2377%" y="757" width="0.1556%" height="15" fill="rgb(205,184,25)" fg:x="73683" fg:w="473"/><text x="24.4877%" y="767.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (6,800 samples, 2.24%)</title><rect x="22.1587%" y="773" width="2.2368%" height="15" fill="rgb(228,1,10)" fg:x="67363" fg:w="6800"/><text x="22.4087%" y="783.50">P..</text></g><g><title>IndexSet::IndexSet (47 samples, 0.02%)</title><rect x="24.4597%" y="757" width="0.0155%" height="15" fill="rgb(213,116,27)" fg:x="74358" fg:w="47"/><text x="24.7097%" y="767.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (288 samples, 0.09%)</title><rect x="24.3959%" y="773" width="0.0947%" height="15" fill="rgb(241,95,50)" fg:x="74164" fg:w="288"/><text x="24.6459%" y="783.50"></text></g><g><title>PhaseIFG::Union (63 samples, 0.02%)</title><rect x="24.5469%" y="725" width="0.0207%" height="15" fill="rgb(238,48,32)" fg:x="74623" fg:w="63"/><text x="24.7969%" y="735.50"></text></g><g><title>PhaseCoalesce::combine_these_two (98 samples, 0.03%)</title><rect x="24.5380%" y="741" width="0.0322%" height="15" fill="rgb(235,113,49)" fg:x="74596" fg:w="98"/><text x="24.7880%" y="751.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (235 samples, 0.08%)</title><rect x="24.4936%" y="757" width="0.0773%" height="15" fill="rgb(205,127,43)" fg:x="74461" fg:w="235"/><text x="24.7436%" y="767.50"></text></g><g><title>Block::has_uncommon_code (48 samples, 0.02%)</title><rect x="24.6350%" y="725" width="0.0158%" height="15" fill="rgb(250,162,2)" fg:x="74891" fg:w="48"/><text x="24.8850%" y="735.50"></text></g><g><title>PhaseCFG::is_uncommon (171 samples, 0.06%)</title><rect x="24.5949%" y="741" width="0.0562%" height="15" fill="rgb(220,13,41)" fg:x="74769" fg:w="171"/><text x="24.8449%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (79 samples, 0.03%)</title><rect x="24.8939%" y="709" width="0.0260%" height="15" fill="rgb(249,221,25)" fg:x="75678" fg:w="79"/><text x="25.1439%" y="719.50"></text></g><g><title>IndexSet::lrg_union (763 samples, 0.25%)</title><rect x="24.6755%" y="725" width="0.2510%" height="15" fill="rgb(215,208,19)" fg:x="75014" fg:w="763"/><text x="24.9255%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (60 samples, 0.02%)</title><rect x="25.2906%" y="709" width="0.0197%" height="15" fill="rgb(236,175,2)" fg:x="76884" fg:w="60"/><text x="25.5406%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (1,180 samples, 0.39%)</title><rect x="24.9340%" y="725" width="0.3882%" height="15" fill="rgb(241,52,2)" fg:x="75800" fg:w="1180"/><text x="25.1840%" y="735.50"></text></g><g><title>PhaseIFG::effective_degree (297 samples, 0.10%)</title><rect x="25.3222%" y="725" width="0.0977%" height="15" fill="rgb(248,140,14)" fg:x="76980" fg:w="297"/><text x="25.5722%" y="735.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (2,376 samples, 0.78%)</title><rect x="24.6512%" y="741" width="0.7816%" height="15" fill="rgb(253,22,42)" fg:x="74940" fg:w="2376"/><text x="24.9012%" y="751.50"></text></g><g><title>RegMask::Size (31 samples, 0.01%)</title><rect x="25.4225%" y="725" width="0.0102%" height="15" fill="rgb(234,61,47)" fg:x="77285" fg:w="31"/><text x="25.6725%" y="735.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (2,869 samples, 0.94%)</title><rect x="24.4910%" y="773" width="0.9437%" height="15" fill="rgb(208,226,15)" fg:x="74453" fg:w="2869"/><text x="24.7410%" y="783.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (2,626 samples, 0.86%)</title><rect x="24.5709%" y="757" width="0.8638%" height="15" fill="rgb(217,221,4)" fg:x="74696" fg:w="2626"/><text x="24.8209%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (93 samples, 0.03%)</title><rect x="25.6360%" y="757" width="0.0306%" height="15" fill="rgb(212,174,34)" fg:x="77934" fg:w="93"/><text x="25.8860%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (831 samples, 0.27%)</title><rect x="25.6666%" y="757" width="0.2734%" height="15" fill="rgb(253,83,4)" fg:x="78027" fg:w="831"/><text x="25.9166%" y="767.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,544 samples, 0.51%)</title><rect x="25.4360%" y="773" width="0.5079%" height="15" fill="rgb(250,195,49)" fg:x="77326" fg:w="1544"/><text x="25.6860%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (78 samples, 0.03%)</title><rect x="26.1357%" y="757" width="0.0257%" height="15" fill="rgb(241,192,25)" fg:x="79453" fg:w="78"/><text x="26.3857%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (117 samples, 0.04%)</title><rect x="26.1613%" y="757" width="0.0385%" height="15" fill="rgb(208,124,10)" fg:x="79531" fg:w="117"/><text x="26.4113%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (634 samples, 0.21%)</title><rect x="26.1998%" y="757" width="0.2086%" height="15" fill="rgb(222,33,0)" fg:x="79648" fg:w="634"/><text x="26.4498%" y="767.50"></text></g><g><title>PhaseIFG::SquareUp (1,420 samples, 0.47%)</title><rect x="25.9439%" y="773" width="0.4671%" height="15" fill="rgb(234,209,28)" fg:x="78870" fg:w="1420"/><text x="26.1939%" y="783.50"></text></g><g><title>IndexSet::initialize (301 samples, 0.10%)</title><rect x="26.4607%" y="757" width="0.0990%" height="15" fill="rgb(224,11,23)" fg:x="80441" fg:w="301"/><text x="26.7107%" y="767.50"></text></g><g><title>[libc.so.6] (98 samples, 0.03%)</title><rect x="26.5597%" y="757" width="0.0322%" height="15" fill="rgb(232,99,1)" fg:x="80742" fg:w="98"/><text x="26.8097%" y="767.50"></text></g><g><title>PhaseIFG::init (551 samples, 0.18%)</title><rect x="26.4110%" y="773" width="0.1812%" height="15" fill="rgb(237,95,45)" fg:x="80290" fg:w="551"/><text x="26.6610%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (87 samples, 0.03%)</title><rect x="27.1367%" y="757" width="0.0286%" height="15" fill="rgb(208,109,11)" fg:x="82496" fg:w="87"/><text x="27.3867%" y="767.50"></text></g><g><title>IndexSet::free_block (57 samples, 0.02%)</title><rect x="27.1653%" y="757" width="0.0187%" height="15" fill="rgb(216,190,48)" fg:x="82583" fg:w="57"/><text x="27.4153%" y="767.50"></text></g><g><title>IndexSet::initialize (142 samples, 0.05%)</title><rect x="27.1840%" y="757" width="0.0467%" height="15" fill="rgb(251,171,36)" fg:x="82640" fg:w="142"/><text x="27.4340%" y="767.50"></text></g><g><title>__tls_get_addr (70 samples, 0.02%)</title><rect x="27.6413%" y="725" width="0.0230%" height="15" fill="rgb(230,62,22)" fg:x="84030" fg:w="70"/><text x="27.8913%" y="735.50"></text></g><g><title>update_get_addr (38 samples, 0.01%)</title><rect x="27.6518%" y="709" width="0.0125%" height="15" fill="rgb(225,114,35)" fg:x="84062" fg:w="38"/><text x="27.9018%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (275 samples, 0.09%)</title><rect x="27.5758%" y="741" width="0.0905%" height="15" fill="rgb(215,118,42)" fg:x="83831" fg:w="275"/><text x="27.8258%" y="751.50"></text></g><g><title>IndexSet::initialize (60 samples, 0.02%)</title><rect x="27.6663%" y="741" width="0.0197%" height="15" fill="rgb(243,119,21)" fg:x="84106" fg:w="60"/><text x="27.9163%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (456 samples, 0.15%)</title><rect x="27.6903%" y="741" width="0.1500%" height="15" fill="rgb(252,177,53)" fg:x="84179" fg:w="456"/><text x="27.9403%" y="751.50"></text></g><g><title>PhaseLive::add_liveout (1,868 samples, 0.61%)</title><rect x="27.2321%" y="757" width="0.6145%" height="15" fill="rgb(237,209,29)" fg:x="82786" fg:w="1868"/><text x="27.4821%" y="767.50"></text></g><g><title>PhaseLive::compute (3,838 samples, 1.26%)</title><rect x="26.5936%" y="773" width="1.2625%" height="15" fill="rgb(212,65,23)" fg:x="80845" fg:w="3838"/><text x="26.8436%" y="783.50"></text></g><g><title>find_lowest_bit (62 samples, 0.02%)</title><rect x="27.8755%" y="773" width="0.0204%" height="15" fill="rgb(230,222,46)" fg:x="84742" fg:w="62"/><text x="28.1255%" y="783.50"></text></g><g><title>PhaseChaitin::Register_Allocate (48,670 samples, 16.01%)</title><rect x="11.8907%" y="789" width="16.0098%" height="15" fill="rgb(215,135,32)" fg:x="36148" fg:w="48670"/><text x="12.1407%" y="799.50">PhaseChaitin::Register_Al..</text></g><g><title>PhasePeephole::do_transform (72 samples, 0.02%)</title><rect x="27.9021%" y="789" width="0.0237%" height="15" fill="rgb(246,101,22)" fg:x="84823" fg:w="72"/><text x="28.1521%" y="799.50"></text></g><g><title>Compile::Code_Gen (60,549 samples, 19.92%)</title><rect x="8.0088%" y="805" width="19.9173%" height="15" fill="rgb(206,107,13)" fg:x="24347" fg:w="60549"/><text x="8.2588%" y="815.50">Compile::Code_Gen</text></g><g><title>Compile::call_generator (37 samples, 0.01%)</title><rect x="27.9321%" y="517" width="0.0122%" height="15" fill="rgb(250,100,44)" fg:x="84914" fg:w="37"/><text x="28.1821%" y="527.50"></text></g><g><title>ciTypeFlow::df_flow_types (36 samples, 0.01%)</title><rect x="27.9505%" y="341" width="0.0118%" height="15" fill="rgb(231,147,38)" fg:x="84970" fg:w="36"/><text x="28.2005%" y="351.50"></text></g><g><title>ciTypeFlow::flow_block (36 samples, 0.01%)</title><rect x="27.9505%" y="325" width="0.0118%" height="15" fill="rgb(229,8,40)" fg:x="84970" fg:w="36"/><text x="28.2005%" y="335.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (32 samples, 0.01%)</title><rect x="27.9518%" y="309" width="0.0105%" height="15" fill="rgb(221,135,30)" fg:x="84974" fg:w="32"/><text x="28.2018%" y="319.50"></text></g><g><title>InlineTree::ok_to_inline (42 samples, 0.01%)</title><rect x="27.9492%" y="405" width="0.0138%" height="15" fill="rgb(249,193,18)" fg:x="84966" fg:w="42"/><text x="28.1992%" y="415.50"></text></g><g><title>ciMethod::get_flow_analysis (38 samples, 0.01%)</title><rect x="27.9505%" y="389" width="0.0125%" height="15" fill="rgb(209,133,39)" fg:x="84970" fg:w="38"/><text x="28.2005%" y="399.50"></text></g><g><title>ciTypeFlow::do_flow (38 samples, 0.01%)</title><rect x="27.9505%" y="373" width="0.0125%" height="15" fill="rgb(232,100,14)" fg:x="84970" fg:w="38"/><text x="28.2005%" y="383.50"></text></g><g><title>ciTypeFlow::flow_types (38 samples, 0.01%)</title><rect x="27.9505%" y="357" width="0.0125%" height="15" fill="rgb(224,185,1)" fg:x="84970" fg:w="38"/><text x="28.2005%" y="367.50"></text></g><g><title>Compile::call_generator (53 samples, 0.02%)</title><rect x="27.9459%" y="421" width="0.0174%" height="15" fill="rgb(223,139,8)" fg:x="84956" fg:w="53"/><text x="28.1959%" y="431.50"></text></g><g><title>InlineTree::ok_to_inline (39 samples, 0.01%)</title><rect x="27.9761%" y="309" width="0.0128%" height="15" fill="rgb(232,213,38)" fg:x="85048" fg:w="39"/><text x="28.2261%" y="319.50"></text></g><g><title>Compile::call_generator (54 samples, 0.02%)</title><rect x="27.9722%" y="325" width="0.0178%" height="15" fill="rgb(207,94,22)" fg:x="85036" fg:w="54"/><text x="28.2222%" y="335.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="28.0626%" y="85" width="0.0138%" height="15" fill="rgb(219,183,54)" fg:x="85311" fg:w="42"/><text x="28.3126%" y="95.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.01%)</title><rect x="28.0630%" y="69" width="0.0135%" height="15" fill="rgb(216,185,54)" fg:x="85312" fg:w="41"/><text x="28.3130%" y="79.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.02%)</title><rect x="28.0623%" y="101" width="0.0155%" height="15" fill="rgb(254,217,39)" fg:x="85310" fg:w="47"/><text x="28.3123%" y="111.50"></text></g><g><title>ParseGenerator::generate (72 samples, 0.02%)</title><rect x="28.0584%" y="133" width="0.0237%" height="15" fill="rgb(240,178,23)" fg:x="85298" fg:w="72"/><text x="28.3084%" y="143.50"></text></g><g><title>Parse::Parse (72 samples, 0.02%)</title><rect x="28.0584%" y="117" width="0.0237%" height="15" fill="rgb(218,11,47)" fg:x="85298" fg:w="72"/><text x="28.3084%" y="127.50"></text></g><g><title>Parse::do_call (127 samples, 0.04%)</title><rect x="28.0462%" y="149" width="0.0418%" height="15" fill="rgb(218,51,51)" fg:x="85261" fg:w="127"/><text x="28.2962%" y="159.50"></text></g><g><title>Parse::do_one_block (195 samples, 0.06%)</title><rect x="28.0429%" y="181" width="0.0641%" height="15" fill="rgb(238,126,27)" fg:x="85251" fg:w="195"/><text x="28.2929%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (191 samples, 0.06%)</title><rect x="28.0442%" y="165" width="0.0628%" height="15" fill="rgb(249,202,22)" fg:x="85255" fg:w="191"/><text x="28.2942%" y="175.50"></text></g><g><title>Parse::do_all_blocks (197 samples, 0.06%)</title><rect x="28.0426%" y="197" width="0.0648%" height="15" fill="rgb(254,195,49)" fg:x="85250" fg:w="197"/><text x="28.2926%" y="207.50"></text></g><g><title>ParseGenerator::generate (222 samples, 0.07%)</title><rect x="28.0376%" y="229" width="0.0730%" height="15" fill="rgb(208,123,14)" fg:x="85235" fg:w="222"/><text x="28.2876%" y="239.50"></text></g><g><title>Parse::Parse (220 samples, 0.07%)</title><rect x="28.0383%" y="213" width="0.0724%" height="15" fill="rgb(224,200,8)" fg:x="85237" fg:w="220"/><text x="28.2883%" y="223.50"></text></g><g><title>Parse::do_call (318 samples, 0.10%)</title><rect x="28.0179%" y="245" width="0.1046%" height="15" fill="rgb(217,61,36)" fg:x="85175" fg:w="318"/><text x="28.2679%" y="255.50"></text></g><g><title>Parse::do_field_access (41 samples, 0.01%)</title><rect x="28.1232%" y="245" width="0.0135%" height="15" fill="rgb(206,35,45)" fg:x="85495" fg:w="41"/><text x="28.3732%" y="255.50"></text></g><g><title>Parse::do_one_block (422 samples, 0.14%)</title><rect x="28.0100%" y="277" width="0.1388%" height="15" fill="rgb(217,65,33)" fg:x="85151" fg:w="422"/><text x="28.2600%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (417 samples, 0.14%)</title><rect x="28.0117%" y="261" width="0.1372%" height="15" fill="rgb(222,158,48)" fg:x="85156" fg:w="417"/><text x="28.2617%" y="271.50"></text></g><g><title>Parse::do_all_blocks (427 samples, 0.14%)</title><rect x="28.0097%" y="293" width="0.1405%" height="15" fill="rgb(254,2,54)" fg:x="85150" fg:w="427"/><text x="28.2597%" y="303.50"></text></g><g><title>ParseGenerator::generate (470 samples, 0.15%)</title><rect x="28.0008%" y="325" width="0.1546%" height="15" fill="rgb(250,143,38)" fg:x="85123" fg:w="470"/><text x="28.2508%" y="335.50"></text></g><g><title>Parse::Parse (470 samples, 0.15%)</title><rect x="28.0008%" y="309" width="0.1546%" height="15" fill="rgb(248,25,0)" fg:x="85123" fg:w="470"/><text x="28.2508%" y="319.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="28.1600%" y="181" width="0.0105%" height="15" fill="rgb(206,152,27)" fg:x="85607" fg:w="32"/><text x="28.4100%" y="191.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="28.1600%" y="165" width="0.0105%" height="15" fill="rgb(240,77,30)" fg:x="85607" fg:w="32"/><text x="28.4100%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.01%)</title><rect x="28.1600%" y="149" width="0.0105%" height="15" fill="rgb(231,5,3)" fg:x="85607" fg:w="32"/><text x="28.4100%" y="159.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.01%)</title><rect x="28.1597%" y="213" width="0.0112%" height="15" fill="rgb(207,226,32)" fg:x="85606" fg:w="34"/><text x="28.4097%" y="223.50"></text></g><g><title>Parse::Parse (34 samples, 0.01%)</title><rect x="28.1597%" y="197" width="0.0112%" height="15" fill="rgb(222,207,47)" fg:x="85606" fg:w="34"/><text x="28.4097%" y="207.50"></text></g><g><title>Parse::do_call (45 samples, 0.01%)</title><rect x="28.1577%" y="229" width="0.0148%" height="15" fill="rgb(229,115,45)" fg:x="85600" fg:w="45"/><text x="28.4077%" y="239.50"></text></g><g><title>Parse::do_one_block (50 samples, 0.02%)</title><rect x="28.1574%" y="261" width="0.0164%" height="15" fill="rgb(224,191,6)" fg:x="85599" fg:w="50"/><text x="28.4074%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (50 samples, 0.02%)</title><rect x="28.1574%" y="245" width="0.0164%" height="15" fill="rgb(230,227,24)" fg:x="85599" fg:w="50"/><text x="28.4074%" y="255.50"></text></g><g><title>ParseGenerator::generate (51 samples, 0.02%)</title><rect x="28.1574%" y="309" width="0.0168%" height="15" fill="rgb(228,80,19)" fg:x="85599" fg:w="51"/><text x="28.4074%" y="319.50"></text></g><g><title>Parse::Parse (51 samples, 0.02%)</title><rect x="28.1574%" y="293" width="0.0168%" height="15" fill="rgb(247,229,0)" fg:x="85599" fg:w="51"/><text x="28.4074%" y="303.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.02%)</title><rect x="28.1574%" y="277" width="0.0168%" height="15" fill="rgb(237,194,15)" fg:x="85599" fg:w="51"/><text x="28.4074%" y="287.50"></text></g><g><title>PredictedCallGenerator::generate (66 samples, 0.02%)</title><rect x="28.1554%" y="325" width="0.0217%" height="15" fill="rgb(219,203,20)" fg:x="85593" fg:w="66"/><text x="28.4054%" y="335.50"></text></g><g><title>Parse::do_call (640 samples, 0.21%)</title><rect x="27.9722%" y="341" width="0.2105%" height="15" fill="rgb(234,128,8)" fg:x="85036" fg:w="640"/><text x="28.2222%" y="351.50"></text></g><g><title>GraphKit::access_store_at (37 samples, 0.01%)</title><rect x="28.1896%" y="309" width="0.0122%" height="15" fill="rgb(248,202,8)" fg:x="85697" fg:w="37"/><text x="28.4396%" y="319.50"></text></g><g><title>BarrierSetC2::store_at (37 samples, 0.01%)</title><rect x="28.1896%" y="293" width="0.0122%" height="15" fill="rgb(206,104,37)" fg:x="85697" fg:w="37"/><text x="28.4396%" y="303.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (34 samples, 0.01%)</title><rect x="28.1906%" y="277" width="0.0112%" height="15" fill="rgb(223,8,27)" fg:x="85700" fg:w="34"/><text x="28.4406%" y="287.50"></text></g><g><title>Parse::do_field_access (59 samples, 0.02%)</title><rect x="28.1830%" y="341" width="0.0194%" height="15" fill="rgb(216,217,28)" fg:x="85677" fg:w="59"/><text x="28.4330%" y="351.50"></text></g><g><title>Parse::do_put_xxx (40 samples, 0.01%)</title><rect x="28.1893%" y="325" width="0.0132%" height="15" fill="rgb(249,199,1)" fg:x="85696" fg:w="40"/><text x="28.4393%" y="335.50"></text></g><g><title>Parse::do_one_block (741 samples, 0.24%)</title><rect x="27.9659%" y="373" width="0.2437%" height="15" fill="rgb(240,85,17)" fg:x="85017" fg:w="741"/><text x="28.2159%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (740 samples, 0.24%)</title><rect x="27.9663%" y="357" width="0.2434%" height="15" fill="rgb(206,108,45)" fg:x="85018" fg:w="740"/><text x="28.2163%" y="367.50"></text></g><g><title>Parse::do_all_blocks (744 samples, 0.24%)</title><rect x="27.9659%" y="389" width="0.2447%" height="15" fill="rgb(245,210,41)" fg:x="85017" fg:w="744"/><text x="28.2159%" y="399.50"></text></g><g><title>ParseGenerator::generate (748 samples, 0.25%)</title><rect x="27.9649%" y="421" width="0.2461%" height="15" fill="rgb(206,13,37)" fg:x="85014" fg:w="748"/><text x="28.2149%" y="431.50"></text></g><g><title>Parse::Parse (748 samples, 0.25%)</title><rect x="27.9649%" y="405" width="0.2461%" height="15" fill="rgb(250,61,18)" fg:x="85014" fg:w="748"/><text x="28.2149%" y="415.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.01%)</title><rect x="28.2113%" y="373" width="0.0138%" height="15" fill="rgb(235,172,48)" fg:x="85763" fg:w="42"/><text x="28.4613%" y="383.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.01%)</title><rect x="28.2117%" y="357" width="0.0135%" height="15" fill="rgb(249,201,17)" fg:x="85764" fg:w="41"/><text x="28.4617%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (40 samples, 0.01%)</title><rect x="28.2120%" y="341" width="0.0132%" height="15" fill="rgb(219,208,6)" fg:x="85765" fg:w="40"/><text x="28.4620%" y="351.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.01%)</title><rect x="28.2113%" y="405" width="0.0145%" height="15" fill="rgb(248,31,23)" fg:x="85763" fg:w="44"/><text x="28.4613%" y="415.50"></text></g><g><title>Parse::Parse (44 samples, 0.01%)</title><rect x="28.2113%" y="389" width="0.0145%" height="15" fill="rgb(245,15,42)" fg:x="85763" fg:w="44"/><text x="28.4613%" y="399.50"></text></g><g><title>PredictedCallGenerator::generate (56 samples, 0.02%)</title><rect x="28.2110%" y="421" width="0.0184%" height="15" fill="rgb(222,217,39)" fg:x="85762" fg:w="56"/><text x="28.4610%" y="431.50"></text></g><g><title>Parse::do_call (867 samples, 0.29%)</title><rect x="27.9459%" y="437" width="0.2852%" height="15" fill="rgb(210,219,27)" fg:x="84956" fg:w="867"/><text x="28.1959%" y="447.50"></text></g><g><title>Parse::do_all_blocks (885 samples, 0.29%)</title><rect x="27.9452%" y="485" width="0.2911%" height="15" fill="rgb(252,166,36)" fg:x="84954" fg:w="885"/><text x="28.1952%" y="495.50"></text></g><g><title>Parse::do_one_block (885 samples, 0.29%)</title><rect x="27.9452%" y="469" width="0.2911%" height="15" fill="rgb(245,132,34)" fg:x="84954" fg:w="885"/><text x="28.1952%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (885 samples, 0.29%)</title><rect x="27.9452%" y="453" width="0.2911%" height="15" fill="rgb(236,54,3)" fg:x="84954" fg:w="885"/><text x="28.1952%" y="463.50"></text></g><g><title>ParseGenerator::generate (889 samples, 0.29%)</title><rect x="27.9442%" y="517" width="0.2924%" height="15" fill="rgb(241,173,43)" fg:x="84951" fg:w="889"/><text x="28.1942%" y="527.50"></text></g><g><title>Parse::Parse (889 samples, 0.29%)</title><rect x="27.9442%" y="501" width="0.2924%" height="15" fill="rgb(215,190,9)" fg:x="84951" fg:w="889"/><text x="28.1942%" y="511.50"></text></g><g><title>Parse::do_call (38 samples, 0.01%)</title><rect x="28.2508%" y="229" width="0.0125%" height="15" fill="rgb(242,101,16)" fg:x="85883" fg:w="38"/><text x="28.5008%" y="239.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.02%)</title><rect x="28.2485%" y="277" width="0.0227%" height="15" fill="rgb(223,190,21)" fg:x="85876" fg:w="69"/><text x="28.4985%" y="287.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.02%)</title><rect x="28.2485%" y="261" width="0.0227%" height="15" fill="rgb(215,228,25)" fg:x="85876" fg:w="69"/><text x="28.4985%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (65 samples, 0.02%)</title><rect x="28.2498%" y="245" width="0.0214%" height="15" fill="rgb(225,36,22)" fg:x="85880" fg:w="65"/><text x="28.4998%" y="255.50"></text></g><g><title>ParseGenerator::generate (76 samples, 0.02%)</title><rect x="28.2472%" y="309" width="0.0250%" height="15" fill="rgb(251,106,46)" fg:x="85872" fg:w="76"/><text x="28.4972%" y="319.50"></text></g><g><title>Parse::Parse (76 samples, 0.02%)</title><rect x="28.2472%" y="293" width="0.0250%" height="15" fill="rgb(208,90,1)" fg:x="85872" fg:w="76"/><text x="28.4972%" y="303.50"></text></g><g><title>Parse::do_call (111 samples, 0.04%)</title><rect x="28.2436%" y="325" width="0.0365%" height="15" fill="rgb(243,10,4)" fg:x="85861" fg:w="111"/><text x="28.4936%" y="335.50"></text></g><g><title>Parse::do_all_blocks (141 samples, 0.05%)</title><rect x="28.2432%" y="373" width="0.0464%" height="15" fill="rgb(212,137,27)" fg:x="85860" fg:w="141"/><text x="28.4932%" y="383.50"></text></g><g><title>Parse::do_one_block (141 samples, 0.05%)</title><rect x="28.2432%" y="357" width="0.0464%" height="15" fill="rgb(231,220,49)" fg:x="85860" fg:w="141"/><text x="28.4932%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (141 samples, 0.05%)</title><rect x="28.2432%" y="341" width="0.0464%" height="15" fill="rgb(237,96,20)" fg:x="85860" fg:w="141"/><text x="28.4932%" y="351.50"></text></g><g><title>ParseGenerator::generate (145 samples, 0.05%)</title><rect x="28.2422%" y="405" width="0.0477%" height="15" fill="rgb(239,229,30)" fg:x="85857" fg:w="145"/><text x="28.4922%" y="415.50"></text></g><g><title>Parse::Parse (145 samples, 0.05%)</title><rect x="28.2422%" y="389" width="0.0477%" height="15" fill="rgb(219,65,33)" fg:x="85857" fg:w="145"/><text x="28.4922%" y="399.50"></text></g><g><title>Parse::do_call (176 samples, 0.06%)</title><rect x="28.2373%" y="421" width="0.0579%" height="15" fill="rgb(243,134,7)" fg:x="85842" fg:w="176"/><text x="28.4873%" y="431.50"></text></g><g><title>ParseGenerator::generate (179 samples, 0.06%)</title><rect x="28.2367%" y="501" width="0.0589%" height="15" fill="rgb(216,177,54)" fg:x="85840" fg:w="179"/><text x="28.4867%" y="511.50"></text></g><g><title>Parse::Parse (179 samples, 0.06%)</title><rect x="28.2367%" y="485" width="0.0589%" height="15" fill="rgb(211,160,20)" fg:x="85840" fg:w="179"/><text x="28.4867%" y="495.50"></text></g><g><title>Parse::do_all_blocks (177 samples, 0.06%)</title><rect x="28.2373%" y="469" width="0.0582%" height="15" fill="rgb(239,85,39)" fg:x="85842" fg:w="177"/><text x="28.4873%" y="479.50"></text></g><g><title>Parse::do_one_block (177 samples, 0.06%)</title><rect x="28.2373%" y="453" width="0.0582%" height="15" fill="rgb(232,125,22)" fg:x="85842" fg:w="177"/><text x="28.4873%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (177 samples, 0.06%)</title><rect x="28.2373%" y="437" width="0.0582%" height="15" fill="rgb(244,57,34)" fg:x="85842" fg:w="177"/><text x="28.4873%" y="447.50"></text></g><g><title>Parse::do_call (1,110 samples, 0.37%)</title><rect x="27.9321%" y="533" width="0.3651%" height="15" fill="rgb(214,203,32)" fg:x="84914" fg:w="1110"/><text x="28.1821%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (184 samples, 0.06%)</title><rect x="28.2367%" y="517" width="0.0605%" height="15" fill="rgb(207,58,43)" fg:x="85840" fg:w="184"/><text x="28.4867%" y="527.50"></text></g><g><title>ParseGenerator::generate (1,112 samples, 0.37%)</title><rect x="27.9321%" y="613" width="0.3658%" height="15" fill="rgb(215,193,15)" fg:x="84914" fg:w="1112"/><text x="28.1821%" y="623.50"></text></g><g><title>Parse::Parse (1,112 samples, 0.37%)</title><rect x="27.9321%" y="597" width="0.3658%" height="15" fill="rgb(232,15,44)" fg:x="84914" fg:w="1112"/><text x="28.1821%" y="607.50"></text></g><g><title>Parse::do_all_blocks (1,112 samples, 0.37%)</title><rect x="27.9321%" y="581" width="0.3658%" height="15" fill="rgb(212,3,48)" fg:x="84914" fg:w="1112"/><text x="28.1821%" y="591.50"></text></g><g><title>Parse::do_one_block (1,112 samples, 0.37%)</title><rect x="27.9321%" y="565" width="0.3658%" height="15" fill="rgb(218,128,7)" fg:x="84914" fg:w="1112"/><text x="28.1821%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (1,112 samples, 0.37%)</title><rect x="27.9321%" y="549" width="0.3658%" height="15" fill="rgb(226,216,39)" fg:x="84914" fg:w="1112"/><text x="28.1821%" y="559.50"></text></g><g><title>Parse::do_call (35 samples, 0.01%)</title><rect x="28.3044%" y="325" width="0.0115%" height="15" fill="rgb(243,47,51)" fg:x="86046" fg:w="35"/><text x="28.5544%" y="335.50"></text></g><g><title>ParseGenerator::generate (49 samples, 0.02%)</title><rect x="28.3041%" y="405" width="0.0161%" height="15" fill="rgb(241,183,40)" fg:x="86045" fg:w="49"/><text x="28.5541%" y="415.50"></text></g><g><title>Parse::Parse (49 samples, 0.02%)</title><rect x="28.3041%" y="389" width="0.0161%" height="15" fill="rgb(231,217,32)" fg:x="86045" fg:w="49"/><text x="28.5541%" y="399.50"></text></g><g><title>Parse::do_all_blocks (49 samples, 0.02%)</title><rect x="28.3041%" y="373" width="0.0161%" height="15" fill="rgb(229,61,38)" fg:x="86045" fg:w="49"/><text x="28.5541%" y="383.50"></text></g><g><title>Parse::do_one_block (49 samples, 0.02%)</title><rect x="28.3041%" y="357" width="0.0161%" height="15" fill="rgb(225,210,5)" fg:x="86045" fg:w="49"/><text x="28.5541%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (49 samples, 0.02%)</title><rect x="28.3041%" y="341" width="0.0161%" height="15" fill="rgb(231,79,45)" fg:x="86045" fg:w="49"/><text x="28.5541%" y="351.50"></text></g><g><title>Parse::do_call (79 samples, 0.03%)</title><rect x="28.3011%" y="421" width="0.0260%" height="15" fill="rgb(224,100,7)" fg:x="86036" fg:w="79"/><text x="28.5511%" y="431.50"></text></g><g><title>ParseGenerator::generate (85 samples, 0.03%)</title><rect x="28.3011%" y="501" width="0.0280%" height="15" fill="rgb(241,198,18)" fg:x="86036" fg:w="85"/><text x="28.5511%" y="511.50"></text></g><g><title>Parse::Parse (85 samples, 0.03%)</title><rect x="28.3011%" y="485" width="0.0280%" height="15" fill="rgb(252,97,53)" fg:x="86036" fg:w="85"/><text x="28.5511%" y="495.50"></text></g><g><title>Parse::do_all_blocks (85 samples, 0.03%)</title><rect x="28.3011%" y="469" width="0.0280%" height="15" fill="rgb(220,88,7)" fg:x="86036" fg:w="85"/><text x="28.5511%" y="479.50"></text></g><g><title>Parse::do_one_block (85 samples, 0.03%)</title><rect x="28.3011%" y="453" width="0.0280%" height="15" fill="rgb(213,176,14)" fg:x="86036" fg:w="85"/><text x="28.5511%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (85 samples, 0.03%)</title><rect x="28.3011%" y="437" width="0.0280%" height="15" fill="rgb(246,73,7)" fg:x="86036" fg:w="85"/><text x="28.5511%" y="447.50"></text></g><g><title>ParseGenerator::generate (116 samples, 0.04%)</title><rect x="28.2978%" y="597" width="0.0382%" height="15" fill="rgb(245,64,36)" fg:x="86026" fg:w="116"/><text x="28.5478%" y="607.50"></text></g><g><title>Parse::Parse (116 samples, 0.04%)</title><rect x="28.2978%" y="581" width="0.0382%" height="15" fill="rgb(245,80,10)" fg:x="86026" fg:w="116"/><text x="28.5478%" y="591.50"></text></g><g><title>Parse::do_all_blocks (116 samples, 0.04%)</title><rect x="28.2978%" y="565" width="0.0382%" height="15" fill="rgb(232,107,50)" fg:x="86026" fg:w="116"/><text x="28.5478%" y="575.50"></text></g><g><title>Parse::do_one_block (116 samples, 0.04%)</title><rect x="28.2978%" y="549" width="0.0382%" height="15" fill="rgb(253,3,0)" fg:x="86026" fg:w="116"/><text x="28.5478%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (116 samples, 0.04%)</title><rect x="28.2978%" y="533" width="0.0382%" height="15" fill="rgb(212,99,53)" fg:x="86026" fg:w="116"/><text x="28.5478%" y="543.50"></text></g><g><title>Parse::do_call (116 samples, 0.04%)</title><rect x="28.2978%" y="517" width="0.0382%" height="15" fill="rgb(249,111,54)" fg:x="86026" fg:w="116"/><text x="28.5478%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (138 samples, 0.05%)</title><rect x="28.2978%" y="613" width="0.0454%" height="15" fill="rgb(249,55,30)" fg:x="86026" fg:w="138"/><text x="28.5478%" y="623.50"></text></g><g><title>ParseGenerator::generate (1,255 samples, 0.41%)</title><rect x="27.9307%" y="709" width="0.4128%" height="15" fill="rgb(237,47,42)" fg:x="84910" fg:w="1255"/><text x="28.1807%" y="719.50"></text></g><g><title>Parse::Parse (1,255 samples, 0.41%)</title><rect x="27.9307%" y="693" width="0.4128%" height="15" fill="rgb(211,20,18)" fg:x="84910" fg:w="1255"/><text x="28.1807%" y="703.50"></text></g><g><title>Parse::do_all_blocks (1,255 samples, 0.41%)</title><rect x="27.9307%" y="677" width="0.4128%" height="15" fill="rgb(231,203,46)" fg:x="84910" fg:w="1255"/><text x="28.1807%" y="687.50"></text></g><g><title>Parse::do_one_block (1,255 samples, 0.41%)</title><rect x="27.9307%" y="661" width="0.4128%" height="15" fill="rgb(237,142,3)" fg:x="84910" fg:w="1255"/><text x="28.1807%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (1,255 samples, 0.41%)</title><rect x="27.9307%" y="645" width="0.4128%" height="15" fill="rgb(241,107,1)" fg:x="84910" fg:w="1255"/><text x="28.1807%" y="655.50"></text></g><g><title>Parse::do_call (1,255 samples, 0.41%)</title><rect x="27.9307%" y="629" width="0.4128%" height="15" fill="rgb(229,83,13)" fg:x="84910" fg:w="1255"/><text x="28.1807%" y="639.50"></text></g><g><title>Parse::do_call (31 samples, 0.01%)</title><rect x="28.3620%" y="229" width="0.0102%" height="15" fill="rgb(241,91,40)" fg:x="86221" fg:w="31"/><text x="28.6120%" y="239.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.02%)</title><rect x="28.3610%" y="261" width="0.0181%" height="15" fill="rgb(225,3,45)" fg:x="86218" fg:w="55"/><text x="28.6110%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.02%)</title><rect x="28.3613%" y="245" width="0.0178%" height="15" fill="rgb(244,223,14)" fg:x="86219" fg:w="54"/><text x="28.6113%" y="255.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.02%)</title><rect x="28.3610%" y="277" width="0.0184%" height="15" fill="rgb(224,124,37)" fg:x="86218" fg:w="56"/><text x="28.6110%" y="287.50"></text></g><g><title>ParseGenerator::generate (62 samples, 0.02%)</title><rect x="28.3597%" y="309" width="0.0204%" height="15" fill="rgb(251,171,30)" fg:x="86214" fg:w="62"/><text x="28.6097%" y="319.50"></text></g><g><title>Parse::Parse (62 samples, 0.02%)</title><rect x="28.3597%" y="293" width="0.0204%" height="15" fill="rgb(236,46,54)" fg:x="86214" fg:w="62"/><text x="28.6097%" y="303.50"></text></g><g><title>Parse::do_call (92 samples, 0.03%)</title><rect x="28.3528%" y="325" width="0.0303%" height="15" fill="rgb(245,213,5)" fg:x="86193" fg:w="92"/><text x="28.6028%" y="335.50"></text></g><g><title>Parse::do_all_blocks (119 samples, 0.04%)</title><rect x="28.3521%" y="373" width="0.0391%" height="15" fill="rgb(230,144,27)" fg:x="86191" fg:w="119"/><text x="28.6021%" y="383.50"></text></g><g><title>Parse::do_one_block (119 samples, 0.04%)</title><rect x="28.3521%" y="357" width="0.0391%" height="15" fill="rgb(220,86,6)" fg:x="86191" fg:w="119"/><text x="28.6021%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (117 samples, 0.04%)</title><rect x="28.3528%" y="341" width="0.0385%" height="15" fill="rgb(240,20,13)" fg:x="86193" fg:w="117"/><text x="28.6028%" y="351.50"></text></g><g><title>ParseGenerator::generate (123 samples, 0.04%)</title><rect x="28.3511%" y="405" width="0.0405%" height="15" fill="rgb(217,89,34)" fg:x="86188" fg:w="123"/><text x="28.6011%" y="415.50"></text></g><g><title>Parse::Parse (123 samples, 0.04%)</title><rect x="28.3511%" y="389" width="0.0405%" height="15" fill="rgb(229,13,5)" fg:x="86188" fg:w="123"/><text x="28.6011%" y="399.50"></text></g><g><title>Parse::do_call (157 samples, 0.05%)</title><rect x="28.3462%" y="421" width="0.0516%" height="15" fill="rgb(244,67,35)" fg:x="86173" fg:w="157"/><text x="28.5962%" y="431.50"></text></g><g><title>ParseGenerator::generate (165 samples, 0.05%)</title><rect x="28.3462%" y="501" width="0.0543%" height="15" fill="rgb(221,40,2)" fg:x="86173" fg:w="165"/><text x="28.5962%" y="511.50"></text></g><g><title>Parse::Parse (165 samples, 0.05%)</title><rect x="28.3462%" y="485" width="0.0543%" height="15" fill="rgb(237,157,21)" fg:x="86173" fg:w="165"/><text x="28.5962%" y="495.50"></text></g><g><title>Parse::do_all_blocks (165 samples, 0.05%)</title><rect x="28.3462%" y="469" width="0.0543%" height="15" fill="rgb(222,94,11)" fg:x="86173" fg:w="165"/><text x="28.5962%" y="479.50"></text></g><g><title>Parse::do_one_block (165 samples, 0.05%)</title><rect x="28.3462%" y="453" width="0.0543%" height="15" fill="rgb(249,113,6)" fg:x="86173" fg:w="165"/><text x="28.5962%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (165 samples, 0.05%)</title><rect x="28.3462%" y="437" width="0.0543%" height="15" fill="rgb(238,137,36)" fg:x="86173" fg:w="165"/><text x="28.5962%" y="447.50"></text></g><g><title>Parse::do_call (174 samples, 0.06%)</title><rect x="28.3439%" y="517" width="0.0572%" height="15" fill="rgb(210,102,26)" fg:x="86166" fg:w="174"/><text x="28.5939%" y="527.50"></text></g><g><title>ParseGenerator::generate (176 samples, 0.06%)</title><rect x="28.3439%" y="597" width="0.0579%" height="15" fill="rgb(218,30,30)" fg:x="86166" fg:w="176"/><text x="28.5939%" y="607.50"></text></g><g><title>Parse::Parse (176 samples, 0.06%)</title><rect x="28.3439%" y="581" width="0.0579%" height="15" fill="rgb(214,67,26)" fg:x="86166" fg:w="176"/><text x="28.5939%" y="591.50"></text></g><g><title>Parse::do_all_blocks (176 samples, 0.06%)</title><rect x="28.3439%" y="565" width="0.0579%" height="15" fill="rgb(251,9,53)" fg:x="86166" fg:w="176"/><text x="28.5939%" y="575.50"></text></g><g><title>Parse::do_one_block (176 samples, 0.06%)</title><rect x="28.3439%" y="549" width="0.0579%" height="15" fill="rgb(228,204,25)" fg:x="86166" fg:w="176"/><text x="28.5939%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (176 samples, 0.06%)</title><rect x="28.3439%" y="533" width="0.0579%" height="15" fill="rgb(207,153,8)" fg:x="86166" fg:w="176"/><text x="28.5939%" y="543.50"></text></g><g><title>Parse::do_all_blocks (192 samples, 0.06%)</title><rect x="28.3436%" y="661" width="0.0632%" height="15" fill="rgb(242,9,16)" fg:x="86165" fg:w="192"/><text x="28.5936%" y="671.50"></text></g><g><title>Parse::do_one_block (192 samples, 0.06%)</title><rect x="28.3436%" y="645" width="0.0632%" height="15" fill="rgb(217,211,10)" fg:x="86165" fg:w="192"/><text x="28.5936%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (192 samples, 0.06%)</title><rect x="28.3436%" y="629" width="0.0632%" height="15" fill="rgb(219,228,52)" fg:x="86165" fg:w="192"/><text x="28.5936%" y="639.50"></text></g><g><title>Parse::do_call (192 samples, 0.06%)</title><rect x="28.3436%" y="613" width="0.0632%" height="15" fill="rgb(231,92,29)" fg:x="86165" fg:w="192"/><text x="28.5936%" y="623.50"></text></g><g><title>ParseGenerator::generate (193 samples, 0.06%)</title><rect x="28.3436%" y="693" width="0.0635%" height="15" fill="rgb(232,8,23)" fg:x="86165" fg:w="193"/><text x="28.5936%" y="703.50"></text></g><g><title>Parse::Parse (193 samples, 0.06%)</title><rect x="28.3436%" y="677" width="0.0635%" height="15" fill="rgb(216,211,34)" fg:x="86165" fg:w="193"/><text x="28.5936%" y="687.50"></text></g><g><title>Parse::do_all_blocks (1,498 samples, 0.49%)</title><rect x="27.9307%" y="773" width="0.4928%" height="15" fill="rgb(236,151,0)" fg:x="84910" fg:w="1498"/><text x="28.1807%" y="783.50"></text></g><g><title>Parse::do_one_block (1,498 samples, 0.49%)</title><rect x="27.9307%" y="757" width="0.4928%" height="15" fill="rgb(209,168,3)" fg:x="84910" fg:w="1498"/><text x="28.1807%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (1,498 samples, 0.49%)</title><rect x="27.9307%" y="741" width="0.4928%" height="15" fill="rgb(208,129,28)" fg:x="84910" fg:w="1498"/><text x="28.1807%" y="751.50"></text></g><g><title>Parse::do_call (1,498 samples, 0.49%)</title><rect x="27.9307%" y="725" width="0.4928%" height="15" fill="rgb(229,78,22)" fg:x="84910" fg:w="1498"/><text x="28.1807%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (243 samples, 0.08%)</title><rect x="28.3436%" y="709" width="0.0799%" height="15" fill="rgb(228,187,13)" fg:x="86165" fg:w="243"/><text x="28.5936%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (50 samples, 0.02%)</title><rect x="28.4070%" y="693" width="0.0164%" height="15" fill="rgb(240,119,24)" fg:x="86358" fg:w="50"/><text x="28.6570%" y="703.50"></text></g><g><title>ParseGenerator::generate (50 samples, 0.02%)</title><rect x="28.4070%" y="677" width="0.0164%" height="15" fill="rgb(209,194,42)" fg:x="86358" fg:w="50"/><text x="28.6570%" y="687.50"></text></g><g><title>Parse::Parse (50 samples, 0.02%)</title><rect x="28.4070%" y="661" width="0.0164%" height="15" fill="rgb(247,200,46)" fg:x="86358" fg:w="50"/><text x="28.6570%" y="671.50"></text></g><g><title>Parse::do_all_blocks (50 samples, 0.02%)</title><rect x="28.4070%" y="645" width="0.0164%" height="15" fill="rgb(218,76,16)" fg:x="86358" fg:w="50"/><text x="28.6570%" y="655.50"></text></g><g><title>Parse::do_one_block (50 samples, 0.02%)</title><rect x="28.4070%" y="629" width="0.0164%" height="15" fill="rgb(225,21,48)" fg:x="86358" fg:w="50"/><text x="28.6570%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (50 samples, 0.02%)</title><rect x="28.4070%" y="613" width="0.0164%" height="15" fill="rgb(239,223,50)" fg:x="86358" fg:w="50"/><text x="28.6570%" y="623.50"></text></g><g><title>Parse::do_call (50 samples, 0.02%)</title><rect x="28.4070%" y="597" width="0.0164%" height="15" fill="rgb(244,45,21)" fg:x="86358" fg:w="50"/><text x="28.6570%" y="607.50"></text></g><g><title>ParseGenerator::generate (1,506 samples, 0.50%)</title><rect x="27.9307%" y="805" width="0.4954%" height="15" fill="rgb(232,33,43)" fg:x="84910" fg:w="1506"/><text x="28.1807%" y="815.50"></text></g><g><title>Parse::Parse (1,506 samples, 0.50%)</title><rect x="27.9307%" y="789" width="0.4954%" height="15" fill="rgb(209,8,3)" fg:x="84910" fg:w="1506"/><text x="28.1807%" y="799.50"></text></g><g><title>Compile::Compile (62,077 samples, 20.42%)</title><rect x="8.0088%" y="821" width="20.4199%" height="15" fill="rgb(214,25,53)" fg:x="24347" fg:w="62077"/><text x="8.2588%" y="831.50">Compile::Compile</text></g><g><title>Compile::final_graph_reshaping_impl (144 samples, 0.05%)</title><rect x="28.5028%" y="773" width="0.0474%" height="15" fill="rgb(254,186,54)" fg:x="86649" fg:w="144"/><text x="28.7528%" y="783.50"></text></g><g><title>Compile::final_graph_reshaping_walk (389 samples, 0.13%)</title><rect x="28.4327%" y="789" width="0.1280%" height="15" fill="rgb(208,174,49)" fg:x="86436" fg:w="389"/><text x="28.6827%" y="799.50"></text></g><g><title>Compile::final_graph_reshaping (401 samples, 0.13%)</title><rect x="28.4291%" y="805" width="0.1319%" height="15" fill="rgb(233,191,51)" fg:x="86425" fg:w="401"/><text x="28.6791%" y="815.50"></text></g><g><title>Compile::identify_useful_nodes (43 samples, 0.01%)</title><rect x="28.5682%" y="757" width="0.0141%" height="15" fill="rgb(222,134,10)" fg:x="86848" fg:w="43"/><text x="28.8182%" y="767.50"></text></g><g><title>Compile::inline_incrementally_one (103 samples, 0.03%)</title><rect x="28.5610%" y="789" width="0.0339%" height="15" fill="rgb(230,226,20)" fg:x="86826" fg:w="103"/><text x="28.8110%" y="799.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (88 samples, 0.03%)</title><rect x="28.5659%" y="773" width="0.0289%" height="15" fill="rgb(251,111,25)" fg:x="86841" fg:w="88"/><text x="28.8159%" y="783.50"></text></g><g><title>Compile::inline_incrementally (114 samples, 0.04%)</title><rect x="28.5610%" y="805" width="0.0375%" height="15" fill="rgb(224,40,46)" fg:x="86826" fg:w="114"/><text x="28.8110%" y="815.50"></text></g><g><title>PhaseIterGVN::transform_old (69 samples, 0.02%)</title><rect x="28.6689%" y="773" width="0.0227%" height="15" fill="rgb(236,108,47)" fg:x="87154" fg:w="69"/><text x="28.9189%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (75 samples, 0.02%)</title><rect x="28.6676%" y="789" width="0.0247%" height="15" fill="rgb(234,93,0)" fg:x="87150" fg:w="75"/><text x="28.9176%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (58 samples, 0.02%)</title><rect x="28.6922%" y="789" width="0.0191%" height="15" fill="rgb(224,213,32)" fg:x="87225" fg:w="58"/><text x="28.9422%" y="799.50"></text></g><g><title>Compile::remove_speculative_types (333 samples, 0.11%)</title><rect x="28.6047%" y="805" width="0.1095%" height="15" fill="rgb(251,11,48)" fg:x="86959" fg:w="333"/><text x="28.8547%" y="815.50"></text></g><g><title>ConnectionGraph::add_call_node (33 samples, 0.01%)</title><rect x="28.7590%" y="773" width="0.0109%" height="15" fill="rgb(236,173,5)" fg:x="87428" fg:w="33"/><text x="29.0090%" y="783.50"></text></g><g><title>ciMethod::get_bcea (32 samples, 0.01%)</title><rect x="28.7594%" y="757" width="0.0105%" height="15" fill="rgb(230,95,12)" fg:x="87429" fg:w="32"/><text x="29.0094%" y="767.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (32 samples, 0.01%)</title><rect x="28.7594%" y="741" width="0.0105%" height="15" fill="rgb(232,209,1)" fg:x="87429" fg:w="32"/><text x="29.0094%" y="751.50"></text></g><g><title>BCEscapeAnalyzer::compute_escape_info (36 samples, 0.01%)</title><rect x="28.7735%" y="709" width="0.0118%" height="15" fill="rgb(232,6,1)" fg:x="87472" fg:w="36"/><text x="29.0235%" y="719.50"></text></g><g><title>BCEscapeAnalyzer::iterate_blocks (35 samples, 0.01%)</title><rect x="28.7738%" y="693" width="0.0115%" height="15" fill="rgb(210,224,50)" fg:x="87473" fg:w="35"/><text x="29.0238%" y="703.50"></text></g><g><title>BCEscapeAnalyzer::iterate_one_block (35 samples, 0.01%)</title><rect x="28.7738%" y="677" width="0.0115%" height="15" fill="rgb(228,127,35)" fg:x="87473" fg:w="35"/><text x="29.0238%" y="687.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (42 samples, 0.01%)</title><rect x="28.7735%" y="725" width="0.0138%" height="15" fill="rgb(245,102,45)" fg:x="87472" fg:w="42"/><text x="29.0235%" y="735.50"></text></g><g><title>ConnectionGraph::process_call_arguments (45 samples, 0.01%)</title><rect x="28.7728%" y="757" width="0.0148%" height="15" fill="rgb(214,1,49)" fg:x="87470" fg:w="45"/><text x="29.0228%" y="767.50"></text></g><g><title>ciMethod::get_bcea (43 samples, 0.01%)</title><rect x="28.7735%" y="741" width="0.0141%" height="15" fill="rgb(226,163,40)" fg:x="87472" fg:w="43"/><text x="29.0235%" y="751.50"></text></g><g><title>ConnectionGraph::add_final_edges (56 samples, 0.02%)</title><rect x="28.7699%" y="773" width="0.0184%" height="15" fill="rgb(239,212,28)" fg:x="87461" fg:w="56"/><text x="29.0199%" y="783.50"></text></g><g><title>ConnectionGraph::is_oop_field (32 samples, 0.01%)</title><rect x="28.8179%" y="741" width="0.0105%" height="15" fill="rgb(220,20,13)" fg:x="87607" fg:w="32"/><text x="29.0679%" y="751.50"></text></g><g><title>ConnectionGraph::add_field (40 samples, 0.01%)</title><rect x="28.8163%" y="757" width="0.0132%" height="15" fill="rgb(210,164,35)" fg:x="87602" fg:w="40"/><text x="29.0663%" y="767.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (130 samples, 0.04%)</title><rect x="28.7916%" y="773" width="0.0428%" height="15" fill="rgb(248,109,41)" fg:x="87527" fg:w="130"/><text x="29.0416%" y="783.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (41 samples, 0.01%)</title><rect x="28.8501%" y="757" width="0.0135%" height="15" fill="rgb(238,23,50)" fg:x="87705" fg:w="41"/><text x="29.1001%" y="767.50"></text></g><g><title>ConnectionGraph::add_java_object_edges (33 samples, 0.01%)</title><rect x="28.8636%" y="757" width="0.0109%" height="15" fill="rgb(211,48,49)" fg:x="87746" fg:w="33"/><text x="29.1136%" y="767.50"></text></g><g><title>ConnectionGraph::find_non_escaped_objects (32 samples, 0.01%)</title><rect x="28.8751%" y="757" width="0.0105%" height="15" fill="rgb(223,36,21)" fg:x="87781" fg:w="32"/><text x="29.1251%" y="767.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (156 samples, 0.05%)</title><rect x="28.8363%" y="773" width="0.0513%" height="15" fill="rgb(207,123,46)" fg:x="87663" fg:w="156"/><text x="29.0863%" y="783.50"></text></g><g><title>ConnectionGraph::find_inst_mem (31 samples, 0.01%)</title><rect x="28.9054%" y="741" width="0.0102%" height="15" fill="rgb(240,218,32)" fg:x="87873" fg:w="31"/><text x="29.1554%" y="751.50"></text></g><g><title>ConnectionGraph::split_memory_phi (35 samples, 0.01%)</title><rect x="28.9357%" y="677" width="0.0115%" height="15" fill="rgb(252,5,43)" fg:x="87965" fg:w="35"/><text x="29.1857%" y="687.50"></text></g><g><title>ConnectionGraph::split_memory_phi (64 samples, 0.02%)</title><rect x="28.9265%" y="709" width="0.0211%" height="15" fill="rgb(252,84,19)" fg:x="87937" fg:w="64"/><text x="29.1765%" y="719.50"></text></g><g><title>ConnectionGraph::find_inst_mem (57 samples, 0.02%)</title><rect x="28.9288%" y="693" width="0.0187%" height="15" fill="rgb(243,152,39)" fg:x="87944" fg:w="57"/><text x="29.1788%" y="703.50"></text></g><g><title>ConnectionGraph::find_inst_mem (74 samples, 0.02%)</title><rect x="28.9235%" y="725" width="0.0243%" height="15" fill="rgb(234,160,15)" fg:x="87928" fg:w="74"/><text x="29.1735%" y="735.50"></text></g><g><title>ConnectionGraph::split_memory_phi (100 samples, 0.03%)</title><rect x="28.9156%" y="741" width="0.0329%" height="15" fill="rgb(237,34,20)" fg:x="87904" fg:w="100"/><text x="29.1656%" y="751.50"></text></g><g><title>ConnectionGraph::find_inst_mem (150 samples, 0.05%)</title><rect x="28.9008%" y="757" width="0.0493%" height="15" fill="rgb(229,97,13)" fg:x="87859" fg:w="150"/><text x="29.1508%" y="767.50"></text></g><g><title>ConnectionGraph::split_unique_types (205 samples, 0.07%)</title><rect x="28.8955%" y="773" width="0.0674%" height="15" fill="rgb(234,71,50)" fg:x="87843" fg:w="205"/><text x="29.1455%" y="783.50"></text></g><g><title>ConnectionGraph::compute_escape (759 samples, 0.25%)</title><rect x="28.7166%" y="789" width="0.2497%" height="15" fill="rgb(253,155,4)" fg:x="87299" fg:w="759"/><text x="28.9666%" y="799.50"></text></g><g><title>ConnectionGraph::do_analysis (764 samples, 0.25%)</title><rect x="28.7153%" y="805" width="0.2513%" height="15" fill="rgb(222,185,37)" fg:x="87295" fg:w="764"/><text x="28.9653%" y="815.50"></text></g><g><title>LoadNode::Value (37 samples, 0.01%)</title><rect x="29.1804%" y="789" width="0.0122%" height="15" fill="rgb(251,177,13)" fg:x="88709" fg:w="37"/><text x="29.4304%" y="799.50"></text></g><g><title>PhiNode::Value (62 samples, 0.02%)</title><rect x="29.1988%" y="789" width="0.0204%" height="15" fill="rgb(250,179,40)" fg:x="88765" fg:w="62"/><text x="29.4488%" y="799.50"></text></g><g><title>Dict::Insert (33 samples, 0.01%)</title><rect x="29.2547%" y="757" width="0.0109%" height="15" fill="rgb(242,44,2)" fg:x="88935" fg:w="33"/><text x="29.5047%" y="767.50"></text></g><g><title>Type::hashcons (38 samples, 0.01%)</title><rect x="29.2534%" y="773" width="0.0125%" height="15" fill="rgb(216,177,13)" fg:x="88931" fg:w="38"/><text x="29.5034%" y="783.50"></text></g><g><title>TypeInstPtr::add_offset (70 samples, 0.02%)</title><rect x="29.2524%" y="789" width="0.0230%" height="15" fill="rgb(216,106,43)" fg:x="88928" fg:w="70"/><text x="29.5024%" y="799.50"></text></g><g><title>PhaseCCP::analyze (980 samples, 0.32%)</title><rect x="28.9686%" y="805" width="0.3224%" height="15" fill="rgb(216,183,2)" fg:x="88065" fg:w="980"/><text x="29.2186%" y="815.50"></text></g><g><title>PhaseCCP::transform_once (144 samples, 0.05%)</title><rect x="29.3393%" y="773" width="0.0474%" height="15" fill="rgb(249,75,3)" fg:x="89192" fg:w="144"/><text x="29.5893%" y="783.50"></text></g><g><title>PhaseCCP::do_transform (303 samples, 0.10%)</title><rect x="29.2909%" y="805" width="0.0997%" height="15" fill="rgb(219,67,39)" fg:x="89045" fg:w="303"/><text x="29.5409%" y="815.50"></text></g><g><title>PhaseCCP::transform (302 samples, 0.10%)</title><rect x="29.2913%" y="789" width="0.0993%" height="15" fill="rgb(253,228,2)" fg:x="89046" fg:w="302"/><text x="29.5413%" y="799.50"></text></g><g><title>IdealLoopTree::counted_loop (32 samples, 0.01%)</title><rect x="29.4199%" y="741" width="0.0105%" height="15" fill="rgb(235,138,27)" fg:x="89437" fg:w="32"/><text x="29.6699%" y="751.50"></text></g><g><title>IdealLoopTree::counted_loop (42 samples, 0.01%)</title><rect x="29.4199%" y="757" width="0.0138%" height="15" fill="rgb(236,97,51)" fg:x="89437" fg:w="42"/><text x="29.6699%" y="767.50"></text></g><g><title>IdealLoopTree::counted_loop (63 samples, 0.02%)</title><rect x="29.4199%" y="789" width="0.0207%" height="15" fill="rgb(240,80,30)" fg:x="89437" fg:w="63"/><text x="29.6699%" y="799.50"></text></g><g><title>IdealLoopTree::counted_loop (63 samples, 0.02%)</title><rect x="29.4199%" y="773" width="0.0207%" height="15" fill="rgb(230,178,19)" fg:x="89437" fg:w="63"/><text x="29.6699%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (39 samples, 0.01%)</title><rect x="29.4511%" y="629" width="0.0128%" height="15" fill="rgb(210,190,27)" fg:x="89532" fg:w="39"/><text x="29.7011%" y="639.50"></text></g><g><title>IdealLoopTree::iteration_split (48 samples, 0.02%)</title><rect x="29.4505%" y="645" width="0.0158%" height="15" fill="rgb(222,107,31)" fg:x="89530" fg:w="48"/><text x="29.7005%" y="655.50"></text></g><g><title>IdealLoopTree::iteration_split (58 samples, 0.02%)</title><rect x="29.4491%" y="661" width="0.0191%" height="15" fill="rgb(216,127,34)" fg:x="89526" fg:w="58"/><text x="29.6991%" y="671.50"></text></g><g><title>IdealLoopTree::iteration_split (67 samples, 0.02%)</title><rect x="29.4488%" y="677" width="0.0220%" height="15" fill="rgb(234,116,52)" fg:x="89525" fg:w="67"/><text x="29.6988%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (77 samples, 0.03%)</title><rect x="29.4485%" y="693" width="0.0253%" height="15" fill="rgb(222,124,15)" fg:x="89524" fg:w="77"/><text x="29.6985%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (92 samples, 0.03%)</title><rect x="29.4482%" y="709" width="0.0303%" height="15" fill="rgb(231,179,28)" fg:x="89523" fg:w="92"/><text x="29.6982%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (111 samples, 0.04%)</title><rect x="29.4472%" y="725" width="0.0365%" height="15" fill="rgb(226,93,45)" fg:x="89520" fg:w="111"/><text x="29.6972%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (144 samples, 0.05%)</title><rect x="29.4462%" y="741" width="0.0474%" height="15" fill="rgb(215,8,51)" fg:x="89517" fg:w="144"/><text x="29.6962%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (41 samples, 0.01%)</title><rect x="29.4936%" y="741" width="0.0135%" height="15" fill="rgb(223,106,5)" fg:x="89661" fg:w="41"/><text x="29.7436%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (192 samples, 0.06%)</title><rect x="29.4445%" y="757" width="0.0632%" height="15" fill="rgb(250,191,5)" fg:x="89512" fg:w="192"/><text x="29.6945%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (226 samples, 0.07%)</title><rect x="29.4436%" y="773" width="0.0743%" height="15" fill="rgb(242,132,44)" fg:x="89509" fg:w="226"/><text x="29.6936%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (259 samples, 0.09%)</title><rect x="29.4406%" y="789" width="0.0852%" height="15" fill="rgb(251,152,29)" fg:x="89500" fg:w="259"/><text x="29.6906%" y="799.50"></text></g><g><title>IdealLoopTree::loop_predication (70 samples, 0.02%)</title><rect x="29.5258%" y="757" width="0.0230%" height="15" fill="rgb(218,179,5)" fg:x="89759" fg:w="70"/><text x="29.7758%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (53 samples, 0.02%)</title><rect x="29.5314%" y="741" width="0.0174%" height="15" fill="rgb(227,67,19)" fg:x="89776" fg:w="53"/><text x="29.7814%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (44 samples, 0.01%)</title><rect x="29.5580%" y="741" width="0.0145%" height="15" fill="rgb(233,119,31)" fg:x="89857" fg:w="44"/><text x="29.8080%" y="751.50"></text></g><g><title>IdealLoopTree::loop_predication (159 samples, 0.05%)</title><rect x="29.5258%" y="773" width="0.0523%" height="15" fill="rgb(241,120,22)" fg:x="89759" fg:w="159"/><text x="29.7758%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (89 samples, 0.03%)</title><rect x="29.5488%" y="757" width="0.0293%" height="15" fill="rgb(224,102,30)" fg:x="89829" fg:w="89"/><text x="29.7988%" y="767.50"></text></g><g><title>PathFrequency::to (45 samples, 0.01%)</title><rect x="29.5850%" y="757" width="0.0148%" height="15" fill="rgb(210,164,37)" fg:x="89939" fg:w="45"/><text x="29.8350%" y="767.50"></text></g><g><title>PathFrequency::to (42 samples, 0.01%)</title><rect x="29.6011%" y="741" width="0.0138%" height="15" fill="rgb(226,191,16)" fg:x="89988" fg:w="42"/><text x="29.8511%" y="751.50"></text></g><g><title>PhaseIdealLoop::is_dominator (37 samples, 0.01%)</title><rect x="29.6149%" y="741" width="0.0122%" height="15" fill="rgb(214,40,45)" fg:x="90030" fg:w="37"/><text x="29.8649%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (109 samples, 0.04%)</title><rect x="29.5998%" y="757" width="0.0359%" height="15" fill="rgb(244,29,26)" fg:x="89984" fg:w="109"/><text x="29.8498%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (51 samples, 0.02%)</title><rect x="29.6357%" y="757" width="0.0168%" height="15" fill="rgb(216,16,5)" fg:x="90093" fg:w="51"/><text x="29.8857%" y="767.50"></text></g><g><title>IdealLoopTree::loop_predication (401 samples, 0.13%)</title><rect x="29.5258%" y="789" width="0.1319%" height="15" fill="rgb(249,76,35)" fg:x="89759" fg:w="401"/><text x="29.7758%" y="799.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (242 samples, 0.08%)</title><rect x="29.5781%" y="773" width="0.0796%" height="15" fill="rgb(207,11,44)" fg:x="89918" fg:w="242"/><text x="29.8281%" y="783.50"></text></g><g><title>NTarjan::DFS (486 samples, 0.16%)</title><rect x="30.0110%" y="773" width="0.1599%" height="15" fill="rgb(228,190,49)" fg:x="91234" fg:w="486"/><text x="30.2610%" y="783.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,572 samples, 0.52%)</title><rect x="29.6797%" y="789" width="0.5171%" height="15" fill="rgb(214,173,12)" fg:x="90227" fg:w="1572"/><text x="29.9297%" y="799.50"></text></g><g><title>PhaseIdealLoop::dom_depth (98 samples, 0.03%)</title><rect x="30.8301%" y="741" width="0.0322%" height="15" fill="rgb(218,26,35)" fg:x="93724" fg:w="98"/><text x="31.0801%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (235 samples, 0.08%)</title><rect x="30.8623%" y="741" width="0.0773%" height="15" fill="rgb(220,200,19)" fg:x="93822" fg:w="235"/><text x="31.1123%" y="751.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (583 samples, 0.19%)</title><rect x="30.7495%" y="773" width="0.1918%" height="15" fill="rgb(239,95,49)" fg:x="93479" fg:w="583"/><text x="30.9995%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (519 samples, 0.17%)</title><rect x="30.7705%" y="757" width="0.1707%" height="15" fill="rgb(235,85,53)" fg:x="93543" fg:w="519"/><text x="31.0205%" y="767.50"></text></g><g><title>PhiNode::pinned (47 samples, 0.02%)</title><rect x="30.9416%" y="773" width="0.0155%" height="15" fill="rgb(233,133,31)" fg:x="94063" fg:w="47"/><text x="31.1916%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (2,399 samples, 0.79%)</title><rect x="30.1968%" y="789" width="0.7891%" height="15" fill="rgb(218,25,20)" fg:x="91799" fg:w="2399"/><text x="30.4468%" y="799.50"></text></g><g><title>Node::unique_ctrl_out (120 samples, 0.04%)</title><rect x="31.8669%" y="757" width="0.0395%" height="15" fill="rgb(252,210,38)" fg:x="96876" fg:w="120"/><text x="32.1169%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (129 samples, 0.04%)</title><rect x="31.9067%" y="757" width="0.0424%" height="15" fill="rgb(242,134,21)" fg:x="96997" fg:w="129"/><text x="32.1567%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_depth (81 samples, 0.03%)</title><rect x="32.3373%" y="709" width="0.0266%" height="15" fill="rgb(213,28,48)" fg:x="98306" fg:w="81"/><text x="32.5873%" y="719.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (209 samples, 0.07%)</title><rect x="32.3639%" y="709" width="0.0687%" height="15" fill="rgb(250,196,2)" fg:x="98387" fg:w="209"/><text x="32.6139%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (391 samples, 0.13%)</title><rect x="32.3044%" y="725" width="0.1286%" height="15" fill="rgb(227,5,17)" fg:x="98206" fg:w="391"/><text x="32.5544%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (54 samples, 0.02%)</title><rect x="32.4330%" y="725" width="0.0178%" height="15" fill="rgb(221,226,24)" fg:x="98597" fg:w="54"/><text x="32.6830%" y="735.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (583 samples, 0.19%)</title><rect x="32.2600%" y="741" width="0.1918%" height="15" fill="rgb(211,5,48)" fg:x="98071" fg:w="583"/><text x="32.5100%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (67 samples, 0.02%)</title><rect x="32.5057%" y="725" width="0.0220%" height="15" fill="rgb(219,150,6)" fg:x="98818" fg:w="67"/><text x="32.7557%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (250 samples, 0.08%)</title><rect x="32.4521%" y="741" width="0.0822%" height="15" fill="rgb(251,46,16)" fg:x="98655" fg:w="250"/><text x="32.7021%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (44 samples, 0.01%)</title><rect x="32.5343%" y="741" width="0.0145%" height="15" fill="rgb(220,204,40)" fg:x="98905" fg:w="44"/><text x="32.7843%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (1,285 samples, 0.42%)</title><rect x="34.2978%" y="725" width="0.4227%" height="15" fill="rgb(211,85,2)" fg:x="104266" fg:w="1285"/><text x="34.5478%" y="735.50"></text></g><g><title>PhaseIdealLoop::is_dominator (6,649 samples, 2.19%)</title><rect x="32.5488%" y="741" width="2.1872%" height="15" fill="rgb(229,17,7)" fg:x="98949" fg:w="6649"/><text x="32.7988%" y="751.50">P..</text></g><g><title>PhaseIdealLoop::get_late_ctrl (8,508 samples, 2.80%)</title><rect x="31.9491%" y="757" width="2.7987%" height="15" fill="rgb(239,72,28)" fg:x="97126" fg:w="8508"/><text x="32.1991%" y="767.50">Ph..</text></g><g><title>PhaseIdealLoop::get_loop (60 samples, 0.02%)</title><rect x="34.7478%" y="757" width="0.0197%" height="15" fill="rgb(230,47,54)" fg:x="105634" fg:w="60"/><text x="34.9978%" y="767.50"></text></g><g><title>ProjNode::is_uncommon_trap_if_pattern (44 samples, 0.01%)</title><rect x="34.7731%" y="757" width="0.0145%" height="15" fill="rgb(214,50,8)" fg:x="105711" fg:w="44"/><text x="35.0231%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (9,763 samples, 3.21%)</title><rect x="31.5787%" y="773" width="3.2115%" height="15" fill="rgb(216,198,43)" fg:x="96000" fg:w="9763"/><text x="31.8287%" y="783.50">Pha..</text></g><g><title>PhaseIdealLoop::build_loop_late (11,589 samples, 3.81%)</title><rect x="30.9860%" y="789" width="3.8121%" height="15" fill="rgb(234,20,35)" fg:x="94198" fg:w="11589"/><text x="31.2360%" y="799.50">Phas..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (304 samples, 0.10%)</title><rect x="35.0975%" y="773" width="0.1000%" height="15" fill="rgb(254,45,19)" fg:x="106697" fg:w="304"/><text x="35.3475%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,228 samples, 0.40%)</title><rect x="34.8004%" y="789" width="0.4039%" height="15" fill="rgb(219,14,44)" fg:x="105794" fg:w="1228"/><text x="35.0504%" y="799.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (39 samples, 0.01%)</title><rect x="35.2063%" y="789" width="0.0128%" height="15" fill="rgb(217,220,26)" fg:x="107028" fg:w="39"/><text x="35.4563%" y="799.50"></text></g><g><title>PhaseIdealLoop::handle_use (48 samples, 0.02%)</title><rect x="35.4554%" y="757" width="0.0158%" height="15" fill="rgb(213,158,28)" fg:x="107785" fg:w="48"/><text x="35.7054%" y="767.50"></text></g><g><title>PhaseIdealLoop::spinup (32 samples, 0.01%)</title><rect x="35.4606%" y="741" width="0.0105%" height="15" fill="rgb(252,51,52)" fg:x="107801" fg:w="32"/><text x="35.7106%" y="751.50"></text></g><g><title>PhaseIdealLoop::do_split_if (142 samples, 0.05%)</title><rect x="35.4531%" y="773" width="0.0467%" height="15" fill="rgb(246,89,16)" fg:x="107778" fg:w="142"/><text x="35.7031%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (44 samples, 0.01%)</title><rect x="35.5685%" y="757" width="0.0145%" height="15" fill="rgb(216,158,49)" fg:x="108129" fg:w="44"/><text x="35.8185%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (37 samples, 0.01%)</title><rect x="35.6001%" y="757" width="0.0122%" height="15" fill="rgb(236,107,19)" fg:x="108225" fg:w="37"/><text x="35.8501%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (371 samples, 0.12%)</title><rect x="35.5037%" y="773" width="0.1220%" height="15" fill="rgb(228,185,30)" fg:x="107932" fg:w="371"/><text x="35.7537%" y="783.50"></text></g><g><title>ConstraintCastNode::dominating_cast (84 samples, 0.03%)</title><rect x="35.6790%" y="757" width="0.0276%" height="15" fill="rgb(246,134,8)" fg:x="108465" fg:w="84"/><text x="35.9290%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (72 samples, 0.02%)</title><rect x="35.7179%" y="757" width="0.0237%" height="15" fill="rgb(214,143,50)" fg:x="108583" fg:w="72"/><text x="35.9679%" y="767.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (108 samples, 0.04%)</title><rect x="35.7415%" y="757" width="0.0355%" height="15" fill="rgb(228,75,8)" fg:x="108655" fg:w="108"/><text x="35.9915%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (94 samples, 0.03%)</title><rect x="35.8287%" y="741" width="0.0309%" height="15" fill="rgb(207,175,4)" fg:x="108920" fg:w="94"/><text x="36.0787%" y="751.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (247 samples, 0.08%)</title><rect x="35.7787%" y="757" width="0.0812%" height="15" fill="rgb(205,108,24)" fg:x="108768" fg:w="247"/><text x="36.0287%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (73 samples, 0.02%)</title><rect x="35.9034%" y="741" width="0.0240%" height="15" fill="rgb(244,120,49)" fg:x="109147" fg:w="73"/><text x="36.1534%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (244 samples, 0.08%)</title><rect x="35.8600%" y="757" width="0.0803%" height="15" fill="rgb(223,47,38)" fg:x="109015" fg:w="244"/><text x="36.1100%" y="767.50"></text></g><g><title>PhaseIdealLoop::try_move_store_before_loop (32 samples, 0.01%)</title><rect x="35.9402%" y="757" width="0.0105%" height="15" fill="rgb(229,179,11)" fg:x="109259" fg:w="32"/><text x="36.1902%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (1,026 samples, 0.34%)</title><rect x="35.6258%" y="773" width="0.3375%" height="15" fill="rgb(231,122,1)" fg:x="108303" fg:w="1026"/><text x="35.8758%" y="783.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (2,249 samples, 0.74%)</title><rect x="35.2274%" y="789" width="0.7398%" height="15" fill="rgb(245,119,9)" fg:x="107092" fg:w="2249"/><text x="35.4774%" y="799.50"></text></g><g><title>CallNode::Ideal (62 samples, 0.02%)</title><rect x="36.0596%" y="757" width="0.0204%" height="15" fill="rgb(241,163,25)" fg:x="109622" fg:w="62"/><text x="36.3096%" y="767.50"></text></g><g><title>Node::remove_dead_region (61 samples, 0.02%)</title><rect x="36.0600%" y="741" width="0.0201%" height="15" fill="rgb(217,214,3)" fg:x="109623" fg:w="61"/><text x="36.3100%" y="751.50"></text></g><g><title>CastIINode::Value (36 samples, 0.01%)</title><rect x="36.0820%" y="757" width="0.0118%" height="15" fill="rgb(240,86,28)" fg:x="109690" fg:w="36"/><text x="36.3320%" y="767.50"></text></g><g><title>ConstraintCastNode::Identity (32 samples, 0.01%)</title><rect x="36.1050%" y="757" width="0.0105%" height="15" fill="rgb(215,47,9)" fg:x="109760" fg:w="32"/><text x="36.3550%" y="767.50"></text></g><g><title>IfNode::Ideal (34 samples, 0.01%)</title><rect x="36.1317%" y="757" width="0.0112%" height="15" fill="rgb(252,25,45)" fg:x="109841" fg:w="34"/><text x="36.3817%" y="767.50"></text></g><g><title>MemNode::Ideal_common (34 samples, 0.01%)</title><rect x="36.1521%" y="741" width="0.0112%" height="15" fill="rgb(251,164,9)" fg:x="109903" fg:w="34"/><text x="36.4021%" y="751.50"></text></g><g><title>Node::dominates (32 samples, 0.01%)</title><rect x="36.1656%" y="709" width="0.0105%" height="15" fill="rgb(233,194,0)" fg:x="109944" fg:w="32"/><text x="36.4156%" y="719.50"></text></g><g><title>MemNode::all_controls_dominate (34 samples, 0.01%)</title><rect x="36.1656%" y="725" width="0.0112%" height="15" fill="rgb(249,111,24)" fg:x="109944" fg:w="34"/><text x="36.4156%" y="735.50"></text></g><g><title>LoadNode::Ideal (107 samples, 0.04%)</title><rect x="36.1465%" y="757" width="0.0352%" height="15" fill="rgb(250,223,3)" fg:x="109886" fg:w="107"/><text x="36.3965%" y="767.50"></text></g><g><title>MemNode::find_previous_store (53 samples, 0.02%)</title><rect x="36.1642%" y="741" width="0.0174%" height="15" fill="rgb(236,178,37)" fg:x="109940" fg:w="53"/><text x="36.4142%" y="751.50"></text></g><g><title>NodeHash::grow (40 samples, 0.01%)</title><rect x="36.2389%" y="741" width="0.0132%" height="15" fill="rgb(241,158,50)" fg:x="110167" fg:w="40"/><text x="36.4889%" y="751.50"></text></g><g><title>NodeHash::hash_find_insert (152 samples, 0.05%)</title><rect x="36.2024%" y="757" width="0.0500%" height="15" fill="rgb(213,121,41)" fg:x="110056" fg:w="152"/><text x="36.4524%" y="767.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (68 samples, 0.02%)</title><rect x="36.2534%" y="757" width="0.0224%" height="15" fill="rgb(240,92,3)" fg:x="110211" fg:w="68"/><text x="36.5034%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (67 samples, 0.02%)</title><rect x="36.2915%" y="741" width="0.0220%" height="15" fill="rgb(205,123,3)" fg:x="110327" fg:w="67"/><text x="36.5415%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (128 samples, 0.04%)</title><rect x="36.2761%" y="757" width="0.0421%" height="15" fill="rgb(205,97,47)" fg:x="110280" fg:w="128"/><text x="36.5261%" y="767.50"></text></g><g><title>PhiNode::Ideal (80 samples, 0.03%)</title><rect x="36.3192%" y="757" width="0.0263%" height="15" fill="rgb(247,152,14)" fg:x="110411" fg:w="80"/><text x="36.5692%" y="767.50"></text></g><g><title>PhiNode::Value (45 samples, 0.01%)</title><rect x="36.3461%" y="757" width="0.0148%" height="15" fill="rgb(248,195,53)" fg:x="110493" fg:w="45"/><text x="36.5961%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (38 samples, 0.01%)</title><rect x="36.3965%" y="741" width="0.0125%" height="15" fill="rgb(226,201,16)" fg:x="110646" fg:w="38"/><text x="36.6465%" y="751.50"></text></g><g><title>RegionNode::Ideal (318 samples, 0.10%)</title><rect x="36.3731%" y="757" width="0.1046%" height="15" fill="rgb(205,98,0)" fg:x="110575" fg:w="318"/><text x="36.6231%" y="767.50"></text></g><g><title>RegionNode::is_unreachable_region (182 samples, 0.06%)</title><rect x="36.4179%" y="741" width="0.0599%" height="15" fill="rgb(214,191,48)" fg:x="110711" fg:w="182"/><text x="36.6679%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (31 samples, 0.01%)</title><rect x="36.4863%" y="533" width="0.0102%" height="15" fill="rgb(237,112,39)" fg:x="110919" fg:w="31"/><text x="36.7363%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (37 samples, 0.01%)</title><rect x="36.4863%" y="549" width="0.0122%" height="15" fill="rgb(247,203,27)" fg:x="110919" fg:w="37"/><text x="36.7363%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (39 samples, 0.01%)</title><rect x="36.4863%" y="565" width="0.0128%" height="15" fill="rgb(235,124,28)" fg:x="110919" fg:w="39"/><text x="36.7363%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (41 samples, 0.01%)</title><rect x="36.4863%" y="581" width="0.0135%" height="15" fill="rgb(208,207,46)" fg:x="110919" fg:w="41"/><text x="36.7363%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (44 samples, 0.01%)</title><rect x="36.4863%" y="597" width="0.0145%" height="15" fill="rgb(234,176,4)" fg:x="110919" fg:w="44"/><text x="36.7363%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (46 samples, 0.02%)</title><rect x="36.4863%" y="613" width="0.0151%" height="15" fill="rgb(230,133,28)" fg:x="110919" fg:w="46"/><text x="36.7363%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (49 samples, 0.02%)</title><rect x="36.4863%" y="645" width="0.0161%" height="15" fill="rgb(211,137,40)" fg:x="110919" fg:w="49"/><text x="36.7363%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (49 samples, 0.02%)</title><rect x="36.4863%" y="629" width="0.0161%" height="15" fill="rgb(254,35,13)" fg:x="110919" fg:w="49"/><text x="36.7363%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (53 samples, 0.02%)</title><rect x="36.4859%" y="661" width="0.0174%" height="15" fill="rgb(225,49,51)" fg:x="110918" fg:w="53"/><text x="36.7359%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (55 samples, 0.02%)</title><rect x="36.4859%" y="677" width="0.0181%" height="15" fill="rgb(251,10,15)" fg:x="110918" fg:w="55"/><text x="36.7359%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (61 samples, 0.02%)</title><rect x="36.4859%" y="693" width="0.0201%" height="15" fill="rgb(228,207,15)" fg:x="110918" fg:w="61"/><text x="36.7359%" y="703.50"></text></g><g><title>InitializeNode::can_capture_store (70 samples, 0.02%)</title><rect x="36.4859%" y="741" width="0.0230%" height="15" fill="rgb(241,99,19)" fg:x="110918" fg:w="70"/><text x="36.7359%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (70 samples, 0.02%)</title><rect x="36.4859%" y="725" width="0.0230%" height="15" fill="rgb(207,104,49)" fg:x="110918" fg:w="70"/><text x="36.7359%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (70 samples, 0.02%)</title><rect x="36.4859%" y="709" width="0.0230%" height="15" fill="rgb(234,99,18)" fg:x="110918" fg:w="70"/><text x="36.7359%" y="719.50"></text></g><g><title>StoreNode::Ideal (95 samples, 0.03%)</title><rect x="36.4850%" y="757" width="0.0312%" height="15" fill="rgb(213,191,49)" fg:x="110915" fg:w="95"/><text x="36.7350%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (1,680 samples, 0.55%)</title><rect x="35.9856%" y="773" width="0.5526%" height="15" fill="rgb(210,226,19)" fg:x="109397" fg:w="1680"/><text x="36.2356%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (1,750 samples, 0.58%)</title><rect x="35.9679%" y="789" width="0.5757%" height="15" fill="rgb(229,97,18)" fg:x="109343" fg:w="1750"/><text x="36.2179%" y="799.50"></text></g><g><title>SuperWord::are_adjacent_refs (31 samples, 0.01%)</title><rect x="36.5705%" y="741" width="0.0102%" height="15" fill="rgb(211,167,15)" fg:x="111175" fg:w="31"/><text x="36.8205%" y="751.50"></text></g><g><title>SuperWord::find_adjacent_refs (51 samples, 0.02%)</title><rect x="36.5688%" y="757" width="0.0168%" height="15" fill="rgb(210,169,34)" fg:x="111170" fg:w="51"/><text x="36.8188%" y="767.50"></text></g><g><title>SuperWord::SLP_extract (101 samples, 0.03%)</title><rect x="36.5616%" y="773" width="0.0332%" height="15" fill="rgb(241,121,31)" fg:x="111148" fg:w="101"/><text x="36.8116%" y="783.50"></text></g><g><title>SuperWord::transform_loop (104 samples, 0.03%)</title><rect x="36.5609%" y="789" width="0.0342%" height="15" fill="rgb(232,40,11)" fg:x="111146" fg:w="104"/><text x="36.8109%" y="799.50"></text></g><g><title>[libc.so.6] (46 samples, 0.02%)</title><rect x="36.5961%" y="789" width="0.0151%" height="15" fill="rgb(205,86,26)" fg:x="111253" fg:w="46"/><text x="36.8461%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (21,926 samples, 7.21%)</title><rect x="29.4001%" y="805" width="7.2125%" height="15" fill="rgb(231,126,28)" fg:x="89377" fg:w="21926"/><text x="29.6501%" y="815.50">PhaseIdeal..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (100 samples, 0.03%)</title><rect x="36.6353%" y="789" width="0.0329%" height="15" fill="rgb(219,221,18)" fg:x="111372" fg:w="100"/><text x="36.8853%" y="799.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (170 samples, 0.06%)</title><rect x="36.6126%" y="805" width="0.0559%" height="15" fill="rgb(211,40,0)" fg:x="111303" fg:w="170"/><text x="36.8626%" y="815.50"></text></g><g><title>CallNode::Ideal (44 samples, 0.01%)</title><rect x="36.7882%" y="773" width="0.0145%" height="15" fill="rgb(239,85,43)" fg:x="111837" fg:w="44"/><text x="37.0382%" y="783.50"></text></g><g><title>Node::remove_dead_region (39 samples, 0.01%)</title><rect x="36.7899%" y="757" width="0.0128%" height="15" fill="rgb(231,55,21)" fg:x="111842" fg:w="39"/><text x="37.0399%" y="767.50"></text></g><g><title>IfNode::fold_compares (34 samples, 0.01%)</title><rect x="36.8527%" y="757" width="0.0112%" height="15" fill="rgb(225,184,43)" fg:x="112033" fg:w="34"/><text x="37.1027%" y="767.50"></text></g><g><title>IfNode::search_identical (48 samples, 0.02%)</title><rect x="36.8639%" y="757" width="0.0158%" height="15" fill="rgb(251,158,41)" fg:x="112067" fg:w="48"/><text x="37.1139%" y="767.50"></text></g><g><title>Node::remove_dead_region (32 samples, 0.01%)</title><rect x="36.8846%" y="757" width="0.0105%" height="15" fill="rgb(234,159,37)" fg:x="112130" fg:w="32"/><text x="37.1346%" y="767.50"></text></g><g><title>Unique_Node_List::remove (106 samples, 0.03%)</title><rect x="36.9096%" y="725" width="0.0349%" height="15" fill="rgb(216,204,22)" fg:x="112206" fg:w="106"/><text x="37.1596%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (122 samples, 0.04%)</title><rect x="36.9050%" y="741" width="0.0401%" height="15" fill="rgb(214,17,3)" fg:x="112192" fg:w="122"/><text x="37.1550%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (145 samples, 0.05%)</title><rect x="36.8991%" y="757" width="0.0477%" height="15" fill="rgb(212,111,17)" fg:x="112174" fg:w="145"/><text x="37.1491%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (38 samples, 0.01%)</title><rect x="36.9613%" y="741" width="0.0125%" height="15" fill="rgb(221,157,24)" fg:x="112363" fg:w="38"/><text x="37.2113%" y="751.50"></text></g><g><title>Unique_Node_List::remove (31 samples, 0.01%)</title><rect x="36.9636%" y="725" width="0.0102%" height="15" fill="rgb(252,16,13)" fg:x="112370" fg:w="31"/><text x="37.2136%" y="735.50"></text></g><g><title>IfNode::Ideal (425 samples, 0.14%)</title><rect x="36.8399%" y="773" width="0.1398%" height="15" fill="rgb(221,62,2)" fg:x="111994" fg:w="425"/><text x="37.0899%" y="783.50"></text></g><g><title>split_if (82 samples, 0.03%)</title><rect x="36.9527%" y="757" width="0.0270%" height="15" fill="rgb(247,87,22)" fg:x="112337" fg:w="82"/><text x="37.2027%" y="767.50"></text></g><g><title>MemNode::adr_type (38 samples, 0.01%)</title><rect x="37.0208%" y="741" width="0.0125%" height="15" fill="rgb(215,73,9)" fg:x="112544" fg:w="38"/><text x="37.2708%" y="751.50"></text></g><g><title>MemNode::Ideal_common (96 samples, 0.03%)</title><rect x="37.0093%" y="757" width="0.0316%" height="15" fill="rgb(207,175,33)" fg:x="112509" fg:w="96"/><text x="37.2593%" y="767.50"></text></g><g><title>Node::dominates (61 samples, 0.02%)</title><rect x="37.0455%" y="725" width="0.0201%" height="15" fill="rgb(243,129,54)" fg:x="112619" fg:w="61"/><text x="37.2955%" y="735.50"></text></g><g><title>MemNode::all_controls_dominate (62 samples, 0.02%)</title><rect x="37.0455%" y="741" width="0.0204%" height="15" fill="rgb(227,119,45)" fg:x="112619" fg:w="62"/><text x="37.2955%" y="751.50"></text></g><g><title>MemNode::find_previous_store (104 samples, 0.03%)</title><rect x="37.0422%" y="757" width="0.0342%" height="15" fill="rgb(205,109,36)" fg:x="112609" fg:w="104"/><text x="37.2922%" y="767.50"></text></g><g><title>LoadNode::Ideal (257 samples, 0.08%)</title><rect x="36.9945%" y="773" width="0.0845%" height="15" fill="rgb(205,6,39)" fg:x="112464" fg:w="257"/><text x="37.2445%" y="783.50"></text></g><g><title>LoadNode::Identity (42 samples, 0.01%)</title><rect x="37.0790%" y="773" width="0.0138%" height="15" fill="rgb(221,32,16)" fg:x="112721" fg:w="42"/><text x="37.3290%" y="783.50"></text></g><g><title>MemNode::can_see_stored_value (31 samples, 0.01%)</title><rect x="37.0971%" y="757" width="0.0102%" height="15" fill="rgb(228,144,50)" fg:x="112776" fg:w="31"/><text x="37.3471%" y="767.50"></text></g><g><title>LoadNode::Value (47 samples, 0.02%)</title><rect x="37.0928%" y="773" width="0.0155%" height="15" fill="rgb(229,201,53)" fg:x="112763" fg:w="47"/><text x="37.3428%" y="783.50"></text></g><g><title>MergeMemNode::Ideal (101 samples, 0.03%)</title><rect x="37.1172%" y="773" width="0.0332%" height="15" fill="rgb(249,153,27)" fg:x="112837" fg:w="101"/><text x="37.3672%" y="783.50"></text></g><g><title>NodeHash::grow (92 samples, 0.03%)</title><rect x="37.2119%" y="757" width="0.0303%" height="15" fill="rgb(227,106,25)" fg:x="113125" fg:w="92"/><text x="37.4619%" y="767.50"></text></g><g><title>NodeHash::hash_find_insert (257 samples, 0.08%)</title><rect x="37.1619%" y="773" width="0.0845%" height="15" fill="rgb(230,65,29)" fg:x="112973" fg:w="257"/><text x="37.4119%" y="783.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (85 samples, 0.03%)</title><rect x="37.2478%" y="773" width="0.0280%" height="15" fill="rgb(221,57,46)" fg:x="113234" fg:w="85"/><text x="37.4978%" y="783.50"></text></g><g><title>Node::replace_edge (35 samples, 0.01%)</title><rect x="37.3419%" y="741" width="0.0115%" height="15" fill="rgb(229,161,17)" fg:x="113520" fg:w="35"/><text x="37.5919%" y="751.50"></text></g><g><title>Unique_Node_List::remove (56 samples, 0.02%)</title><rect x="37.3547%" y="741" width="0.0184%" height="15" fill="rgb(222,213,11)" fg:x="113559" fg:w="56"/><text x="37.6047%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (131 samples, 0.04%)</title><rect x="37.3303%" y="757" width="0.0431%" height="15" fill="rgb(235,35,13)" fg:x="113485" fg:w="131"/><text x="37.5803%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (319 samples, 0.10%)</title><rect x="37.2764%" y="773" width="0.1049%" height="15" fill="rgb(233,158,34)" fg:x="113321" fg:w="319"/><text x="37.5264%" y="783.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (60 samples, 0.02%)</title><rect x="37.4165%" y="757" width="0.0197%" height="15" fill="rgb(215,151,48)" fg:x="113747" fg:w="60"/><text x="37.6665%" y="767.50"></text></g><g><title>PhiNode::unique_input (40 samples, 0.01%)</title><rect x="37.4363%" y="757" width="0.0132%" height="15" fill="rgb(229,84,14)" fg:x="113807" fg:w="40"/><text x="37.6863%" y="767.50"></text></g><g><title>PhiNode::Ideal (204 samples, 0.07%)</title><rect x="37.3826%" y="773" width="0.0671%" height="15" fill="rgb(229,68,14)" fg:x="113644" fg:w="204"/><text x="37.6326%" y="783.50"></text></g><g><title>PhiNode::Value (65 samples, 0.02%)</title><rect x="37.4560%" y="773" width="0.0214%" height="15" fill="rgb(243,106,26)" fg:x="113867" fg:w="65"/><text x="37.7060%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (175 samples, 0.06%)</title><rect x="37.5379%" y="741" width="0.0576%" height="15" fill="rgb(206,45,38)" fg:x="114116" fg:w="175"/><text x="37.7879%" y="751.50"></text></g><g><title>Unique_Node_List::remove (161 samples, 0.05%)</title><rect x="37.5425%" y="725" width="0.0530%" height="15" fill="rgb(226,6,15)" fg:x="114130" fg:w="161"/><text x="37.7925%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (206 samples, 0.07%)</title><rect x="37.5310%" y="757" width="0.0678%" height="15" fill="rgb(232,22,54)" fg:x="114095" fg:w="206"/><text x="37.7810%" y="767.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (59 samples, 0.02%)</title><rect x="37.5988%" y="757" width="0.0194%" height="15" fill="rgb(229,222,32)" fg:x="114301" fg:w="59"/><text x="37.8488%" y="767.50"></text></g><g><title>RegionNode::is_unreachable_region (134 samples, 0.04%)</title><rect x="37.6182%" y="757" width="0.0441%" height="15" fill="rgb(228,62,29)" fg:x="114360" fg:w="134"/><text x="37.8682%" y="767.50"></text></g><g><title>RegionNode::Ideal (507 samples, 0.17%)</title><rect x="37.4975%" y="773" width="0.1668%" height="15" fill="rgb(251,103,34)" fg:x="113993" fg:w="507"/><text x="37.7475%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (49 samples, 0.02%)</title><rect x="37.6777%" y="437" width="0.0161%" height="15" fill="rgb(233,12,30)" fg:x="114541" fg:w="49"/><text x="37.9277%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (80 samples, 0.03%)</title><rect x="37.6777%" y="453" width="0.0263%" height="15" fill="rgb(238,52,0)" fg:x="114541" fg:w="80"/><text x="37.9277%" y="463.50"></text></g><g><title>MemNode::all_controls_dominate (31 samples, 0.01%)</title><rect x="37.6938%" y="437" width="0.0102%" height="15" fill="rgb(223,98,5)" fg:x="114590" fg:w="31"/><text x="37.9438%" y="447.50"></text></g><g><title>Node::dominates (31 samples, 0.01%)</title><rect x="37.6938%" y="421" width="0.0102%" height="15" fill="rgb(228,75,37)" fg:x="114590" fg:w="31"/><text x="37.9438%" y="431.50"></text></g><g><title>InitializeNode::detect_init_independence (105 samples, 0.03%)</title><rect x="37.6774%" y="469" width="0.0345%" height="15" fill="rgb(205,115,49)" fg:x="114540" fg:w="105"/><text x="37.9274%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (128 samples, 0.04%)</title><rect x="37.6774%" y="485" width="0.0421%" height="15" fill="rgb(250,154,43)" fg:x="114540" fg:w="128"/><text x="37.9274%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (150 samples, 0.05%)</title><rect x="37.6774%" y="501" width="0.0493%" height="15" fill="rgb(226,43,29)" fg:x="114540" fg:w="150"/><text x="37.9274%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (177 samples, 0.06%)</title><rect x="37.6774%" y="517" width="0.0582%" height="15" fill="rgb(249,228,39)" fg:x="114540" fg:w="177"/><text x="37.9274%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (202 samples, 0.07%)</title><rect x="37.6774%" y="533" width="0.0664%" height="15" fill="rgb(216,79,43)" fg:x="114540" fg:w="202"/><text x="37.9274%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (224 samples, 0.07%)</title><rect x="37.6771%" y="549" width="0.0737%" height="15" fill="rgb(228,95,12)" fg:x="114539" fg:w="224"/><text x="37.9271%" y="559.50"></text></g><g><title>MemNode::all_controls_dominate (32 samples, 0.01%)</title><rect x="37.7507%" y="549" width="0.0105%" height="15" fill="rgb(249,221,15)" fg:x="114763" fg:w="32"/><text x="38.0007%" y="559.50"></text></g><g><title>Node::dominates (31 samples, 0.01%)</title><rect x="37.7511%" y="533" width="0.0102%" height="15" fill="rgb(233,34,13)" fg:x="114764" fg:w="31"/><text x="38.0011%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (257 samples, 0.08%)</title><rect x="37.6771%" y="565" width="0.0845%" height="15" fill="rgb(214,103,39)" fg:x="114539" fg:w="257"/><text x="37.9271%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (293 samples, 0.10%)</title><rect x="37.6771%" y="581" width="0.0964%" height="15" fill="rgb(251,126,39)" fg:x="114539" fg:w="293"/><text x="37.9271%" y="591.50"></text></g><g><title>MemNode::all_controls_dominate (36 samples, 0.01%)</title><rect x="37.7616%" y="565" width="0.0118%" height="15" fill="rgb(214,216,36)" fg:x="114796" fg:w="36"/><text x="38.0116%" y="575.50"></text></g><g><title>Node::dominates (35 samples, 0.01%)</title><rect x="37.7619%" y="549" width="0.0115%" height="15" fill="rgb(220,221,8)" fg:x="114797" fg:w="35"/><text x="38.0119%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (320 samples, 0.11%)</title><rect x="37.6771%" y="597" width="0.1053%" height="15" fill="rgb(240,216,3)" fg:x="114539" fg:w="320"/><text x="37.9271%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (345 samples, 0.11%)</title><rect x="37.6771%" y="613" width="0.1135%" height="15" fill="rgb(232,218,17)" fg:x="114539" fg:w="345"/><text x="37.9271%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (377 samples, 0.12%)</title><rect x="37.6771%" y="629" width="0.1240%" height="15" fill="rgb(229,163,45)" fg:x="114539" fg:w="377"/><text x="37.9271%" y="639.50"></text></g><g><title>MemNode::all_controls_dominate (32 samples, 0.01%)</title><rect x="37.7905%" y="613" width="0.0105%" height="15" fill="rgb(231,110,42)" fg:x="114884" fg:w="32"/><text x="38.0405%" y="623.50"></text></g><g><title>Node::dominates (32 samples, 0.01%)</title><rect x="37.7905%" y="597" width="0.0105%" height="15" fill="rgb(208,170,48)" fg:x="114884" fg:w="32"/><text x="38.0405%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (400 samples, 0.13%)</title><rect x="37.6767%" y="645" width="0.1316%" height="15" fill="rgb(239,116,25)" fg:x="114538" fg:w="400"/><text x="37.9267%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (424 samples, 0.14%)</title><rect x="37.6767%" y="661" width="0.1395%" height="15" fill="rgb(219,200,50)" fg:x="114538" fg:w="424"/><text x="37.9267%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (452 samples, 0.15%)</title><rect x="37.6767%" y="677" width="0.1487%" height="15" fill="rgb(245,200,0)" fg:x="114538" fg:w="452"/><text x="37.9267%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (475 samples, 0.16%)</title><rect x="37.6764%" y="693" width="0.1562%" height="15" fill="rgb(245,119,33)" fg:x="114537" fg:w="475"/><text x="37.9264%" y="703.50"></text></g><g><title>Node::dominates (48 samples, 0.02%)</title><rect x="37.8330%" y="677" width="0.0158%" height="15" fill="rgb(231,125,12)" fg:x="115013" fg:w="48"/><text x="38.0830%" y="687.50"></text></g><g><title>MemNode::all_controls_dominate (52 samples, 0.02%)</title><rect x="37.8326%" y="693" width="0.0171%" height="15" fill="rgb(216,96,41)" fg:x="115012" fg:w="52"/><text x="38.0826%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (528 samples, 0.17%)</title><rect x="37.6764%" y="709" width="0.1737%" height="15" fill="rgb(248,43,45)" fg:x="114537" fg:w="528"/><text x="37.9264%" y="719.50"></text></g><g><title>Node::dominates (52 samples, 0.02%)</title><rect x="37.8507%" y="693" width="0.0171%" height="15" fill="rgb(217,222,7)" fg:x="115067" fg:w="52"/><text x="38.1007%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (583 samples, 0.19%)</title><rect x="37.6764%" y="725" width="0.1918%" height="15" fill="rgb(233,28,6)" fg:x="114537" fg:w="583"/><text x="37.9264%" y="735.50"></text></g><g><title>MemNode::all_controls_dominate (55 samples, 0.02%)</title><rect x="37.8501%" y="709" width="0.0181%" height="15" fill="rgb(231,218,15)" fg:x="115065" fg:w="55"/><text x="38.1001%" y="719.50"></text></g><g><title>InitializeNode::can_capture_store (586 samples, 0.19%)</title><rect x="37.6757%" y="757" width="0.1928%" height="15" fill="rgb(226,171,48)" fg:x="114535" fg:w="586"/><text x="37.9257%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (584 samples, 0.19%)</title><rect x="37.6764%" y="741" width="0.1921%" height="15" fill="rgb(235,201,9)" fg:x="114537" fg:w="584"/><text x="37.9264%" y="751.50"></text></g><g><title>StoreNode::Ideal (640 samples, 0.21%)</title><rect x="37.6731%" y="773" width="0.2105%" height="15" fill="rgb(217,80,15)" fg:x="114527" fg:w="640"/><text x="37.9231%" y="783.50"></text></g><g><title>MemNode::Ideal_common (45 samples, 0.01%)</title><rect x="37.8688%" y="757" width="0.0148%" height="15" fill="rgb(219,152,8)" fg:x="115122" fg:w="45"/><text x="38.1188%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (3,679 samples, 1.21%)</title><rect x="36.7030%" y="789" width="1.2102%" height="15" fill="rgb(243,107,38)" fg:x="111578" fg:w="3679"/><text x="36.9530%" y="799.50"></text></g><g><title>PhaseIterGVN::optimize (3,812 samples, 1.25%)</title><rect x="36.6685%" y="805" width="1.2539%" height="15" fill="rgb(231,17,5)" fg:x="111473" fg:w="3812"/><text x="36.9185%" y="815.50"></text></g><g><title>PhaseMacroExpand::eliminate_allocate_node (56 samples, 0.02%)</title><rect x="37.9224%" y="789" width="0.0184%" height="15" fill="rgb(209,25,54)" fg:x="115285" fg:w="56"/><text x="38.1724%" y="799.50"></text></g><g><title>PhaseMacroExpand::eliminate_macro_nodes (57 samples, 0.02%)</title><rect x="37.9224%" y="805" width="0.0187%" height="15" fill="rgb(219,0,2)" fg:x="115285" fg:w="57"/><text x="38.1724%" y="815.50"></text></g><g><title>IfNode::Ideal (39 samples, 0.01%)</title><rect x="37.9777%" y="757" width="0.0128%" height="15" fill="rgb(246,9,5)" fg:x="115453" fg:w="39"/><text x="38.2277%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (334 samples, 0.11%)</title><rect x="37.9478%" y="773" width="0.1099%" height="15" fill="rgb(226,159,4)" fg:x="115362" fg:w="334"/><text x="38.1978%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (349 samples, 0.11%)</title><rect x="37.9438%" y="789" width="0.1148%" height="15" fill="rgb(219,175,34)" fg:x="115350" fg:w="349"/><text x="38.1938%" y="799.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (125 samples, 0.04%)</title><rect x="38.0613%" y="789" width="0.0411%" height="15" fill="rgb(236,10,46)" fg:x="115707" fg:w="125"/><text x="38.3113%" y="799.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (525 samples, 0.17%)</title><rect x="37.9412%" y="805" width="0.1727%" height="15" fill="rgb(240,211,16)" fg:x="115342" fg:w="525"/><text x="38.1912%" y="815.50"></text></g><g><title>Compile::identify_useful_nodes (104 samples, 0.03%)</title><rect x="38.1290%" y="773" width="0.0342%" height="15" fill="rgb(205,3,43)" fg:x="115913" fg:w="104"/><text x="38.3790%" y="783.50"></text></g><g><title>Compile::remove_useless_nodes (83 samples, 0.03%)</title><rect x="38.1632%" y="773" width="0.0273%" height="15" fill="rgb(245,7,22)" fg:x="116017" fg:w="83"/><text x="38.4132%" y="783.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (231 samples, 0.08%)</title><rect x="38.1215%" y="789" width="0.0760%" height="15" fill="rgb(239,132,32)" fg:x="115890" fg:w="231"/><text x="38.3715%" y="799.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (256 samples, 0.08%)</title><rect x="38.1139%" y="805" width="0.0842%" height="15" fill="rgb(228,202,34)" fg:x="115867" fg:w="256"/><text x="38.3639%" y="815.50"></text></g><g><title>Compile::Optimize (29,708 samples, 9.77%)</title><rect x="28.4288%" y="821" width="9.7723%" height="15" fill="rgb(254,200,22)" fg:x="86424" fg:w="29708"/><text x="28.6788%" y="831.50">Compile::Optim..</text></g><g><title>Parse::do_call (46 samples, 0.02%)</title><rect x="38.2294%" y="677" width="0.0151%" height="15" fill="rgb(219,10,39)" fg:x="116218" fg:w="46"/><text x="38.4794%" y="687.50"></text></g><g><title>Parse::do_field_access (49 samples, 0.02%)</title><rect x="38.2468%" y="677" width="0.0161%" height="15" fill="rgb(226,210,39)" fg:x="116271" fg:w="49"/><text x="38.4968%" y="687.50"></text></g><g><title>Parse::do_one_block (203 samples, 0.07%)</title><rect x="38.2139%" y="709" width="0.0668%" height="15" fill="rgb(208,219,16)" fg:x="116171" fg:w="203"/><text x="38.4639%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (175 samples, 0.06%)</title><rect x="38.2231%" y="693" width="0.0576%" height="15" fill="rgb(216,158,51)" fg:x="116199" fg:w="175"/><text x="38.4731%" y="703.50"></text></g><g><title>Parse::do_all_blocks (211 samples, 0.07%)</title><rect x="38.2126%" y="725" width="0.0694%" height="15" fill="rgb(233,14,44)" fg:x="116167" fg:w="211"/><text x="38.4626%" y="735.50"></text></g><g><title>ParseGenerator::generate (225 samples, 0.07%)</title><rect x="38.2122%" y="757" width="0.0740%" height="15" fill="rgb(237,97,39)" fg:x="116166" fg:w="225"/><text x="38.4622%" y="767.50"></text></g><g><title>Parse::Parse (225 samples, 0.07%)</title><rect x="38.2122%" y="741" width="0.0740%" height="15" fill="rgb(218,198,43)" fg:x="116166" fg:w="225"/><text x="38.4622%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (260 samples, 0.09%)</title><rect x="38.2050%" y="821" width="0.0855%" height="15" fill="rgb(231,104,20)" fg:x="116144" fg:w="260"/><text x="38.4550%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (260 samples, 0.09%)</title><rect x="38.2050%" y="805" width="0.0855%" height="15" fill="rgb(254,36,13)" fg:x="116144" fg:w="260"/><text x="38.4550%" y="815.50"></text></g><g><title>C2Compiler::compile_method (260 samples, 0.09%)</title><rect x="38.2050%" y="789" width="0.0855%" height="15" fill="rgb(248,14,50)" fg:x="116144" fg:w="260"/><text x="38.4550%" y="799.50"></text></g><g><title>Compile::Compile (260 samples, 0.09%)</title><rect x="38.2050%" y="773" width="0.0855%" height="15" fill="rgb(217,107,29)" fg:x="116144" fg:w="260"/><text x="38.4550%" y="783.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (32 samples, 0.01%)</title><rect x="38.2915%" y="645" width="0.0105%" height="15" fill="rgb(251,169,33)" fg:x="116407" fg:w="32"/><text x="38.5415%" y="655.50"></text></g><g><title>ciBytecodeStream::get_field (32 samples, 0.01%)</title><rect x="38.2915%" y="629" width="0.0105%" height="15" fill="rgb(217,108,32)" fg:x="116407" fg:w="32"/><text x="38.5415%" y="639.50"></text></g><g><title>ciMethod::ciMethod (43 samples, 0.01%)</title><rect x="38.3060%" y="565" width="0.0141%" height="15" fill="rgb(219,66,42)" fg:x="116451" fg:w="43"/><text x="38.5560%" y="575.50"></text></g><g><title>ciSignature::ciSignature (34 samples, 0.01%)</title><rect x="38.3090%" y="549" width="0.0112%" height="15" fill="rgb(206,180,7)" fg:x="116460" fg:w="34"/><text x="38.5590%" y="559.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (57 samples, 0.02%)</title><rect x="38.3021%" y="645" width="0.0187%" height="15" fill="rgb(208,226,31)" fg:x="116439" fg:w="57"/><text x="38.5521%" y="655.50"></text></g><g><title>ciBytecodeStream::get_method (57 samples, 0.02%)</title><rect x="38.3021%" y="629" width="0.0187%" height="15" fill="rgb(218,26,49)" fg:x="116439" fg:w="57"/><text x="38.5521%" y="639.50"></text></g><g><title>ciEnv::get_method_by_index_impl (53 samples, 0.02%)</title><rect x="38.3034%" y="613" width="0.0174%" height="15" fill="rgb(233,197,48)" fg:x="116443" fg:w="53"/><text x="38.5534%" y="623.50"></text></g><g><title>ciObjectFactory::get_metadata (49 samples, 0.02%)</title><rect x="38.3047%" y="597" width="0.0161%" height="15" fill="rgb(252,181,51)" fg:x="116447" fg:w="49"/><text x="38.5547%" y="607.50"></text></g><g><title>ciObjectFactory::create_new_metadata (47 samples, 0.02%)</title><rect x="38.3053%" y="581" width="0.0155%" height="15" fill="rgb(253,90,19)" fg:x="116449" fg:w="47"/><text x="38.5553%" y="591.50"></text></g><g><title>ciTypeFlow::df_flow_types (95 samples, 0.03%)</title><rect x="38.2912%" y="693" width="0.0312%" height="15" fill="rgb(215,171,30)" fg:x="116406" fg:w="95"/><text x="38.5412%" y="703.50"></text></g><g><title>ciTypeFlow::flow_block (95 samples, 0.03%)</title><rect x="38.2912%" y="677" width="0.0312%" height="15" fill="rgb(214,222,9)" fg:x="116406" fg:w="95"/><text x="38.5412%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (95 samples, 0.03%)</title><rect x="38.2912%" y="661" width="0.0312%" height="15" fill="rgb(223,3,22)" fg:x="116406" fg:w="95"/><text x="38.5412%" y="671.50"></text></g><g><title>CallGenerator::for_inline (99 samples, 0.03%)</title><rect x="38.2905%" y="773" width="0.0326%" height="15" fill="rgb(225,196,46)" fg:x="116404" fg:w="99"/><text x="38.5405%" y="783.50"></text></g><g><title>InlineTree::check_can_parse (99 samples, 0.03%)</title><rect x="38.2905%" y="757" width="0.0326%" height="15" fill="rgb(209,110,37)" fg:x="116404" fg:w="99"/><text x="38.5405%" y="767.50"></text></g><g><title>ciMethod::get_flow_analysis (99 samples, 0.03%)</title><rect x="38.2905%" y="741" width="0.0326%" height="15" fill="rgb(249,89,12)" fg:x="116404" fg:w="99"/><text x="38.5405%" y="751.50"></text></g><g><title>ciTypeFlow::do_flow (99 samples, 0.03%)</title><rect x="38.2905%" y="725" width="0.0326%" height="15" fill="rgb(226,27,33)" fg:x="116404" fg:w="99"/><text x="38.5405%" y="735.50"></text></g><g><title>ciTypeFlow::flow_types (99 samples, 0.03%)</title><rect x="38.2905%" y="709" width="0.0326%" height="15" fill="rgb(213,82,22)" fg:x="116404" fg:w="99"/><text x="38.5405%" y="719.50"></text></g><g><title>InlineTree::ok_to_inline (65 samples, 0.02%)</title><rect x="38.3478%" y="661" width="0.0214%" height="15" fill="rgb(248,140,0)" fg:x="116578" fg:w="65"/><text x="38.5978%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (31 samples, 0.01%)</title><rect x="38.3590%" y="645" width="0.0102%" height="15" fill="rgb(228,106,3)" fg:x="116612" fg:w="31"/><text x="38.6090%" y="655.50"></text></g><g><title>Compile::call_generator (84 samples, 0.03%)</title><rect x="38.3445%" y="677" width="0.0276%" height="15" fill="rgb(209,23,37)" fg:x="116568" fg:w="84"/><text x="38.5945%" y="687.50"></text></g><g><title>Parse::do_one_block (141 samples, 0.05%)</title><rect x="38.4221%" y="629" width="0.0464%" height="15" fill="rgb(241,93,50)" fg:x="116804" fg:w="141"/><text x="38.6721%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (129 samples, 0.04%)</title><rect x="38.4261%" y="613" width="0.0424%" height="15" fill="rgb(253,46,43)" fg:x="116816" fg:w="129"/><text x="38.6761%" y="623.50"></text></g><g><title>Parse::do_all_blocks (159 samples, 0.05%)</title><rect x="38.4215%" y="645" width="0.0523%" height="15" fill="rgb(226,206,43)" fg:x="116802" fg:w="159"/><text x="38.6715%" y="655.50"></text></g><g><title>ParseGenerator::generate (275 samples, 0.09%)</title><rect x="38.4011%" y="677" width="0.0905%" height="15" fill="rgb(217,54,7)" fg:x="116740" fg:w="275"/><text x="38.6511%" y="687.50"></text></g><g><title>Parse::Parse (273 samples, 0.09%)</title><rect x="38.4017%" y="661" width="0.0898%" height="15" fill="rgb(223,5,52)" fg:x="116742" fg:w="273"/><text x="38.6517%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (87 samples, 0.03%)</title><rect x="38.4915%" y="677" width="0.0286%" height="15" fill="rgb(206,52,46)" fg:x="117015" fg:w="87"/><text x="38.7415%" y="687.50"></text></g><g><title>Parse::do_call (558 samples, 0.18%)</title><rect x="38.3445%" y="693" width="0.1836%" height="15" fill="rgb(253,136,11)" fg:x="116568" fg:w="558"/><text x="38.5945%" y="703.50"></text></g><g><title>GraphKit::access_load_at (31 samples, 0.01%)</title><rect x="38.5419%" y="661" width="0.0102%" height="15" fill="rgb(208,106,33)" fg:x="117168" fg:w="31"/><text x="38.7919%" y="671.50"></text></g><g><title>BarrierSetC2::load_at (31 samples, 0.01%)</title><rect x="38.5419%" y="645" width="0.0102%" height="15" fill="rgb(206,54,4)" fg:x="117168" fg:w="31"/><text x="38.7919%" y="655.50"></text></g><g><title>G1BarrierSetC2::load_at_resolved (31 samples, 0.01%)</title><rect x="38.5419%" y="629" width="0.0102%" height="15" fill="rgb(213,3,15)" fg:x="117168" fg:w="31"/><text x="38.7919%" y="639.50"></text></g><g><title>Parse::do_get_xxx (51 samples, 0.02%)</title><rect x="38.5359%" y="677" width="0.0168%" height="15" fill="rgb(252,211,39)" fg:x="117150" fg:w="51"/><text x="38.7859%" y="687.50"></text></g><g><title>Parse::do_field_access (88 samples, 0.03%)</title><rect x="38.5343%" y="693" width="0.0289%" height="15" fill="rgb(223,6,36)" fg:x="117145" fg:w="88"/><text x="38.7843%" y="703.50"></text></g><g><title>Parse::do_put_xxx (32 samples, 0.01%)</title><rect x="38.5527%" y="677" width="0.0105%" height="15" fill="rgb(252,169,45)" fg:x="117201" fg:w="32"/><text x="38.8027%" y="687.50"></text></g><g><title>Parse::do_if (31 samples, 0.01%)</title><rect x="38.5632%" y="693" width="0.0102%" height="15" fill="rgb(212,48,26)" fg:x="117233" fg:w="31"/><text x="38.8132%" y="703.50"></text></g><g><title>Parse::do_all_blocks (777 samples, 0.26%)</title><rect x="38.3287%" y="741" width="0.2556%" height="15" fill="rgb(251,102,48)" fg:x="116520" fg:w="777"/><text x="38.5787%" y="751.50"></text></g><g><title>Parse::do_one_block (776 samples, 0.26%)</title><rect x="38.3290%" y="725" width="0.2553%" height="15" fill="rgb(243,208,16)" fg:x="116521" fg:w="776"/><text x="38.5790%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (767 samples, 0.25%)</title><rect x="38.3320%" y="709" width="0.2523%" height="15" fill="rgb(219,96,24)" fg:x="116530" fg:w="767"/><text x="38.5820%" y="719.50"></text></g><g><title>ParseGenerator::generate (788 samples, 0.26%)</title><rect x="38.3287%" y="773" width="0.2592%" height="15" fill="rgb(219,33,29)" fg:x="116520" fg:w="788"/><text x="38.5787%" y="783.50"></text></g><g><title>Parse::Parse (788 samples, 0.26%)</title><rect x="38.3287%" y="757" width="0.2592%" height="15" fill="rgb(223,176,5)" fg:x="116520" fg:w="788"/><text x="38.5787%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (935 samples, 0.31%)</title><rect x="38.2905%" y="821" width="0.3076%" height="15" fill="rgb(228,140,14)" fg:x="116404" fg:w="935"/><text x="38.5405%" y="831.50"></text></g><g><title>C2Compiler::compile_method (935 samples, 0.31%)</title><rect x="38.2905%" y="805" width="0.3076%" height="15" fill="rgb(217,179,31)" fg:x="116404" fg:w="935"/><text x="38.5405%" y="815.50"></text></g><g><title>Compile::Compile (935 samples, 0.31%)</title><rect x="38.2905%" y="789" width="0.3076%" height="15" fill="rgb(230,9,30)" fg:x="116404" fg:w="935"/><text x="38.5405%" y="799.50"></text></g><g><title>ciEnv::register_method (31 samples, 0.01%)</title><rect x="38.5879%" y="773" width="0.0102%" height="15" fill="rgb(230,136,20)" fg:x="117308" fg:w="31"/><text x="38.8379%" y="783.50"></text></g><g><title>Parse::do_one_block (61 samples, 0.02%)</title><rect x="38.6284%" y="693" width="0.0201%" height="15" fill="rgb(215,210,22)" fg:x="117431" fg:w="61"/><text x="38.8784%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.02%)</title><rect x="38.6297%" y="677" width="0.0187%" height="15" fill="rgb(218,43,5)" fg:x="117435" fg:w="57"/><text x="38.8797%" y="687.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.02%)</title><rect x="38.6280%" y="709" width="0.0230%" height="15" fill="rgb(216,11,5)" fg:x="117430" fg:w="70"/><text x="38.8780%" y="719.50"></text></g><g><title>ParseGenerator::generate (85 samples, 0.03%)</title><rect x="38.6280%" y="741" width="0.0280%" height="15" fill="rgb(209,82,29)" fg:x="117430" fg:w="85"/><text x="38.8780%" y="751.50"></text></g><g><title>Parse::Parse (85 samples, 0.03%)</title><rect x="38.6280%" y="725" width="0.0280%" height="15" fill="rgb(244,115,12)" fg:x="117430" fg:w="85"/><text x="38.8780%" y="735.50"></text></g><g><title>JavaThread::thread_main_inner (108 samples, 0.04%)</title><rect x="38.6244%" y="821" width="0.0355%" height="15" fill="rgb(222,82,18)" fg:x="117419" fg:w="108"/><text x="38.8744%" y="831.50"></text></g><g><title>CompileBroker::compiler_thread_loop (108 samples, 0.04%)</title><rect x="38.6244%" y="805" width="0.0355%" height="15" fill="rgb(249,227,8)" fg:x="117419" fg:w="108"/><text x="38.8744%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (108 samples, 0.04%)</title><rect x="38.6244%" y="789" width="0.0355%" height="15" fill="rgb(253,141,45)" fg:x="117419" fg:w="108"/><text x="38.8744%" y="799.50"></text></g><g><title>C2Compiler::compile_method (108 samples, 0.04%)</title><rect x="38.6244%" y="773" width="0.0355%" height="15" fill="rgb(234,184,4)" fg:x="117419" fg:w="108"/><text x="38.8744%" y="783.50"></text></g><g><title>Compile::Compile (108 samples, 0.04%)</title><rect x="38.6244%" y="757" width="0.0355%" height="15" fill="rgb(218,194,23)" fg:x="117419" fg:w="108"/><text x="38.8744%" y="767.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.01%)</title><rect x="38.6642%" y="453" width="0.0122%" height="15" fill="rgb(235,66,41)" fg:x="117540" fg:w="37"/><text x="38.9142%" y="463.50"></text></g><g><title>Parse::Parse (37 samples, 0.01%)</title><rect x="38.6642%" y="437" width="0.0122%" height="15" fill="rgb(245,217,1)" fg:x="117540" fg:w="37"/><text x="38.9142%" y="447.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.01%)</title><rect x="38.6642%" y="421" width="0.0122%" height="15" fill="rgb(229,91,1)" fg:x="117540" fg:w="37"/><text x="38.9142%" y="431.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.01%)</title><rect x="38.6642%" y="405" width="0.0122%" height="15" fill="rgb(207,101,30)" fg:x="117540" fg:w="37"/><text x="38.9142%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.01%)</title><rect x="38.6642%" y="389" width="0.0122%" height="15" fill="rgb(223,82,49)" fg:x="117540" fg:w="37"/><text x="38.9142%" y="399.50"></text></g><g><title>Parse::do_call (37 samples, 0.01%)</title><rect x="38.6642%" y="373" width="0.0122%" height="15" fill="rgb(218,167,17)" fg:x="117540" fg:w="37"/><text x="38.9142%" y="383.50"></text></g><g><title>ParseGenerator::generate (43 samples, 0.01%)</title><rect x="38.6642%" y="549" width="0.0141%" height="15" fill="rgb(208,103,14)" fg:x="117540" fg:w="43"/><text x="38.9142%" y="559.50"></text></g><g><title>Parse::Parse (43 samples, 0.01%)</title><rect x="38.6642%" y="533" width="0.0141%" height="15" fill="rgb(238,20,8)" fg:x="117540" fg:w="43"/><text x="38.9142%" y="543.50"></text></g><g><title>Parse::do_all_blocks (43 samples, 0.01%)</title><rect x="38.6642%" y="517" width="0.0141%" height="15" fill="rgb(218,80,54)" fg:x="117540" fg:w="43"/><text x="38.9142%" y="527.50"></text></g><g><title>Parse::do_one_block (43 samples, 0.01%)</title><rect x="38.6642%" y="501" width="0.0141%" height="15" fill="rgb(240,144,17)" fg:x="117540" fg:w="43"/><text x="38.9142%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (43 samples, 0.01%)</title><rect x="38.6642%" y="485" width="0.0141%" height="15" fill="rgb(245,27,50)" fg:x="117540" fg:w="43"/><text x="38.9142%" y="495.50"></text></g><g><title>Parse::do_call (43 samples, 0.01%)</title><rect x="38.6642%" y="469" width="0.0141%" height="15" fill="rgb(251,51,7)" fg:x="117540" fg:w="43"/><text x="38.9142%" y="479.50"></text></g><g><title>ParseGenerator::generate (49 samples, 0.02%)</title><rect x="38.6642%" y="645" width="0.0161%" height="15" fill="rgb(245,217,29)" fg:x="117540" fg:w="49"/><text x="38.9142%" y="655.50"></text></g><g><title>Parse::Parse (49 samples, 0.02%)</title><rect x="38.6642%" y="629" width="0.0161%" height="15" fill="rgb(221,176,29)" fg:x="117540" fg:w="49"/><text x="38.9142%" y="639.50"></text></g><g><title>Parse::do_all_blocks (49 samples, 0.02%)</title><rect x="38.6642%" y="613" width="0.0161%" height="15" fill="rgb(212,180,24)" fg:x="117540" fg:w="49"/><text x="38.9142%" y="623.50"></text></g><g><title>Parse::do_one_block (49 samples, 0.02%)</title><rect x="38.6642%" y="597" width="0.0161%" height="15" fill="rgb(254,24,2)" fg:x="117540" fg:w="49"/><text x="38.9142%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (49 samples, 0.02%)</title><rect x="38.6642%" y="581" width="0.0161%" height="15" fill="rgb(230,100,2)" fg:x="117540" fg:w="49"/><text x="38.9142%" y="591.50"></text></g><g><title>Parse::do_call (49 samples, 0.02%)</title><rect x="38.6642%" y="565" width="0.0161%" height="15" fill="rgb(219,142,25)" fg:x="117540" fg:w="49"/><text x="38.9142%" y="575.50"></text></g><g><title>ParseGenerator::generate (54 samples, 0.02%)</title><rect x="38.6642%" y="741" width="0.0178%" height="15" fill="rgb(240,73,43)" fg:x="117540" fg:w="54"/><text x="38.9142%" y="751.50"></text></g><g><title>Parse::Parse (54 samples, 0.02%)</title><rect x="38.6642%" y="725" width="0.0178%" height="15" fill="rgb(214,114,15)" fg:x="117540" fg:w="54"/><text x="38.9142%" y="735.50"></text></g><g><title>Parse::do_all_blocks (54 samples, 0.02%)</title><rect x="38.6642%" y="709" width="0.0178%" height="15" fill="rgb(207,130,4)" fg:x="117540" fg:w="54"/><text x="38.9142%" y="719.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.02%)</title><rect x="38.6642%" y="693" width="0.0178%" height="15" fill="rgb(221,25,40)" fg:x="117540" fg:w="54"/><text x="38.9142%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.02%)</title><rect x="38.6642%" y="677" width="0.0178%" height="15" fill="rgb(241,184,7)" fg:x="117540" fg:w="54"/><text x="38.9142%" y="687.50"></text></g><g><title>Parse::do_call (54 samples, 0.02%)</title><rect x="38.6642%" y="661" width="0.0178%" height="15" fill="rgb(235,159,4)" fg:x="117540" fg:w="54"/><text x="38.9142%" y="671.50"></text></g><g><title>Parse::Parse (63 samples, 0.02%)</title><rect x="38.6642%" y="821" width="0.0207%" height="15" fill="rgb(214,87,48)" fg:x="117540" fg:w="63"/><text x="38.9142%" y="831.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.02%)</title><rect x="38.6642%" y="805" width="0.0207%" height="15" fill="rgb(246,198,24)" fg:x="117540" fg:w="63"/><text x="38.9142%" y="815.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.02%)</title><rect x="38.6642%" y="789" width="0.0207%" height="15" fill="rgb(209,66,40)" fg:x="117540" fg:w="63"/><text x="38.9142%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (63 samples, 0.02%)</title><rect x="38.6642%" y="773" width="0.0207%" height="15" fill="rgb(233,147,39)" fg:x="117540" fg:w="63"/><text x="38.9142%" y="783.50"></text></g><g><title>Parse::do_call (63 samples, 0.02%)</title><rect x="38.6642%" y="757" width="0.0207%" height="15" fill="rgb(231,145,52)" fg:x="117540" fg:w="63"/><text x="38.9142%" y="767.50"></text></g><g><title>ParseGenerator::generate (32 samples, 0.01%)</title><rect x="38.6849%" y="373" width="0.0105%" height="15" fill="rgb(206,20,26)" fg:x="117603" fg:w="32"/><text x="38.9349%" y="383.50"></text></g><g><title>Parse::Parse (32 samples, 0.01%)</title><rect x="38.6849%" y="357" width="0.0105%" height="15" fill="rgb(238,220,4)" fg:x="117603" fg:w="32"/><text x="38.9349%" y="367.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="38.6849%" y="341" width="0.0105%" height="15" fill="rgb(252,195,42)" fg:x="117603" fg:w="32"/><text x="38.9349%" y="351.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="38.6849%" y="325" width="0.0105%" height="15" fill="rgb(209,10,6)" fg:x="117603" fg:w="32"/><text x="38.9349%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.01%)</title><rect x="38.6849%" y="309" width="0.0105%" height="15" fill="rgb(229,3,52)" fg:x="117603" fg:w="32"/><text x="38.9349%" y="319.50"></text></g><g><title>Parse::do_call (32 samples, 0.01%)</title><rect x="38.6849%" y="293" width="0.0105%" height="15" fill="rgb(253,49,37)" fg:x="117603" fg:w="32"/><text x="38.9349%" y="303.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.01%)</title><rect x="38.6849%" y="469" width="0.0138%" height="15" fill="rgb(240,103,49)" fg:x="117603" fg:w="42"/><text x="38.9349%" y="479.50"></text></g><g><title>Parse::Parse (42 samples, 0.01%)</title><rect x="38.6849%" y="453" width="0.0138%" height="15" fill="rgb(250,182,30)" fg:x="117603" fg:w="42"/><text x="38.9349%" y="463.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.01%)</title><rect x="38.6849%" y="437" width="0.0138%" height="15" fill="rgb(248,8,30)" fg:x="117603" fg:w="42"/><text x="38.9349%" y="447.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="38.6849%" y="421" width="0.0138%" height="15" fill="rgb(237,120,30)" fg:x="117603" fg:w="42"/><text x="38.9349%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="38.6849%" y="405" width="0.0138%" height="15" fill="rgb(221,146,34)" fg:x="117603" fg:w="42"/><text x="38.9349%" y="415.50"></text></g><g><title>Parse::do_call (42 samples, 0.01%)</title><rect x="38.6849%" y="389" width="0.0138%" height="15" fill="rgb(242,55,13)" fg:x="117603" fg:w="42"/><text x="38.9349%" y="399.50"></text></g><g><title>ParseGenerator::generate (46 samples, 0.02%)</title><rect x="38.6849%" y="565" width="0.0151%" height="15" fill="rgb(242,112,31)" fg:x="117603" fg:w="46"/><text x="38.9349%" y="575.50"></text></g><g><title>Parse::Parse (46 samples, 0.02%)</title><rect x="38.6849%" y="549" width="0.0151%" height="15" fill="rgb(249,192,27)" fg:x="117603" fg:w="46"/><text x="38.9349%" y="559.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.02%)</title><rect x="38.6849%" y="533" width="0.0151%" height="15" fill="rgb(208,204,44)" fg:x="117603" fg:w="46"/><text x="38.9349%" y="543.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.02%)</title><rect x="38.6849%" y="517" width="0.0151%" height="15" fill="rgb(208,93,54)" fg:x="117603" fg:w="46"/><text x="38.9349%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (46 samples, 0.02%)</title><rect x="38.6849%" y="501" width="0.0151%" height="15" fill="rgb(242,1,31)" fg:x="117603" fg:w="46"/><text x="38.9349%" y="511.50"></text></g><g><title>Parse::do_call (46 samples, 0.02%)</title><rect x="38.6849%" y="485" width="0.0151%" height="15" fill="rgb(241,83,25)" fg:x="117603" fg:w="46"/><text x="38.9349%" y="495.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.02%)</title><rect x="38.6849%" y="661" width="0.0171%" height="15" fill="rgb(205,169,50)" fg:x="117603" fg:w="52"/><text x="38.9349%" y="671.50"></text></g><g><title>Parse::Parse (52 samples, 0.02%)</title><rect x="38.6849%" y="645" width="0.0171%" height="15" fill="rgb(239,186,37)" fg:x="117603" fg:w="52"/><text x="38.9349%" y="655.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.02%)</title><rect x="38.6849%" y="629" width="0.0171%" height="15" fill="rgb(205,221,10)" fg:x="117603" fg:w="52"/><text x="38.9349%" y="639.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.02%)</title><rect x="38.6849%" y="613" width="0.0171%" height="15" fill="rgb(218,196,15)" fg:x="117603" fg:w="52"/><text x="38.9349%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.02%)</title><rect x="38.6849%" y="597" width="0.0171%" height="15" fill="rgb(218,196,35)" fg:x="117603" fg:w="52"/><text x="38.9349%" y="607.50"></text></g><g><title>Parse::do_call (52 samples, 0.02%)</title><rect x="38.6849%" y="581" width="0.0171%" height="15" fill="rgb(233,63,24)" fg:x="117603" fg:w="52"/><text x="38.9349%" y="591.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.02%)</title><rect x="38.6849%" y="757" width="0.0194%" height="15" fill="rgb(225,8,4)" fg:x="117603" fg:w="59"/><text x="38.9349%" y="767.50"></text></g><g><title>Parse::Parse (59 samples, 0.02%)</title><rect x="38.6849%" y="741" width="0.0194%" height="15" fill="rgb(234,105,35)" fg:x="117603" fg:w="59"/><text x="38.9349%" y="751.50"></text></g><g><title>Parse::do_all_blocks (59 samples, 0.02%)</title><rect x="38.6849%" y="725" width="0.0194%" height="15" fill="rgb(236,21,32)" fg:x="117603" fg:w="59"/><text x="38.9349%" y="735.50"></text></g><g><title>Parse::do_one_block (59 samples, 0.02%)</title><rect x="38.6849%" y="709" width="0.0194%" height="15" fill="rgb(228,109,6)" fg:x="117603" fg:w="59"/><text x="38.9349%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (59 samples, 0.02%)</title><rect x="38.6849%" y="693" width="0.0194%" height="15" fill="rgb(229,215,31)" fg:x="117603" fg:w="59"/><text x="38.9349%" y="703.50"></text></g><g><title>Parse::do_call (59 samples, 0.02%)</title><rect x="38.6849%" y="677" width="0.0194%" height="15" fill="rgb(221,52,54)" fg:x="117603" fg:w="59"/><text x="38.9349%" y="687.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.02%)</title><rect x="38.6849%" y="821" width="0.0224%" height="15" fill="rgb(252,129,43)" fg:x="117603" fg:w="68"/><text x="38.9349%" y="831.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.02%)</title><rect x="38.6849%" y="805" width="0.0224%" height="15" fill="rgb(248,183,27)" fg:x="117603" fg:w="68"/><text x="38.9349%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.02%)</title><rect x="38.6849%" y="789" width="0.0224%" height="15" fill="rgb(250,0,22)" fg:x="117603" fg:w="68"/><text x="38.9349%" y="799.50"></text></g><g><title>Parse::do_call (68 samples, 0.02%)</title><rect x="38.6849%" y="773" width="0.0224%" height="15" fill="rgb(213,166,10)" fg:x="117603" fg:w="68"/><text x="38.9349%" y="783.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.01%)</title><rect x="38.7096%" y="133" width="0.0112%" height="15" fill="rgb(207,163,36)" fg:x="117678" fg:w="34"/><text x="38.9596%" y="143.50"></text></g><g><title>Parse::Parse (34 samples, 0.01%)</title><rect x="38.7096%" y="117" width="0.0112%" height="15" fill="rgb(208,122,22)" fg:x="117678" fg:w="34"/><text x="38.9596%" y="127.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="38.7103%" y="101" width="0.0105%" height="15" fill="rgb(207,104,49)" fg:x="117680" fg:w="32"/><text x="38.9603%" y="111.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="38.7103%" y="85" width="0.0105%" height="15" fill="rgb(248,211,50)" fg:x="117680" fg:w="32"/><text x="38.9603%" y="95.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.01%)</title><rect x="38.7103%" y="69" width="0.0105%" height="15" fill="rgb(217,13,45)" fg:x="117680" fg:w="32"/><text x="38.9603%" y="79.50"></text></g><g><title>Parse::do_call (41 samples, 0.01%)</title><rect x="38.7090%" y="149" width="0.0135%" height="15" fill="rgb(211,216,49)" fg:x="117676" fg:w="41"/><text x="38.9590%" y="159.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.01%)</title><rect x="38.7090%" y="229" width="0.0138%" height="15" fill="rgb(221,58,53)" fg:x="117676" fg:w="42"/><text x="38.9590%" y="239.50"></text></g><g><title>Parse::Parse (42 samples, 0.01%)</title><rect x="38.7090%" y="213" width="0.0138%" height="15" fill="rgb(220,112,41)" fg:x="117676" fg:w="42"/><text x="38.9590%" y="223.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.01%)</title><rect x="38.7090%" y="197" width="0.0138%" height="15" fill="rgb(236,38,28)" fg:x="117676" fg:w="42"/><text x="38.9590%" y="207.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="38.7090%" y="181" width="0.0138%" height="15" fill="rgb(227,195,22)" fg:x="117676" fg:w="42"/><text x="38.9590%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="38.7090%" y="165" width="0.0138%" height="15" fill="rgb(214,55,33)" fg:x="117676" fg:w="42"/><text x="38.9590%" y="175.50"></text></g><g><title>Parse::do_call (54 samples, 0.02%)</title><rect x="38.7080%" y="245" width="0.0178%" height="15" fill="rgb(248,80,13)" fg:x="117673" fg:w="54"/><text x="38.9580%" y="255.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.02%)</title><rect x="38.7080%" y="325" width="0.0181%" height="15" fill="rgb(238,52,6)" fg:x="117673" fg:w="55"/><text x="38.9580%" y="335.50"></text></g><g><title>Parse::Parse (55 samples, 0.02%)</title><rect x="38.7080%" y="309" width="0.0181%" height="15" fill="rgb(224,198,47)" fg:x="117673" fg:w="55"/><text x="38.9580%" y="319.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.02%)</title><rect x="38.7080%" y="293" width="0.0181%" height="15" fill="rgb(233,171,20)" fg:x="117673" fg:w="55"/><text x="38.9580%" y="303.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.02%)</title><rect x="38.7080%" y="277" width="0.0181%" height="15" fill="rgb(241,30,25)" fg:x="117673" fg:w="55"/><text x="38.9580%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.02%)</title><rect x="38.7080%" y="261" width="0.0181%" height="15" fill="rgb(207,171,38)" fg:x="117673" fg:w="55"/><text x="38.9580%" y="271.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.02%)</title><rect x="38.7073%" y="421" width="0.0227%" height="15" fill="rgb(234,70,1)" fg:x="117671" fg:w="69"/><text x="38.9573%" y="431.50"></text></g><g><title>Parse::Parse (69 samples, 0.02%)</title><rect x="38.7073%" y="405" width="0.0227%" height="15" fill="rgb(232,178,18)" fg:x="117671" fg:w="69"/><text x="38.9573%" y="415.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.02%)</title><rect x="38.7073%" y="389" width="0.0227%" height="15" fill="rgb(241,78,40)" fg:x="117671" fg:w="69"/><text x="38.9573%" y="399.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.02%)</title><rect x="38.7073%" y="373" width="0.0227%" height="15" fill="rgb(222,35,25)" fg:x="117671" fg:w="69"/><text x="38.9573%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.02%)</title><rect x="38.7073%" y="357" width="0.0227%" height="15" fill="rgb(207,92,16)" fg:x="117671" fg:w="69"/><text x="38.9573%" y="367.50"></text></g><g><title>Parse::do_call (69 samples, 0.02%)</title><rect x="38.7073%" y="341" width="0.0227%" height="15" fill="rgb(216,59,51)" fg:x="117671" fg:w="69"/><text x="38.9573%" y="351.50"></text></g><g><title>ParseGenerator::generate (80 samples, 0.03%)</title><rect x="38.7073%" y="517" width="0.0263%" height="15" fill="rgb(213,80,28)" fg:x="117671" fg:w="80"/><text x="38.9573%" y="527.50"></text></g><g><title>Parse::Parse (80 samples, 0.03%)</title><rect x="38.7073%" y="501" width="0.0263%" height="15" fill="rgb(220,93,7)" fg:x="117671" fg:w="80"/><text x="38.9573%" y="511.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.03%)</title><rect x="38.7073%" y="485" width="0.0263%" height="15" fill="rgb(225,24,44)" fg:x="117671" fg:w="80"/><text x="38.9573%" y="495.50"></text></g><g><title>Parse::do_one_block (80 samples, 0.03%)</title><rect x="38.7073%" y="469" width="0.0263%" height="15" fill="rgb(243,74,40)" fg:x="117671" fg:w="80"/><text x="38.9573%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.03%)</title><rect x="38.7073%" y="453" width="0.0263%" height="15" fill="rgb(228,39,7)" fg:x="117671" fg:w="80"/><text x="38.9573%" y="463.50"></text></g><g><title>Parse::do_call (80 samples, 0.03%)</title><rect x="38.7073%" y="437" width="0.0263%" height="15" fill="rgb(227,79,8)" fg:x="117671" fg:w="80"/><text x="38.9573%" y="447.50"></text></g><g><title>ParseGenerator::generate (95 samples, 0.03%)</title><rect x="38.7073%" y="613" width="0.0312%" height="15" fill="rgb(236,58,11)" fg:x="117671" fg:w="95"/><text x="38.9573%" y="623.50"></text></g><g><title>Parse::Parse (95 samples, 0.03%)</title><rect x="38.7073%" y="597" width="0.0312%" height="15" fill="rgb(249,63,35)" fg:x="117671" fg:w="95"/><text x="38.9573%" y="607.50"></text></g><g><title>Parse::do_all_blocks (95 samples, 0.03%)</title><rect x="38.7073%" y="581" width="0.0312%" height="15" fill="rgb(252,114,16)" fg:x="117671" fg:w="95"/><text x="38.9573%" y="591.50"></text></g><g><title>Parse::do_one_block (95 samples, 0.03%)</title><rect x="38.7073%" y="565" width="0.0312%" height="15" fill="rgb(254,151,24)" fg:x="117671" fg:w="95"/><text x="38.9573%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (95 samples, 0.03%)</title><rect x="38.7073%" y="549" width="0.0312%" height="15" fill="rgb(253,54,39)" fg:x="117671" fg:w="95"/><text x="38.9573%" y="559.50"></text></g><g><title>Parse::do_call (95 samples, 0.03%)</title><rect x="38.7073%" y="533" width="0.0312%" height="15" fill="rgb(243,25,45)" fg:x="117671" fg:w="95"/><text x="38.9573%" y="543.50"></text></g><g><title>ParseGenerator::generate (108 samples, 0.04%)</title><rect x="38.7073%" y="709" width="0.0355%" height="15" fill="rgb(234,134,9)" fg:x="117671" fg:w="108"/><text x="38.9573%" y="719.50"></text></g><g><title>Parse::Parse (108 samples, 0.04%)</title><rect x="38.7073%" y="693" width="0.0355%" height="15" fill="rgb(227,166,31)" fg:x="117671" fg:w="108"/><text x="38.9573%" y="703.50"></text></g><g><title>Parse::do_all_blocks (108 samples, 0.04%)</title><rect x="38.7073%" y="677" width="0.0355%" height="15" fill="rgb(245,143,41)" fg:x="117671" fg:w="108"/><text x="38.9573%" y="687.50"></text></g><g><title>Parse::do_one_block (108 samples, 0.04%)</title><rect x="38.7073%" y="661" width="0.0355%" height="15" fill="rgb(238,181,32)" fg:x="117671" fg:w="108"/><text x="38.9573%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (108 samples, 0.04%)</title><rect x="38.7073%" y="645" width="0.0355%" height="15" fill="rgb(224,113,18)" fg:x="117671" fg:w="108"/><text x="38.9573%" y="655.50"></text></g><g><title>Parse::do_call (108 samples, 0.04%)</title><rect x="38.7073%" y="629" width="0.0355%" height="15" fill="rgb(240,229,28)" fg:x="117671" fg:w="108"/><text x="38.9573%" y="639.50"></text></g><g><title>ParseGenerator::generate (120 samples, 0.04%)</title><rect x="38.7073%" y="805" width="0.0395%" height="15" fill="rgb(250,185,3)" fg:x="117671" fg:w="120"/><text x="38.9573%" y="815.50"></text></g><g><title>Parse::Parse (120 samples, 0.04%)</title><rect x="38.7073%" y="789" width="0.0395%" height="15" fill="rgb(212,59,25)" fg:x="117671" fg:w="120"/><text x="38.9573%" y="799.50"></text></g><g><title>Parse::do_all_blocks (120 samples, 0.04%)</title><rect x="38.7073%" y="773" width="0.0395%" height="15" fill="rgb(221,87,20)" fg:x="117671" fg:w="120"/><text x="38.9573%" y="783.50"></text></g><g><title>Parse::do_one_block (120 samples, 0.04%)</title><rect x="38.7073%" y="757" width="0.0395%" height="15" fill="rgb(213,74,28)" fg:x="117671" fg:w="120"/><text x="38.9573%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (120 samples, 0.04%)</title><rect x="38.7073%" y="741" width="0.0395%" height="15" fill="rgb(224,132,34)" fg:x="117671" fg:w="120"/><text x="38.9573%" y="751.50"></text></g><g><title>Parse::do_call (120 samples, 0.04%)</title><rect x="38.7073%" y="725" width="0.0395%" height="15" fill="rgb(222,101,24)" fg:x="117671" fg:w="120"/><text x="38.9573%" y="735.50"></text></g><g><title>Parse::do_call (138 samples, 0.05%)</title><rect x="38.7073%" y="821" width="0.0454%" height="15" fill="rgb(254,142,4)" fg:x="117671" fg:w="138"/><text x="38.9573%" y="831.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.01%)</title><rect x="38.7527%" y="389" width="0.0115%" height="15" fill="rgb(230,229,49)" fg:x="117809" fg:w="35"/><text x="39.0027%" y="399.50"></text></g><g><title>Parse::Parse (35 samples, 0.01%)</title><rect x="38.7527%" y="373" width="0.0115%" height="15" fill="rgb(238,70,47)" fg:x="117809" fg:w="35"/><text x="39.0027%" y="383.50"></text></g><g><title>Parse::do_all_blocks (35 samples, 0.01%)</title><rect x="38.7527%" y="357" width="0.0115%" height="15" fill="rgb(231,160,17)" fg:x="117809" fg:w="35"/><text x="39.0027%" y="367.50"></text></g><g><title>Parse::do_one_block (35 samples, 0.01%)</title><rect x="38.7527%" y="341" width="0.0115%" height="15" fill="rgb(218,68,53)" fg:x="117809" fg:w="35"/><text x="39.0027%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (35 samples, 0.01%)</title><rect x="38.7527%" y="325" width="0.0115%" height="15" fill="rgb(236,111,10)" fg:x="117809" fg:w="35"/><text x="39.0027%" y="335.50"></text></g><g><title>Parse::do_call (35 samples, 0.01%)</title><rect x="38.7527%" y="309" width="0.0115%" height="15" fill="rgb(224,34,41)" fg:x="117809" fg:w="35"/><text x="39.0027%" y="319.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.01%)</title><rect x="38.7527%" y="485" width="0.0135%" height="15" fill="rgb(241,118,19)" fg:x="117809" fg:w="41"/><text x="39.0027%" y="495.50"></text></g><g><title>Parse::Parse (41 samples, 0.01%)</title><rect x="38.7527%" y="469" width="0.0135%" height="15" fill="rgb(238,129,25)" fg:x="117809" fg:w="41"/><text x="39.0027%" y="479.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.01%)</title><rect x="38.7527%" y="453" width="0.0135%" height="15" fill="rgb(238,22,31)" fg:x="117809" fg:w="41"/><text x="39.0027%" y="463.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.01%)</title><rect x="38.7527%" y="437" width="0.0135%" height="15" fill="rgb(222,174,48)" fg:x="117809" fg:w="41"/><text x="39.0027%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.01%)</title><rect x="38.7527%" y="421" width="0.0135%" height="15" fill="rgb(206,152,40)" fg:x="117809" fg:w="41"/><text x="39.0027%" y="431.50"></text></g><g><title>Parse::do_call (41 samples, 0.01%)</title><rect x="38.7527%" y="405" width="0.0135%" height="15" fill="rgb(218,99,54)" fg:x="117809" fg:w="41"/><text x="39.0027%" y="415.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.02%)</title><rect x="38.7527%" y="581" width="0.0158%" height="15" fill="rgb(220,174,26)" fg:x="117809" fg:w="48"/><text x="39.0027%" y="591.50"></text></g><g><title>Parse::Parse (48 samples, 0.02%)</title><rect x="38.7527%" y="565" width="0.0158%" height="15" fill="rgb(245,116,9)" fg:x="117809" fg:w="48"/><text x="39.0027%" y="575.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.02%)</title><rect x="38.7527%" y="549" width="0.0158%" height="15" fill="rgb(209,72,35)" fg:x="117809" fg:w="48"/><text x="39.0027%" y="559.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.02%)</title><rect x="38.7527%" y="533" width="0.0158%" height="15" fill="rgb(226,126,21)" fg:x="117809" fg:w="48"/><text x="39.0027%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (48 samples, 0.02%)</title><rect x="38.7527%" y="517" width="0.0158%" height="15" fill="rgb(227,192,1)" fg:x="117809" fg:w="48"/><text x="39.0027%" y="527.50"></text></g><g><title>Parse::do_call (48 samples, 0.02%)</title><rect x="38.7527%" y="501" width="0.0158%" height="15" fill="rgb(237,180,29)" fg:x="117809" fg:w="48"/><text x="39.0027%" y="511.50"></text></g><g><title>ParseGenerator::generate (51 samples, 0.02%)</title><rect x="38.7527%" y="677" width="0.0168%" height="15" fill="rgb(230,197,35)" fg:x="117809" fg:w="51"/><text x="39.0027%" y="687.50"></text></g><g><title>Parse::Parse (51 samples, 0.02%)</title><rect x="38.7527%" y="661" width="0.0168%" height="15" fill="rgb(246,193,31)" fg:x="117809" fg:w="51"/><text x="39.0027%" y="671.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.02%)</title><rect x="38.7527%" y="645" width="0.0168%" height="15" fill="rgb(241,36,4)" fg:x="117809" fg:w="51"/><text x="39.0027%" y="655.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.02%)</title><rect x="38.7527%" y="629" width="0.0168%" height="15" fill="rgb(241,130,17)" fg:x="117809" fg:w="51"/><text x="39.0027%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.02%)</title><rect x="38.7527%" y="613" width="0.0168%" height="15" fill="rgb(206,137,32)" fg:x="117809" fg:w="51"/><text x="39.0027%" y="623.50"></text></g><g><title>Parse::do_call (51 samples, 0.02%)</title><rect x="38.7527%" y="597" width="0.0168%" height="15" fill="rgb(237,228,51)" fg:x="117809" fg:w="51"/><text x="39.0027%" y="607.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.02%)</title><rect x="38.7527%" y="773" width="0.0187%" height="15" fill="rgb(243,6,42)" fg:x="117809" fg:w="57"/><text x="39.0027%" y="783.50"></text></g><g><title>Parse::Parse (57 samples, 0.02%)</title><rect x="38.7527%" y="757" width="0.0187%" height="15" fill="rgb(251,74,28)" fg:x="117809" fg:w="57"/><text x="39.0027%" y="767.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.02%)</title><rect x="38.7527%" y="741" width="0.0187%" height="15" fill="rgb(218,20,49)" fg:x="117809" fg:w="57"/><text x="39.0027%" y="751.50"></text></g><g><title>Parse::do_one_block (57 samples, 0.02%)</title><rect x="38.7527%" y="725" width="0.0187%" height="15" fill="rgb(238,28,14)" fg:x="117809" fg:w="57"/><text x="39.0027%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.02%)</title><rect x="38.7527%" y="709" width="0.0187%" height="15" fill="rgb(229,40,46)" fg:x="117809" fg:w="57"/><text x="39.0027%" y="719.50"></text></g><g><title>Parse::do_call (57 samples, 0.02%)</title><rect x="38.7527%" y="693" width="0.0187%" height="15" fill="rgb(244,195,20)" fg:x="117809" fg:w="57"/><text x="39.0027%" y="703.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.02%)</title><rect x="38.7527%" y="821" width="0.0224%" height="15" fill="rgb(253,56,35)" fg:x="117809" fg:w="68"/><text x="39.0027%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.02%)</title><rect x="38.7527%" y="805" width="0.0224%" height="15" fill="rgb(210,149,44)" fg:x="117809" fg:w="68"/><text x="39.0027%" y="815.50"></text></g><g><title>Parse::do_call (68 samples, 0.02%)</title><rect x="38.7527%" y="789" width="0.0224%" height="15" fill="rgb(240,135,12)" fg:x="117809" fg:w="68"/><text x="39.0027%" y="799.50"></text></g><g><title>Parse::do_call (34 samples, 0.01%)</title><rect x="38.7751%" y="229" width="0.0112%" height="15" fill="rgb(251,24,50)" fg:x="117877" fg:w="34"/><text x="39.0251%" y="239.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.01%)</title><rect x="38.7751%" y="309" width="0.0115%" height="15" fill="rgb(243,200,47)" fg:x="117877" fg:w="35"/><text x="39.0251%" y="319.50"></text></g><g><title>Parse::Parse (35 samples, 0.01%)</title><rect x="38.7751%" y="293" width="0.0115%" height="15" fill="rgb(224,166,26)" fg:x="117877" fg:w="35"/><text x="39.0251%" y="303.50"></text></g><g><title>Parse::do_all_blocks (35 samples, 0.01%)</title><rect x="38.7751%" y="277" width="0.0115%" height="15" fill="rgb(233,0,47)" fg:x="117877" fg:w="35"/><text x="39.0251%" y="287.50"></text></g><g><title>Parse::do_one_block (35 samples, 0.01%)</title><rect x="38.7751%" y="261" width="0.0115%" height="15" fill="rgb(253,80,5)" fg:x="117877" fg:w="35"/><text x="39.0251%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (35 samples, 0.01%)</title><rect x="38.7751%" y="245" width="0.0115%" height="15" fill="rgb(214,133,25)" fg:x="117877" fg:w="35"/><text x="39.0251%" y="255.50"></text></g><g><title>ParseGenerator::generate (45 samples, 0.01%)</title><rect x="38.7751%" y="405" width="0.0148%" height="15" fill="rgb(209,27,14)" fg:x="117877" fg:w="45"/><text x="39.0251%" y="415.50"></text></g><g><title>Parse::Parse (45 samples, 0.01%)</title><rect x="38.7751%" y="389" width="0.0148%" height="15" fill="rgb(219,102,51)" fg:x="117877" fg:w="45"/><text x="39.0251%" y="399.50"></text></g><g><title>Parse::do_all_blocks (45 samples, 0.01%)</title><rect x="38.7751%" y="373" width="0.0148%" height="15" fill="rgb(237,18,16)" fg:x="117877" fg:w="45"/><text x="39.0251%" y="383.50"></text></g><g><title>Parse::do_one_block (45 samples, 0.01%)</title><rect x="38.7751%" y="357" width="0.0148%" height="15" fill="rgb(241,85,17)" fg:x="117877" fg:w="45"/><text x="39.0251%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (45 samples, 0.01%)</title><rect x="38.7751%" y="341" width="0.0148%" height="15" fill="rgb(236,90,42)" fg:x="117877" fg:w="45"/><text x="39.0251%" y="351.50"></text></g><g><title>Parse::do_call (45 samples, 0.01%)</title><rect x="38.7751%" y="325" width="0.0148%" height="15" fill="rgb(249,57,21)" fg:x="117877" fg:w="45"/><text x="39.0251%" y="335.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.02%)</title><rect x="38.7751%" y="501" width="0.0174%" height="15" fill="rgb(243,12,36)" fg:x="117877" fg:w="53"/><text x="39.0251%" y="511.50"></text></g><g><title>Parse::Parse (53 samples, 0.02%)</title><rect x="38.7751%" y="485" width="0.0174%" height="15" fill="rgb(253,128,47)" fg:x="117877" fg:w="53"/><text x="39.0251%" y="495.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.02%)</title><rect x="38.7751%" y="469" width="0.0174%" height="15" fill="rgb(207,33,20)" fg:x="117877" fg:w="53"/><text x="39.0251%" y="479.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.02%)</title><rect x="38.7751%" y="453" width="0.0174%" height="15" fill="rgb(233,215,35)" fg:x="117877" fg:w="53"/><text x="39.0251%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.02%)</title><rect x="38.7751%" y="437" width="0.0174%" height="15" fill="rgb(249,188,52)" fg:x="117877" fg:w="53"/><text x="39.0251%" y="447.50"></text></g><g><title>Parse::do_call (53 samples, 0.02%)</title><rect x="38.7751%" y="421" width="0.0174%" height="15" fill="rgb(225,12,32)" fg:x="117877" fg:w="53"/><text x="39.0251%" y="431.50"></text></g><g><title>ParseGenerator::generate (62 samples, 0.02%)</title><rect x="38.7751%" y="597" width="0.0204%" height="15" fill="rgb(247,98,14)" fg:x="117877" fg:w="62"/><text x="39.0251%" y="607.50"></text></g><g><title>Parse::Parse (62 samples, 0.02%)</title><rect x="38.7751%" y="581" width="0.0204%" height="15" fill="rgb(247,219,48)" fg:x="117877" fg:w="62"/><text x="39.0251%" y="591.50"></text></g><g><title>Parse::do_all_blocks (62 samples, 0.02%)</title><rect x="38.7751%" y="565" width="0.0204%" height="15" fill="rgb(253,60,48)" fg:x="117877" fg:w="62"/><text x="39.0251%" y="575.50"></text></g><g><title>Parse::do_one_block (62 samples, 0.02%)</title><rect x="38.7751%" y="549" width="0.0204%" height="15" fill="rgb(245,15,52)" fg:x="117877" fg:w="62"/><text x="39.0251%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (62 samples, 0.02%)</title><rect x="38.7751%" y="533" width="0.0204%" height="15" fill="rgb(220,133,28)" fg:x="117877" fg:w="62"/><text x="39.0251%" y="543.50"></text></g><g><title>Parse::do_call (62 samples, 0.02%)</title><rect x="38.7751%" y="517" width="0.0204%" height="15" fill="rgb(217,180,4)" fg:x="117877" fg:w="62"/><text x="39.0251%" y="527.50"></text></g><g><title>ParseGenerator::generate (70 samples, 0.02%)</title><rect x="38.7751%" y="693" width="0.0230%" height="15" fill="rgb(251,24,1)" fg:x="117877" fg:w="70"/><text x="39.0251%" y="703.50"></text></g><g><title>Parse::Parse (70 samples, 0.02%)</title><rect x="38.7751%" y="677" width="0.0230%" height="15" fill="rgb(212,185,49)" fg:x="117877" fg:w="70"/><text x="39.0251%" y="687.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.02%)</title><rect x="38.7751%" y="661" width="0.0230%" height="15" fill="rgb(215,175,22)" fg:x="117877" fg:w="70"/><text x="39.0251%" y="671.50"></text></g><g><title>Parse::do_one_block (70 samples, 0.02%)</title><rect x="38.7751%" y="645" width="0.0230%" height="15" fill="rgb(250,205,14)" fg:x="117877" fg:w="70"/><text x="39.0251%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (70 samples, 0.02%)</title><rect x="38.7751%" y="629" width="0.0230%" height="15" fill="rgb(225,211,22)" fg:x="117877" fg:w="70"/><text x="39.0251%" y="639.50"></text></g><g><title>Parse::do_call (70 samples, 0.02%)</title><rect x="38.7751%" y="613" width="0.0230%" height="15" fill="rgb(251,179,42)" fg:x="117877" fg:w="70"/><text x="39.0251%" y="623.50"></text></g><g><title>ParseGenerator::generate (76 samples, 0.02%)</title><rect x="38.7751%" y="789" width="0.0250%" height="15" fill="rgb(208,216,51)" fg:x="117877" fg:w="76"/><text x="39.0251%" y="799.50"></text></g><g><title>Parse::Parse (76 samples, 0.02%)</title><rect x="38.7751%" y="773" width="0.0250%" height="15" fill="rgb(235,36,11)" fg:x="117877" fg:w="76"/><text x="39.0251%" y="783.50"></text></g><g><title>Parse::do_all_blocks (76 samples, 0.02%)</title><rect x="38.7751%" y="757" width="0.0250%" height="15" fill="rgb(213,189,28)" fg:x="117877" fg:w="76"/><text x="39.0251%" y="767.50"></text></g><g><title>Parse::do_one_block (76 samples, 0.02%)</title><rect x="38.7751%" y="741" width="0.0250%" height="15" fill="rgb(227,203,42)" fg:x="117877" fg:w="76"/><text x="39.0251%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (76 samples, 0.02%)</title><rect x="38.7751%" y="725" width="0.0250%" height="15" fill="rgb(244,72,36)" fg:x="117877" fg:w="76"/><text x="39.0251%" y="735.50"></text></g><g><title>Parse::do_call (76 samples, 0.02%)</title><rect x="38.7751%" y="709" width="0.0250%" height="15" fill="rgb(213,53,17)" fg:x="117877" fg:w="76"/><text x="39.0251%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.03%)</title><rect x="38.7751%" y="821" width="0.0263%" height="15" fill="rgb(207,167,3)" fg:x="117877" fg:w="80"/><text x="39.0251%" y="831.50"></text></g><g><title>Parse::do_call (80 samples, 0.03%)</title><rect x="38.7751%" y="805" width="0.0263%" height="15" fill="rgb(216,98,30)" fg:x="117877" fg:w="80"/><text x="39.0251%" y="815.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.01%)</title><rect x="38.8185%" y="53" width="0.0112%" height="15" fill="rgb(236,123,15)" fg:x="118009" fg:w="34"/><text x="39.0685%" y="63.50"></text></g><g><title>Parse::Parse (34 samples, 0.01%)</title><rect x="38.8185%" y="37" width="0.0112%" height="15" fill="rgb(248,81,50)" fg:x="118009" fg:w="34"/><text x="39.0685%" y="47.50"></text></g><g><title>Parse::do_call (58 samples, 0.02%)</title><rect x="38.8126%" y="69" width="0.0191%" height="15" fill="rgb(214,120,4)" fg:x="117991" fg:w="58"/><text x="39.0626%" y="79.50"></text></g><g><title>ParseGenerator::generate (84 samples, 0.03%)</title><rect x="38.8103%" y="149" width="0.0276%" height="15" fill="rgb(208,179,34)" fg:x="117984" fg:w="84"/><text x="39.0603%" y="159.50"></text></g><g><title>Parse::Parse (84 samples, 0.03%)</title><rect x="38.8103%" y="133" width="0.0276%" height="15" fill="rgb(227,140,7)" fg:x="117984" fg:w="84"/><text x="39.0603%" y="143.50"></text></g><g><title>Parse::do_all_blocks (84 samples, 0.03%)</title><rect x="38.8103%" y="117" width="0.0276%" height="15" fill="rgb(214,22,6)" fg:x="117984" fg:w="84"/><text x="39.0603%" y="127.50"></text></g><g><title>Parse::do_one_block (84 samples, 0.03%)</title><rect x="38.8103%" y="101" width="0.0276%" height="15" fill="rgb(207,137,27)" fg:x="117984" fg:w="84"/><text x="39.0603%" y="111.50"></text></g><g><title>Parse::do_one_bytecode (84 samples, 0.03%)</title><rect x="38.8103%" y="85" width="0.0276%" height="15" fill="rgb(210,8,46)" fg:x="117984" fg:w="84"/><text x="39.0603%" y="95.50"></text></g><g><title>Parse::do_call (114 samples, 0.04%)</title><rect x="38.8043%" y="165" width="0.0375%" height="15" fill="rgb(240,16,54)" fg:x="117966" fg:w="114"/><text x="39.0543%" y="175.50"></text></g><g><title>ParseGenerator::generate (125 samples, 0.04%)</title><rect x="38.8043%" y="245" width="0.0411%" height="15" fill="rgb(211,209,29)" fg:x="117966" fg:w="125"/><text x="39.0543%" y="255.50"></text></g><g><title>Parse::Parse (125 samples, 0.04%)</title><rect x="38.8043%" y="229" width="0.0411%" height="15" fill="rgb(226,228,24)" fg:x="117966" fg:w="125"/><text x="39.0543%" y="239.50"></text></g><g><title>Parse::do_all_blocks (125 samples, 0.04%)</title><rect x="38.8043%" y="213" width="0.0411%" height="15" fill="rgb(222,84,9)" fg:x="117966" fg:w="125"/><text x="39.0543%" y="223.50"></text></g><g><title>Parse::do_one_block (125 samples, 0.04%)</title><rect x="38.8043%" y="197" width="0.0411%" height="15" fill="rgb(234,203,30)" fg:x="117966" fg:w="125"/><text x="39.0543%" y="207.50"></text></g><g><title>Parse::do_one_bytecode (125 samples, 0.04%)</title><rect x="38.8043%" y="181" width="0.0411%" height="15" fill="rgb(238,109,14)" fg:x="117966" fg:w="125"/><text x="39.0543%" y="191.50"></text></g><g><title>Parse::do_call (159 samples, 0.05%)</title><rect x="38.8017%" y="261" width="0.0523%" height="15" fill="rgb(233,206,34)" fg:x="117958" fg:w="159"/><text x="39.0517%" y="271.50"></text></g><g><title>ParseGenerator::generate (168 samples, 0.06%)</title><rect x="38.8017%" y="341" width="0.0553%" height="15" fill="rgb(220,167,47)" fg:x="117958" fg:w="168"/><text x="39.0517%" y="351.50"></text></g><g><title>Parse::Parse (168 samples, 0.06%)</title><rect x="38.8017%" y="325" width="0.0553%" height="15" fill="rgb(238,105,10)" fg:x="117958" fg:w="168"/><text x="39.0517%" y="335.50"></text></g><g><title>Parse::do_all_blocks (168 samples, 0.06%)</title><rect x="38.8017%" y="309" width="0.0553%" height="15" fill="rgb(213,227,17)" fg:x="117958" fg:w="168"/><text x="39.0517%" y="319.50"></text></g><g><title>Parse::do_one_block (168 samples, 0.06%)</title><rect x="38.8017%" y="293" width="0.0553%" height="15" fill="rgb(217,132,38)" fg:x="117958" fg:w="168"/><text x="39.0517%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (168 samples, 0.06%)</title><rect x="38.8017%" y="277" width="0.0553%" height="15" fill="rgb(242,146,4)" fg:x="117958" fg:w="168"/><text x="39.0517%" y="287.50"></text></g><g><title>ParseGenerator::generate (200 samples, 0.07%)</title><rect x="38.8014%" y="437" width="0.0658%" height="15" fill="rgb(212,61,9)" fg:x="117957" fg:w="200"/><text x="39.0514%" y="447.50"></text></g><g><title>Parse::Parse (200 samples, 0.07%)</title><rect x="38.8014%" y="421" width="0.0658%" height="15" fill="rgb(247,126,22)" fg:x="117957" fg:w="200"/><text x="39.0514%" y="431.50"></text></g><g><title>Parse::do_all_blocks (200 samples, 0.07%)</title><rect x="38.8014%" y="405" width="0.0658%" height="15" fill="rgb(220,196,2)" fg:x="117957" fg:w="200"/><text x="39.0514%" y="415.50"></text></g><g><title>Parse::do_one_block (200 samples, 0.07%)</title><rect x="38.8014%" y="389" width="0.0658%" height="15" fill="rgb(208,46,4)" fg:x="117957" fg:w="200"/><text x="39.0514%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (200 samples, 0.07%)</title><rect x="38.8014%" y="373" width="0.0658%" height="15" fill="rgb(252,104,46)" fg:x="117957" fg:w="200"/><text x="39.0514%" y="383.50"></text></g><g><title>Parse::do_call (200 samples, 0.07%)</title><rect x="38.8014%" y="357" width="0.0658%" height="15" fill="rgb(237,152,48)" fg:x="117957" fg:w="200"/><text x="39.0514%" y="367.50"></text></g><g><title>PredictedCallGenerator::generate (31 samples, 0.01%)</title><rect x="38.8570%" y="341" width="0.0102%" height="15" fill="rgb(221,59,37)" fg:x="118126" fg:w="31"/><text x="39.1070%" y="351.50"></text></g><g><title>ParseGenerator::generate (230 samples, 0.08%)</title><rect x="38.8014%" y="533" width="0.0757%" height="15" fill="rgb(209,202,51)" fg:x="117957" fg:w="230"/><text x="39.0514%" y="543.50"></text></g><g><title>Parse::Parse (230 samples, 0.08%)</title><rect x="38.8014%" y="517" width="0.0757%" height="15" fill="rgb(228,81,30)" fg:x="117957" fg:w="230"/><text x="39.0514%" y="527.50"></text></g><g><title>Parse::do_all_blocks (230 samples, 0.08%)</title><rect x="38.8014%" y="501" width="0.0757%" height="15" fill="rgb(227,42,39)" fg:x="117957" fg:w="230"/><text x="39.0514%" y="511.50"></text></g><g><title>Parse::do_one_block (230 samples, 0.08%)</title><rect x="38.8014%" y="485" width="0.0757%" height="15" fill="rgb(221,26,2)" fg:x="117957" fg:w="230"/><text x="39.0514%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (230 samples, 0.08%)</title><rect x="38.8014%" y="469" width="0.0757%" height="15" fill="rgb(254,61,31)" fg:x="117957" fg:w="230"/><text x="39.0514%" y="479.50"></text></g><g><title>Parse::do_call (230 samples, 0.08%)</title><rect x="38.8014%" y="453" width="0.0757%" height="15" fill="rgb(222,173,38)" fg:x="117957" fg:w="230"/><text x="39.0514%" y="463.50"></text></g><g><title>ParseGenerator::generate (252 samples, 0.08%)</title><rect x="38.8014%" y="629" width="0.0829%" height="15" fill="rgb(218,50,12)" fg:x="117957" fg:w="252"/><text x="39.0514%" y="639.50"></text></g><g><title>Parse::Parse (252 samples, 0.08%)</title><rect x="38.8014%" y="613" width="0.0829%" height="15" fill="rgb(223,88,40)" fg:x="117957" fg:w="252"/><text x="39.0514%" y="623.50"></text></g><g><title>Parse::do_all_blocks (252 samples, 0.08%)</title><rect x="38.8014%" y="597" width="0.0829%" height="15" fill="rgb(237,54,19)" fg:x="117957" fg:w="252"/><text x="39.0514%" y="607.50"></text></g><g><title>Parse::do_one_block (252 samples, 0.08%)</title><rect x="38.8014%" y="581" width="0.0829%" height="15" fill="rgb(251,129,25)" fg:x="117957" fg:w="252"/><text x="39.0514%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (252 samples, 0.08%)</title><rect x="38.8014%" y="565" width="0.0829%" height="15" fill="rgb(238,97,19)" fg:x="117957" fg:w="252"/><text x="39.0514%" y="575.50"></text></g><g><title>Parse::do_call (252 samples, 0.08%)</title><rect x="38.8014%" y="549" width="0.0829%" height="15" fill="rgb(240,169,18)" fg:x="117957" fg:w="252"/><text x="39.0514%" y="559.50"></text></g><g><title>ParseGenerator::generate (31 samples, 0.01%)</title><rect x="38.8843%" y="517" width="0.0102%" height="15" fill="rgb(230,187,49)" fg:x="118209" fg:w="31"/><text x="39.1343%" y="527.50"></text></g><g><title>Parse::Parse (31 samples, 0.01%)</title><rect x="38.8843%" y="501" width="0.0102%" height="15" fill="rgb(209,44,26)" fg:x="118209" fg:w="31"/><text x="39.1343%" y="511.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.01%)</title><rect x="38.8843%" y="485" width="0.0102%" height="15" fill="rgb(244,0,6)" fg:x="118209" fg:w="31"/><text x="39.1343%" y="495.50"></text></g><g><title>Parse::do_one_block (31 samples, 0.01%)</title><rect x="38.8843%" y="469" width="0.0102%" height="15" fill="rgb(248,18,21)" fg:x="118209" fg:w="31"/><text x="39.1343%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.01%)</title><rect x="38.8843%" y="453" width="0.0102%" height="15" fill="rgb(245,180,19)" fg:x="118209" fg:w="31"/><text x="39.1343%" y="463.50"></text></g><g><title>Parse::do_call (31 samples, 0.01%)</title><rect x="38.8843%" y="437" width="0.0102%" height="15" fill="rgb(252,118,36)" fg:x="118209" fg:w="31"/><text x="39.1343%" y="447.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.01%)</title><rect x="38.8843%" y="613" width="0.0109%" height="15" fill="rgb(210,224,19)" fg:x="118209" fg:w="33"/><text x="39.1343%" y="623.50"></text></g><g><title>Parse::Parse (33 samples, 0.01%)</title><rect x="38.8843%" y="597" width="0.0109%" height="15" fill="rgb(218,30,24)" fg:x="118209" fg:w="33"/><text x="39.1343%" y="607.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="38.8843%" y="581" width="0.0109%" height="15" fill="rgb(219,75,50)" fg:x="118209" fg:w="33"/><text x="39.1343%" y="591.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="38.8843%" y="565" width="0.0109%" height="15" fill="rgb(234,72,50)" fg:x="118209" fg:w="33"/><text x="39.1343%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="38.8843%" y="549" width="0.0109%" height="15" fill="rgb(219,100,48)" fg:x="118209" fg:w="33"/><text x="39.1343%" y="559.50"></text></g><g><title>Parse::do_call (33 samples, 0.01%)</title><rect x="38.8843%" y="533" width="0.0109%" height="15" fill="rgb(253,5,41)" fg:x="118209" fg:w="33"/><text x="39.1343%" y="543.50"></text></g><g><title>ParseGenerator::generate (288 samples, 0.09%)</title><rect x="38.8014%" y="725" width="0.0947%" height="15" fill="rgb(247,181,11)" fg:x="117957" fg:w="288"/><text x="39.0514%" y="735.50"></text></g><g><title>Parse::Parse (288 samples, 0.09%)</title><rect x="38.8014%" y="709" width="0.0947%" height="15" fill="rgb(222,223,25)" fg:x="117957" fg:w="288"/><text x="39.0514%" y="719.50"></text></g><g><title>Parse::do_all_blocks (288 samples, 0.09%)</title><rect x="38.8014%" y="693" width="0.0947%" height="15" fill="rgb(214,198,28)" fg:x="117957" fg:w="288"/><text x="39.0514%" y="703.50"></text></g><g><title>Parse::do_one_block (288 samples, 0.09%)</title><rect x="38.8014%" y="677" width="0.0947%" height="15" fill="rgb(230,46,43)" fg:x="117957" fg:w="288"/><text x="39.0514%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (288 samples, 0.09%)</title><rect x="38.8014%" y="661" width="0.0947%" height="15" fill="rgb(233,65,53)" fg:x="117957" fg:w="288"/><text x="39.0514%" y="671.50"></text></g><g><title>Parse::do_call (288 samples, 0.09%)</title><rect x="38.8014%" y="645" width="0.0947%" height="15" fill="rgb(221,121,27)" fg:x="117957" fg:w="288"/><text x="39.0514%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (36 samples, 0.01%)</title><rect x="38.8843%" y="629" width="0.0118%" height="15" fill="rgb(247,70,47)" fg:x="118209" fg:w="36"/><text x="39.1343%" y="639.50"></text></g><g><title>ParseGenerator::generate (328 samples, 0.11%)</title><rect x="38.8014%" y="821" width="0.1079%" height="15" fill="rgb(228,85,35)" fg:x="117957" fg:w="328"/><text x="39.0514%" y="831.50"></text></g><g><title>Parse::Parse (328 samples, 0.11%)</title><rect x="38.8014%" y="805" width="0.1079%" height="15" fill="rgb(209,50,18)" fg:x="117957" fg:w="328"/><text x="39.0514%" y="815.50"></text></g><g><title>Parse::do_all_blocks (328 samples, 0.11%)</title><rect x="38.8014%" y="789" width="0.1079%" height="15" fill="rgb(250,19,35)" fg:x="117957" fg:w="328"/><text x="39.0514%" y="799.50"></text></g><g><title>Parse::do_one_block (328 samples, 0.11%)</title><rect x="38.8014%" y="773" width="0.1079%" height="15" fill="rgb(253,107,29)" fg:x="117957" fg:w="328"/><text x="39.0514%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (328 samples, 0.11%)</title><rect x="38.8014%" y="757" width="0.1079%" height="15" fill="rgb(252,179,29)" fg:x="117957" fg:w="328"/><text x="39.0514%" y="767.50"></text></g><g><title>Parse::do_call (328 samples, 0.11%)</title><rect x="38.8014%" y="741" width="0.1079%" height="15" fill="rgb(238,194,6)" fg:x="117957" fg:w="328"/><text x="39.0514%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (40 samples, 0.01%)</title><rect x="38.8961%" y="725" width="0.0132%" height="15" fill="rgb(238,164,29)" fg:x="118245" fg:w="40"/><text x="39.1461%" y="735.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.01%)</title><rect x="38.9313%" y="725" width="0.0128%" height="15" fill="rgb(224,25,9)" fg:x="118352" fg:w="39"/><text x="39.1813%" y="735.50"></text></g><g><title>Parse::Parse (39 samples, 0.01%)</title><rect x="38.9313%" y="709" width="0.0128%" height="15" fill="rgb(244,153,23)" fg:x="118352" fg:w="39"/><text x="39.1813%" y="719.50"></text></g><g><title>Thread::call_run (74 samples, 0.02%)</title><rect x="38.9274%" y="821" width="0.0243%" height="15" fill="rgb(212,203,14)" fg:x="118340" fg:w="74"/><text x="39.1774%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (74 samples, 0.02%)</title><rect x="38.9274%" y="805" width="0.0243%" height="15" fill="rgb(220,164,20)" fg:x="118340" fg:w="74"/><text x="39.1774%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (74 samples, 0.02%)</title><rect x="38.9274%" y="789" width="0.0243%" height="15" fill="rgb(222,203,48)" fg:x="118340" fg:w="74"/><text x="39.1774%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (74 samples, 0.02%)</title><rect x="38.9274%" y="773" width="0.0243%" height="15" fill="rgb(215,159,22)" fg:x="118340" fg:w="74"/><text x="39.1774%" y="783.50"></text></g><g><title>C2Compiler::compile_method (74 samples, 0.02%)</title><rect x="38.9274%" y="757" width="0.0243%" height="15" fill="rgb(216,183,47)" fg:x="118340" fg:w="74"/><text x="39.1774%" y="767.50"></text></g><g><title>Compile::Compile (74 samples, 0.02%)</title><rect x="38.9274%" y="741" width="0.0243%" height="15" fill="rgb(229,195,25)" fg:x="118340" fg:w="74"/><text x="39.1774%" y="751.50"></text></g><g><title>_dl_update_slotinfo (46 samples, 0.02%)</title><rect x="38.9629%" y="821" width="0.0151%" height="15" fill="rgb(224,132,51)" fg:x="118448" fg:w="46"/><text x="39.2129%" y="831.50"></text></g><g><title>start_thread (55 samples, 0.02%)</title><rect x="38.9817%" y="821" width="0.0181%" height="15" fill="rgb(240,63,7)" fg:x="118505" fg:w="55"/><text x="39.2317%" y="831.50"></text></g><g><title>thread_native_entry (55 samples, 0.02%)</title><rect x="38.9817%" y="805" width="0.0181%" height="15" fill="rgb(249,182,41)" fg:x="118505" fg:w="55"/><text x="39.2317%" y="815.50"></text></g><g><title>Thread::call_run (55 samples, 0.02%)</title><rect x="38.9817%" y="789" width="0.0181%" height="15" fill="rgb(243,47,26)" fg:x="118505" fg:w="55"/><text x="39.2317%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (55 samples, 0.02%)</title><rect x="38.9817%" y="773" width="0.0181%" height="15" fill="rgb(233,48,2)" fg:x="118505" fg:w="55"/><text x="39.2317%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (55 samples, 0.02%)</title><rect x="38.9817%" y="757" width="0.0181%" height="15" fill="rgb(244,165,34)" fg:x="118505" fg:w="55"/><text x="39.2317%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (55 samples, 0.02%)</title><rect x="38.9817%" y="741" width="0.0181%" height="15" fill="rgb(207,89,7)" fg:x="118505" fg:w="55"/><text x="39.2317%" y="751.50"></text></g><g><title>C2Compiler::compile_method (55 samples, 0.02%)</title><rect x="38.9817%" y="725" width="0.0181%" height="15" fill="rgb(244,117,36)" fg:x="118505" fg:w="55"/><text x="39.2317%" y="735.50"></text></g><g><title>Compile::Compile (55 samples, 0.02%)</title><rect x="38.9817%" y="709" width="0.0181%" height="15" fill="rgb(226,144,34)" fg:x="118505" fg:w="55"/><text x="39.2317%" y="719.50"></text></g><g><title>[unknown] (97,618 samples, 32.11%)</title><rect x="6.8944%" y="837" width="32.1110%" height="15" fill="rgb(213,23,19)" fg:x="20959" fg:w="97618"/><text x="7.1444%" y="847.50">[unknown]</text></g><g><title>Compile::Init (32 samples, 0.01%)</title><rect x="39.0264%" y="693" width="0.0105%" height="15" fill="rgb(217,75,12)" fg:x="118641" fg:w="32"/><text x="39.2764%" y="703.50"></text></g><g><title>Dict::Insert (52 samples, 0.02%)</title><rect x="39.0586%" y="661" width="0.0171%" height="15" fill="rgb(224,159,17)" fg:x="118739" fg:w="52"/><text x="39.3086%" y="671.50"></text></g><g><title>Type::Initialize (61 samples, 0.02%)</title><rect x="39.0580%" y="677" width="0.0201%" height="15" fill="rgb(217,118,1)" fg:x="118737" fg:w="61"/><text x="39.3080%" y="687.50"></text></g><g><title>CompileWrapper::CompileWrapper (64 samples, 0.02%)</title><rect x="39.0573%" y="693" width="0.0211%" height="15" fill="rgb(232,180,48)" fg:x="118735" fg:w="64"/><text x="39.3073%" y="703.50"></text></g><g><title>Compile::identify_useful_nodes (242 samples, 0.08%)</title><rect x="39.0978%" y="677" width="0.0796%" height="15" fill="rgb(230,27,33)" fg:x="118858" fg:w="242"/><text x="39.3478%" y="687.50"></text></g><g><title>Compile::remove_useless_nodes (264 samples, 0.09%)</title><rect x="39.1774%" y="677" width="0.0868%" height="15" fill="rgb(205,31,21)" fg:x="119100" fg:w="264"/><text x="39.4274%" y="687.50"></text></g><g><title>Compile::update_dead_node_list (47 samples, 0.02%)</title><rect x="39.2642%" y="677" width="0.0155%" height="15" fill="rgb(253,59,4)" fg:x="119364" fg:w="47"/><text x="39.5142%" y="687.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (619 samples, 0.20%)</title><rect x="39.0849%" y="693" width="0.2036%" height="15" fill="rgb(224,201,9)" fg:x="118819" fg:w="619"/><text x="39.3349%" y="703.50"></text></g><g><title>ciEnv::register_method (31 samples, 0.01%)</title><rect x="39.2955%" y="693" width="0.0102%" height="15" fill="rgb(229,206,30)" fg:x="119459" fg:w="31"/><text x="39.5455%" y="703.50"></text></g><g><title>C2Compiler::compile_method (905 samples, 0.30%)</title><rect x="39.0113%" y="725" width="0.2977%" height="15" fill="rgb(212,67,47)" fg:x="118595" fg:w="905"/><text x="39.2613%" y="735.50"></text></g><g><title>Compile::Compile (893 samples, 0.29%)</title><rect x="39.0152%" y="709" width="0.2937%" height="15" fill="rgb(211,96,50)" fg:x="118607" fg:w="893"/><text x="39.2652%" y="719.50"></text></g><g><title>ciEnv::~ciEnv (31 samples, 0.01%)</title><rect x="39.3491%" y="725" width="0.0102%" height="15" fill="rgb(252,114,18)" fg:x="119622" fg:w="31"/><text x="39.5991%" y="735.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,065 samples, 0.35%)</title><rect x="39.0096%" y="741" width="0.3503%" height="15" fill="rgb(223,58,37)" fg:x="118590" fg:w="1065"/><text x="39.2596%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (60 samples, 0.02%)</title><rect x="39.3853%" y="453" width="0.0197%" height="15" fill="rgb(237,70,4)" fg:x="119732" fg:w="60"/><text x="39.6353%" y="463.50"></text></g><g><title>x86_pmu_enable (59 samples, 0.02%)</title><rect x="39.3856%" y="437" width="0.0194%" height="15" fill="rgb(244,85,46)" fg:x="119733" fg:w="59"/><text x="39.6356%" y="447.50"></text></g><g><title>intel_pmu_enable_all (59 samples, 0.02%)</title><rect x="39.3856%" y="421" width="0.0194%" height="15" fill="rgb(223,39,52)" fg:x="119733" fg:w="59"/><text x="39.6356%" y="431.50"></text></g><g><title>native_write_msr (58 samples, 0.02%)</title><rect x="39.3859%" y="405" width="0.0191%" height="15" fill="rgb(218,200,14)" fg:x="119734" fg:w="58"/><text x="39.6359%" y="415.50"></text></g><g><title>finish_task_switch.isra.0 (63 samples, 0.02%)</title><rect x="39.3849%" y="469" width="0.0207%" height="15" fill="rgb(208,171,16)" fg:x="119731" fg:w="63"/><text x="39.6349%" y="479.50"></text></g><g><title>futex_wait_queue_me (99 samples, 0.03%)</title><rect x="39.3793%" y="517" width="0.0326%" height="15" fill="rgb(234,200,18)" fg:x="119714" fg:w="99"/><text x="39.6293%" y="527.50"></text></g><g><title>schedule (93 samples, 0.03%)</title><rect x="39.3813%" y="501" width="0.0306%" height="15" fill="rgb(228,45,11)" fg:x="119720" fg:w="93"/><text x="39.6313%" y="511.50"></text></g><g><title>__schedule (92 samples, 0.03%)</title><rect x="39.3816%" y="485" width="0.0303%" height="15" fill="rgb(237,182,11)" fg:x="119721" fg:w="92"/><text x="39.6316%" y="495.50"></text></g><g><title>futex_wait (108 samples, 0.04%)</title><rect x="39.3790%" y="533" width="0.0355%" height="15" fill="rgb(241,175,49)" fg:x="119713" fg:w="108"/><text x="39.6290%" y="543.50"></text></g><g><title>__x64_sys_futex (110 samples, 0.04%)</title><rect x="39.3787%" y="565" width="0.0362%" height="15" fill="rgb(247,38,35)" fg:x="119712" fg:w="110"/><text x="39.6287%" y="575.50"></text></g><g><title>do_futex (109 samples, 0.04%)</title><rect x="39.3790%" y="549" width="0.0359%" height="15" fill="rgb(228,39,49)" fg:x="119713" fg:w="109"/><text x="39.6290%" y="559.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (126 samples, 0.04%)</title><rect x="39.3770%" y="645" width="0.0414%" height="15" fill="rgb(226,101,26)" fg:x="119707" fg:w="126"/><text x="39.6270%" y="655.50"></text></g><g><title>__futex_abstimed_wait_common (126 samples, 0.04%)</title><rect x="39.3770%" y="629" width="0.0414%" height="15" fill="rgb(206,141,19)" fg:x="119707" fg:w="126"/><text x="39.6270%" y="639.50"></text></g><g><title>__futex_abstimed_wait_common64 (126 samples, 0.04%)</title><rect x="39.3770%" y="613" width="0.0414%" height="15" fill="rgb(211,200,13)" fg:x="119707" fg:w="126"/><text x="39.6270%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (124 samples, 0.04%)</title><rect x="39.3777%" y="597" width="0.0408%" height="15" fill="rgb(241,121,6)" fg:x="119709" fg:w="124"/><text x="39.6277%" y="607.50"></text></g><g><title>do_syscall_64 (123 samples, 0.04%)</title><rect x="39.3780%" y="581" width="0.0405%" height="15" fill="rgb(234,221,29)" fg:x="119710" fg:w="123"/><text x="39.6280%" y="591.50"></text></g><g><title>___pthread_cond_timedwait64 (132 samples, 0.04%)</title><rect x="39.3761%" y="677" width="0.0434%" height="15" fill="rgb(229,136,5)" fg:x="119704" fg:w="132"/><text x="39.6261%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (131 samples, 0.04%)</title><rect x="39.3764%" y="661" width="0.0431%" height="15" fill="rgb(238,36,11)" fg:x="119705" fg:w="131"/><text x="39.6264%" y="671.50"></text></g><g><title>Monitor::wait (163 samples, 0.05%)</title><rect x="39.3698%" y="725" width="0.0536%" height="15" fill="rgb(251,55,41)" fg:x="119685" fg:w="163"/><text x="39.6198%" y="735.50"></text></g><g><title>Monitor::IWait (159 samples, 0.05%)</title><rect x="39.3711%" y="709" width="0.0523%" height="15" fill="rgb(242,34,40)" fg:x="119689" fg:w="159"/><text x="39.6211%" y="719.50"></text></g><g><title>os::PlatformEvent::park (146 samples, 0.05%)</title><rect x="39.3754%" y="693" width="0.0480%" height="15" fill="rgb(215,42,17)" fg:x="119702" fg:w="146"/><text x="39.6254%" y="703.50"></text></g><g><title>CompileQueue::get (210 samples, 0.07%)</title><rect x="39.3645%" y="741" width="0.0691%" height="15" fill="rgb(207,44,46)" fg:x="119669" fg:w="210"/><text x="39.6145%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,297 samples, 0.43%)</title><rect x="39.0086%" y="757" width="0.4266%" height="15" fill="rgb(211,206,28)" fg:x="118587" fg:w="1297"/><text x="39.2586%" y="767.50"></text></g><g><title>__clone3 (1,300 samples, 0.43%)</title><rect x="39.0080%" y="837" width="0.4276%" height="15" fill="rgb(237,167,16)" fg:x="118585" fg:w="1300"/><text x="39.2580%" y="847.50"></text></g><g><title>start_thread (1,299 samples, 0.43%)</title><rect x="39.0083%" y="821" width="0.4273%" height="15" fill="rgb(233,66,6)" fg:x="118586" fg:w="1299"/><text x="39.2583%" y="831.50"></text></g><g><title>thread_native_entry (1,299 samples, 0.43%)</title><rect x="39.0083%" y="805" width="0.4273%" height="15" fill="rgb(246,123,29)" fg:x="118586" fg:w="1299"/><text x="39.2583%" y="815.50"></text></g><g><title>Thread::call_run (1,299 samples, 0.43%)</title><rect x="39.0083%" y="789" width="0.4273%" height="15" fill="rgb(209,62,40)" fg:x="118586" fg:w="1299"/><text x="39.2583%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (1,299 samples, 0.43%)</title><rect x="39.0083%" y="773" width="0.4273%" height="15" fill="rgb(218,4,25)" fg:x="118586" fg:w="1299"/><text x="39.2583%" y="783.50"></text></g><g><title>asm_exc_page_fault (69 samples, 0.02%)</title><rect x="39.4399%" y="837" width="0.0227%" height="15" fill="rgb(253,91,49)" fg:x="119898" fg:w="69"/><text x="39.6899%" y="847.50"></text></g><g><title>C2_CompilerThre (104,127 samples, 34.25%)</title><rect x="5.2378%" y="853" width="34.2521%" height="15" fill="rgb(228,155,29)" fg:x="15923" fg:w="104127"/><text x="5.4878%" y="863.50">C2_CompilerThre</text></g><g><title>[perf-720743.map] (113 samples, 0.04%)</title><rect x="39.4912%" y="837" width="0.0372%" height="15" fill="rgb(243,57,37)" fg:x="120054" fg:w="113"/><text x="39.7412%" y="847.50"></text></g><g><title>Command-Accumul (134 samples, 0.04%)</title><rect x="39.4899%" y="853" width="0.0441%" height="15" fill="rgb(244,167,17)" fg:x="120050" fg:w="134"/><text x="39.7399%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.01%)</title><rect x="39.7589%" y="565" width="0.0109%" height="15" fill="rgb(207,181,38)" fg:x="120868" fg:w="33"/><text x="40.0089%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (34 samples, 0.01%)</title><rect x="39.7589%" y="581" width="0.0112%" height="15" fill="rgb(211,8,23)" fg:x="120868" fg:w="34"/><text x="40.0089%" y="591.50"></text></g><g><title>futex_wait_queue_me (116 samples, 0.04%)</title><rect x="39.7445%" y="629" width="0.0382%" height="15" fill="rgb(235,11,44)" fg:x="120824" fg:w="116"/><text x="39.9945%" y="639.50"></text></g><g><title>schedule (108 samples, 0.04%)</title><rect x="39.7471%" y="613" width="0.0355%" height="15" fill="rgb(248,18,52)" fg:x="120832" fg:w="108"/><text x="39.9971%" y="623.50"></text></g><g><title>__schedule (108 samples, 0.04%)</title><rect x="39.7471%" y="597" width="0.0355%" height="15" fill="rgb(208,4,7)" fg:x="120832" fg:w="108"/><text x="39.9971%" y="607.50"></text></g><g><title>futex_wait (139 samples, 0.05%)</title><rect x="39.7425%" y="645" width="0.0457%" height="15" fill="rgb(240,17,39)" fg:x="120818" fg:w="139"/><text x="39.9925%" y="655.50"></text></g><g><title>do_futex (143 samples, 0.05%)</title><rect x="39.7425%" y="661" width="0.0470%" height="15" fill="rgb(207,170,3)" fg:x="120818" fg:w="143"/><text x="39.9925%" y="671.50"></text></g><g><title>__x64_sys_futex (148 samples, 0.05%)</title><rect x="39.7415%" y="677" width="0.0487%" height="15" fill="rgb(236,100,52)" fg:x="120815" fg:w="148"/><text x="39.9915%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (165 samples, 0.05%)</title><rect x="39.7409%" y="709" width="0.0543%" height="15" fill="rgb(246,78,51)" fg:x="120813" fg:w="165"/><text x="39.9909%" y="719.50"></text></g><g><title>do_syscall_64 (164 samples, 0.05%)</title><rect x="39.7412%" y="693" width="0.0539%" height="15" fill="rgb(211,17,15)" fg:x="120814" fg:w="164"/><text x="39.9912%" y="703.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (173 samples, 0.06%)</title><rect x="39.7389%" y="757" width="0.0569%" height="15" fill="rgb(209,59,46)" fg:x="120807" fg:w="173"/><text x="39.9889%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (173 samples, 0.06%)</title><rect x="39.7389%" y="741" width="0.0569%" height="15" fill="rgb(210,92,25)" fg:x="120807" fg:w="173"/><text x="39.9889%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (173 samples, 0.06%)</title><rect x="39.7389%" y="725" width="0.0569%" height="15" fill="rgb(238,174,52)" fg:x="120807" fg:w="173"/><text x="39.9889%" y="735.50"></text></g><g><title>___pthread_cond_timedwait64 (180 samples, 0.06%)</title><rect x="39.7379%" y="789" width="0.0592%" height="15" fill="rgb(230,73,7)" fg:x="120804" fg:w="180"/><text x="39.9879%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (180 samples, 0.06%)</title><rect x="39.7379%" y="773" width="0.0592%" height="15" fill="rgb(243,124,40)" fg:x="120804" fg:w="180"/><text x="39.9879%" y="783.50"></text></g><g><title>futex_wait_queue_me (39 samples, 0.01%)</title><rect x="39.7991%" y="629" width="0.0128%" height="15" fill="rgb(244,170,11)" fg:x="120990" fg:w="39"/><text x="40.0491%" y="639.50"></text></g><g><title>schedule (39 samples, 0.01%)</title><rect x="39.7991%" y="613" width="0.0128%" height="15" fill="rgb(207,114,54)" fg:x="120990" fg:w="39"/><text x="40.0491%" y="623.50"></text></g><g><title>__schedule (39 samples, 0.01%)</title><rect x="39.7991%" y="597" width="0.0128%" height="15" fill="rgb(205,42,20)" fg:x="120990" fg:w="39"/><text x="40.0491%" y="607.50"></text></g><g><title>do_futex (43 samples, 0.01%)</title><rect x="39.7984%" y="661" width="0.0141%" height="15" fill="rgb(230,30,28)" fg:x="120988" fg:w="43"/><text x="40.0484%" y="671.50"></text></g><g><title>futex_wait (43 samples, 0.01%)</title><rect x="39.7984%" y="645" width="0.0141%" height="15" fill="rgb(205,73,54)" fg:x="120988" fg:w="43"/><text x="40.0484%" y="655.50"></text></g><g><title>__x64_sys_futex (45 samples, 0.01%)</title><rect x="39.7984%" y="677" width="0.0148%" height="15" fill="rgb(254,227,23)" fg:x="120988" fg:w="45"/><text x="40.0484%" y="687.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (56 samples, 0.02%)</title><rect x="39.7974%" y="757" width="0.0184%" height="15" fill="rgb(228,202,34)" fg:x="120985" fg:w="56"/><text x="40.0474%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (56 samples, 0.02%)</title><rect x="39.7974%" y="741" width="0.0184%" height="15" fill="rgb(222,225,37)" fg:x="120985" fg:w="56"/><text x="40.0474%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (56 samples, 0.02%)</title><rect x="39.7974%" y="725" width="0.0184%" height="15" fill="rgb(221,14,54)" fg:x="120985" fg:w="56"/><text x="40.0474%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.02%)</title><rect x="39.7981%" y="709" width="0.0178%" height="15" fill="rgb(254,102,2)" fg:x="120987" fg:w="54"/><text x="40.0481%" y="719.50"></text></g><g><title>do_syscall_64 (54 samples, 0.02%)</title><rect x="39.7981%" y="693" width="0.0178%" height="15" fill="rgb(232,104,17)" fg:x="120987" fg:w="54"/><text x="40.0481%" y="703.50"></text></g><g><title>___pthread_cond_wait (58 samples, 0.02%)</title><rect x="39.7971%" y="789" width="0.0191%" height="15" fill="rgb(250,220,14)" fg:x="120984" fg:w="58"/><text x="40.0471%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (58 samples, 0.02%)</title><rect x="39.7971%" y="773" width="0.0191%" height="15" fill="rgb(241,158,9)" fg:x="120984" fg:w="58"/><text x="40.0471%" y="783.50"></text></g><g><title>Parker::park (296 samples, 0.10%)</title><rect x="39.7307%" y="805" width="0.0974%" height="15" fill="rgb(246,9,43)" fg:x="120782" fg:w="296"/><text x="39.9807%" y="815.50"></text></g><g><title>Unsafe_Park (304 samples, 0.10%)</title><rect x="39.7293%" y="821" width="0.1000%" height="15" fill="rgb(206,73,33)" fg:x="120778" fg:w="304"/><text x="39.9793%" y="831.50"></text></g><g><title>[perf-720743.map] (872 samples, 0.29%)</title><rect x="39.5461%" y="837" width="0.2868%" height="15" fill="rgb(222,79,8)" fg:x="120221" fg:w="872"/><text x="39.7961%" y="847.50"></text></g><g><title>ForkJoinPool.co (923 samples, 0.30%)</title><rect x="39.5402%" y="853" width="0.3036%" height="15" fill="rgb(234,8,54)" fg:x="120203" fg:w="923"/><text x="39.7902%" y="863.50"></text></g><g><title>__clone3 (49 samples, 0.02%)</title><rect x="39.8438%" y="837" width="0.0161%" height="15" fill="rgb(209,134,38)" fg:x="121126" fg:w="49"/><text x="40.0938%" y="847.50"></text></g><g><title>start_thread (49 samples, 0.02%)</title><rect x="39.8438%" y="821" width="0.0161%" height="15" fill="rgb(230,127,29)" fg:x="121126" fg:w="49"/><text x="40.0938%" y="831.50"></text></g><g><title>thread_native_entry (49 samples, 0.02%)</title><rect x="39.8438%" y="805" width="0.0161%" height="15" fill="rgb(242,44,41)" fg:x="121126" fg:w="49"/><text x="40.0938%" y="815.50"></text></g><g><title>Thread::call_run (49 samples, 0.02%)</title><rect x="39.8438%" y="789" width="0.0161%" height="15" fill="rgb(222,56,43)" fg:x="121126" fg:w="49"/><text x="40.0938%" y="799.50"></text></g><g><title>GangWorker::loop (49 samples, 0.02%)</title><rect x="39.8438%" y="773" width="0.0161%" height="15" fill="rgb(238,39,47)" fg:x="121126" fg:w="49"/><text x="40.0938%" y="783.50"></text></g><g><title>G1_Conc#0 (54 samples, 0.02%)</title><rect x="39.8438%" y="853" width="0.0178%" height="15" fill="rgb(226,79,43)" fg:x="121126" fg:w="54"/><text x="40.0938%" y="863.50"></text></g><g><title>__clone3 (32 samples, 0.01%)</title><rect x="39.8622%" y="837" width="0.0105%" height="15" fill="rgb(242,105,53)" fg:x="121182" fg:w="32"/><text x="40.1122%" y="847.50"></text></g><g><title>start_thread (32 samples, 0.01%)</title><rect x="39.8622%" y="821" width="0.0105%" height="15" fill="rgb(251,132,46)" fg:x="121182" fg:w="32"/><text x="40.1122%" y="831.50"></text></g><g><title>thread_native_entry (32 samples, 0.01%)</title><rect x="39.8622%" y="805" width="0.0105%" height="15" fill="rgb(231,77,14)" fg:x="121182" fg:w="32"/><text x="40.1122%" y="815.50"></text></g><g><title>Thread::call_run (32 samples, 0.01%)</title><rect x="39.8622%" y="789" width="0.0105%" height="15" fill="rgb(240,135,9)" fg:x="121182" fg:w="32"/><text x="40.1122%" y="799.50"></text></g><g><title>GangWorker::loop (32 samples, 0.01%)</title><rect x="39.8622%" y="773" width="0.0105%" height="15" fill="rgb(248,109,14)" fg:x="121182" fg:w="32"/><text x="40.1122%" y="783.50"></text></g><g><title>G1_Conc#1 (35 samples, 0.01%)</title><rect x="39.8616%" y="853" width="0.0115%" height="15" fill="rgb(227,146,52)" fg:x="121180" fg:w="35"/><text x="40.1116%" y="863.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (54 samples, 0.02%)</title><rect x="39.8780%" y="741" width="0.0178%" height="15" fill="rgb(232,54,3)" fg:x="121230" fg:w="54"/><text x="40.1280%" y="751.50"></text></g><g><title>G1RemSet::refine_card_concurrently (54 samples, 0.02%)</title><rect x="39.8780%" y="725" width="0.0178%" height="15" fill="rgb(229,201,43)" fg:x="121230" fg:w="54"/><text x="40.1280%" y="735.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (56 samples, 0.02%)</title><rect x="39.8780%" y="757" width="0.0184%" height="15" fill="rgb(252,161,33)" fg:x="121230" fg:w="56"/><text x="40.1280%" y="767.50"></text></g><g><title>G1_Refine#0 (70 samples, 0.02%)</title><rect x="39.8764%" y="853" width="0.0230%" height="15" fill="rgb(226,146,40)" fg:x="121225" fg:w="70"/><text x="40.1264%" y="863.50"></text></g><g><title>__clone3 (65 samples, 0.02%)</title><rect x="39.8780%" y="837" width="0.0214%" height="15" fill="rgb(219,47,25)" fg:x="121230" fg:w="65"/><text x="40.1280%" y="847.50"></text></g><g><title>start_thread (65 samples, 0.02%)</title><rect x="39.8780%" y="821" width="0.0214%" height="15" fill="rgb(250,135,13)" fg:x="121230" fg:w="65"/><text x="40.1280%" y="831.50"></text></g><g><title>thread_native_entry (65 samples, 0.02%)</title><rect x="39.8780%" y="805" width="0.0214%" height="15" fill="rgb(219,229,18)" fg:x="121230" fg:w="65"/><text x="40.1280%" y="815.50"></text></g><g><title>Thread::call_run (65 samples, 0.02%)</title><rect x="39.8780%" y="789" width="0.0214%" height="15" fill="rgb(217,152,27)" fg:x="121230" fg:w="65"/><text x="40.1280%" y="799.50"></text></g><g><title>ConcurrentGCThread::run (65 samples, 0.02%)</title><rect x="39.8780%" y="773" width="0.0214%" height="15" fill="rgb(225,71,47)" fg:x="121230" fg:w="65"/><text x="40.1280%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (80 samples, 0.03%)</title><rect x="39.9316%" y="709" width="0.0263%" height="15" fill="rgb(220,139,14)" fg:x="121393" fg:w="80"/><text x="40.1816%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (133 samples, 0.04%)</title><rect x="39.9152%" y="725" width="0.0437%" height="15" fill="rgb(247,54,32)" fg:x="121343" fg:w="133"/><text x="40.1652%" y="735.50"></text></g><g><title>SpinPause (118 samples, 0.04%)</title><rect x="39.9606%" y="725" width="0.0388%" height="15" fill="rgb(252,131,39)" fg:x="121481" fg:w="118"/><text x="40.2106%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (269 samples, 0.09%)</title><rect x="39.9122%" y="741" width="0.0885%" height="15" fill="rgb(210,108,39)" fg:x="121334" fg:w="269"/><text x="40.1622%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (54 samples, 0.02%)</title><rect x="40.0063%" y="645" width="0.0178%" height="15" fill="rgb(205,23,29)" fg:x="121620" fg:w="54"/><text x="40.2563%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (41 samples, 0.01%)</title><rect x="40.0106%" y="629" width="0.0135%" height="15" fill="rgb(246,139,46)" fg:x="121633" fg:w="41"/><text x="40.2606%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (72 samples, 0.02%)</title><rect x="40.0007%" y="661" width="0.0237%" height="15" fill="rgb(250,81,26)" fg:x="121603" fg:w="72"/><text x="40.2507%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (76 samples, 0.02%)</title><rect x="40.0007%" y="741" width="0.0250%" height="15" fill="rgb(214,104,7)" fg:x="121603" fg:w="76"/><text x="40.2507%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (76 samples, 0.02%)</title><rect x="40.0007%" y="725" width="0.0250%" height="15" fill="rgb(233,189,8)" fg:x="121603" fg:w="76"/><text x="40.2507%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (76 samples, 0.02%)</title><rect x="40.0007%" y="709" width="0.0250%" height="15" fill="rgb(228,141,17)" fg:x="121603" fg:w="76"/><text x="40.2507%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (76 samples, 0.02%)</title><rect x="40.0007%" y="693" width="0.0250%" height="15" fill="rgb(247,157,1)" fg:x="121603" fg:w="76"/><text x="40.2507%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (76 samples, 0.02%)</title><rect x="40.0007%" y="677" width="0.0250%" height="15" fill="rgb(249,225,5)" fg:x="121603" fg:w="76"/><text x="40.2507%" y="687.50"></text></g><g><title>InterpreterOopMap::iterate_oop (38 samples, 0.01%)</title><rect x="40.0409%" y="645" width="0.0125%" height="15" fill="rgb(242,55,13)" fg:x="121725" fg:w="38"/><text x="40.2909%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (37 samples, 0.01%)</title><rect x="40.0412%" y="629" width="0.0122%" height="15" fill="rgb(230,49,50)" fg:x="121726" fg:w="37"/><text x="40.2912%" y="639.50"></text></g><g><title>frame::oops_interpreted_do (44 samples, 0.01%)</title><rect x="40.0402%" y="661" width="0.0145%" height="15" fill="rgb(241,111,38)" fg:x="121723" fg:w="44"/><text x="40.2902%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (68 samples, 0.02%)</title><rect x="40.0326%" y="725" width="0.0224%" height="15" fill="rgb(252,155,4)" fg:x="121700" fg:w="68"/><text x="40.2826%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (68 samples, 0.02%)</title><rect x="40.0326%" y="709" width="0.0224%" height="15" fill="rgb(212,69,32)" fg:x="121700" fg:w="68"/><text x="40.2826%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (68 samples, 0.02%)</title><rect x="40.0326%" y="693" width="0.0224%" height="15" fill="rgb(243,107,47)" fg:x="121700" fg:w="68"/><text x="40.2826%" y="703.50"></text></g><g><title>JavaThread::oops_do (68 samples, 0.02%)</title><rect x="40.0326%" y="677" width="0.0224%" height="15" fill="rgb(247,130,12)" fg:x="121700" fg:w="68"/><text x="40.2826%" y="687.50"></text></g><g><title>G1ParTask::work (442 samples, 0.15%)</title><rect x="39.9122%" y="757" width="0.1454%" height="15" fill="rgb(233,74,16)" fg:x="121334" fg:w="442"/><text x="40.1622%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (89 samples, 0.03%)</title><rect x="40.0284%" y="741" width="0.0293%" height="15" fill="rgb(208,58,18)" fg:x="121687" fg:w="89"/><text x="40.2784%" y="751.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (42 samples, 0.01%)</title><rect x="40.0586%" y="725" width="0.0138%" height="15" fill="rgb(242,225,1)" fg:x="121779" fg:w="42"/><text x="40.3086%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (55 samples, 0.02%)</title><rect x="40.0586%" y="741" width="0.0181%" height="15" fill="rgb(249,39,40)" fg:x="121779" fg:w="55"/><text x="40.3086%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (107 samples, 0.04%)</title><rect x="40.0586%" y="757" width="0.0352%" height="15" fill="rgb(207,72,44)" fg:x="121779" fg:w="107"/><text x="40.3086%" y="767.50"></text></g><g><title>RefProcPhase3Task::work (52 samples, 0.02%)</title><rect x="40.0767%" y="741" width="0.0171%" height="15" fill="rgb(215,193,12)" fg:x="121834" fg:w="52"/><text x="40.3267%" y="751.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (52 samples, 0.02%)</title><rect x="40.0767%" y="725" width="0.0171%" height="15" fill="rgb(248,41,39)" fg:x="121834" fg:w="52"/><text x="40.3267%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (52 samples, 0.02%)</title><rect x="40.0767%" y="709" width="0.0171%" height="15" fill="rgb(253,85,4)" fg:x="121834" fg:w="52"/><text x="40.3267%" y="719.50"></text></g><g><title>SpinPause (50 samples, 0.02%)</title><rect x="40.0774%" y="693" width="0.0164%" height="15" fill="rgb(243,70,31)" fg:x="121836" fg:w="50"/><text x="40.3274%" y="703.50"></text></g><g><title>ParallelSPCleanupTask::work (38 samples, 0.01%)</title><rect x="40.0941%" y="757" width="0.0125%" height="15" fill="rgb(253,195,26)" fg:x="121887" fg:w="38"/><text x="40.3441%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (33 samples, 0.01%)</title><rect x="40.0958%" y="741" width="0.0109%" height="15" fill="rgb(243,42,11)" fg:x="121892" fg:w="33"/><text x="40.3458%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (37 samples, 0.01%)</title><rect x="40.1099%" y="533" width="0.0122%" height="15" fill="rgb(239,66,17)" fg:x="121935" fg:w="37"/><text x="40.3599%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.01%)</title><rect x="40.1103%" y="517" width="0.0118%" height="15" fill="rgb(217,132,21)" fg:x="121936" fg:w="36"/><text x="40.3603%" y="527.50"></text></g><g><title>x86_pmu_enable (36 samples, 0.01%)</title><rect x="40.1103%" y="501" width="0.0118%" height="15" fill="rgb(252,202,21)" fg:x="121936" fg:w="36"/><text x="40.3603%" y="511.50"></text></g><g><title>intel_pmu_enable_all (36 samples, 0.01%)</title><rect x="40.1103%" y="485" width="0.0118%" height="15" fill="rgb(233,98,36)" fg:x="121936" fg:w="36"/><text x="40.3603%" y="495.50"></text></g><g><title>native_write_msr (36 samples, 0.01%)</title><rect x="40.1103%" y="469" width="0.0118%" height="15" fill="rgb(216,153,54)" fg:x="121936" fg:w="36"/><text x="40.3603%" y="479.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.02%)</title><rect x="40.1083%" y="629" width="0.0151%" height="15" fill="rgb(250,99,7)" fg:x="121930" fg:w="46"/><text x="40.3583%" y="639.50"></text></g><g><title>do_futex (46 samples, 0.02%)</title><rect x="40.1083%" y="613" width="0.0151%" height="15" fill="rgb(207,56,50)" fg:x="121930" fg:w="46"/><text x="40.3583%" y="623.50"></text></g><g><title>futex_wait (46 samples, 0.02%)</title><rect x="40.1083%" y="597" width="0.0151%" height="15" fill="rgb(244,61,34)" fg:x="121930" fg:w="46"/><text x="40.3583%" y="607.50"></text></g><g><title>futex_wait_queue_me (45 samples, 0.01%)</title><rect x="40.1086%" y="581" width="0.0148%" height="15" fill="rgb(241,50,38)" fg:x="121931" fg:w="45"/><text x="40.3586%" y="591.50"></text></g><g><title>schedule (44 samples, 0.01%)</title><rect x="40.1089%" y="565" width="0.0145%" height="15" fill="rgb(212,166,30)" fg:x="121932" fg:w="44"/><text x="40.3589%" y="575.50"></text></g><g><title>__schedule (43 samples, 0.01%)</title><rect x="40.1093%" y="549" width="0.0141%" height="15" fill="rgb(249,127,32)" fg:x="121933" fg:w="43"/><text x="40.3593%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.02%)</title><rect x="40.1083%" y="661" width="0.0161%" height="15" fill="rgb(209,103,0)" fg:x="121930" fg:w="49"/><text x="40.3583%" y="671.50"></text></g><g><title>do_syscall_64 (49 samples, 0.02%)</title><rect x="40.1083%" y="645" width="0.0161%" height="15" fill="rgb(238,209,51)" fg:x="121930" fg:w="49"/><text x="40.3583%" y="655.50"></text></g><g><title>__clone3 (651 samples, 0.21%)</title><rect x="39.9106%" y="837" width="0.2141%" height="15" fill="rgb(237,56,23)" fg:x="121329" fg:w="651"/><text x="40.1606%" y="847.50"></text></g><g><title>start_thread (651 samples, 0.21%)</title><rect x="39.9106%" y="821" width="0.2141%" height="15" fill="rgb(215,153,46)" fg:x="121329" fg:w="651"/><text x="40.1606%" y="831.50"></text></g><g><title>thread_native_entry (651 samples, 0.21%)</title><rect x="39.9106%" y="805" width="0.2141%" height="15" fill="rgb(224,49,31)" fg:x="121329" fg:w="651"/><text x="40.1606%" y="815.50"></text></g><g><title>Thread::call_run (651 samples, 0.21%)</title><rect x="39.9106%" y="789" width="0.2141%" height="15" fill="rgb(250,18,42)" fg:x="121329" fg:w="651"/><text x="40.1606%" y="799.50"></text></g><g><title>GangWorker::loop (651 samples, 0.21%)</title><rect x="39.9106%" y="773" width="0.2141%" height="15" fill="rgb(215,176,39)" fg:x="121329" fg:w="651"/><text x="40.1606%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (53 samples, 0.02%)</title><rect x="40.1073%" y="757" width="0.0174%" height="15" fill="rgb(223,77,29)" fg:x="121927" fg:w="53"/><text x="40.3573%" y="767.50"></text></g><g><title>PosixSemaphore::wait (53 samples, 0.02%)</title><rect x="40.1073%" y="741" width="0.0174%" height="15" fill="rgb(234,94,52)" fg:x="121927" fg:w="53"/><text x="40.3573%" y="751.50"></text></g><g><title>__new_sem_wait_slow64 (53 samples, 0.02%)</title><rect x="40.1073%" y="725" width="0.0174%" height="15" fill="rgb(220,154,50)" fg:x="121927" fg:w="53"/><text x="40.3573%" y="735.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (52 samples, 0.02%)</title><rect x="40.1076%" y="709" width="0.0171%" height="15" fill="rgb(212,11,10)" fg:x="121928" fg:w="52"/><text x="40.3576%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common (52 samples, 0.02%)</title><rect x="40.1076%" y="693" width="0.0171%" height="15" fill="rgb(205,166,19)" fg:x="121928" fg:w="52"/><text x="40.3576%" y="703.50"></text></g><g><title>__futex_abstimed_wait_common64 (52 samples, 0.02%)</title><rect x="40.1076%" y="677" width="0.0171%" height="15" fill="rgb(244,198,16)" fg:x="121928" fg:w="52"/><text x="40.3576%" y="687.50"></text></g><g><title>GC_Thread#0 (667 samples, 0.22%)</title><rect x="39.9076%" y="853" width="0.2194%" height="15" fill="rgb(219,69,12)" fg:x="121320" fg:w="667"/><text x="40.1576%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (71 samples, 0.02%)</title><rect x="40.1461%" y="709" width="0.0234%" height="15" fill="rgb(245,30,7)" fg:x="122045" fg:w="71"/><text x="40.3961%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (99 samples, 0.03%)</title><rect x="40.1382%" y="725" width="0.0326%" height="15" fill="rgb(218,221,48)" fg:x="122021" fg:w="99"/><text x="40.3882%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (212 samples, 0.07%)</title><rect x="40.1366%" y="741" width="0.0697%" height="15" fill="rgb(216,66,15)" fg:x="122016" fg:w="212"/><text x="40.3866%" y="751.50"></text></g><g><title>SpinPause (104 samples, 0.03%)</title><rect x="40.1721%" y="725" width="0.0342%" height="15" fill="rgb(226,122,50)" fg:x="122124" fg:w="104"/><text x="40.4221%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (42 samples, 0.01%)</title><rect x="40.2093%" y="645" width="0.0138%" height="15" fill="rgb(239,156,16)" fg:x="122237" fg:w="42"/><text x="40.4593%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (37 samples, 0.01%)</title><rect x="40.2109%" y="629" width="0.0122%" height="15" fill="rgb(224,27,38)" fg:x="122242" fg:w="37"/><text x="40.4609%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (54 samples, 0.02%)</title><rect x="40.2063%" y="661" width="0.0178%" height="15" fill="rgb(224,39,27)" fg:x="122228" fg:w="54"/><text x="40.4563%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (57 samples, 0.02%)</title><rect x="40.2063%" y="741" width="0.0187%" height="15" fill="rgb(215,92,29)" fg:x="122228" fg:w="57"/><text x="40.4563%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (57 samples, 0.02%)</title><rect x="40.2063%" y="725" width="0.0187%" height="15" fill="rgb(207,159,16)" fg:x="122228" fg:w="57"/><text x="40.4563%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (57 samples, 0.02%)</title><rect x="40.2063%" y="709" width="0.0187%" height="15" fill="rgb(238,163,47)" fg:x="122228" fg:w="57"/><text x="40.4563%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (57 samples, 0.02%)</title><rect x="40.2063%" y="693" width="0.0187%" height="15" fill="rgb(219,91,49)" fg:x="122228" fg:w="57"/><text x="40.4563%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (57 samples, 0.02%)</title><rect x="40.2063%" y="677" width="0.0187%" height="15" fill="rgb(227,167,31)" fg:x="122228" fg:w="57"/><text x="40.4563%" y="687.50"></text></g><g><title>G1RootProcessor::evacuate_roots (61 samples, 0.02%)</title><rect x="40.2339%" y="741" width="0.0201%" height="15" fill="rgb(234,80,54)" fg:x="122312" fg:w="61"/><text x="40.4839%" y="751.50"></text></g><g><title>G1ParTask::work (358 samples, 0.12%)</title><rect x="40.1366%" y="757" width="0.1178%" height="15" fill="rgb(212,114,2)" fg:x="122016" fg:w="358"/><text x="40.3866%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (32 samples, 0.01%)</title><rect x="40.2550%" y="725" width="0.0105%" height="15" fill="rgb(234,50,24)" fg:x="122376" fg:w="32"/><text x="40.5050%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (41 samples, 0.01%)</title><rect x="40.2550%" y="741" width="0.0135%" height="15" fill="rgb(221,68,8)" fg:x="122376" fg:w="41"/><text x="40.5050%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (78 samples, 0.03%)</title><rect x="40.2550%" y="757" width="0.0257%" height="15" fill="rgb(254,180,31)" fg:x="122376" fg:w="78"/><text x="40.5050%" y="767.50"></text></g><g><title>RefProcPhase3Task::work (37 samples, 0.01%)</title><rect x="40.2685%" y="741" width="0.0122%" height="15" fill="rgb(247,130,50)" fg:x="122417" fg:w="37"/><text x="40.5185%" y="751.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (37 samples, 0.01%)</title><rect x="40.2685%" y="725" width="0.0122%" height="15" fill="rgb(211,109,4)" fg:x="122417" fg:w="37"/><text x="40.5185%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (37 samples, 0.01%)</title><rect x="40.2685%" y="709" width="0.0122%" height="15" fill="rgb(238,50,21)" fg:x="122417" fg:w="37"/><text x="40.5185%" y="719.50"></text></g><g><title>SpinPause (37 samples, 0.01%)</title><rect x="40.2685%" y="693" width="0.0122%" height="15" fill="rgb(225,57,45)" fg:x="122417" fg:w="37"/><text x="40.5185%" y="703.50"></text></g><g><title>ParallelSPCleanupTask::work (38 samples, 0.01%)</title><rect x="40.2807%" y="757" width="0.0125%" height="15" fill="rgb(209,196,50)" fg:x="122454" fg:w="38"/><text x="40.5307%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (36 samples, 0.01%)</title><rect x="40.2813%" y="741" width="0.0118%" height="15" fill="rgb(242,140,13)" fg:x="122456" fg:w="36"/><text x="40.5313%" y="751.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.01%)</title><rect x="40.2948%" y="629" width="0.0115%" height="15" fill="rgb(217,111,7)" fg:x="122497" fg:w="35"/><text x="40.5448%" y="639.50"></text></g><g><title>do_futex (35 samples, 0.01%)</title><rect x="40.2948%" y="613" width="0.0115%" height="15" fill="rgb(253,193,51)" fg:x="122497" fg:w="35"/><text x="40.5448%" y="623.50"></text></g><g><title>futex_wait (35 samples, 0.01%)</title><rect x="40.2948%" y="597" width="0.0115%" height="15" fill="rgb(252,70,29)" fg:x="122497" fg:w="35"/><text x="40.5448%" y="607.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.01%)</title><rect x="40.2951%" y="581" width="0.0112%" height="15" fill="rgb(232,127,12)" fg:x="122498" fg:w="34"/><text x="40.5451%" y="591.50"></text></g><g><title>schedule (34 samples, 0.01%)</title><rect x="40.2951%" y="565" width="0.0112%" height="15" fill="rgb(211,180,21)" fg:x="122498" fg:w="34"/><text x="40.5451%" y="575.50"></text></g><g><title>__schedule (34 samples, 0.01%)</title><rect x="40.2951%" y="549" width="0.0112%" height="15" fill="rgb(229,72,13)" fg:x="122498" fg:w="34"/><text x="40.5451%" y="559.50"></text></g><g><title>__clone3 (532 samples, 0.17%)</title><rect x="40.1326%" y="837" width="0.1750%" height="15" fill="rgb(240,211,49)" fg:x="122004" fg:w="532"/><text x="40.3826%" y="847.50"></text></g><g><title>start_thread (532 samples, 0.17%)</title><rect x="40.1326%" y="821" width="0.1750%" height="15" fill="rgb(219,149,40)" fg:x="122004" fg:w="532"/><text x="40.3826%" y="831.50"></text></g><g><title>thread_native_entry (532 samples, 0.17%)</title><rect x="40.1326%" y="805" width="0.1750%" height="15" fill="rgb(210,127,46)" fg:x="122004" fg:w="532"/><text x="40.3826%" y="815.50"></text></g><g><title>Thread::call_run (532 samples, 0.17%)</title><rect x="40.1326%" y="789" width="0.1750%" height="15" fill="rgb(220,106,7)" fg:x="122004" fg:w="532"/><text x="40.3826%" y="799.50"></text></g><g><title>GangWorker::loop (532 samples, 0.17%)</title><rect x="40.1326%" y="773" width="0.1750%" height="15" fill="rgb(249,31,22)" fg:x="122004" fg:w="532"/><text x="40.3826%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (42 samples, 0.01%)</title><rect x="40.2938%" y="757" width="0.0138%" height="15" fill="rgb(253,1,49)" fg:x="122494" fg:w="42"/><text x="40.5438%" y="767.50"></text></g><g><title>PosixSemaphore::wait (42 samples, 0.01%)</title><rect x="40.2938%" y="741" width="0.0138%" height="15" fill="rgb(227,144,33)" fg:x="122494" fg:w="42"/><text x="40.5438%" y="751.50"></text></g><g><title>__new_sem_wait_slow64 (41 samples, 0.01%)</title><rect x="40.2941%" y="725" width="0.0135%" height="15" fill="rgb(249,163,44)" fg:x="122495" fg:w="41"/><text x="40.5441%" y="735.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (41 samples, 0.01%)</title><rect x="40.2941%" y="709" width="0.0135%" height="15" fill="rgb(234,15,39)" fg:x="122495" fg:w="41"/><text x="40.5441%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common (41 samples, 0.01%)</title><rect x="40.2941%" y="693" width="0.0135%" height="15" fill="rgb(207,66,16)" fg:x="122495" fg:w="41"/><text x="40.5441%" y="703.50"></text></g><g><title>__futex_abstimed_wait_common64 (41 samples, 0.01%)</title><rect x="40.2941%" y="677" width="0.0135%" height="15" fill="rgb(233,112,24)" fg:x="122495" fg:w="41"/><text x="40.5441%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.01%)</title><rect x="40.2948%" y="661" width="0.0128%" height="15" fill="rgb(230,90,22)" fg:x="122497" fg:w="39"/><text x="40.5448%" y="671.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="40.2948%" y="645" width="0.0128%" height="15" fill="rgb(229,61,13)" fg:x="122497" fg:w="39"/><text x="40.5448%" y="655.50"></text></g><g><title>GC_Thread#1 (554 samples, 0.18%)</title><rect x="40.1270%" y="853" width="0.1822%" height="15" fill="rgb(225,57,24)" fg:x="121987" fg:w="554"/><text x="40.3770%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (71 samples, 0.02%)</title><rect x="40.3300%" y="709" width="0.0234%" height="15" fill="rgb(208,169,48)" fg:x="122604" fg:w="71"/><text x="40.5800%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (122 samples, 0.04%)</title><rect x="40.3149%" y="725" width="0.0401%" height="15" fill="rgb(244,218,51)" fg:x="122558" fg:w="122"/><text x="40.5649%" y="735.50"></text></g><g><title>SpinPause (107 samples, 0.04%)</title><rect x="40.3563%" y="725" width="0.0352%" height="15" fill="rgb(214,148,10)" fg:x="122684" fg:w="107"/><text x="40.6063%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (239 samples, 0.08%)</title><rect x="40.3132%" y="741" width="0.0786%" height="15" fill="rgb(225,174,27)" fg:x="122553" fg:w="239"/><text x="40.5632%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (43 samples, 0.01%)</title><rect x="40.3961%" y="645" width="0.0141%" height="15" fill="rgb(230,96,26)" fg:x="122805" fg:w="43"/><text x="40.6461%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (35 samples, 0.01%)</title><rect x="40.3987%" y="629" width="0.0115%" height="15" fill="rgb(232,10,30)" fg:x="122813" fg:w="35"/><text x="40.6487%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (56 samples, 0.02%)</title><rect x="40.3925%" y="661" width="0.0184%" height="15" fill="rgb(222,8,50)" fg:x="122794" fg:w="56"/><text x="40.6425%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (59 samples, 0.02%)</title><rect x="40.3925%" y="741" width="0.0194%" height="15" fill="rgb(213,81,27)" fg:x="122794" fg:w="59"/><text x="40.6425%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (59 samples, 0.02%)</title><rect x="40.3925%" y="725" width="0.0194%" height="15" fill="rgb(245,50,10)" fg:x="122794" fg:w="59"/><text x="40.6425%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (59 samples, 0.02%)</title><rect x="40.3925%" y="709" width="0.0194%" height="15" fill="rgb(216,100,18)" fg:x="122794" fg:w="59"/><text x="40.6425%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (59 samples, 0.02%)</title><rect x="40.3925%" y="693" width="0.0194%" height="15" fill="rgb(236,147,54)" fg:x="122794" fg:w="59"/><text x="40.6425%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (59 samples, 0.02%)</title><rect x="40.3925%" y="677" width="0.0194%" height="15" fill="rgb(205,143,26)" fg:x="122794" fg:w="59"/><text x="40.6425%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (41 samples, 0.01%)</title><rect x="40.4119%" y="741" width="0.0135%" height="15" fill="rgb(236,26,9)" fg:x="122853" fg:w="41"/><text x="40.6619%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (41 samples, 0.01%)</title><rect x="40.4119%" y="725" width="0.0135%" height="15" fill="rgb(221,165,53)" fg:x="122853" fg:w="41"/><text x="40.6619%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (41 samples, 0.01%)</title><rect x="40.4119%" y="709" width="0.0135%" height="15" fill="rgb(214,110,17)" fg:x="122853" fg:w="41"/><text x="40.6619%" y="719.50"></text></g><g><title>G1RootProcessor::process_java_roots (34 samples, 0.01%)</title><rect x="40.4254%" y="725" width="0.0112%" height="15" fill="rgb(237,197,12)" fg:x="122894" fg:w="34"/><text x="40.6754%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (34 samples, 0.01%)</title><rect x="40.4254%" y="709" width="0.0112%" height="15" fill="rgb(205,84,17)" fg:x="122894" fg:w="34"/><text x="40.6754%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (34 samples, 0.01%)</title><rect x="40.4254%" y="693" width="0.0112%" height="15" fill="rgb(237,18,45)" fg:x="122894" fg:w="34"/><text x="40.6754%" y="703.50"></text></g><g><title>JavaThread::oops_do (34 samples, 0.01%)</title><rect x="40.4254%" y="677" width="0.0112%" height="15" fill="rgb(221,87,14)" fg:x="122894" fg:w="34"/><text x="40.6754%" y="687.50"></text></g><g><title>G1ParTask::work (394 samples, 0.13%)</title><rect x="40.3132%" y="757" width="0.1296%" height="15" fill="rgb(238,186,15)" fg:x="122553" fg:w="394"/><text x="40.5632%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (53 samples, 0.02%)</title><rect x="40.4254%" y="741" width="0.0174%" height="15" fill="rgb(208,115,11)" fg:x="122894" fg:w="53"/><text x="40.6754%" y="751.50"></text></g><g><title>SpinPause (33 samples, 0.01%)</title><rect x="40.4510%" y="709" width="0.0109%" height="15" fill="rgb(254,175,0)" fg:x="122972" fg:w="33"/><text x="40.7010%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (47 samples, 0.02%)</title><rect x="40.4471%" y="725" width="0.0155%" height="15" fill="rgb(227,24,42)" fg:x="122960" fg:w="47"/><text x="40.6971%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (63 samples, 0.02%)</title><rect x="40.4471%" y="741" width="0.0207%" height="15" fill="rgb(223,211,37)" fg:x="122960" fg:w="63"/><text x="40.6971%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (94 samples, 0.03%)</title><rect x="40.4471%" y="757" width="0.0309%" height="15" fill="rgb(235,49,27)" fg:x="122960" fg:w="94"/><text x="40.6971%" y="767.50"></text></g><g><title>RefProcPhase3Task::work (31 samples, 0.01%)</title><rect x="40.4678%" y="741" width="0.0102%" height="15" fill="rgb(254,97,51)" fg:x="123023" fg:w="31"/><text x="40.7178%" y="751.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (31 samples, 0.01%)</title><rect x="40.4678%" y="725" width="0.0102%" height="15" fill="rgb(249,51,40)" fg:x="123023" fg:w="31"/><text x="40.7178%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (31 samples, 0.01%)</title><rect x="40.4678%" y="709" width="0.0102%" height="15" fill="rgb(210,128,45)" fg:x="123023" fg:w="31"/><text x="40.7178%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.01%)</title><rect x="40.4925%" y="517" width="0.0145%" height="15" fill="rgb(224,137,50)" fg:x="123098" fg:w="44"/><text x="40.7425%" y="527.50"></text></g><g><title>x86_pmu_enable (44 samples, 0.01%)</title><rect x="40.4925%" y="501" width="0.0145%" height="15" fill="rgb(242,15,9)" fg:x="123098" fg:w="44"/><text x="40.7425%" y="511.50"></text></g><g><title>intel_pmu_enable_all (44 samples, 0.01%)</title><rect x="40.4925%" y="485" width="0.0145%" height="15" fill="rgb(233,187,41)" fg:x="123098" fg:w="44"/><text x="40.7425%" y="495.50"></text></g><g><title>native_write_msr (43 samples, 0.01%)</title><rect x="40.4928%" y="469" width="0.0141%" height="15" fill="rgb(227,2,29)" fg:x="123099" fg:w="43"/><text x="40.7428%" y="479.50"></text></g><g><title>finish_task_switch.isra.0 (48 samples, 0.02%)</title><rect x="40.4915%" y="533" width="0.0158%" height="15" fill="rgb(222,70,3)" fg:x="123095" fg:w="48"/><text x="40.7415%" y="543.50"></text></g><g><title>__schedule (57 samples, 0.02%)</title><rect x="40.4895%" y="549" width="0.0187%" height="15" fill="rgb(213,11,42)" fg:x="123089" fg:w="57"/><text x="40.7395%" y="559.50"></text></g><g><title>__x64_sys_futex (60 samples, 0.02%)</title><rect x="40.4889%" y="629" width="0.0197%" height="15" fill="rgb(225,150,9)" fg:x="123087" fg:w="60"/><text x="40.7389%" y="639.50"></text></g><g><title>do_futex (60 samples, 0.02%)</title><rect x="40.4889%" y="613" width="0.0197%" height="15" fill="rgb(230,162,45)" fg:x="123087" fg:w="60"/><text x="40.7389%" y="623.50"></text></g><g><title>futex_wait (60 samples, 0.02%)</title><rect x="40.4889%" y="597" width="0.0197%" height="15" fill="rgb(222,14,52)" fg:x="123087" fg:w="60"/><text x="40.7389%" y="607.50"></text></g><g><title>futex_wait_queue_me (58 samples, 0.02%)</title><rect x="40.4895%" y="581" width="0.0191%" height="15" fill="rgb(254,198,14)" fg:x="123089" fg:w="58"/><text x="40.7395%" y="591.50"></text></g><g><title>schedule (58 samples, 0.02%)</title><rect x="40.4895%" y="565" width="0.0191%" height="15" fill="rgb(220,217,30)" fg:x="123089" fg:w="58"/><text x="40.7395%" y="575.50"></text></g><g><title>__clone3 (604 samples, 0.20%)</title><rect x="40.3116%" y="837" width="0.1987%" height="15" fill="rgb(215,146,41)" fg:x="122548" fg:w="604"/><text x="40.5616%" y="847.50"></text></g><g><title>start_thread (604 samples, 0.20%)</title><rect x="40.3116%" y="821" width="0.1987%" height="15" fill="rgb(217,27,36)" fg:x="122548" fg:w="604"/><text x="40.5616%" y="831.50"></text></g><g><title>thread_native_entry (604 samples, 0.20%)</title><rect x="40.3116%" y="805" width="0.1987%" height="15" fill="rgb(219,218,39)" fg:x="122548" fg:w="604"/><text x="40.5616%" y="815.50"></text></g><g><title>Thread::call_run (604 samples, 0.20%)</title><rect x="40.3116%" y="789" width="0.1987%" height="15" fill="rgb(219,4,42)" fg:x="122548" fg:w="604"/><text x="40.5616%" y="799.50"></text></g><g><title>GangWorker::loop (604 samples, 0.20%)</title><rect x="40.3116%" y="773" width="0.1987%" height="15" fill="rgb(249,119,36)" fg:x="122548" fg:w="604"/><text x="40.5616%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (66 samples, 0.02%)</title><rect x="40.4885%" y="757" width="0.0217%" height="15" fill="rgb(209,23,33)" fg:x="123086" fg:w="66"/><text x="40.7385%" y="767.50"></text></g><g><title>PosixSemaphore::wait (66 samples, 0.02%)</title><rect x="40.4885%" y="741" width="0.0217%" height="15" fill="rgb(211,10,0)" fg:x="123086" fg:w="66"/><text x="40.7385%" y="751.50"></text></g><g><title>__new_sem_wait_slow64 (66 samples, 0.02%)</title><rect x="40.4885%" y="725" width="0.0217%" height="15" fill="rgb(208,99,37)" fg:x="123086" fg:w="66"/><text x="40.7385%" y="735.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (66 samples, 0.02%)</title><rect x="40.4885%" y="709" width="0.0217%" height="15" fill="rgb(213,132,31)" fg:x="123086" fg:w="66"/><text x="40.7385%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common (66 samples, 0.02%)</title><rect x="40.4885%" y="693" width="0.0217%" height="15" fill="rgb(243,129,40)" fg:x="123086" fg:w="66"/><text x="40.7385%" y="703.50"></text></g><g><title>__futex_abstimed_wait_common64 (66 samples, 0.02%)</title><rect x="40.4885%" y="677" width="0.0217%" height="15" fill="rgb(210,66,33)" fg:x="123086" fg:w="66"/><text x="40.7385%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.02%)</title><rect x="40.4885%" y="661" width="0.0217%" height="15" fill="rgb(209,189,4)" fg:x="123086" fg:w="66"/><text x="40.7385%" y="671.50"></text></g><g><title>do_syscall_64 (65 samples, 0.02%)</title><rect x="40.4889%" y="645" width="0.0214%" height="15" fill="rgb(214,107,37)" fg:x="123087" fg:w="65"/><text x="40.7389%" y="655.50"></text></g><g><title>GC_Thread#2 (613 samples, 0.20%)</title><rect x="40.3093%" y="853" width="0.2016%" height="15" fill="rgb(245,88,54)" fg:x="122541" fg:w="613"/><text x="40.5593%" y="863.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (34 samples, 0.01%)</title><rect x="40.5563%" y="693" width="0.0112%" height="15" fill="rgb(205,146,20)" fg:x="123292" fg:w="34"/><text x="40.8063%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (113 samples, 0.04%)</title><rect x="40.5399%" y="709" width="0.0372%" height="15" fill="rgb(220,161,25)" fg:x="123242" fg:w="113"/><text x="40.7899%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (182 samples, 0.06%)</title><rect x="40.5201%" y="725" width="0.0599%" height="15" fill="rgb(215,152,15)" fg:x="123182" fg:w="182"/><text x="40.7701%" y="735.50"></text></g><g><title>SpinPause (115 samples, 0.04%)</title><rect x="40.5810%" y="725" width="0.0378%" height="15" fill="rgb(233,192,44)" fg:x="123367" fg:w="115"/><text x="40.8310%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (314 samples, 0.10%)</title><rect x="40.5178%" y="741" width="0.1033%" height="15" fill="rgb(240,170,46)" fg:x="123175" fg:w="314"/><text x="40.7678%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (97 samples, 0.03%)</title><rect x="40.6290%" y="645" width="0.0319%" height="15" fill="rgb(207,104,33)" fg:x="123513" fg:w="97"/><text x="40.8790%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (78 samples, 0.03%)</title><rect x="40.6353%" y="629" width="0.0257%" height="15" fill="rgb(219,21,39)" fg:x="123532" fg:w="78"/><text x="40.8853%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (122 samples, 0.04%)</title><rect x="40.6214%" y="661" width="0.0401%" height="15" fill="rgb(214,133,29)" fg:x="123490" fg:w="122"/><text x="40.8714%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (135 samples, 0.04%)</title><rect x="40.6214%" y="741" width="0.0444%" height="15" fill="rgb(226,93,6)" fg:x="123490" fg:w="135"/><text x="40.8714%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (135 samples, 0.04%)</title><rect x="40.6214%" y="725" width="0.0444%" height="15" fill="rgb(252,222,34)" fg:x="123490" fg:w="135"/><text x="40.8714%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (135 samples, 0.04%)</title><rect x="40.6214%" y="709" width="0.0444%" height="15" fill="rgb(252,92,48)" fg:x="123490" fg:w="135"/><text x="40.8714%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (135 samples, 0.04%)</title><rect x="40.6214%" y="693" width="0.0444%" height="15" fill="rgb(245,223,24)" fg:x="123490" fg:w="135"/><text x="40.8714%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (135 samples, 0.04%)</title><rect x="40.6214%" y="677" width="0.0444%" height="15" fill="rgb(205,176,3)" fg:x="123490" fg:w="135"/><text x="40.8714%" y="687.50"></text></g><g><title>frame::oops_interpreted_do (34 samples, 0.01%)</title><rect x="40.6849%" y="661" width="0.0112%" height="15" fill="rgb(235,151,15)" fg:x="123683" fg:w="34"/><text x="40.9349%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (76 samples, 0.02%)</title><rect x="40.6714%" y="725" width="0.0250%" height="15" fill="rgb(237,209,11)" fg:x="123642" fg:w="76"/><text x="40.9214%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (76 samples, 0.02%)</title><rect x="40.6714%" y="709" width="0.0250%" height="15" fill="rgb(243,227,24)" fg:x="123642" fg:w="76"/><text x="40.9214%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (76 samples, 0.02%)</title><rect x="40.6714%" y="693" width="0.0250%" height="15" fill="rgb(239,193,16)" fg:x="123642" fg:w="76"/><text x="40.9214%" y="703.50"></text></g><g><title>JavaThread::oops_do (76 samples, 0.02%)</title><rect x="40.6714%" y="677" width="0.0250%" height="15" fill="rgb(231,27,9)" fg:x="123642" fg:w="76"/><text x="40.9214%" y="687.50"></text></g><g><title>G1ParTask::work (569 samples, 0.19%)</title><rect x="40.5178%" y="757" width="0.1872%" height="15" fill="rgb(219,169,10)" fg:x="123175" fg:w="569"/><text x="40.7678%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (102 samples, 0.03%)</title><rect x="40.6714%" y="741" width="0.0336%" height="15" fill="rgb(244,229,43)" fg:x="123642" fg:w="102"/><text x="40.9214%" y="751.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (44 samples, 0.01%)</title><rect x="40.7109%" y="725" width="0.0145%" height="15" fill="rgb(254,38,20)" fg:x="123762" fg:w="44"/><text x="40.9609%" y="735.50"></text></g><g><title>SpinPause (31 samples, 0.01%)</title><rect x="40.7152%" y="709" width="0.0102%" height="15" fill="rgb(250,47,30)" fg:x="123775" fg:w="31"/><text x="40.9652%" y="719.50"></text></g><g><title>RefProcPhase2Task::work (50 samples, 0.02%)</title><rect x="40.7109%" y="741" width="0.0164%" height="15" fill="rgb(224,124,36)" fg:x="123762" fg:w="50"/><text x="40.9609%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (104 samples, 0.03%)</title><rect x="40.7109%" y="757" width="0.0342%" height="15" fill="rgb(246,68,51)" fg:x="123762" fg:w="104"/><text x="40.9609%" y="767.50"></text></g><g><title>RefProcPhase3Task::work (54 samples, 0.02%)</title><rect x="40.7274%" y="741" width="0.0178%" height="15" fill="rgb(253,43,49)" fg:x="123812" fg:w="54"/><text x="40.9774%" y="751.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (54 samples, 0.02%)</title><rect x="40.7274%" y="725" width="0.0178%" height="15" fill="rgb(219,54,36)" fg:x="123812" fg:w="54"/><text x="40.9774%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (54 samples, 0.02%)</title><rect x="40.7274%" y="709" width="0.0178%" height="15" fill="rgb(227,133,34)" fg:x="123812" fg:w="54"/><text x="40.9774%" y="719.50"></text></g><g><title>SpinPause (54 samples, 0.02%)</title><rect x="40.7274%" y="693" width="0.0178%" height="15" fill="rgb(247,227,15)" fg:x="123812" fg:w="54"/><text x="40.9774%" y="703.50"></text></g><g><title>ParallelSPCleanupTask::work (33 samples, 0.01%)</title><rect x="40.7455%" y="757" width="0.0109%" height="15" fill="rgb(229,96,14)" fg:x="123867" fg:w="33"/><text x="40.9955%" y="767.50"></text></g><g><title>__clone3 (760 samples, 0.25%)</title><rect x="40.5155%" y="837" width="0.2500%" height="15" fill="rgb(220,79,17)" fg:x="123168" fg:w="760"/><text x="40.7655%" y="847.50"></text></g><g><title>start_thread (760 samples, 0.25%)</title><rect x="40.5155%" y="821" width="0.2500%" height="15" fill="rgb(205,131,53)" fg:x="123168" fg:w="760"/><text x="40.7655%" y="831.50"></text></g><g><title>thread_native_entry (760 samples, 0.25%)</title><rect x="40.5155%" y="805" width="0.2500%" height="15" fill="rgb(209,50,29)" fg:x="123168" fg:w="760"/><text x="40.7655%" y="815.50"></text></g><g><title>Thread::call_run (760 samples, 0.25%)</title><rect x="40.5155%" y="789" width="0.2500%" height="15" fill="rgb(245,86,46)" fg:x="123168" fg:w="760"/><text x="40.7655%" y="799.50"></text></g><g><title>GangWorker::loop (760 samples, 0.25%)</title><rect x="40.5155%" y="773" width="0.2500%" height="15" fill="rgb(235,66,46)" fg:x="123168" fg:w="760"/><text x="40.7655%" y="783.50"></text></g><g><title>GC_Thread#3 (781 samples, 0.26%)</title><rect x="40.5109%" y="853" width="0.2569%" height="15" fill="rgb(232,148,31)" fg:x="123154" fg:w="781"/><text x="40.7609%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue (79 samples, 0.03%)</title><rect x="40.7787%" y="725" width="0.0260%" height="15" fill="rgb(217,149,8)" fg:x="123968" fg:w="79"/><text x="41.0287%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (55 samples, 0.02%)</title><rect x="40.7866%" y="709" width="0.0181%" height="15" fill="rgb(209,183,11)" fg:x="123992" fg:w="55"/><text x="41.0366%" y="719.50"></text></g><g><title>SpinPause (64 samples, 0.02%)</title><rect x="40.8063%" y="725" width="0.0211%" height="15" fill="rgb(208,55,20)" fg:x="124052" fg:w="64"/><text x="41.0563%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (155 samples, 0.05%)</title><rect x="40.7774%" y="741" width="0.0510%" height="15" fill="rgb(218,39,14)" fg:x="123964" fg:w="155"/><text x="41.0274%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (38 samples, 0.01%)</title><rect x="40.8283%" y="661" width="0.0125%" height="15" fill="rgb(216,169,33)" fg:x="124119" fg:w="38"/><text x="41.0783%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (32 samples, 0.01%)</title><rect x="40.8303%" y="645" width="0.0105%" height="15" fill="rgb(233,80,24)" fg:x="124125" fg:w="32"/><text x="41.0803%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (42 samples, 0.01%)</title><rect x="40.8283%" y="741" width="0.0138%" height="15" fill="rgb(213,179,31)" fg:x="124119" fg:w="42"/><text x="41.0783%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (42 samples, 0.01%)</title><rect x="40.8283%" y="725" width="0.0138%" height="15" fill="rgb(209,19,5)" fg:x="124119" fg:w="42"/><text x="41.0783%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (42 samples, 0.01%)</title><rect x="40.8283%" y="709" width="0.0138%" height="15" fill="rgb(219,18,35)" fg:x="124119" fg:w="42"/><text x="41.0783%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (42 samples, 0.01%)</title><rect x="40.8283%" y="693" width="0.0138%" height="15" fill="rgb(209,169,16)" fg:x="124119" fg:w="42"/><text x="41.0783%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (42 samples, 0.01%)</title><rect x="40.8283%" y="677" width="0.0138%" height="15" fill="rgb(245,90,51)" fg:x="124119" fg:w="42"/><text x="41.0783%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (86 samples, 0.03%)</title><rect x="40.8550%" y="645" width="0.0283%" height="15" fill="rgb(220,99,45)" fg:x="124200" fg:w="86"/><text x="41.1050%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (68 samples, 0.02%)</title><rect x="40.8609%" y="629" width="0.0224%" height="15" fill="rgb(249,89,25)" fg:x="124218" fg:w="68"/><text x="41.1109%" y="639.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (121 samples, 0.04%)</title><rect x="40.8445%" y="709" width="0.0398%" height="15" fill="rgb(239,193,0)" fg:x="124168" fg:w="121"/><text x="41.0945%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (121 samples, 0.04%)</title><rect x="40.8445%" y="693" width="0.0398%" height="15" fill="rgb(231,126,1)" fg:x="124168" fg:w="121"/><text x="41.0945%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (121 samples, 0.04%)</title><rect x="40.8445%" y="677" width="0.0398%" height="15" fill="rgb(243,166,3)" fg:x="124168" fg:w="121"/><text x="41.0945%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (107 samples, 0.04%)</title><rect x="40.8491%" y="661" width="0.0352%" height="15" fill="rgb(223,22,34)" fg:x="124182" fg:w="107"/><text x="41.0991%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (159 samples, 0.05%)</title><rect x="40.8445%" y="725" width="0.0523%" height="15" fill="rgb(251,52,51)" fg:x="124168" fg:w="159"/><text x="41.0945%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (38 samples, 0.01%)</title><rect x="40.8843%" y="709" width="0.0125%" height="15" fill="rgb(221,165,28)" fg:x="124289" fg:w="38"/><text x="41.1343%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (38 samples, 0.01%)</title><rect x="40.8843%" y="693" width="0.0125%" height="15" fill="rgb(218,121,47)" fg:x="124289" fg:w="38"/><text x="41.1343%" y="703.50"></text></g><g><title>JavaThread::oops_do (38 samples, 0.01%)</title><rect x="40.8843%" y="677" width="0.0125%" height="15" fill="rgb(209,120,9)" fg:x="124289" fg:w="38"/><text x="41.1343%" y="687.50"></text></g><g><title>G1ParTask::work (364 samples, 0.12%)</title><rect x="40.7774%" y="757" width="0.1197%" height="15" fill="rgb(236,68,12)" fg:x="123964" fg:w="364"/><text x="41.0274%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (164 samples, 0.05%)</title><rect x="40.8432%" y="741" width="0.0539%" height="15" fill="rgb(225,194,26)" fg:x="124164" fg:w="164"/><text x="41.0932%" y="751.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (48 samples, 0.02%)</title><rect x="40.9017%" y="725" width="0.0158%" height="15" fill="rgb(231,84,39)" fg:x="124342" fg:w="48"/><text x="41.1517%" y="735.50"></text></g><g><title>SpinPause (33 samples, 0.01%)</title><rect x="40.9066%" y="709" width="0.0109%" height="15" fill="rgb(210,11,45)" fg:x="124357" fg:w="33"/><text x="41.1566%" y="719.50"></text></g><g><title>RefProcPhase2Task::work (57 samples, 0.02%)</title><rect x="40.9017%" y="741" width="0.0187%" height="15" fill="rgb(224,54,52)" fg:x="124342" fg:w="57"/><text x="41.1517%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (79 samples, 0.03%)</title><rect x="40.9017%" y="757" width="0.0260%" height="15" fill="rgb(238,102,14)" fg:x="124342" fg:w="79"/><text x="41.1517%" y="767.50"></text></g><g><title>JavaThread::nmethods_do (32 samples, 0.01%)</title><rect x="40.9303%" y="725" width="0.0105%" height="15" fill="rgb(243,160,52)" fg:x="124429" fg:w="32"/><text x="41.1803%" y="735.50"></text></g><g><title>ParallelSPCleanupTask::work (43 samples, 0.01%)</title><rect x="40.9277%" y="757" width="0.0141%" height="15" fill="rgb(216,114,19)" fg:x="124421" fg:w="43"/><text x="41.1777%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (39 samples, 0.01%)</title><rect x="40.9290%" y="741" width="0.0128%" height="15" fill="rgb(244,166,37)" fg:x="124425" fg:w="39"/><text x="41.1790%" y="751.50"></text></g><g><title>__clone3 (547 samples, 0.18%)</title><rect x="40.7721%" y="837" width="0.1799%" height="15" fill="rgb(246,29,44)" fg:x="123948" fg:w="547"/><text x="41.0221%" y="847.50"></text></g><g><title>start_thread (547 samples, 0.18%)</title><rect x="40.7721%" y="821" width="0.1799%" height="15" fill="rgb(215,56,53)" fg:x="123948" fg:w="547"/><text x="41.0221%" y="831.50"></text></g><g><title>thread_native_entry (547 samples, 0.18%)</title><rect x="40.7721%" y="805" width="0.1799%" height="15" fill="rgb(217,60,2)" fg:x="123948" fg:w="547"/><text x="41.0221%" y="815.50"></text></g><g><title>Thread::call_run (547 samples, 0.18%)</title><rect x="40.7721%" y="789" width="0.1799%" height="15" fill="rgb(207,26,24)" fg:x="123948" fg:w="547"/><text x="41.0221%" y="799.50"></text></g><g><title>GangWorker::loop (547 samples, 0.18%)</title><rect x="40.7721%" y="773" width="0.1799%" height="15" fill="rgb(252,210,15)" fg:x="123948" fg:w="547"/><text x="41.0221%" y="783.50"></text></g><g><title>GC_Thread#4 (563 samples, 0.19%)</title><rect x="40.7678%" y="853" width="0.1852%" height="15" fill="rgb(253,209,26)" fg:x="123935" fg:w="563"/><text x="41.0178%" y="863.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (33 samples, 0.01%)</title><rect x="40.9922%" y="693" width="0.0109%" height="15" fill="rgb(238,170,14)" fg:x="124617" fg:w="33"/><text x="41.2422%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (89 samples, 0.03%)</title><rect x="40.9803%" y="709" width="0.0293%" height="15" fill="rgb(216,178,15)" fg:x="124581" fg:w="89"/><text x="41.2303%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (145 samples, 0.05%)</title><rect x="40.9629%" y="725" width="0.0477%" height="15" fill="rgb(250,197,2)" fg:x="124528" fg:w="145"/><text x="41.2129%" y="735.50"></text></g><g><title>SpinPause (114 samples, 0.04%)</title><rect x="41.0135%" y="725" width="0.0375%" height="15" fill="rgb(212,70,42)" fg:x="124682" fg:w="114"/><text x="41.2635%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (279 samples, 0.09%)</title><rect x="40.9619%" y="741" width="0.0918%" height="15" fill="rgb(227,213,9)" fg:x="124525" fg:w="279"/><text x="41.2119%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (51 samples, 0.02%)</title><rect x="41.0557%" y="645" width="0.0168%" height="15" fill="rgb(245,99,25)" fg:x="124810" fg:w="51"/><text x="41.3057%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (38 samples, 0.01%)</title><rect x="41.0599%" y="629" width="0.0125%" height="15" fill="rgb(250,82,29)" fg:x="124823" fg:w="38"/><text x="41.3099%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (69 samples, 0.02%)</title><rect x="41.0537%" y="661" width="0.0227%" height="15" fill="rgb(241,226,54)" fg:x="124804" fg:w="69"/><text x="41.3037%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (81 samples, 0.03%)</title><rect x="41.0537%" y="741" width="0.0266%" height="15" fill="rgb(221,99,41)" fg:x="124804" fg:w="81"/><text x="41.3037%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (81 samples, 0.03%)</title><rect x="41.0537%" y="725" width="0.0266%" height="15" fill="rgb(213,90,21)" fg:x="124804" fg:w="81"/><text x="41.3037%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (81 samples, 0.03%)</title><rect x="41.0537%" y="709" width="0.0266%" height="15" fill="rgb(205,208,24)" fg:x="124804" fg:w="81"/><text x="41.3037%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (81 samples, 0.03%)</title><rect x="41.0537%" y="693" width="0.0266%" height="15" fill="rgb(246,31,12)" fg:x="124804" fg:w="81"/><text x="41.3037%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (81 samples, 0.03%)</title><rect x="41.0537%" y="677" width="0.0266%" height="15" fill="rgb(213,154,6)" fg:x="124804" fg:w="81"/><text x="41.3037%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (39 samples, 0.01%)</title><rect x="41.0803%" y="741" width="0.0128%" height="15" fill="rgb(222,163,29)" fg:x="124885" fg:w="39"/><text x="41.3303%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (39 samples, 0.01%)</title><rect x="41.0803%" y="725" width="0.0128%" height="15" fill="rgb(227,201,8)" fg:x="124885" fg:w="39"/><text x="41.3303%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (39 samples, 0.01%)</title><rect x="41.0803%" y="709" width="0.0128%" height="15" fill="rgb(233,9,32)" fg:x="124885" fg:w="39"/><text x="41.3303%" y="719.50"></text></g><g><title>G1ParTask::work (428 samples, 0.14%)</title><rect x="40.9619%" y="757" width="0.1408%" height="15" fill="rgb(217,54,24)" fg:x="124525" fg:w="428"/><text x="41.2119%" y="767.50"></text></g><g><title>G1STWRefProcTaskProxy::work (64 samples, 0.02%)</title><rect x="41.1027%" y="757" width="0.0211%" height="15" fill="rgb(235,192,0)" fg:x="124953" fg:w="64"/><text x="41.3527%" y="767.50"></text></g><g><title>RefProcPhase3Task::work (35 samples, 0.01%)</title><rect x="41.1122%" y="741" width="0.0115%" height="15" fill="rgb(235,45,9)" fg:x="124982" fg:w="35"/><text x="41.3622%" y="751.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (35 samples, 0.01%)</title><rect x="41.1122%" y="725" width="0.0115%" height="15" fill="rgb(246,42,40)" fg:x="124982" fg:w="35"/><text x="41.3622%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (35 samples, 0.01%)</title><rect x="41.1122%" y="709" width="0.0115%" height="15" fill="rgb(248,111,24)" fg:x="124982" fg:w="35"/><text x="41.3622%" y="719.50"></text></g><g><title>SpinPause (34 samples, 0.01%)</title><rect x="41.1126%" y="693" width="0.0112%" height="15" fill="rgb(249,65,22)" fg:x="124983" fg:w="34"/><text x="41.3626%" y="703.50"></text></g><g><title>ParallelSPCleanupTask::work (32 samples, 0.01%)</title><rect x="41.1244%" y="757" width="0.0105%" height="15" fill="rgb(238,111,51)" fg:x="125019" fg:w="32"/><text x="41.3744%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (31 samples, 0.01%)</title><rect x="41.1247%" y="741" width="0.0102%" height="15" fill="rgb(250,118,22)" fg:x="125020" fg:w="31"/><text x="41.3747%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.02%)</title><rect x="41.1385%" y="517" width="0.0181%" height="15" fill="rgb(234,84,26)" fg:x="125062" fg:w="55"/><text x="41.3885%" y="527.50"></text></g><g><title>x86_pmu_enable (55 samples, 0.02%)</title><rect x="41.1385%" y="501" width="0.0181%" height="15" fill="rgb(243,172,12)" fg:x="125062" fg:w="55"/><text x="41.3885%" y="511.50"></text></g><g><title>intel_pmu_enable_all (55 samples, 0.02%)</title><rect x="41.1385%" y="485" width="0.0181%" height="15" fill="rgb(236,150,49)" fg:x="125062" fg:w="55"/><text x="41.3885%" y="495.50"></text></g><g><title>native_write_msr (55 samples, 0.02%)</title><rect x="41.1385%" y="469" width="0.0181%" height="15" fill="rgb(225,197,26)" fg:x="125062" fg:w="55"/><text x="41.3885%" y="479.50"></text></g><g><title>finish_task_switch.isra.0 (56 samples, 0.02%)</title><rect x="41.1385%" y="533" width="0.0184%" height="15" fill="rgb(214,17,42)" fg:x="125062" fg:w="56"/><text x="41.3885%" y="543.50"></text></g><g><title>__x64_sys_futex (66 samples, 0.02%)</title><rect x="41.1362%" y="629" width="0.0217%" height="15" fill="rgb(224,165,40)" fg:x="125055" fg:w="66"/><text x="41.3862%" y="639.50"></text></g><g><title>do_futex (66 samples, 0.02%)</title><rect x="41.1362%" y="613" width="0.0217%" height="15" fill="rgb(246,100,4)" fg:x="125055" fg:w="66"/><text x="41.3862%" y="623.50"></text></g><g><title>futex_wait (66 samples, 0.02%)</title><rect x="41.1362%" y="597" width="0.0217%" height="15" fill="rgb(222,103,0)" fg:x="125055" fg:w="66"/><text x="41.3862%" y="607.50"></text></g><g><title>futex_wait_queue_me (65 samples, 0.02%)</title><rect x="41.1366%" y="581" width="0.0214%" height="15" fill="rgb(227,189,26)" fg:x="125056" fg:w="65"/><text x="41.3866%" y="591.50"></text></g><g><title>schedule (65 samples, 0.02%)</title><rect x="41.1366%" y="565" width="0.0214%" height="15" fill="rgb(214,202,17)" fg:x="125056" fg:w="65"/><text x="41.3866%" y="575.50"></text></g><g><title>__schedule (65 samples, 0.02%)</title><rect x="41.1366%" y="549" width="0.0214%" height="15" fill="rgb(229,111,3)" fg:x="125056" fg:w="65"/><text x="41.3866%" y="559.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (74 samples, 0.02%)</title><rect x="41.1359%" y="709" width="0.0243%" height="15" fill="rgb(229,172,15)" fg:x="125054" fg:w="74"/><text x="41.3859%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common (74 samples, 0.02%)</title><rect x="41.1359%" y="693" width="0.0243%" height="15" fill="rgb(230,224,35)" fg:x="125054" fg:w="74"/><text x="41.3859%" y="703.50"></text></g><g><title>__futex_abstimed_wait_common64 (74 samples, 0.02%)</title><rect x="41.1359%" y="677" width="0.0243%" height="15" fill="rgb(251,141,6)" fg:x="125054" fg:w="74"/><text x="41.3859%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.02%)</title><rect x="41.1362%" y="661" width="0.0240%" height="15" fill="rgb(225,208,6)" fg:x="125055" fg:w="73"/><text x="41.3862%" y="671.50"></text></g><g><title>do_syscall_64 (73 samples, 0.02%)</title><rect x="41.1362%" y="645" width="0.0240%" height="15" fill="rgb(246,181,16)" fg:x="125055" fg:w="73"/><text x="41.3862%" y="655.50"></text></g><g><title>__clone3 (618 samples, 0.20%)</title><rect x="40.9573%" y="837" width="0.2033%" height="15" fill="rgb(227,129,36)" fg:x="124511" fg:w="618"/><text x="41.2073%" y="847.50"></text></g><g><title>start_thread (618 samples, 0.20%)</title><rect x="40.9573%" y="821" width="0.2033%" height="15" fill="rgb(248,117,24)" fg:x="124511" fg:w="618"/><text x="41.2073%" y="831.50"></text></g><g><title>thread_native_entry (618 samples, 0.20%)</title><rect x="40.9573%" y="805" width="0.2033%" height="15" fill="rgb(214,185,35)" fg:x="124511" fg:w="618"/><text x="41.2073%" y="815.50"></text></g><g><title>Thread::call_run (618 samples, 0.20%)</title><rect x="40.9573%" y="789" width="0.2033%" height="15" fill="rgb(236,150,34)" fg:x="124511" fg:w="618"/><text x="41.2073%" y="799.50"></text></g><g><title>GangWorker::loop (618 samples, 0.20%)</title><rect x="40.9573%" y="773" width="0.2033%" height="15" fill="rgb(243,228,27)" fg:x="124511" fg:w="618"/><text x="41.2073%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (76 samples, 0.02%)</title><rect x="41.1356%" y="757" width="0.0250%" height="15" fill="rgb(245,77,44)" fg:x="125053" fg:w="76"/><text x="41.3856%" y="767.50"></text></g><g><title>PosixSemaphore::wait (76 samples, 0.02%)</title><rect x="41.1356%" y="741" width="0.0250%" height="15" fill="rgb(235,214,42)" fg:x="125053" fg:w="76"/><text x="41.3856%" y="751.50"></text></g><g><title>__new_sem_wait_slow64 (76 samples, 0.02%)</title><rect x="41.1356%" y="725" width="0.0250%" height="15" fill="rgb(221,74,3)" fg:x="125053" fg:w="76"/><text x="41.3856%" y="735.50"></text></g><g><title>GC_Thread#5 (634 samples, 0.21%)</title><rect x="40.9530%" y="853" width="0.2086%" height="15" fill="rgb(206,121,29)" fg:x="124498" fg:w="634"/><text x="41.2030%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (84 samples, 0.03%)</title><rect x="41.1872%" y="709" width="0.0276%" height="15" fill="rgb(249,131,53)" fg:x="125210" fg:w="84"/><text x="41.4372%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (140 samples, 0.05%)</title><rect x="41.1708%" y="725" width="0.0461%" height="15" fill="rgb(236,170,29)" fg:x="125160" fg:w="140"/><text x="41.4208%" y="735.50"></text></g><g><title>SpinPause (94 samples, 0.03%)</title><rect x="41.2188%" y="725" width="0.0309%" height="15" fill="rgb(247,96,15)" fg:x="125306" fg:w="94"/><text x="41.4688%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (250 samples, 0.08%)</title><rect x="41.1691%" y="741" width="0.0822%" height="15" fill="rgb(211,210,7)" fg:x="125155" fg:w="250"/><text x="41.4191%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (91 samples, 0.03%)</title><rect x="41.2580%" y="645" width="0.0299%" height="15" fill="rgb(240,88,50)" fg:x="125425" fg:w="91"/><text x="41.5080%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (77 samples, 0.03%)</title><rect x="41.2626%" y="629" width="0.0253%" height="15" fill="rgb(209,229,26)" fg:x="125439" fg:w="77"/><text x="41.5126%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (117 samples, 0.04%)</title><rect x="41.2514%" y="661" width="0.0385%" height="15" fill="rgb(210,68,23)" fg:x="125405" fg:w="117"/><text x="41.5014%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (125 samples, 0.04%)</title><rect x="41.2514%" y="741" width="0.0411%" height="15" fill="rgb(229,180,13)" fg:x="125405" fg:w="125"/><text x="41.5014%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (125 samples, 0.04%)</title><rect x="41.2514%" y="725" width="0.0411%" height="15" fill="rgb(236,53,44)" fg:x="125405" fg:w="125"/><text x="41.5014%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (125 samples, 0.04%)</title><rect x="41.2514%" y="709" width="0.0411%" height="15" fill="rgb(244,214,29)" fg:x="125405" fg:w="125"/><text x="41.5014%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (125 samples, 0.04%)</title><rect x="41.2514%" y="693" width="0.0411%" height="15" fill="rgb(220,75,29)" fg:x="125405" fg:w="125"/><text x="41.5014%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (125 samples, 0.04%)</title><rect x="41.2514%" y="677" width="0.0411%" height="15" fill="rgb(214,183,37)" fg:x="125405" fg:w="125"/><text x="41.5014%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (66 samples, 0.02%)</title><rect x="41.2994%" y="677" width="0.0217%" height="15" fill="rgb(239,117,29)" fg:x="125551" fg:w="66"/><text x="41.5494%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (60 samples, 0.02%)</title><rect x="41.3014%" y="661" width="0.0197%" height="15" fill="rgb(237,171,35)" fg:x="125557" fg:w="60"/><text x="41.5514%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (56 samples, 0.02%)</title><rect x="41.3027%" y="645" width="0.0184%" height="15" fill="rgb(229,178,53)" fg:x="125561" fg:w="56"/><text x="41.5527%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (47 samples, 0.02%)</title><rect x="41.3056%" y="629" width="0.0155%" height="15" fill="rgb(210,102,19)" fg:x="125570" fg:w="47"/><text x="41.5556%" y="639.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (68 samples, 0.02%)</title><rect x="41.2991%" y="709" width="0.0224%" height="15" fill="rgb(235,127,22)" fg:x="125550" fg:w="68"/><text x="41.5491%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (67 samples, 0.02%)</title><rect x="41.2994%" y="693" width="0.0220%" height="15" fill="rgb(244,31,31)" fg:x="125551" fg:w="67"/><text x="41.5494%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (41 samples, 0.01%)</title><rect x="41.3218%" y="645" width="0.0135%" height="15" fill="rgb(231,43,21)" fg:x="125619" fg:w="41"/><text x="41.5718%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (39 samples, 0.01%)</title><rect x="41.3224%" y="629" width="0.0128%" height="15" fill="rgb(217,131,35)" fg:x="125621" fg:w="39"/><text x="41.5724%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (119 samples, 0.04%)</title><rect x="41.2991%" y="725" width="0.0391%" height="15" fill="rgb(221,149,4)" fg:x="125550" fg:w="119"/><text x="41.5491%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (51 samples, 0.02%)</title><rect x="41.3214%" y="709" width="0.0168%" height="15" fill="rgb(232,170,28)" fg:x="125618" fg:w="51"/><text x="41.5714%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (51 samples, 0.02%)</title><rect x="41.3214%" y="693" width="0.0168%" height="15" fill="rgb(238,56,10)" fg:x="125618" fg:w="51"/><text x="41.5714%" y="703.50"></text></g><g><title>JavaThread::oops_do (51 samples, 0.02%)</title><rect x="41.3214%" y="677" width="0.0168%" height="15" fill="rgb(235,196,14)" fg:x="125618" fg:w="51"/><text x="41.5714%" y="687.50"></text></g><g><title>frame::oops_interpreted_do (50 samples, 0.02%)</title><rect x="41.3218%" y="661" width="0.0164%" height="15" fill="rgb(216,45,48)" fg:x="125619" fg:w="50"/><text x="41.5718%" y="671.50"></text></g><g><title>G1ParTask::work (528 samples, 0.17%)</title><rect x="41.1691%" y="757" width="0.1737%" height="15" fill="rgb(238,213,17)" fg:x="125155" fg:w="528"/><text x="41.4191%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (133 samples, 0.04%)</title><rect x="41.2991%" y="741" width="0.0437%" height="15" fill="rgb(212,13,2)" fg:x="125550" fg:w="133"/><text x="41.5491%" y="751.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (38 samples, 0.01%)</title><rect x="41.3441%" y="725" width="0.0125%" height="15" fill="rgb(240,114,20)" fg:x="125687" fg:w="38"/><text x="41.5941%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (50 samples, 0.02%)</title><rect x="41.3441%" y="741" width="0.0164%" height="15" fill="rgb(228,41,40)" fg:x="125687" fg:w="50"/><text x="41.5941%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (81 samples, 0.03%)</title><rect x="41.3441%" y="757" width="0.0266%" height="15" fill="rgb(244,132,35)" fg:x="125687" fg:w="81"/><text x="41.5941%" y="767.50"></text></g><g><title>RefProcPhase3Task::work (31 samples, 0.01%)</title><rect x="41.3606%" y="741" width="0.0102%" height="15" fill="rgb(253,189,4)" fg:x="125737" fg:w="31"/><text x="41.6106%" y="751.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (31 samples, 0.01%)</title><rect x="41.3606%" y="725" width="0.0102%" height="15" fill="rgb(224,37,19)" fg:x="125737" fg:w="31"/><text x="41.6106%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (31 samples, 0.01%)</title><rect x="41.3606%" y="709" width="0.0102%" height="15" fill="rgb(235,223,18)" fg:x="125737" fg:w="31"/><text x="41.6106%" y="719.50"></text></g><g><title>ParallelSPCleanupTask::work (39 samples, 0.01%)</title><rect x="41.3708%" y="757" width="0.0128%" height="15" fill="rgb(235,163,25)" fg:x="125768" fg:w="39"/><text x="41.6208%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (32 samples, 0.01%)</title><rect x="41.3731%" y="741" width="0.0105%" height="15" fill="rgb(217,145,28)" fg:x="125775" fg:w="32"/><text x="41.6231%" y="751.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.01%)</title><rect x="41.3846%" y="629" width="0.0115%" height="15" fill="rgb(223,223,32)" fg:x="125810" fg:w="35"/><text x="41.6346%" y="639.50"></text></g><g><title>do_futex (35 samples, 0.01%)</title><rect x="41.3846%" y="613" width="0.0115%" height="15" fill="rgb(227,189,39)" fg:x="125810" fg:w="35"/><text x="41.6346%" y="623.50"></text></g><g><title>futex_wait (35 samples, 0.01%)</title><rect x="41.3846%" y="597" width="0.0115%" height="15" fill="rgb(248,10,22)" fg:x="125810" fg:w="35"/><text x="41.6346%" y="607.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.01%)</title><rect x="41.3846%" y="581" width="0.0115%" height="15" fill="rgb(248,46,39)" fg:x="125810" fg:w="35"/><text x="41.6346%" y="591.50"></text></g><g><title>schedule (35 samples, 0.01%)</title><rect x="41.3846%" y="565" width="0.0115%" height="15" fill="rgb(248,113,48)" fg:x="125810" fg:w="35"/><text x="41.6346%" y="575.50"></text></g><g><title>__schedule (35 samples, 0.01%)</title><rect x="41.3846%" y="549" width="0.0115%" height="15" fill="rgb(245,16,25)" fg:x="125810" fg:w="35"/><text x="41.6346%" y="559.50"></text></g><g><title>__clone3 (701 samples, 0.23%)</title><rect x="41.1672%" y="837" width="0.2306%" height="15" fill="rgb(249,152,16)" fg:x="125149" fg:w="701"/><text x="41.4172%" y="847.50"></text></g><g><title>start_thread (701 samples, 0.23%)</title><rect x="41.1672%" y="821" width="0.2306%" height="15" fill="rgb(250,16,1)" fg:x="125149" fg:w="701"/><text x="41.4172%" y="831.50"></text></g><g><title>thread_native_entry (701 samples, 0.23%)</title><rect x="41.1672%" y="805" width="0.2306%" height="15" fill="rgb(249,138,3)" fg:x="125149" fg:w="701"/><text x="41.4172%" y="815.50"></text></g><g><title>Thread::call_run (701 samples, 0.23%)</title><rect x="41.1672%" y="789" width="0.2306%" height="15" fill="rgb(227,71,41)" fg:x="125149" fg:w="701"/><text x="41.4172%" y="799.50"></text></g><g><title>GangWorker::loop (701 samples, 0.23%)</title><rect x="41.1672%" y="773" width="0.2306%" height="15" fill="rgb(209,184,23)" fg:x="125149" fg:w="701"/><text x="41.4172%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (42 samples, 0.01%)</title><rect x="41.3839%" y="757" width="0.0138%" height="15" fill="rgb(223,215,31)" fg:x="125808" fg:w="42"/><text x="41.6339%" y="767.50"></text></g><g><title>PosixSemaphore::wait (42 samples, 0.01%)</title><rect x="41.3839%" y="741" width="0.0138%" height="15" fill="rgb(210,146,28)" fg:x="125808" fg:w="42"/><text x="41.6339%" y="751.50"></text></g><g><title>__new_sem_wait_slow64 (42 samples, 0.01%)</title><rect x="41.3839%" y="725" width="0.0138%" height="15" fill="rgb(209,183,41)" fg:x="125808" fg:w="42"/><text x="41.6339%" y="735.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (40 samples, 0.01%)</title><rect x="41.3846%" y="709" width="0.0132%" height="15" fill="rgb(209,224,45)" fg:x="125810" fg:w="40"/><text x="41.6346%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common (40 samples, 0.01%)</title><rect x="41.3846%" y="693" width="0.0132%" height="15" fill="rgb(224,209,51)" fg:x="125810" fg:w="40"/><text x="41.6346%" y="703.50"></text></g><g><title>__futex_abstimed_wait_common64 (40 samples, 0.01%)</title><rect x="41.3846%" y="677" width="0.0132%" height="15" fill="rgb(223,17,39)" fg:x="125810" fg:w="40"/><text x="41.6346%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.01%)</title><rect x="41.3846%" y="661" width="0.0132%" height="15" fill="rgb(234,204,37)" fg:x="125810" fg:w="40"/><text x="41.6346%" y="671.50"></text></g><g><title>do_syscall_64 (40 samples, 0.01%)</title><rect x="41.3846%" y="645" width="0.0132%" height="15" fill="rgb(236,120,5)" fg:x="125810" fg:w="40"/><text x="41.6346%" y="655.50"></text></g><g><title>GC_Thread#6 (721 samples, 0.24%)</title><rect x="41.1616%" y="853" width="0.2372%" height="15" fill="rgb(248,97,27)" fg:x="125132" fg:w="721"/><text x="41.4116%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (75 samples, 0.02%)</title><rect x="41.4234%" y="709" width="0.0247%" height="15" fill="rgb(240,66,17)" fg:x="125928" fg:w="75"/><text x="41.6734%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (121 samples, 0.04%)</title><rect x="41.4103%" y="725" width="0.0398%" height="15" fill="rgb(210,79,3)" fg:x="125888" fg:w="121"/><text x="41.6603%" y="735.50"></text></g><g><title>SpinPause (89 samples, 0.03%)</title><rect x="41.4504%" y="725" width="0.0293%" height="15" fill="rgb(214,176,27)" fg:x="126010" fg:w="89"/><text x="41.7004%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (219 samples, 0.07%)</title><rect x="41.4083%" y="741" width="0.0720%" height="15" fill="rgb(235,185,3)" fg:x="125882" fg:w="219"/><text x="41.6583%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (79 samples, 0.03%)</title><rect x="41.4925%" y="629" width="0.0260%" height="15" fill="rgb(227,24,12)" fg:x="126138" fg:w="79"/><text x="41.7425%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (96 samples, 0.03%)</title><rect x="41.4872%" y="645" width="0.0316%" height="15" fill="rgb(252,169,48)" fg:x="126122" fg:w="96"/><text x="41.7372%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (123 samples, 0.04%)</title><rect x="41.4803%" y="661" width="0.0405%" height="15" fill="rgb(212,65,1)" fg:x="126101" fg:w="123"/><text x="41.7303%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (132 samples, 0.04%)</title><rect x="41.4803%" y="741" width="0.0434%" height="15" fill="rgb(242,39,24)" fg:x="126101" fg:w="132"/><text x="41.7303%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (132 samples, 0.04%)</title><rect x="41.4803%" y="725" width="0.0434%" height="15" fill="rgb(249,32,23)" fg:x="126101" fg:w="132"/><text x="41.7303%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (132 samples, 0.04%)</title><rect x="41.4803%" y="709" width="0.0434%" height="15" fill="rgb(251,195,23)" fg:x="126101" fg:w="132"/><text x="41.7303%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (132 samples, 0.04%)</title><rect x="41.4803%" y="693" width="0.0434%" height="15" fill="rgb(236,174,8)" fg:x="126101" fg:w="132"/><text x="41.7303%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (132 samples, 0.04%)</title><rect x="41.4803%" y="677" width="0.0434%" height="15" fill="rgb(220,197,8)" fg:x="126101" fg:w="132"/><text x="41.7303%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (35 samples, 0.01%)</title><rect x="41.5237%" y="741" width="0.0115%" height="15" fill="rgb(240,108,37)" fg:x="126233" fg:w="35"/><text x="41.7737%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (35 samples, 0.01%)</title><rect x="41.5237%" y="725" width="0.0115%" height="15" fill="rgb(232,176,24)" fg:x="126233" fg:w="35"/><text x="41.7737%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (35 samples, 0.01%)</title><rect x="41.5237%" y="709" width="0.0115%" height="15" fill="rgb(243,35,29)" fg:x="126233" fg:w="35"/><text x="41.7737%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (40 samples, 0.01%)</title><rect x="41.5520%" y="613" width="0.0132%" height="15" fill="rgb(210,37,18)" fg:x="126319" fg:w="40"/><text x="41.8020%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (34 samples, 0.01%)</title><rect x="41.5540%" y="597" width="0.0112%" height="15" fill="rgb(224,184,40)" fg:x="126325" fg:w="34"/><text x="41.8040%" y="607.50"></text></g><g><title>InterpreterOopMap::iterate_oop (65 samples, 0.02%)</title><rect x="41.5481%" y="645" width="0.0214%" height="15" fill="rgb(236,39,29)" fg:x="126307" fg:w="65"/><text x="41.7981%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (64 samples, 0.02%)</title><rect x="41.5484%" y="629" width="0.0211%" height="15" fill="rgb(232,48,39)" fg:x="126308" fg:w="64"/><text x="41.7984%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (110 samples, 0.04%)</title><rect x="41.5356%" y="725" width="0.0362%" height="15" fill="rgb(236,34,42)" fg:x="126269" fg:w="110"/><text x="41.7856%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (90 samples, 0.03%)</title><rect x="41.5422%" y="709" width="0.0296%" height="15" fill="rgb(243,106,37)" fg:x="126289" fg:w="90"/><text x="41.7922%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (90 samples, 0.03%)</title><rect x="41.5422%" y="693" width="0.0296%" height="15" fill="rgb(218,96,6)" fg:x="126289" fg:w="90"/><text x="41.7922%" y="703.50"></text></g><g><title>JavaThread::oops_do (90 samples, 0.03%)</title><rect x="41.5422%" y="677" width="0.0296%" height="15" fill="rgb(235,130,12)" fg:x="126289" fg:w="90"/><text x="41.7922%" y="687.50"></text></g><g><title>frame::oops_interpreted_do (72 samples, 0.02%)</title><rect x="41.5481%" y="661" width="0.0237%" height="15" fill="rgb(231,95,0)" fg:x="126307" fg:w="72"/><text x="41.7981%" y="671.50"></text></g><g><title>G1ParTask::work (510 samples, 0.17%)</title><rect x="41.4083%" y="757" width="0.1678%" height="15" fill="rgb(228,12,23)" fg:x="125882" fg:w="510"/><text x="41.6583%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (124 samples, 0.04%)</title><rect x="41.5353%" y="741" width="0.0408%" height="15" fill="rgb(216,12,1)" fg:x="126268" fg:w="124"/><text x="41.7853%" y="751.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (37 samples, 0.01%)</title><rect x="41.5803%" y="725" width="0.0122%" height="15" fill="rgb(219,59,3)" fg:x="126405" fg:w="37"/><text x="41.8303%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (45 samples, 0.01%)</title><rect x="41.5803%" y="741" width="0.0148%" height="15" fill="rgb(215,208,46)" fg:x="126405" fg:w="45"/><text x="41.8303%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (79 samples, 0.03%)</title><rect x="41.5803%" y="757" width="0.0260%" height="15" fill="rgb(254,224,29)" fg:x="126405" fg:w="79"/><text x="41.8303%" y="767.50"></text></g><g><title>RefProcPhase3Task::work (34 samples, 0.01%)</title><rect x="41.5951%" y="741" width="0.0112%" height="15" fill="rgb(232,14,29)" fg:x="126450" fg:w="34"/><text x="41.8451%" y="751.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (34 samples, 0.01%)</title><rect x="41.5951%" y="725" width="0.0112%" height="15" fill="rgb(208,45,52)" fg:x="126450" fg:w="34"/><text x="41.8451%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (34 samples, 0.01%)</title><rect x="41.5951%" y="709" width="0.0112%" height="15" fill="rgb(234,191,28)" fg:x="126450" fg:w="34"/><text x="41.8451%" y="719.50"></text></g><g><title>SpinPause (34 samples, 0.01%)</title><rect x="41.5951%" y="693" width="0.0112%" height="15" fill="rgb(244,67,43)" fg:x="126450" fg:w="34"/><text x="41.8451%" y="703.50"></text></g><g><title>ParallelSPCleanupTask::work (31 samples, 0.01%)</title><rect x="41.6066%" y="757" width="0.0102%" height="15" fill="rgb(236,189,24)" fg:x="126485" fg:w="31"/><text x="41.8566%" y="767.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.01%)</title><rect x="41.6168%" y="629" width="0.0105%" height="15" fill="rgb(239,214,33)" fg:x="126516" fg:w="32"/><text x="41.8668%" y="639.50"></text></g><g><title>do_futex (32 samples, 0.01%)</title><rect x="41.6168%" y="613" width="0.0105%" height="15" fill="rgb(226,176,41)" fg:x="126516" fg:w="32"/><text x="41.8668%" y="623.50"></text></g><g><title>futex_wait (32 samples, 0.01%)</title><rect x="41.6168%" y="597" width="0.0105%" height="15" fill="rgb(248,47,8)" fg:x="126516" fg:w="32"/><text x="41.8668%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.01%)</title><rect x="41.6168%" y="661" width="0.0122%" height="15" fill="rgb(218,81,44)" fg:x="126516" fg:w="37"/><text x="41.8668%" y="671.50"></text></g><g><title>do_syscall_64 (37 samples, 0.01%)</title><rect x="41.6168%" y="645" width="0.0122%" height="15" fill="rgb(213,98,6)" fg:x="126516" fg:w="37"/><text x="41.8668%" y="655.50"></text></g><g><title>__clone3 (687 samples, 0.23%)</title><rect x="41.4033%" y="837" width="0.2260%" height="15" fill="rgb(222,85,22)" fg:x="125867" fg:w="687"/><text x="41.6533%" y="847.50"></text></g><g><title>start_thread (687 samples, 0.23%)</title><rect x="41.4033%" y="821" width="0.2260%" height="15" fill="rgb(239,46,39)" fg:x="125867" fg:w="687"/><text x="41.6533%" y="831.50"></text></g><g><title>thread_native_entry (687 samples, 0.23%)</title><rect x="41.4033%" y="805" width="0.2260%" height="15" fill="rgb(237,12,29)" fg:x="125867" fg:w="687"/><text x="41.6533%" y="815.50"></text></g><g><title>Thread::call_run (687 samples, 0.23%)</title><rect x="41.4033%" y="789" width="0.2260%" height="15" fill="rgb(214,77,8)" fg:x="125867" fg:w="687"/><text x="41.6533%" y="799.50"></text></g><g><title>GangWorker::loop (687 samples, 0.23%)</title><rect x="41.4033%" y="773" width="0.2260%" height="15" fill="rgb(217,168,37)" fg:x="125867" fg:w="687"/><text x="41.6533%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (38 samples, 0.01%)</title><rect x="41.6168%" y="757" width="0.0125%" height="15" fill="rgb(221,217,23)" fg:x="126516" fg:w="38"/><text x="41.8668%" y="767.50"></text></g><g><title>PosixSemaphore::wait (38 samples, 0.01%)</title><rect x="41.6168%" y="741" width="0.0125%" height="15" fill="rgb(243,229,36)" fg:x="126516" fg:w="38"/><text x="41.8668%" y="751.50"></text></g><g><title>__new_sem_wait_slow64 (38 samples, 0.01%)</title><rect x="41.6168%" y="725" width="0.0125%" height="15" fill="rgb(251,163,40)" fg:x="126516" fg:w="38"/><text x="41.8668%" y="735.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (38 samples, 0.01%)</title><rect x="41.6168%" y="709" width="0.0125%" height="15" fill="rgb(237,222,12)" fg:x="126516" fg:w="38"/><text x="41.8668%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common (38 samples, 0.01%)</title><rect x="41.6168%" y="693" width="0.0125%" height="15" fill="rgb(248,132,6)" fg:x="126516" fg:w="38"/><text x="41.8668%" y="703.50"></text></g><g><title>__futex_abstimed_wait_common64 (38 samples, 0.01%)</title><rect x="41.6168%" y="677" width="0.0125%" height="15" fill="rgb(227,167,50)" fg:x="126516" fg:w="38"/><text x="41.8668%" y="687.50"></text></g><g><title>GC_Thread#7 (709 samples, 0.23%)</title><rect x="41.3987%" y="853" width="0.2332%" height="15" fill="rgb(242,84,37)" fg:x="125853" fg:w="709"/><text x="41.6487%" y="863.50"></text></g><g><title>[perf-720743.map] (116 samples, 0.04%)</title><rect x="41.6445%" y="837" width="0.0382%" height="15" fill="rgb(212,4,50)" fg:x="126600" fg:w="116"/><text x="41.8945%" y="847.50"></text></g><g><title>Service_Thread (130 samples, 0.04%)</title><rect x="41.6415%" y="853" width="0.0428%" height="15" fill="rgb(230,228,32)" fg:x="126591" fg:w="130"/><text x="41.8915%" y="863.50"></text></g><g><title>finish_task_switch.isra.0 (103 samples, 0.03%)</title><rect x="41.7283%" y="485" width="0.0339%" height="15" fill="rgb(248,217,23)" fg:x="126855" fg:w="103"/><text x="41.9783%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (102 samples, 0.03%)</title><rect x="41.7287%" y="469" width="0.0336%" height="15" fill="rgb(238,197,32)" fg:x="126856" fg:w="102"/><text x="41.9787%" y="479.50"></text></g><g><title>x86_pmu_enable (102 samples, 0.03%)</title><rect x="41.7287%" y="453" width="0.0336%" height="15" fill="rgb(236,106,1)" fg:x="126856" fg:w="102"/><text x="41.9787%" y="463.50"></text></g><g><title>intel_pmu_enable_all (102 samples, 0.03%)</title><rect x="41.7287%" y="437" width="0.0336%" height="15" fill="rgb(219,228,13)" fg:x="126856" fg:w="102"/><text x="41.9787%" y="447.50"></text></g><g><title>native_write_msr (102 samples, 0.03%)</title><rect x="41.7287%" y="421" width="0.0336%" height="15" fill="rgb(238,30,35)" fg:x="126856" fg:w="102"/><text x="41.9787%" y="431.50"></text></g><g><title>__schedule (169 samples, 0.06%)</title><rect x="41.7168%" y="501" width="0.0556%" height="15" fill="rgb(236,70,23)" fg:x="126820" fg:w="169"/><text x="41.9668%" y="511.50"></text></g><g><title>futex_wait_queue_me (189 samples, 0.06%)</title><rect x="41.7109%" y="533" width="0.0622%" height="15" fill="rgb(249,104,48)" fg:x="126802" fg:w="189"/><text x="41.9609%" y="543.50"></text></g><g><title>schedule (173 samples, 0.06%)</title><rect x="41.7162%" y="517" width="0.0569%" height="15" fill="rgb(254,117,50)" fg:x="126818" fg:w="173"/><text x="41.9662%" y="527.50"></text></g><g><title>futex_wait (199 samples, 0.07%)</title><rect x="41.7103%" y="549" width="0.0655%" height="15" fill="rgb(223,152,4)" fg:x="126800" fg:w="199"/><text x="41.9603%" y="559.50"></text></g><g><title>do_futex (203 samples, 0.07%)</title><rect x="41.7103%" y="565" width="0.0668%" height="15" fill="rgb(245,6,2)" fg:x="126800" fg:w="203"/><text x="41.9603%" y="575.50"></text></g><g><title>__x64_sys_futex (208 samples, 0.07%)</title><rect x="41.7099%" y="581" width="0.0684%" height="15" fill="rgb(249,150,24)" fg:x="126799" fg:w="208"/><text x="41.9599%" y="591.50"></text></g><g><title>do_syscall_64 (229 samples, 0.08%)</title><rect x="41.7099%" y="597" width="0.0753%" height="15" fill="rgb(228,185,42)" fg:x="126799" fg:w="229"/><text x="41.9599%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (231 samples, 0.08%)</title><rect x="41.7096%" y="613" width="0.0760%" height="15" fill="rgb(226,39,33)" fg:x="126798" fg:w="231"/><text x="41.9596%" y="623.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (239 samples, 0.08%)</title><rect x="41.7073%" y="661" width="0.0786%" height="15" fill="rgb(221,166,19)" fg:x="126791" fg:w="239"/><text x="41.9573%" y="671.50"></text></g><g><title>__futex_abstimed_wait_common (239 samples, 0.08%)</title><rect x="41.7073%" y="645" width="0.0786%" height="15" fill="rgb(209,109,2)" fg:x="126791" fg:w="239"/><text x="41.9573%" y="655.50"></text></g><g><title>__futex_abstimed_wait_common64 (238 samples, 0.08%)</title><rect x="41.7076%" y="629" width="0.0783%" height="15" fill="rgb(252,216,26)" fg:x="126792" fg:w="238"/><text x="41.9576%" y="639.50"></text></g><g><title>___pthread_cond_timedwait64 (248 samples, 0.08%)</title><rect x="41.7063%" y="693" width="0.0816%" height="15" fill="rgb(227,173,36)" fg:x="126788" fg:w="248"/><text x="41.9563%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (247 samples, 0.08%)</title><rect x="41.7066%" y="677" width="0.0812%" height="15" fill="rgb(209,90,7)" fg:x="126789" fg:w="247"/><text x="41.9566%" y="687.50"></text></g><g><title>Monitor::wait (288 samples, 0.09%)</title><rect x="41.7004%" y="741" width="0.0947%" height="15" fill="rgb(250,194,11)" fg:x="126770" fg:w="288"/><text x="41.9504%" y="751.50"></text></g><g><title>Monitor::IWait (285 samples, 0.09%)</title><rect x="41.7014%" y="725" width="0.0937%" height="15" fill="rgb(220,72,50)" fg:x="126773" fg:w="285"/><text x="41.9514%" y="735.50"></text></g><g><title>os::PlatformEvent::park (275 samples, 0.09%)</title><rect x="41.7047%" y="709" width="0.0905%" height="15" fill="rgb(222,106,48)" fg:x="126783" fg:w="275"/><text x="41.9547%" y="719.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (129 samples, 0.04%)</title><rect x="41.8126%" y="693" width="0.0424%" height="15" fill="rgb(216,220,45)" fg:x="127111" fg:w="129"/><text x="42.0626%" y="703.50"></text></g><g><title>NMethodSweeper::process_compiled_method (187 samples, 0.06%)</title><rect x="41.8109%" y="709" width="0.0615%" height="15" fill="rgb(234,112,18)" fg:x="127106" fg:w="187"/><text x="42.0609%" y="719.50"></text></g><g><title>NMethodSweeper::possibly_sweep (239 samples, 0.08%)</title><rect x="41.7951%" y="741" width="0.0786%" height="15" fill="rgb(206,179,9)" fg:x="127058" fg:w="239"/><text x="42.0451%" y="751.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (223 samples, 0.07%)</title><rect x="41.8004%" y="725" width="0.0734%" height="15" fill="rgb(215,115,40)" fg:x="127074" fg:w="223"/><text x="42.0504%" y="735.50"></text></g><g><title>__clone3 (555 samples, 0.18%)</title><rect x="41.6958%" y="837" width="0.1826%" height="15" fill="rgb(222,69,34)" fg:x="126756" fg:w="555"/><text x="41.9458%" y="847.50"></text></g><g><title>start_thread (555 samples, 0.18%)</title><rect x="41.6958%" y="821" width="0.1826%" height="15" fill="rgb(209,161,10)" fg:x="126756" fg:w="555"/><text x="41.9458%" y="831.50"></text></g><g><title>thread_native_entry (555 samples, 0.18%)</title><rect x="41.6958%" y="805" width="0.1826%" height="15" fill="rgb(217,6,38)" fg:x="126756" fg:w="555"/><text x="41.9458%" y="815.50"></text></g><g><title>Thread::call_run (555 samples, 0.18%)</title><rect x="41.6958%" y="789" width="0.1826%" height="15" fill="rgb(229,229,48)" fg:x="126756" fg:w="555"/><text x="41.9458%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (555 samples, 0.18%)</title><rect x="41.6958%" y="773" width="0.1826%" height="15" fill="rgb(225,21,28)" fg:x="126756" fg:w="555"/><text x="41.9458%" y="783.50"></text></g><g><title>NMethodSweeper::sweeper_loop (554 samples, 0.18%)</title><rect x="41.6961%" y="757" width="0.1822%" height="15" fill="rgb(206,33,13)" fg:x="126757" fg:w="554"/><text x="41.9461%" y="767.50"></text></g><g><title>Sweeper_thread (586 samples, 0.19%)</title><rect x="41.6879%" y="853" width="0.1928%" height="15" fill="rgb(242,178,17)" fg:x="126732" fg:w="586"/><text x="41.9379%" y="863.50"></text></g><g><title>[perf-720743.map] (210 samples, 0.07%)</title><rect x="41.8836%" y="837" width="0.0691%" height="15" fill="rgb(220,162,5)" fg:x="127327" fg:w="210"/><text x="42.1336%" y="847.50"></text></g><g><title>Thread-0 (232 samples, 0.08%)</title><rect x="41.8806%" y="853" width="0.0763%" height="15" fill="rgb(210,33,43)" fg:x="127318" fg:w="232"/><text x="42.1306%" y="863.50"></text></g><g><title>__x64_sys_futex (33 samples, 0.01%)</title><rect x="41.9612%" y="581" width="0.0109%" height="15" fill="rgb(216,116,54)" fg:x="127563" fg:w="33"/><text x="42.2112%" y="591.50"></text></g><g><title>do_futex (33 samples, 0.01%)</title><rect x="41.9612%" y="565" width="0.0109%" height="15" fill="rgb(249,92,24)" fg:x="127563" fg:w="33"/><text x="42.2112%" y="575.50"></text></g><g><title>futex_wait (32 samples, 0.01%)</title><rect x="41.9616%" y="549" width="0.0105%" height="15" fill="rgb(231,189,14)" fg:x="127564" fg:w="32"/><text x="42.2116%" y="559.50"></text></g><g><title>___pthread_cond_timedwait64 (36 samples, 0.01%)</title><rect x="41.9609%" y="693" width="0.0118%" height="15" fill="rgb(230,8,41)" fg:x="127562" fg:w="36"/><text x="42.2109%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (36 samples, 0.01%)</title><rect x="41.9609%" y="677" width="0.0118%" height="15" fill="rgb(249,7,27)" fg:x="127562" fg:w="36"/><text x="42.2109%" y="687.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (36 samples, 0.01%)</title><rect x="41.9609%" y="661" width="0.0118%" height="15" fill="rgb(232,86,5)" fg:x="127562" fg:w="36"/><text x="42.2109%" y="671.50"></text></g><g><title>__futex_abstimed_wait_common (35 samples, 0.01%)</title><rect x="41.9612%" y="645" width="0.0115%" height="15" fill="rgb(224,175,18)" fg:x="127563" fg:w="35"/><text x="42.2112%" y="655.50"></text></g><g><title>__futex_abstimed_wait_common64 (35 samples, 0.01%)</title><rect x="41.9612%" y="629" width="0.0115%" height="15" fill="rgb(220,129,12)" fg:x="127563" fg:w="35"/><text x="42.2112%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.01%)</title><rect x="41.9612%" y="613" width="0.0115%" height="15" fill="rgb(210,19,36)" fg:x="127563" fg:w="35"/><text x="42.2112%" y="623.50"></text></g><g><title>do_syscall_64 (35 samples, 0.01%)</title><rect x="41.9612%" y="597" width="0.0115%" height="15" fill="rgb(219,96,14)" fg:x="127563" fg:w="35"/><text x="42.2112%" y="607.50"></text></g><g><title>Monitor::wait (40 samples, 0.01%)</title><rect x="41.9599%" y="741" width="0.0132%" height="15" fill="rgb(249,106,1)" fg:x="127559" fg:w="40"/><text x="42.2099%" y="751.50"></text></g><g><title>Monitor::IWait (40 samples, 0.01%)</title><rect x="41.9599%" y="725" width="0.0132%" height="15" fill="rgb(249,155,20)" fg:x="127559" fg:w="40"/><text x="42.2099%" y="735.50"></text></g><g><title>os::PlatformEvent::park (37 samples, 0.01%)</title><rect x="41.9609%" y="709" width="0.0122%" height="15" fill="rgb(244,168,9)" fg:x="127562" fg:w="37"/><text x="42.2109%" y="719.50"></text></g><g><title>VM_Periodic_Tas (50 samples, 0.02%)</title><rect x="41.9570%" y="853" width="0.0164%" height="15" fill="rgb(216,23,50)" fg:x="127550" fg:w="50"/><text x="42.2070%" y="863.50"></text></g><g><title>__clone3 (47 samples, 0.02%)</title><rect x="41.9579%" y="837" width="0.0155%" height="15" fill="rgb(224,219,20)" fg:x="127553" fg:w="47"/><text x="42.2079%" y="847.50"></text></g><g><title>start_thread (47 samples, 0.02%)</title><rect x="41.9579%" y="821" width="0.0155%" height="15" fill="rgb(222,156,15)" fg:x="127553" fg:w="47"/><text x="42.2079%" y="831.50"></text></g><g><title>thread_native_entry (47 samples, 0.02%)</title><rect x="41.9579%" y="805" width="0.0155%" height="15" fill="rgb(231,97,17)" fg:x="127553" fg:w="47"/><text x="42.2079%" y="815.50"></text></g><g><title>Thread::call_run (47 samples, 0.02%)</title><rect x="41.9579%" y="789" width="0.0155%" height="15" fill="rgb(218,70,48)" fg:x="127553" fg:w="47"/><text x="42.2079%" y="799.50"></text></g><g><title>WatcherThread::run (47 samples, 0.02%)</title><rect x="41.9579%" y="773" width="0.0155%" height="15" fill="rgb(212,196,52)" fg:x="127553" fg:w="47"/><text x="42.2079%" y="783.50"></text></g><g><title>WatcherThread::sleep (41 samples, 0.01%)</title><rect x="41.9599%" y="757" width="0.0135%" height="15" fill="rgb(243,203,18)" fg:x="127559" fg:w="41"/><text x="42.2099%" y="767.50"></text></g><g><title>[unknown] (119 samples, 0.04%)</title><rect x="41.9777%" y="837" width="0.0391%" height="15" fill="rgb(252,125,41)" fg:x="127613" fg:w="119"/><text x="42.2277%" y="847.50"></text></g><g><title>vframe::sender (115 samples, 0.04%)</title><rect x="41.9790%" y="821" width="0.0378%" height="15" fill="rgb(223,180,33)" fg:x="127617" fg:w="115"/><text x="42.2290%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.01%)</title><rect x="42.0270%" y="469" width="0.0141%" height="15" fill="rgb(254,159,46)" fg:x="127763" fg:w="43"/><text x="42.2770%" y="479.50"></text></g><g><title>x86_pmu_enable (43 samples, 0.01%)</title><rect x="42.0270%" y="453" width="0.0141%" height="15" fill="rgb(254,38,10)" fg:x="127763" fg:w="43"/><text x="42.2770%" y="463.50"></text></g><g><title>intel_pmu_enable_all (42 samples, 0.01%)</title><rect x="42.0274%" y="437" width="0.0138%" height="15" fill="rgb(208,217,32)" fg:x="127764" fg:w="42"/><text x="42.2774%" y="447.50"></text></g><g><title>native_write_msr (42 samples, 0.01%)</title><rect x="42.0274%" y="421" width="0.0138%" height="15" fill="rgb(221,120,13)" fg:x="127764" fg:w="42"/><text x="42.2774%" y="431.50"></text></g><g><title>finish_task_switch.isra.0 (45 samples, 0.01%)</title><rect x="42.0267%" y="485" width="0.0148%" height="15" fill="rgb(246,54,52)" fg:x="127762" fg:w="45"/><text x="42.2767%" y="495.50"></text></g><g><title>__schedule (48 samples, 0.02%)</title><rect x="42.0260%" y="501" width="0.0158%" height="15" fill="rgb(242,34,25)" fg:x="127760" fg:w="48"/><text x="42.2760%" y="511.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.02%)</title><rect x="42.0231%" y="581" width="0.0191%" height="15" fill="rgb(247,209,9)" fg:x="127751" fg:w="58"/><text x="42.2731%" y="591.50"></text></g><g><title>do_futex (57 samples, 0.02%)</title><rect x="42.0234%" y="565" width="0.0187%" height="15" fill="rgb(228,71,26)" fg:x="127752" fg:w="57"/><text x="42.2734%" y="575.50"></text></g><g><title>futex_wait (57 samples, 0.02%)</title><rect x="42.0234%" y="549" width="0.0187%" height="15" fill="rgb(222,145,49)" fg:x="127752" fg:w="57"/><text x="42.2734%" y="559.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.02%)</title><rect x="42.0244%" y="533" width="0.0178%" height="15" fill="rgb(218,121,17)" fg:x="127755" fg:w="54"/><text x="42.2744%" y="543.50"></text></g><g><title>schedule (50 samples, 0.02%)</title><rect x="42.0257%" y="517" width="0.0164%" height="15" fill="rgb(244,50,7)" fg:x="127759" fg:w="50"/><text x="42.2757%" y="527.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (61 samples, 0.02%)</title><rect x="42.0227%" y="661" width="0.0201%" height="15" fill="rgb(246,229,37)" fg:x="127750" fg:w="61"/><text x="42.2727%" y="671.50"></text></g><g><title>__futex_abstimed_wait_common (61 samples, 0.02%)</title><rect x="42.0227%" y="645" width="0.0201%" height="15" fill="rgb(225,18,5)" fg:x="127750" fg:w="61"/><text x="42.2727%" y="655.50"></text></g><g><title>__futex_abstimed_wait_common64 (61 samples, 0.02%)</title><rect x="42.0227%" y="629" width="0.0201%" height="15" fill="rgb(213,204,8)" fg:x="127750" fg:w="61"/><text x="42.2727%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.02%)</title><rect x="42.0227%" y="613" width="0.0201%" height="15" fill="rgb(238,103,6)" fg:x="127750" fg:w="61"/><text x="42.2727%" y="623.50"></text></g><g><title>do_syscall_64 (60 samples, 0.02%)</title><rect x="42.0231%" y="597" width="0.0197%" height="15" fill="rgb(222,25,35)" fg:x="127751" fg:w="60"/><text x="42.2731%" y="607.50"></text></g><g><title>___pthread_cond_timedwait64 (63 samples, 0.02%)</title><rect x="42.0224%" y="693" width="0.0207%" height="15" fill="rgb(213,203,35)" fg:x="127749" fg:w="63"/><text x="42.2724%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (62 samples, 0.02%)</title><rect x="42.0227%" y="677" width="0.0204%" height="15" fill="rgb(221,79,53)" fg:x="127750" fg:w="62"/><text x="42.2727%" y="687.50"></text></g><g><title>Monitor::wait (65 samples, 0.02%)</title><rect x="42.0221%" y="741" width="0.0214%" height="15" fill="rgb(243,200,35)" fg:x="127748" fg:w="65"/><text x="42.2721%" y="751.50"></text></g><g><title>Monitor::IWait (64 samples, 0.02%)</title><rect x="42.0224%" y="725" width="0.0211%" height="15" fill="rgb(248,60,25)" fg:x="127749" fg:w="64"/><text x="42.2724%" y="735.50"></text></g><g><title>os::PlatformEvent::park (64 samples, 0.02%)</title><rect x="42.0224%" y="709" width="0.0211%" height="15" fill="rgb(227,53,46)" fg:x="127749" fg:w="64"/><text x="42.2724%" y="719.50"></text></g><g><title>__x64_sys_futex (48 samples, 0.02%)</title><rect x="42.2043%" y="597" width="0.0158%" height="15" fill="rgb(216,120,32)" fg:x="128302" fg:w="48"/><text x="42.4543%" y="607.50"></text></g><g><title>do_futex (48 samples, 0.02%)</title><rect x="42.2043%" y="581" width="0.0158%" height="15" fill="rgb(220,134,1)" fg:x="128302" fg:w="48"/><text x="42.4543%" y="591.50"></text></g><g><title>futex_wake (48 samples, 0.02%)</title><rect x="42.2043%" y="565" width="0.0158%" height="15" fill="rgb(237,168,5)" fg:x="128302" fg:w="48"/><text x="42.4543%" y="575.50"></text></g><g><title>wake_up_q (41 samples, 0.01%)</title><rect x="42.2066%" y="549" width="0.0135%" height="15" fill="rgb(231,100,33)" fg:x="128309" fg:w="41"/><text x="42.4566%" y="559.50"></text></g><g><title>try_to_wake_up (41 samples, 0.01%)</title><rect x="42.2066%" y="533" width="0.0135%" height="15" fill="rgb(236,177,47)" fg:x="128309" fg:w="41"/><text x="42.4566%" y="543.50"></text></g><g><title>PosixSemaphore::signal (52 samples, 0.02%)</title><rect x="42.2033%" y="677" width="0.0171%" height="15" fill="rgb(235,7,49)" fg:x="128299" fg:w="52"/><text x="42.4533%" y="687.50"></text></g><g><title>__new_sem_post (52 samples, 0.02%)</title><rect x="42.2033%" y="661" width="0.0171%" height="15" fill="rgb(232,119,22)" fg:x="128299" fg:w="52"/><text x="42.4533%" y="671.50"></text></g><g><title>futex_wake (51 samples, 0.02%)</title><rect x="42.2037%" y="645" width="0.0168%" height="15" fill="rgb(254,73,53)" fg:x="128300" fg:w="51"/><text x="42.4537%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.02%)</title><rect x="42.2040%" y="629" width="0.0164%" height="15" fill="rgb(251,35,20)" fg:x="128301" fg:w="50"/><text x="42.4540%" y="639.50"></text></g><g><title>do_syscall_64 (49 samples, 0.02%)</title><rect x="42.2043%" y="613" width="0.0161%" height="15" fill="rgb(241,119,20)" fg:x="128302" fg:w="49"/><text x="42.4543%" y="623.50"></text></g><g><title>WorkGang::run_task (57 samples, 0.02%)</title><rect x="42.2030%" y="709" width="0.0187%" height="15" fill="rgb(207,102,14)" fg:x="128298" fg:w="57"/><text x="42.4530%" y="719.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (56 samples, 0.02%)</title><rect x="42.2033%" y="693" width="0.0184%" height="15" fill="rgb(248,201,50)" fg:x="128299" fg:w="56"/><text x="42.4533%" y="703.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (61 samples, 0.02%)</title><rect x="42.2020%" y="725" width="0.0201%" height="15" fill="rgb(222,185,44)" fg:x="128295" fg:w="61"/><text x="42.4520%" y="735.50"></text></g><g><title>__schedule (31 samples, 0.01%)</title><rect x="42.2329%" y="629" width="0.0102%" height="15" fill="rgb(218,107,18)" fg:x="128389" fg:w="31"/><text x="42.4829%" y="639.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="42.2326%" y="645" width="0.0109%" height="15" fill="rgb(237,177,39)" fg:x="128388" fg:w="33"/><text x="42.4826%" y="655.50"></text></g><g><title>do_sched_yield (55 samples, 0.02%)</title><rect x="42.2313%" y="661" width="0.0181%" height="15" fill="rgb(246,69,6)" fg:x="128384" fg:w="55"/><text x="42.4813%" y="671.50"></text></g><g><title>__x64_sys_sched_yield (57 samples, 0.02%)</title><rect x="42.2310%" y="677" width="0.0187%" height="15" fill="rgb(234,208,37)" fg:x="128383" fg:w="57"/><text x="42.4810%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.02%)</title><rect x="42.2303%" y="709" width="0.0201%" height="15" fill="rgb(225,4,6)" fg:x="128381" fg:w="61"/><text x="42.4803%" y="719.50"></text></g><g><title>do_syscall_64 (60 samples, 0.02%)</title><rect x="42.2306%" y="693" width="0.0197%" height="15" fill="rgb(233,45,0)" fg:x="128382" fg:w="60"/><text x="42.4806%" y="703.50"></text></g><g><title>__GI___sched_yield (81 samples, 0.03%)</title><rect x="42.2260%" y="725" width="0.0266%" height="15" fill="rgb(226,136,5)" fg:x="128368" fg:w="81"/><text x="42.4760%" y="735.50"></text></g><g><title>SafepointSynchronize::begin (638 samples, 0.21%)</title><rect x="42.0435%" y="741" width="0.2099%" height="15" fill="rgb(211,91,47)" fg:x="127813" fg:w="638"/><text x="42.2935%" y="751.50"></text></g><g><title>SpinPause (48 samples, 0.02%)</title><rect x="42.2553%" y="741" width="0.0158%" height="15" fill="rgb(242,88,51)" fg:x="128457" fg:w="48"/><text x="42.5053%" y="751.50"></text></g><g><title>CodeHeap::next_used (36 samples, 0.01%)</title><rect x="42.2829%" y="661" width="0.0118%" height="15" fill="rgb(230,91,28)" fg:x="128541" fg:w="36"/><text x="42.5329%" y="671.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (54 samples, 0.02%)</title><rect x="42.2793%" y="693" width="0.0178%" height="15" fill="rgb(254,186,29)" fg:x="128530" fg:w="54"/><text x="42.5293%" y="703.50"></text></g><g><title>CodeBlobIterator&lt;CompiledMethod, CompiledMethodFilter&gt;::next_alive (50 samples, 0.02%)</title><rect x="42.2806%" y="677" width="0.0164%" height="15" fill="rgb(238,6,4)" fg:x="128534" fg:w="50"/><text x="42.5306%" y="687.50"></text></g><g><title>VM_Deoptimize::doit (61 samples, 0.02%)</title><rect x="42.2793%" y="709" width="0.0201%" height="15" fill="rgb(221,151,16)" fg:x="128530" fg:w="61"/><text x="42.5293%" y="719.50"></text></g><g><title>VMThread::evaluate_operation (118 samples, 0.04%)</title><rect x="42.2711%" y="741" width="0.0388%" height="15" fill="rgb(251,143,52)" fg:x="128505" fg:w="118"/><text x="42.5211%" y="751.50"></text></g><g><title>VM_Operation::evaluate (115 samples, 0.04%)</title><rect x="42.2721%" y="725" width="0.0378%" height="15" fill="rgb(206,90,15)" fg:x="128508" fg:w="115"/><text x="42.5221%" y="735.50"></text></g><g><title>Thread::call_run (891 samples, 0.29%)</title><rect x="42.0178%" y="789" width="0.2931%" height="15" fill="rgb(218,35,8)" fg:x="127735" fg:w="891"/><text x="42.2678%" y="799.50"></text></g><g><title>VMThread::run (891 samples, 0.29%)</title><rect x="42.0178%" y="773" width="0.2931%" height="15" fill="rgb(239,215,6)" fg:x="127735" fg:w="891"/><text x="42.2678%" y="783.50"></text></g><g><title>VMThread::loop (891 samples, 0.29%)</title><rect x="42.0178%" y="757" width="0.2931%" height="15" fill="rgb(245,116,39)" fg:x="127735" fg:w="891"/><text x="42.2678%" y="767.50"></text></g><g><title>__clone3 (898 samples, 0.30%)</title><rect x="42.0168%" y="837" width="0.2954%" height="15" fill="rgb(242,65,28)" fg:x="127732" fg:w="898"/><text x="42.2668%" y="847.50"></text></g><g><title>start_thread (895 samples, 0.29%)</title><rect x="42.0178%" y="821" width="0.2944%" height="15" fill="rgb(252,132,53)" fg:x="127735" fg:w="895"/><text x="42.2678%" y="831.50"></text></g><g><title>thread_native_entry (895 samples, 0.29%)</title><rect x="42.0178%" y="805" width="0.2944%" height="15" fill="rgb(224,159,50)" fg:x="127735" fg:w="895"/><text x="42.2678%" y="815.50"></text></g><g><title>VM_Thread (1,064 samples, 0.35%)</title><rect x="41.9734%" y="853" width="0.3500%" height="15" fill="rgb(224,93,4)" fg:x="127600" fg:w="1064"/><text x="42.2234%" y="863.50"></text></g><g><title>finish_task_switch.isra.0 (56 samples, 0.02%)</title><rect x="42.4102%" y="661" width="0.0184%" height="15" fill="rgb(208,81,34)" fg:x="128928" fg:w="56"/><text x="42.6602%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.02%)</title><rect x="42.4102%" y="645" width="0.0184%" height="15" fill="rgb(233,92,54)" fg:x="128928" fg:w="56"/><text x="42.6602%" y="655.50"></text></g><g><title>x86_pmu_enable (55 samples, 0.02%)</title><rect x="42.4106%" y="629" width="0.0181%" height="15" fill="rgb(237,21,14)" fg:x="128929" fg:w="55"/><text x="42.6606%" y="639.50"></text></g><g><title>intel_pmu_enable_all (55 samples, 0.02%)</title><rect x="42.4106%" y="613" width="0.0181%" height="15" fill="rgb(249,128,51)" fg:x="128929" fg:w="55"/><text x="42.6606%" y="623.50"></text></g><g><title>native_write_msr (54 samples, 0.02%)</title><rect x="42.4109%" y="597" width="0.0178%" height="15" fill="rgb(223,129,24)" fg:x="128930" fg:w="54"/><text x="42.6609%" y="607.50"></text></g><g><title>__x64_sys_epoll_pwait (78 samples, 0.03%)</title><rect x="42.4050%" y="789" width="0.0257%" height="15" fill="rgb(231,168,25)" fg:x="128912" fg:w="78"/><text x="42.6550%" y="799.50"></text></g><g><title>do_epoll_pwait.part.0 (77 samples, 0.03%)</title><rect x="42.4053%" y="773" width="0.0253%" height="15" fill="rgb(224,39,20)" fg:x="128913" fg:w="77"/><text x="42.6553%" y="783.50"></text></g><g><title>do_epoll_wait (77 samples, 0.03%)</title><rect x="42.4053%" y="757" width="0.0253%" height="15" fill="rgb(225,152,53)" fg:x="128913" fg:w="77"/><text x="42.6553%" y="767.50"></text></g><g><title>ep_poll (75 samples, 0.02%)</title><rect x="42.4060%" y="741" width="0.0247%" height="15" fill="rgb(252,17,24)" fg:x="128915" fg:w="75"/><text x="42.6560%" y="751.50"></text></g><g><title>schedule_hrtimeout_range (71 samples, 0.02%)</title><rect x="42.4073%" y="725" width="0.0234%" height="15" fill="rgb(250,114,30)" fg:x="128919" fg:w="71"/><text x="42.6573%" y="735.50"></text></g><g><title>schedule_hrtimeout_range_clock (70 samples, 0.02%)</title><rect x="42.4076%" y="709" width="0.0230%" height="15" fill="rgb(229,5,4)" fg:x="128920" fg:w="70"/><text x="42.6576%" y="719.50"></text></g><g><title>schedule (65 samples, 0.02%)</title><rect x="42.4093%" y="693" width="0.0214%" height="15" fill="rgb(225,176,49)" fg:x="128925" fg:w="65"/><text x="42.6593%" y="703.50"></text></g><g><title>__schedule (65 samples, 0.02%)</title><rect x="42.4093%" y="677" width="0.0214%" height="15" fill="rgb(224,221,49)" fg:x="128925" fg:w="65"/><text x="42.6593%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (107 samples, 0.04%)</title><rect x="42.4366%" y="677" width="0.0352%" height="15" fill="rgb(253,169,27)" fg:x="129008" fg:w="107"/><text x="42.6866%" y="687.50"></text></g><g><title>x86_pmu_enable (104 samples, 0.03%)</title><rect x="42.4375%" y="661" width="0.0342%" height="15" fill="rgb(211,206,16)" fg:x="129011" fg:w="104"/><text x="42.6875%" y="671.50"></text></g><g><title>intel_pmu_enable_all (104 samples, 0.03%)</title><rect x="42.4375%" y="645" width="0.0342%" height="15" fill="rgb(244,87,35)" fg:x="129011" fg:w="104"/><text x="42.6875%" y="655.50"></text></g><g><title>native_write_msr (104 samples, 0.03%)</title><rect x="42.4375%" y="629" width="0.0342%" height="15" fill="rgb(246,28,10)" fg:x="129011" fg:w="104"/><text x="42.6875%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (113 samples, 0.04%)</title><rect x="42.4362%" y="693" width="0.0372%" height="15" fill="rgb(229,12,44)" fg:x="129007" fg:w="113"/><text x="42.6862%" y="703.50"></text></g><g><title>futex_wait_queue_me (133 samples, 0.04%)</title><rect x="42.4316%" y="741" width="0.0437%" height="15" fill="rgb(210,145,37)" fg:x="128993" fg:w="133"/><text x="42.6816%" y="751.50"></text></g><g><title>schedule (132 samples, 0.04%)</title><rect x="42.4320%" y="725" width="0.0434%" height="15" fill="rgb(227,112,52)" fg:x="128994" fg:w="132"/><text x="42.6820%" y="735.50"></text></g><g><title>__schedule (132 samples, 0.04%)</title><rect x="42.4320%" y="709" width="0.0434%" height="15" fill="rgb(238,155,34)" fg:x="128994" fg:w="132"/><text x="42.6820%" y="719.50"></text></g><g><title>futex_wait (134 samples, 0.04%)</title><rect x="42.4316%" y="757" width="0.0441%" height="15" fill="rgb(239,226,36)" fg:x="128993" fg:w="134"/><text x="42.6816%" y="767.50"></text></g><g><title>__x64_sys_futex (135 samples, 0.04%)</title><rect x="42.4316%" y="789" width="0.0444%" height="15" fill="rgb(230,16,23)" fg:x="128993" fg:w="135"/><text x="42.6816%" y="799.50"></text></g><g><title>do_futex (135 samples, 0.04%)</title><rect x="42.4316%" y="773" width="0.0444%" height="15" fill="rgb(236,171,36)" fg:x="128993" fg:w="135"/><text x="42.6816%" y="783.50"></text></g><g><title>__x64_sys_nanosleep (41 samples, 0.01%)</title><rect x="42.4813%" y="789" width="0.0135%" height="15" fill="rgb(221,22,14)" fg:x="129144" fg:w="41"/><text x="42.7313%" y="799.50"></text></g><g><title>hrtimer_nanosleep (41 samples, 0.01%)</title><rect x="42.4813%" y="773" width="0.0135%" height="15" fill="rgb(242,43,11)" fg:x="129144" fg:w="41"/><text x="42.7313%" y="783.50"></text></g><g><title>do_nanosleep (41 samples, 0.01%)</title><rect x="42.4813%" y="757" width="0.0135%" height="15" fill="rgb(232,69,23)" fg:x="129144" fg:w="41"/><text x="42.7313%" y="767.50"></text></g><g><title>schedule (39 samples, 0.01%)</title><rect x="42.4820%" y="741" width="0.0128%" height="15" fill="rgb(216,180,54)" fg:x="129146" fg:w="39"/><text x="42.7320%" y="751.50"></text></g><g><title>__schedule (39 samples, 0.01%)</title><rect x="42.4820%" y="725" width="0.0128%" height="15" fill="rgb(216,5,24)" fg:x="129146" fg:w="39"/><text x="42.7320%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (301 samples, 0.10%)</title><rect x="42.4027%" y="821" width="0.0990%" height="15" fill="rgb(225,89,9)" fg:x="128905" fg:w="301"/><text x="42.6527%" y="831.50"></text></g><g><title>do_syscall_64 (299 samples, 0.10%)</title><rect x="42.4033%" y="805" width="0.0984%" height="15" fill="rgb(243,75,33)" fg:x="128907" fg:w="299"/><text x="42.6533%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.01%)</title><rect x="42.5020%" y="773" width="0.0115%" height="15" fill="rgb(247,141,45)" fg:x="129207" fg:w="35"/><text x="42.7520%" y="783.50"></text></g><g><title>x86_pmu_enable (34 samples, 0.01%)</title><rect x="42.5024%" y="757" width="0.0112%" height="15" fill="rgb(232,177,36)" fg:x="129208" fg:w="34"/><text x="42.7524%" y="767.50"></text></g><g><title>intel_pmu_enable_all (33 samples, 0.01%)</title><rect x="42.5027%" y="741" width="0.0109%" height="15" fill="rgb(219,125,36)" fg:x="129209" fg:w="33"/><text x="42.7527%" y="751.50"></text></g><g><title>native_write_msr (33 samples, 0.01%)</title><rect x="42.5027%" y="725" width="0.0109%" height="15" fill="rgb(227,94,9)" fg:x="129209" fg:w="33"/><text x="42.7527%" y="735.50"></text></g><g><title>ret_from_fork (37 samples, 0.01%)</title><rect x="42.5017%" y="821" width="0.0122%" height="15" fill="rgb(240,34,52)" fg:x="129206" fg:w="37"/><text x="42.7517%" y="831.50"></text></g><g><title>schedule_tail (37 samples, 0.01%)</title><rect x="42.5017%" y="805" width="0.0122%" height="15" fill="rgb(216,45,12)" fg:x="129206" fg:w="37"/><text x="42.7517%" y="815.50"></text></g><g><title>finish_task_switch.isra.0 (36 samples, 0.01%)</title><rect x="42.5020%" y="789" width="0.0118%" height="15" fill="rgb(246,21,19)" fg:x="129207" fg:w="36"/><text x="42.7520%" y="799.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (567 samples, 0.19%)</title><rect x="42.3277%" y="837" width="0.1865%" height="15" fill="rgb(213,98,42)" fg:x="128677" fg:w="567"/><text x="42.5777%" y="847.50"></text></g><g><title>_start (35 samples, 0.01%)</title><rect x="42.5142%" y="837" width="0.0115%" height="15" fill="rgb(250,136,47)" fg:x="129244" fg:w="35"/><text x="42.7642%" y="847.50"></text></g><g><title>bazel (615 samples, 0.20%)</title><rect x="42.3274%" y="853" width="0.2023%" height="15" fill="rgb(251,124,27)" fg:x="128676" fg:w="615"/><text x="42.5774%" y="863.50"></text></g><g><title>RunfilesCreator::ReadManifest (58 samples, 0.02%)</title><rect x="42.5372%" y="821" width="0.0191%" height="15" fill="rgb(229,180,14)" fg:x="129314" fg:w="58"/><text x="42.7872%" y="831.50"></text></g><g><title>[unknown] (59 samples, 0.02%)</title><rect x="42.5372%" y="837" width="0.0194%" height="15" fill="rgb(245,216,25)" fg:x="129314" fg:w="59"/><text x="42.7872%" y="847.50"></text></g><g><title>copy_inode_items_to_log (31 samples, 0.01%)</title><rect x="42.5885%" y="549" width="0.0102%" height="15" fill="rgb(251,43,5)" fg:x="129470" fg:w="31"/><text x="42.8385%" y="559.50"></text></g><g><title>__x64_sys_rename (61 samples, 0.02%)</title><rect x="42.5803%" y="693" width="0.0201%" height="15" fill="rgb(250,128,24)" fg:x="129445" fg:w="61"/><text x="42.8303%" y="703.50"></text></g><g><title>do_renameat2 (61 samples, 0.02%)</title><rect x="42.5803%" y="677" width="0.0201%" height="15" fill="rgb(217,117,27)" fg:x="129445" fg:w="61"/><text x="42.8303%" y="687.50"></text></g><g><title>vfs_rename (58 samples, 0.02%)</title><rect x="42.5813%" y="661" width="0.0191%" height="15" fill="rgb(245,147,4)" fg:x="129448" fg:w="58"/><text x="42.8313%" y="671.50"></text></g><g><title>btrfs_rename2 (58 samples, 0.02%)</title><rect x="42.5813%" y="645" width="0.0191%" height="15" fill="rgb(242,201,35)" fg:x="129448" fg:w="58"/><text x="42.8313%" y="655.50"></text></g><g><title>btrfs_rename (58 samples, 0.02%)</title><rect x="42.5813%" y="629" width="0.0191%" height="15" fill="rgb(218,181,1)" fg:x="129448" fg:w="58"/><text x="42.8313%" y="639.50"></text></g><g><title>btrfs_log_new_name (48 samples, 0.02%)</title><rect x="42.5846%" y="613" width="0.0158%" height="15" fill="rgb(222,6,29)" fg:x="129458" fg:w="48"/><text x="42.8346%" y="623.50"></text></g><g><title>btrfs_log_inode_parent (48 samples, 0.02%)</title><rect x="42.5846%" y="597" width="0.0158%" height="15" fill="rgb(208,186,3)" fg:x="129458" fg:w="48"/><text x="42.8346%" y="607.50"></text></g><g><title>log_all_new_ancestors (44 samples, 0.01%)</title><rect x="42.5859%" y="581" width="0.0145%" height="15" fill="rgb(216,36,26)" fg:x="129462" fg:w="44"/><text x="42.8359%" y="591.50"></text></g><g><title>btrfs_log_inode (44 samples, 0.01%)</title><rect x="42.5859%" y="565" width="0.0145%" height="15" fill="rgb(248,201,23)" fg:x="129462" fg:w="44"/><text x="42.8359%" y="575.50"></text></g><g><title>RunfilesCreator::CreateRunfiles (104 samples, 0.03%)</title><rect x="42.5665%" y="773" width="0.0342%" height="15" fill="rgb(251,170,31)" fg:x="129403" fg:w="104"/><text x="42.8165%" y="783.50"></text></g><g><title>rename (63 samples, 0.02%)</title><rect x="42.5800%" y="757" width="0.0207%" height="15" fill="rgb(207,110,25)" fg:x="129444" fg:w="63"/><text x="42.8300%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.02%)</title><rect x="42.5803%" y="741" width="0.0204%" height="15" fill="rgb(250,54,15)" fg:x="129445" fg:w="62"/><text x="42.8303%" y="751.50"></text></g><g><title>do_syscall_64 (62 samples, 0.02%)</title><rect x="42.5803%" y="725" width="0.0204%" height="15" fill="rgb(227,68,33)" fg:x="129445" fg:w="62"/><text x="42.8303%" y="735.50"></text></g><g><title>unload_network_ops_symbols (62 samples, 0.02%)</title><rect x="42.5803%" y="709" width="0.0204%" height="15" fill="rgb(238,34,41)" fg:x="129445" fg:w="62"/><text x="42.8303%" y="719.50"></text></g><g><title>__libc_start_main_impl (121 samples, 0.04%)</title><rect x="42.5635%" y="821" width="0.0398%" height="15" fill="rgb(220,11,15)" fg:x="129394" fg:w="121"/><text x="42.8135%" y="831.50"></text></g><g><title>__libc_start_call_main (121 samples, 0.04%)</title><rect x="42.5635%" y="805" width="0.0398%" height="15" fill="rgb(246,111,35)" fg:x="129394" fg:w="121"/><text x="42.8135%" y="815.50"></text></g><g><title>main (112 samples, 0.04%)</title><rect x="42.5665%" y="789" width="0.0368%" height="15" fill="rgb(209,88,53)" fg:x="129403" fg:w="112"/><text x="42.8165%" y="799.50"></text></g><g><title>_dl_map_segments (42 samples, 0.01%)</title><rect x="42.6175%" y="677" width="0.0138%" height="15" fill="rgb(231,185,47)" fg:x="129558" fg:w="42"/><text x="42.8675%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (68 samples, 0.02%)</title><rect x="42.6158%" y="693" width="0.0224%" height="15" fill="rgb(233,154,1)" fg:x="129553" fg:w="68"/><text x="42.8658%" y="703.50"></text></g><g><title>_dl_map_object_deps (107 samples, 0.04%)</title><rect x="42.6106%" y="757" width="0.0352%" height="15" fill="rgb(225,15,46)" fg:x="129537" fg:w="107"/><text x="42.8606%" y="767.50"></text></g><g><title>_dl_catch_exception (105 samples, 0.03%)</title><rect x="42.6112%" y="741" width="0.0345%" height="15" fill="rgb(211,135,41)" fg:x="129539" fg:w="105"/><text x="42.8612%" y="751.50"></text></g><g><title>openaux (104 samples, 0.03%)</title><rect x="42.6116%" y="725" width="0.0342%" height="15" fill="rgb(208,54,0)" fg:x="129540" fg:w="104"/><text x="42.8616%" y="735.50"></text></g><g><title>_dl_map_object (104 samples, 0.03%)</title><rect x="42.6116%" y="709" width="0.0342%" height="15" fill="rgb(244,136,14)" fg:x="129540" fg:w="104"/><text x="42.8616%" y="719.50"></text></g><g><title>dl_new_hash (46 samples, 0.02%)</title><rect x="42.6774%" y="693" width="0.0151%" height="15" fill="rgb(241,56,14)" fg:x="129740" fg:w="46"/><text x="42.9274%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (137 samples, 0.05%)</title><rect x="42.6724%" y="709" width="0.0451%" height="15" fill="rgb(205,80,24)" fg:x="129725" fg:w="137"/><text x="42.9224%" y="719.50"></text></g><g><title>do_lookup_x (76 samples, 0.02%)</title><rect x="42.6925%" y="693" width="0.0250%" height="15" fill="rgb(220,57,4)" fg:x="129786" fg:w="76"/><text x="42.9425%" y="703.50"></text></g><g><title>elf_machine_rela (181 samples, 0.06%)</title><rect x="42.6599%" y="725" width="0.0595%" height="15" fill="rgb(226,193,50)" fg:x="129687" fg:w="181"/><text x="42.9099%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (222 samples, 0.07%)</title><rect x="42.6510%" y="741" width="0.0730%" height="15" fill="rgb(231,168,22)" fg:x="129660" fg:w="222"/><text x="42.9010%" y="751.50"></text></g><g><title>_dl_relocate_object (232 samples, 0.08%)</title><rect x="42.6484%" y="757" width="0.0763%" height="15" fill="rgb(254,215,14)" fg:x="129652" fg:w="232"/><text x="42.8984%" y="767.50"></text></g><g><title>dl_main (380 samples, 0.12%)</title><rect x="42.6043%" y="773" width="0.1250%" height="15" fill="rgb(211,115,16)" fg:x="129518" fg:w="380"/><text x="42.8543%" y="783.50"></text></g><g><title>_dl_start_final (386 samples, 0.13%)</title><rect x="42.6033%" y="805" width="0.1270%" height="15" fill="rgb(236,210,16)" fg:x="129515" fg:w="386"/><text x="42.8533%" y="815.50"></text></g><g><title>_dl_sysdep_start (385 samples, 0.13%)</title><rect x="42.6037%" y="789" width="0.1266%" height="15" fill="rgb(221,94,12)" fg:x="129516" fg:w="385"/><text x="42.8537%" y="799.50"></text></g><g><title>_dl_start (392 samples, 0.13%)</title><rect x="42.6033%" y="821" width="0.1289%" height="15" fill="rgb(235,218,49)" fg:x="129515" fg:w="392"/><text x="42.8533%" y="831.50"></text></g><g><title>_start (518 samples, 0.17%)</title><rect x="42.5635%" y="837" width="0.1704%" height="15" fill="rgb(217,114,14)" fg:x="129394" fg:w="518"/><text x="42.8135%" y="847.50"></text></g><g><title>__x64_sys_execve (32 samples, 0.01%)</title><rect x="42.7385%" y="805" width="0.0105%" height="15" fill="rgb(216,145,22)" fg:x="129926" fg:w="32"/><text x="42.9885%" y="815.50"></text></g><g><title>do_execveat_common.isra.0 (32 samples, 0.01%)</title><rect x="42.7385%" y="789" width="0.0105%" height="15" fill="rgb(217,112,39)" fg:x="129926" fg:w="32"/><text x="42.9885%" y="799.50"></text></g><g><title>bprm_execve (32 samples, 0.01%)</title><rect x="42.7385%" y="773" width="0.0105%" height="15" fill="rgb(225,85,32)" fg:x="129926" fg:w="32"/><text x="42.9885%" y="783.50"></text></g><g><title>bprm_execve.part.0 (32 samples, 0.01%)</title><rect x="42.7385%" y="757" width="0.0105%" height="15" fill="rgb(245,209,47)" fg:x="129926" fg:w="32"/><text x="42.9885%" y="767.50"></text></g><g><title>exec_binprm (32 samples, 0.01%)</title><rect x="42.7385%" y="741" width="0.0105%" height="15" fill="rgb(218,220,15)" fg:x="129926" fg:w="32"/><text x="42.9885%" y="751.50"></text></g><g><title>search_binary_handler (32 samples, 0.01%)</title><rect x="42.7385%" y="725" width="0.0105%" height="15" fill="rgb(222,202,31)" fg:x="129926" fg:w="32"/><text x="42.9885%" y="735.50"></text></g><g><title>load_elf_binary (32 samples, 0.01%)</title><rect x="42.7385%" y="709" width="0.0105%" height="15" fill="rgb(243,203,4)" fg:x="129926" fg:w="32"/><text x="42.9885%" y="719.50"></text></g><g><title>exit_mm (44 samples, 0.01%)</title><rect x="42.7504%" y="757" width="0.0145%" height="15" fill="rgb(237,92,17)" fg:x="129962" fg:w="44"/><text x="43.0004%" y="767.50"></text></g><g><title>mmput (44 samples, 0.01%)</title><rect x="42.7504%" y="741" width="0.0145%" height="15" fill="rgb(231,119,7)" fg:x="129962" fg:w="44"/><text x="43.0004%" y="751.50"></text></g><g><title>exit_mmap (44 samples, 0.01%)</title><rect x="42.7504%" y="725" width="0.0145%" height="15" fill="rgb(237,82,41)" fg:x="129962" fg:w="44"/><text x="43.0004%" y="735.50"></text></g><g><title>build-runfiles (722 samples, 0.24%)</title><rect x="42.5303%" y="853" width="0.2375%" height="15" fill="rgb(226,81,48)" fg:x="129293" fg:w="722"/><text x="42.7803%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.03%)</title><rect x="42.7385%" y="837" width="0.0293%" height="15" fill="rgb(234,70,51)" fg:x="129926" fg:w="89"/><text x="42.9885%" y="847.50"></text></g><g><title>do_syscall_64 (89 samples, 0.03%)</title><rect x="42.7385%" y="821" width="0.0293%" height="15" fill="rgb(251,86,4)" fg:x="129926" fg:w="89"/><text x="42.9885%" y="831.50"></text></g><g><title>__x64_sys_exit_group (57 samples, 0.02%)</title><rect x="42.7491%" y="805" width="0.0187%" height="15" fill="rgb(244,144,28)" fg:x="129958" fg:w="57"/><text x="42.9991%" y="815.50"></text></g><g><title>do_group_exit (57 samples, 0.02%)</title><rect x="42.7491%" y="789" width="0.0187%" height="15" fill="rgb(232,161,39)" fg:x="129958" fg:w="57"/><text x="42.9991%" y="799.50"></text></g><g><title>do_exit (57 samples, 0.02%)</title><rect x="42.7491%" y="773" width="0.0187%" height="15" fill="rgb(247,34,51)" fg:x="129958" fg:w="57"/><text x="42.9991%" y="783.50"></text></g><g><title>__GI___nss_passwd_lookup2 (31 samples, 0.01%)</title><rect x="42.8066%" y="693" width="0.0102%" height="15" fill="rgb(225,132,2)" fg:x="130133" fg:w="31"/><text x="43.0566%" y="703.50"></text></g><g><title>__GI__nss_files_getpwuid_r (33 samples, 0.01%)</title><rect x="42.8168%" y="693" width="0.0109%" height="15" fill="rgb(209,159,44)" fg:x="130164" fg:w="33"/><text x="43.0668%" y="703.50"></text></g><g><title>getpwuid (100 samples, 0.03%)</title><rect x="42.8060%" y="725" width="0.0329%" height="15" fill="rgb(251,214,1)" fg:x="130131" fg:w="100"/><text x="43.0560%" y="735.50"></text></g><g><title>__getpwuid_r (100 samples, 0.03%)</title><rect x="42.8060%" y="709" width="0.0329%" height="15" fill="rgb(247,84,47)" fg:x="130131" fg:w="100"/><text x="43.0560%" y="719.50"></text></g><g><title>__nscd_getpwuid_r (34 samples, 0.01%)</title><rect x="42.8277%" y="693" width="0.0112%" height="15" fill="rgb(240,111,43)" fg:x="130197" fg:w="34"/><text x="43.0777%" y="703.50"></text></g><g><title>[bash] (127 samples, 0.04%)</title><rect x="42.7991%" y="741" width="0.0418%" height="15" fill="rgb(215,214,35)" fg:x="130110" fg:w="127"/><text x="43.0491%" y="751.50"></text></g><g><title>initialize_shell_variables (153 samples, 0.05%)</title><rect x="42.7991%" y="757" width="0.0503%" height="15" fill="rgb(248,207,23)" fg:x="130110" fg:w="153"/><text x="43.0491%" y="767.50"></text></g><g><title>[bash] (197 samples, 0.06%)</title><rect x="42.7902%" y="773" width="0.0648%" height="15" fill="rgb(214,186,4)" fg:x="130083" fg:w="197"/><text x="43.0402%" y="783.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (144 samples, 0.05%)</title><rect x="42.9119%" y="293" width="0.0474%" height="15" fill="rgb(220,133,22)" fg:x="130453" fg:w="144"/><text x="43.1619%" y="303.50"></text></g><g><title>_ZdlPv (143 samples, 0.05%)</title><rect x="42.9122%" y="277" width="0.0470%" height="15" fill="rgb(239,134,19)" fg:x="130454" fg:w="143"/><text x="43.1622%" y="287.50"></text></g><g><title>_ZdlPv (142 samples, 0.05%)</title><rect x="42.9125%" y="261" width="0.0467%" height="15" fill="rgb(250,140,9)" fg:x="130455" fg:w="142"/><text x="43.1625%" y="271.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (142 samples, 0.05%)</title><rect x="42.9125%" y="245" width="0.0467%" height="15" fill="rgb(225,59,14)" fg:x="130455" fg:w="142"/><text x="43.1625%" y="255.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (130 samples, 0.04%)</title><rect x="42.9165%" y="229" width="0.0428%" height="15" fill="rgb(214,152,51)" fg:x="130467" fg:w="130"/><text x="43.1665%" y="239.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (37 samples, 0.01%)</title><rect x="42.9471%" y="213" width="0.0122%" height="15" fill="rgb(251,227,43)" fg:x="130560" fg:w="37"/><text x="43.1971%" y="223.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (188 samples, 0.06%)</title><rect x="42.9099%" y="309" width="0.0618%" height="15" fill="rgb(241,96,17)" fg:x="130447" fg:w="188"/><text x="43.1599%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (33 samples, 0.01%)</title><rect x="42.9609%" y="293" width="0.0109%" height="15" fill="rgb(234,198,43)" fg:x="130602" fg:w="33"/><text x="43.2109%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (32 samples, 0.01%)</title><rect x="42.9612%" y="277" width="0.0105%" height="15" fill="rgb(220,108,29)" fg:x="130603" fg:w="32"/><text x="43.2112%" y="287.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (208 samples, 0.07%)</title><rect x="42.9037%" y="325" width="0.0684%" height="15" fill="rgb(226,163,33)" fg:x="130428" fg:w="208"/><text x="43.1537%" y="335.50"></text></g><g><title>_ZdlPv (32 samples, 0.01%)</title><rect x="42.9773%" y="229" width="0.0105%" height="15" fill="rgb(205,194,45)" fg:x="130652" fg:w="32"/><text x="43.2273%" y="239.50"></text></g><g><title>_ZdlPv (59 samples, 0.02%)</title><rect x="42.9770%" y="245" width="0.0194%" height="15" fill="rgb(206,143,44)" fg:x="130651" fg:w="59"/><text x="43.2270%" y="255.50"></text></g><g><title>_ZdlPv (66 samples, 0.02%)</title><rect x="42.9770%" y="261" width="0.0217%" height="15" fill="rgb(236,136,36)" fg:x="130651" fg:w="66"/><text x="43.2270%" y="271.50"></text></g><g><title>_ZdlPv (73 samples, 0.02%)</title><rect x="42.9760%" y="277" width="0.0240%" height="15" fill="rgb(249,172,42)" fg:x="130648" fg:w="73"/><text x="43.2260%" y="287.50"></text></g><g><title>_ZdlPv (75 samples, 0.02%)</title><rect x="42.9760%" y="293" width="0.0247%" height="15" fill="rgb(216,139,23)" fg:x="130648" fg:w="75"/><text x="43.2260%" y="303.50"></text></g><g><title>_ZdlPv (87 samples, 0.03%)</title><rect x="42.9731%" y="309" width="0.0286%" height="15" fill="rgb(207,166,20)" fg:x="130639" fg:w="87"/><text x="43.2231%" y="319.50"></text></g><g><title>_ZdlPv (107 samples, 0.04%)</title><rect x="42.9721%" y="325" width="0.0352%" height="15" fill="rgb(210,209,22)" fg:x="130636" fg:w="107"/><text x="43.2221%" y="335.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (42 samples, 0.01%)</title><rect x="43.0112%" y="277" width="0.0138%" height="15" fill="rgb(232,118,20)" fg:x="130755" fg:w="42"/><text x="43.2612%" y="287.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (36 samples, 0.01%)</title><rect x="43.0132%" y="261" width="0.0118%" height="15" fill="rgb(238,113,42)" fg:x="130761" fg:w="36"/><text x="43.2632%" y="271.50"></text></g><g><title>_ZdlPv (48 samples, 0.02%)</title><rect x="43.0099%" y="293" width="0.0158%" height="15" fill="rgb(231,42,5)" fg:x="130751" fg:w="48"/><text x="43.2599%" y="303.50"></text></g><g><title>_ZdlPv (51 samples, 0.02%)</title><rect x="43.0099%" y="309" width="0.0168%" height="15" fill="rgb(243,166,24)" fg:x="130751" fg:w="51"/><text x="43.2599%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (64 samples, 0.02%)</title><rect x="43.0905%" y="149" width="0.0211%" height="15" fill="rgb(237,226,12)" fg:x="130996" fg:w="64"/><text x="43.3405%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (44 samples, 0.01%)</title><rect x="43.0971%" y="133" width="0.0145%" height="15" fill="rgb(229,133,24)" fg:x="131016" fg:w="44"/><text x="43.3471%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (39 samples, 0.01%)</title><rect x="43.0987%" y="117" width="0.0128%" height="15" fill="rgb(238,33,43)" fg:x="131021" fg:w="39"/><text x="43.3487%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (102 samples, 0.03%)</title><rect x="43.0783%" y="181" width="0.0336%" height="15" fill="rgb(227,59,38)" fg:x="130959" fg:w="102"/><text x="43.3283%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (93 samples, 0.03%)</title><rect x="43.0813%" y="165" width="0.0306%" height="15" fill="rgb(230,97,0)" fg:x="130968" fg:w="93"/><text x="43.3313%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (118 samples, 0.04%)</title><rect x="43.0741%" y="197" width="0.0388%" height="15" fill="rgb(250,173,50)" fg:x="130946" fg:w="118"/><text x="43.3241%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (136 samples, 0.04%)</title><rect x="43.0685%" y="213" width="0.0447%" height="15" fill="rgb(240,15,50)" fg:x="130929" fg:w="136"/><text x="43.3185%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (151 samples, 0.05%)</title><rect x="43.0648%" y="229" width="0.0497%" height="15" fill="rgb(221,93,22)" fg:x="130918" fg:w="151"/><text x="43.3148%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (166 samples, 0.05%)</title><rect x="43.0622%" y="245" width="0.0546%" height="15" fill="rgb(245,180,53)" fg:x="130910" fg:w="166"/><text x="43.3122%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (199 samples, 0.07%)</title><rect x="43.0520%" y="277" width="0.0655%" height="15" fill="rgb(231,88,51)" fg:x="130879" fg:w="199"/><text x="43.3020%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (182 samples, 0.06%)</title><rect x="43.0576%" y="261" width="0.0599%" height="15" fill="rgb(240,58,21)" fg:x="130896" fg:w="182"/><text x="43.3076%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (254 samples, 0.08%)</title><rect x="43.0379%" y="293" width="0.0836%" height="15" fill="rgb(237,21,10)" fg:x="130836" fg:w="254"/><text x="43.2879%" y="303.50"></text></g><g><title>_ZdlPv (685 samples, 0.23%)</title><rect x="42.8981%" y="341" width="0.2253%" height="15" fill="rgb(218,43,11)" fg:x="130411" fg:w="685"/><text x="43.1481%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (349 samples, 0.11%)</title><rect x="43.0086%" y="325" width="0.1148%" height="15" fill="rgb(218,221,29)" fg:x="130747" fg:w="349"/><text x="43.2586%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (292 samples, 0.10%)</title><rect x="43.0273%" y="309" width="0.0961%" height="15" fill="rgb(214,118,42)" fg:x="130804" fg:w="292"/><text x="43.2773%" y="319.50"></text></g><g><title>_ZdlPv (695 samples, 0.23%)</title><rect x="42.8961%" y="373" width="0.2286%" height="15" fill="rgb(251,200,26)" fg:x="130405" fg:w="695"/><text x="43.1461%" y="383.50"></text></g><g><title>_ZdlPv (694 samples, 0.23%)</title><rect x="42.8964%" y="357" width="0.2283%" height="15" fill="rgb(237,101,39)" fg:x="130406" fg:w="694"/><text x="43.1464%" y="367.50"></text></g><g><title>_ZdlPv (41 samples, 0.01%)</title><rect x="43.1339%" y="245" width="0.0135%" height="15" fill="rgb(251,117,11)" fg:x="131128" fg:w="41"/><text x="43.3839%" y="255.50"></text></g><g><title>_ZdlPv (40 samples, 0.01%)</title><rect x="43.1343%" y="229" width="0.0132%" height="15" fill="rgb(216,223,23)" fg:x="131129" fg:w="40"/><text x="43.3843%" y="239.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (39 samples, 0.01%)</title><rect x="43.1346%" y="213" width="0.0128%" height="15" fill="rgb(251,54,12)" fg:x="131130" fg:w="39"/><text x="43.3846%" y="223.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (37 samples, 0.01%)</title><rect x="43.1352%" y="197" width="0.0122%" height="15" fill="rgb(254,176,54)" fg:x="131132" fg:w="37"/><text x="43.3852%" y="207.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (42 samples, 0.01%)</title><rect x="43.1339%" y="261" width="0.0138%" height="15" fill="rgb(210,32,8)" fg:x="131128" fg:w="42"/><text x="43.3839%" y="271.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (83 samples, 0.03%)</title><rect x="43.1323%" y="277" width="0.0273%" height="15" fill="rgb(235,52,38)" fg:x="131123" fg:w="83"/><text x="43.3823%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (33 samples, 0.01%)</title><rect x="43.1487%" y="261" width="0.0109%" height="15" fill="rgb(231,4,44)" fg:x="131173" fg:w="33"/><text x="43.3987%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (33 samples, 0.01%)</title><rect x="43.1487%" y="245" width="0.0109%" height="15" fill="rgb(249,2,32)" fg:x="131173" fg:w="33"/><text x="43.3987%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (32 samples, 0.01%)</title><rect x="43.1491%" y="229" width="0.0105%" height="15" fill="rgb(224,65,26)" fg:x="131174" fg:w="32"/><text x="43.3991%" y="239.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (92 samples, 0.03%)</title><rect x="43.1300%" y="293" width="0.0303%" height="15" fill="rgb(250,73,40)" fg:x="131116" fg:w="92"/><text x="43.3800%" y="303.50"></text></g><g><title>_ZdlPv (34 samples, 0.01%)</title><rect x="43.1606%" y="293" width="0.0112%" height="15" fill="rgb(253,177,16)" fg:x="131209" fg:w="34"/><text x="43.4106%" y="303.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (79 samples, 0.03%)</title><rect x="43.1754%" y="245" width="0.0260%" height="15" fill="rgb(217,32,34)" fg:x="131254" fg:w="79"/><text x="43.4254%" y="255.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (71 samples, 0.02%)</title><rect x="43.1780%" y="229" width="0.0234%" height="15" fill="rgb(212,7,10)" fg:x="131262" fg:w="71"/><text x="43.4280%" y="239.50"></text></g><g><title>_ZdlPv (84 samples, 0.03%)</title><rect x="43.1744%" y="277" width="0.0276%" height="15" fill="rgb(245,89,8)" fg:x="131251" fg:w="84"/><text x="43.4244%" y="287.50"></text></g><g><title>_ZdlPv (83 samples, 0.03%)</title><rect x="43.1747%" y="261" width="0.0273%" height="15" fill="rgb(237,16,53)" fg:x="131252" fg:w="83"/><text x="43.4247%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (65 samples, 0.02%)</title><rect x="43.2264%" y="181" width="0.0214%" height="15" fill="rgb(250,204,30)" fg:x="131409" fg:w="65"/><text x="43.4764%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (52 samples, 0.02%)</title><rect x="43.2306%" y="165" width="0.0171%" height="15" fill="rgb(208,77,27)" fg:x="131422" fg:w="52"/><text x="43.4806%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (43 samples, 0.01%)</title><rect x="43.2336%" y="149" width="0.0141%" height="15" fill="rgb(250,204,28)" fg:x="131431" fg:w="43"/><text x="43.4836%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (77 samples, 0.03%)</title><rect x="43.2231%" y="197" width="0.0253%" height="15" fill="rgb(244,63,21)" fg:x="131399" fg:w="77"/><text x="43.4731%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (89 samples, 0.03%)</title><rect x="43.2214%" y="213" width="0.0293%" height="15" fill="rgb(236,85,44)" fg:x="131394" fg:w="89"/><text x="43.4714%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (135 samples, 0.04%)</title><rect x="43.2070%" y="261" width="0.0444%" height="15" fill="rgb(215,98,4)" fg:x="131350" fg:w="135"/><text x="43.4570%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (114 samples, 0.04%)</title><rect x="43.2139%" y="245" width="0.0375%" height="15" fill="rgb(235,38,11)" fg:x="131371" fg:w="114"/><text x="43.4639%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (102 samples, 0.03%)</title><rect x="43.2178%" y="229" width="0.0336%" height="15" fill="rgb(254,186,25)" fg:x="131383" fg:w="102"/><text x="43.4678%" y="239.50"></text></g><g><title>_ZdlPv (384 samples, 0.13%)</title><rect x="43.1257%" y="357" width="0.1263%" height="15" fill="rgb(225,55,31)" fg:x="131103" fg:w="384"/><text x="43.3757%" y="367.50"></text></g><g><title>_ZdlPv (384 samples, 0.13%)</title><rect x="43.1257%" y="341" width="0.1263%" height="15" fill="rgb(211,15,21)" fg:x="131103" fg:w="384"/><text x="43.3757%" y="351.50"></text></g><g><title>_ZdlPv (384 samples, 0.13%)</title><rect x="43.1257%" y="325" width="0.1263%" height="15" fill="rgb(215,187,41)" fg:x="131103" fg:w="384"/><text x="43.3757%" y="335.50"></text></g><g><title>_ZdlPv (381 samples, 0.13%)</title><rect x="43.1267%" y="309" width="0.1253%" height="15" fill="rgb(248,69,32)" fg:x="131106" fg:w="381"/><text x="43.3767%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (241 samples, 0.08%)</title><rect x="43.1727%" y="293" width="0.0793%" height="15" fill="rgb(252,102,52)" fg:x="131246" fg:w="241"/><text x="43.4227%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (152 samples, 0.05%)</title><rect x="43.2020%" y="277" width="0.0500%" height="15" fill="rgb(253,140,32)" fg:x="131335" fg:w="152"/><text x="43.4520%" y="287.50"></text></g><g><title>cshook_security_sb_free_security (404 samples, 0.13%)</title><rect x="43.1254%" y="373" width="0.1329%" height="15" fill="rgb(216,56,42)" fg:x="131102" fg:w="404"/><text x="43.3754%" y="383.50"></text></g><g><title>cshook_security_file_permission (1,110 samples, 0.37%)</title><rect x="42.8958%" y="421" width="0.3651%" height="15" fill="rgb(216,184,14)" fg:x="130404" fg:w="1110"/><text x="43.1458%" y="431.50"></text></g><g><title>cshook_security_sb_free_security (1,109 samples, 0.36%)</title><rect x="42.8961%" y="405" width="0.3648%" height="15" fill="rgb(237,187,27)" fg:x="130405" fg:w="1109"/><text x="43.1461%" y="415.50"></text></g><g><title>cshook_security_sb_free_security (1,109 samples, 0.36%)</title><rect x="42.8961%" y="389" width="0.3648%" height="15" fill="rgb(219,65,3)" fg:x="130405" fg:w="1109"/><text x="43.1461%" y="399.50"></text></g><g><title>exec_binprm (1,148 samples, 0.38%)</title><rect x="42.8846%" y="517" width="0.3776%" height="15" fill="rgb(245,83,25)" fg:x="130370" fg:w="1148"/><text x="43.1346%" y="527.50"></text></g><g><title>search_binary_handler (1,147 samples, 0.38%)</title><rect x="42.8849%" y="501" width="0.3773%" height="15" fill="rgb(214,205,45)" fg:x="130371" fg:w="1147"/><text x="43.1349%" y="511.50"></text></g><g><title>security_bprm_check (1,126 samples, 0.37%)</title><rect x="42.8918%" y="485" width="0.3704%" height="15" fill="rgb(241,20,18)" fg:x="130392" fg:w="1126"/><text x="43.1418%" y="495.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,126 samples, 0.37%)</title><rect x="42.8918%" y="469" width="0.3704%" height="15" fill="rgb(232,163,23)" fg:x="130392" fg:w="1126"/><text x="43.1418%" y="479.50"></text></g><g><title>cshook_security_bprm_check_security (1,126 samples, 0.37%)</title><rect x="42.8918%" y="453" width="0.3704%" height="15" fill="rgb(214,5,46)" fg:x="130392" fg:w="1126"/><text x="43.1418%" y="463.50"></text></g><g><title>cshook_security_file_permission (1,125 samples, 0.37%)</title><rect x="42.8922%" y="437" width="0.3701%" height="15" fill="rgb(229,78,17)" fg:x="130393" fg:w="1125"/><text x="43.1422%" y="447.50"></text></g><g><title>bprm_execve (1,190 samples, 0.39%)</title><rect x="42.8823%" y="549" width="0.3914%" height="15" fill="rgb(248,89,10)" fg:x="130363" fg:w="1190"/><text x="43.1323%" y="559.50"></text></g><g><title>bprm_execve.part.0 (1,190 samples, 0.39%)</title><rect x="42.8823%" y="533" width="0.3914%" height="15" fill="rgb(248,54,15)" fg:x="130363" fg:w="1190"/><text x="43.1323%" y="543.50"></text></g><g><title>shell_execve (1,208 samples, 0.40%)</title><rect x="42.8810%" y="645" width="0.3974%" height="15" fill="rgb(223,116,6)" fg:x="130359" fg:w="1208"/><text x="43.1310%" y="655.50"></text></g><g><title>__GI_execve (1,208 samples, 0.40%)</title><rect x="42.8810%" y="629" width="0.3974%" height="15" fill="rgb(205,125,38)" fg:x="130359" fg:w="1208"/><text x="43.1310%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,208 samples, 0.40%)</title><rect x="42.8810%" y="613" width="0.3974%" height="15" fill="rgb(251,78,38)" fg:x="130359" fg:w="1208"/><text x="43.1310%" y="623.50"></text></g><g><title>do_syscall_64 (1,208 samples, 0.40%)</title><rect x="42.8810%" y="597" width="0.3974%" height="15" fill="rgb(253,78,28)" fg:x="130359" fg:w="1208"/><text x="43.1310%" y="607.50"></text></g><g><title>__x64_sys_execve (1,208 samples, 0.40%)</title><rect x="42.8810%" y="581" width="0.3974%" height="15" fill="rgb(209,120,3)" fg:x="130359" fg:w="1208"/><text x="43.1310%" y="591.50"></text></g><g><title>do_execveat_common.isra.0 (1,208 samples, 0.40%)</title><rect x="42.8810%" y="565" width="0.3974%" height="15" fill="rgb(238,229,9)" fg:x="130359" fg:w="1208"/><text x="43.1310%" y="575.50"></text></g><g><title>exec_builtin (1,213 samples, 0.40%)</title><rect x="42.8800%" y="661" width="0.3990%" height="15" fill="rgb(253,159,18)" fg:x="130356" fg:w="1213"/><text x="43.1300%" y="671.50"></text></g><g><title>[bash] (1,232 samples, 0.41%)</title><rect x="42.8744%" y="677" width="0.4053%" height="15" fill="rgb(244,42,34)" fg:x="130339" fg:w="1232"/><text x="43.1244%" y="687.50"></text></g><g><title>[bash] (1,242 samples, 0.41%)</title><rect x="42.8744%" y="693" width="0.4085%" height="15" fill="rgb(224,8,7)" fg:x="130339" fg:w="1242"/><text x="43.1244%" y="703.50"></text></g><g><title>execute_command (1,258 samples, 0.41%)</title><rect x="42.8695%" y="757" width="0.4138%" height="15" fill="rgb(210,201,45)" fg:x="130324" fg:w="1258"/><text x="43.1195%" y="767.50"></text></g><g><title>execute_command_internal (1,258 samples, 0.41%)</title><rect x="42.8695%" y="741" width="0.4138%" height="15" fill="rgb(252,185,21)" fg:x="130324" fg:w="1258"/><text x="43.1195%" y="751.50"></text></g><g><title>execute_command (1,244 samples, 0.41%)</title><rect x="42.8741%" y="725" width="0.4092%" height="15" fill="rgb(223,131,1)" fg:x="130338" fg:w="1244"/><text x="43.1241%" y="735.50"></text></g><g><title>execute_command_internal (1,244 samples, 0.41%)</title><rect x="42.8741%" y="709" width="0.4092%" height="15" fill="rgb(245,141,16)" fg:x="130338" fg:w="1244"/><text x="43.1241%" y="719.50"></text></g><g><title>[bash] (47 samples, 0.02%)</title><rect x="43.2866%" y="693" width="0.0155%" height="15" fill="rgb(229,55,45)" fg:x="131592" fg:w="47"/><text x="43.5366%" y="703.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="43.2852%" y="709" width="0.0181%" height="15" fill="rgb(208,92,15)" fg:x="131588" fg:w="55"/><text x="43.5352%" y="719.50"></text></g><g><title>reader_loop (1,321 samples, 0.43%)</title><rect x="42.8695%" y="773" width="0.4345%" height="15" fill="rgb(234,185,47)" fg:x="130324" fg:w="1321"/><text x="43.1195%" y="783.50"></text></g><g><title>read_command (63 samples, 0.02%)</title><rect x="43.2833%" y="757" width="0.0207%" height="15" fill="rgb(253,104,50)" fg:x="131582" fg:w="63"/><text x="43.5333%" y="767.50"></text></g><g><title>parse_command (62 samples, 0.02%)</title><rect x="43.2836%" y="741" width="0.0204%" height="15" fill="rgb(205,70,7)" fg:x="131583" fg:w="62"/><text x="43.5336%" y="751.50"></text></g><g><title>yyparse (62 samples, 0.02%)</title><rect x="43.2836%" y="725" width="0.0204%" height="15" fill="rgb(240,178,43)" fg:x="131583" fg:w="62"/><text x="43.5336%" y="735.50"></text></g><g><title>__libc_start_main_impl (1,627 samples, 0.54%)</title><rect x="42.7862%" y="821" width="0.5352%" height="15" fill="rgb(214,112,2)" fg:x="130071" fg:w="1627"/><text x="43.0362%" y="831.50"></text></g><g><title>__libc_start_call_main (1,621 samples, 0.53%)</title><rect x="42.7882%" y="805" width="0.5332%" height="15" fill="rgb(206,46,17)" fg:x="130077" fg:w="1621"/><text x="43.0382%" y="815.50"></text></g><g><title>main (1,621 samples, 0.53%)</title><rect x="42.7882%" y="789" width="0.5332%" height="15" fill="rgb(225,220,16)" fg:x="130077" fg:w="1621"/><text x="43.0382%" y="799.50"></text></g><g><title>mmap_region (32 samples, 0.01%)</title><rect x="43.3464%" y="517" width="0.0105%" height="15" fill="rgb(238,65,40)" fg:x="131774" fg:w="32"/><text x="43.5964%" y="527.50"></text></g><g><title>__x64_sys_mmap (33 samples, 0.01%)</title><rect x="43.3464%" y="581" width="0.0109%" height="15" fill="rgb(230,151,21)" fg:x="131774" fg:w="33"/><text x="43.5964%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (33 samples, 0.01%)</title><rect x="43.3464%" y="565" width="0.0109%" height="15" fill="rgb(218,58,49)" fg:x="131774" fg:w="33"/><text x="43.5964%" y="575.50"></text></g><g><title>vm_mmap_pgoff (33 samples, 0.01%)</title><rect x="43.3464%" y="549" width="0.0109%" height="15" fill="rgb(219,179,14)" fg:x="131774" fg:w="33"/><text x="43.5964%" y="559.50"></text></g><g><title>do_mmap (33 samples, 0.01%)</title><rect x="43.3464%" y="533" width="0.0109%" height="15" fill="rgb(223,72,1)" fg:x="131774" fg:w="33"/><text x="43.5964%" y="543.50"></text></g><g><title>__mmap64 (38 samples, 0.01%)</title><rect x="43.3454%" y="661" width="0.0125%" height="15" fill="rgb(238,126,10)" fg:x="131771" fg:w="38"/><text x="43.5954%" y="671.50"></text></g><g><title>__mmap64 (38 samples, 0.01%)</title><rect x="43.3454%" y="645" width="0.0125%" height="15" fill="rgb(224,206,38)" fg:x="131771" fg:w="38"/><text x="43.5954%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.01%)</title><rect x="43.3464%" y="629" width="0.0115%" height="15" fill="rgb(212,201,54)" fg:x="131774" fg:w="35"/><text x="43.5964%" y="639.50"></text></g><g><title>do_syscall_64 (35 samples, 0.01%)</title><rect x="43.3464%" y="613" width="0.0115%" height="15" fill="rgb(218,154,48)" fg:x="131774" fg:w="35"/><text x="43.5964%" y="623.50"></text></g><g><title>unload_network_ops_symbols (35 samples, 0.01%)</title><rect x="43.3464%" y="597" width="0.0115%" height="15" fill="rgb(232,93,24)" fg:x="131774" fg:w="35"/><text x="43.5964%" y="607.50"></text></g><g><title>_dl_map_segments (49 samples, 0.02%)</title><rect x="43.3435%" y="677" width="0.0161%" height="15" fill="rgb(245,30,21)" fg:x="131765" fg:w="49"/><text x="43.5935%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (75 samples, 0.02%)</title><rect x="43.3425%" y="693" width="0.0247%" height="15" fill="rgb(242,148,29)" fg:x="131762" fg:w="75"/><text x="43.5925%" y="703.50"></text></g><g><title>_dl_map_object_deps (119 samples, 0.04%)</title><rect x="43.3326%" y="757" width="0.0391%" height="15" fill="rgb(244,153,54)" fg:x="131732" fg:w="119"/><text x="43.5826%" y="767.50"></text></g><g><title>_dl_catch_exception (117 samples, 0.04%)</title><rect x="43.3333%" y="741" width="0.0385%" height="15" fill="rgb(252,87,22)" fg:x="131734" fg:w="117"/><text x="43.5833%" y="751.50"></text></g><g><title>openaux (117 samples, 0.04%)</title><rect x="43.3333%" y="725" width="0.0385%" height="15" fill="rgb(210,51,29)" fg:x="131734" fg:w="117"/><text x="43.5833%" y="735.50"></text></g><g><title>_dl_map_object (117 samples, 0.04%)</title><rect x="43.3333%" y="709" width="0.0385%" height="15" fill="rgb(242,136,47)" fg:x="131734" fg:w="117"/><text x="43.5833%" y="719.50"></text></g><g><title>_dl_lookup_symbol_x (81 samples, 0.03%)</title><rect x="43.3905%" y="709" width="0.0266%" height="15" fill="rgb(238,68,4)" fg:x="131908" fg:w="81"/><text x="43.6405%" y="719.50"></text></g><g><title>do_lookup_x (62 samples, 0.02%)</title><rect x="43.3968%" y="693" width="0.0204%" height="15" fill="rgb(242,161,30)" fg:x="131927" fg:w="62"/><text x="43.6468%" y="703.50"></text></g><g><title>check_match (34 samples, 0.01%)</title><rect x="43.4060%" y="677" width="0.0112%" height="15" fill="rgb(218,58,44)" fg:x="131955" fg:w="34"/><text x="43.6560%" y="687.50"></text></g><g><title>elf_machine_rela (103 samples, 0.03%)</title><rect x="43.3843%" y="725" width="0.0339%" height="15" fill="rgb(252,125,32)" fg:x="131889" fg:w="103"/><text x="43.6343%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (146 samples, 0.05%)</title><rect x="43.3816%" y="741" width="0.0480%" height="15" fill="rgb(219,178,0)" fg:x="131881" fg:w="146"/><text x="43.6316%" y="751.50"></text></g><g><title>elf_machine_rela_relative (35 samples, 0.01%)</title><rect x="43.4181%" y="725" width="0.0115%" height="15" fill="rgb(213,152,7)" fg:x="131992" fg:w="35"/><text x="43.6681%" y="735.50"></text></g><g><title>_dl_relocate_object (169 samples, 0.06%)</title><rect x="43.3747%" y="757" width="0.0556%" height="15" fill="rgb(249,109,34)" fg:x="131860" fg:w="169"/><text x="43.6247%" y="767.50"></text></g><g><title>dl_main (360 samples, 0.12%)</title><rect x="43.3227%" y="773" width="0.1184%" height="15" fill="rgb(232,96,21)" fg:x="131702" fg:w="360"/><text x="43.5727%" y="783.50"></text></g><g><title>_dl_start_final (375 samples, 0.12%)</title><rect x="43.3214%" y="805" width="0.1234%" height="15" fill="rgb(228,27,39)" fg:x="131698" fg:w="375"/><text x="43.5714%" y="815.50"></text></g><g><title>_dl_sysdep_start (373 samples, 0.12%)</title><rect x="43.3221%" y="789" width="0.1227%" height="15" fill="rgb(211,182,52)" fg:x="131700" fg:w="373"/><text x="43.5721%" y="799.50"></text></g><g><title>_dl_start (381 samples, 0.13%)</title><rect x="43.3214%" y="821" width="0.1253%" height="15" fill="rgb(234,178,38)" fg:x="131698" fg:w="381"/><text x="43.5714%" y="831.50"></text></g><g><title>_start (2,021 samples, 0.66%)</title><rect x="42.7862%" y="837" width="0.6648%" height="15" fill="rgb(221,111,3)" fg:x="130071" fg:w="2021"/><text x="43.0362%" y="847.50"></text></g><g><title>asm_exc_page_fault (31 samples, 0.01%)</title><rect x="43.4510%" y="837" width="0.0102%" height="15" fill="rgb(228,175,21)" fg:x="132092" fg:w="31"/><text x="43.7010%" y="847.50"></text></g><g><title>exec_mmap (101 samples, 0.03%)</title><rect x="43.4642%" y="677" width="0.0332%" height="15" fill="rgb(228,174,43)" fg:x="132132" fg:w="101"/><text x="43.7142%" y="687.50"></text></g><g><title>mmput (100 samples, 0.03%)</title><rect x="43.4645%" y="661" width="0.0329%" height="15" fill="rgb(211,191,0)" fg:x="132133" fg:w="100"/><text x="43.7145%" y="671.50"></text></g><g><title>exit_mmap (100 samples, 0.03%)</title><rect x="43.4645%" y="645" width="0.0329%" height="15" fill="rgb(253,117,3)" fg:x="132133" fg:w="100"/><text x="43.7145%" y="655.50"></text></g><g><title>unmap_vmas (62 samples, 0.02%)</title><rect x="43.4770%" y="629" width="0.0204%" height="15" fill="rgb(241,127,19)" fg:x="132171" fg:w="62"/><text x="43.7270%" y="639.50"></text></g><g><title>unmap_single_vma (60 samples, 0.02%)</title><rect x="43.4777%" y="613" width="0.0197%" height="15" fill="rgb(218,103,12)" fg:x="132173" fg:w="60"/><text x="43.7277%" y="623.50"></text></g><g><title>unmap_page_range (59 samples, 0.02%)</title><rect x="43.4780%" y="597" width="0.0194%" height="15" fill="rgb(236,214,43)" fg:x="132174" fg:w="59"/><text x="43.7280%" y="607.50"></text></g><g><title>zap_pmd_range.isra.0 (55 samples, 0.02%)</title><rect x="43.4793%" y="581" width="0.0181%" height="15" fill="rgb(244,144,19)" fg:x="132178" fg:w="55"/><text x="43.7293%" y="591.50"></text></g><g><title>zap_pte_range (49 samples, 0.02%)</title><rect x="43.4813%" y="565" width="0.0161%" height="15" fill="rgb(246,188,10)" fg:x="132184" fg:w="49"/><text x="43.7313%" y="575.50"></text></g><g><title>begin_new_exec (106 samples, 0.03%)</title><rect x="43.4632%" y="693" width="0.0349%" height="15" fill="rgb(212,193,33)" fg:x="132129" fg:w="106"/><text x="43.7132%" y="703.50"></text></g><g><title>load_elf_binary (160 samples, 0.05%)</title><rect x="43.4616%" y="709" width="0.0526%" height="15" fill="rgb(241,51,29)" fg:x="132124" fg:w="160"/><text x="43.7116%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (161 samples, 0.05%)</title><rect x="43.4616%" y="837" width="0.0530%" height="15" fill="rgb(211,58,19)" fg:x="132124" fg:w="161"/><text x="43.7116%" y="847.50"></text></g><g><title>do_syscall_64 (161 samples, 0.05%)</title><rect x="43.4616%" y="821" width="0.0530%" height="15" fill="rgb(229,111,26)" fg:x="132124" fg:w="161"/><text x="43.7116%" y="831.50"></text></g><g><title>__x64_sys_execve (161 samples, 0.05%)</title><rect x="43.4616%" y="805" width="0.0530%" height="15" fill="rgb(213,115,40)" fg:x="132124" fg:w="161"/><text x="43.7116%" y="815.50"></text></g><g><title>do_execveat_common.isra.0 (161 samples, 0.05%)</title><rect x="43.4616%" y="789" width="0.0530%" height="15" fill="rgb(209,56,44)" fg:x="132124" fg:w="161"/><text x="43.7116%" y="799.50"></text></g><g><title>bprm_execve (161 samples, 0.05%)</title><rect x="43.4616%" y="773" width="0.0530%" height="15" fill="rgb(230,108,32)" fg:x="132124" fg:w="161"/><text x="43.7116%" y="783.50"></text></g><g><title>bprm_execve.part.0 (161 samples, 0.05%)</title><rect x="43.4616%" y="757" width="0.0530%" height="15" fill="rgb(216,165,31)" fg:x="132124" fg:w="161"/><text x="43.7116%" y="767.50"></text></g><g><title>exec_binprm (161 samples, 0.05%)</title><rect x="43.4616%" y="741" width="0.0530%" height="15" fill="rgb(218,122,21)" fg:x="132124" fg:w="161"/><text x="43.7116%" y="751.50"></text></g><g><title>search_binary_handler (161 samples, 0.05%)</title><rect x="43.4616%" y="725" width="0.0530%" height="15" fill="rgb(223,224,47)" fg:x="132124" fg:w="161"/><text x="43.7116%" y="735.50"></text></g><g><title>cc_wrapper.sh (2,271 samples, 0.75%)</title><rect x="42.7678%" y="853" width="0.7470%" height="15" fill="rgb(238,102,44)" fg:x="130015" fg:w="2271"/><text x="43.0178%" y="863.50"></text></g><g><title>[[heap]] (419 samples, 0.14%)</title><rect x="43.5171%" y="837" width="0.1378%" height="15" fill="rgb(236,46,40)" fg:x="132293" fg:w="419"/><text x="43.7671%" y="847.50"></text></g><g><title>[[stack]] (245 samples, 0.08%)</title><rect x="43.6550%" y="837" width="0.0806%" height="15" fill="rgb(247,202,50)" fg:x="132712" fg:w="245"/><text x="43.9050%" y="847.50"></text></g><g><title>[anon] (79 samples, 0.03%)</title><rect x="43.7379%" y="837" width="0.0260%" height="15" fill="rgb(209,99,20)" fg:x="132964" fg:w="79"/><text x="43.9879%" y="847.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (49 samples, 0.02%)</title><rect x="43.7948%" y="725" width="0.0161%" height="15" fill="rgb(252,27,34)" fg:x="133137" fg:w="49"/><text x="44.0448%" y="735.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (49 samples, 0.02%)</title><rect x="43.7948%" y="709" width="0.0161%" height="15" fill="rgb(215,206,23)" fg:x="133137" fg:w="49"/><text x="44.0448%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (49 samples, 0.02%)</title><rect x="43.7948%" y="693" width="0.0161%" height="15" fill="rgb(212,135,36)" fg:x="133137" fg:w="49"/><text x="44.0448%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (49 samples, 0.02%)</title><rect x="43.7948%" y="677" width="0.0161%" height="15" fill="rgb(240,189,1)" fg:x="133137" fg:w="49"/><text x="44.0448%" y="687.50"></text></g><g><title>clang::Parser::ParseLinkage (47 samples, 0.02%)</title><rect x="43.7954%" y="661" width="0.0155%" height="15" fill="rgb(242,56,20)" fg:x="133139" fg:w="47"/><text x="44.0454%" y="671.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (47 samples, 0.02%)</title><rect x="43.7954%" y="645" width="0.0155%" height="15" fill="rgb(247,132,33)" fg:x="133139" fg:w="47"/><text x="44.0454%" y="655.50"></text></g><g><title>ExecuteCC1Tool (58 samples, 0.02%)</title><rect x="43.7925%" y="821" width="0.0191%" height="15" fill="rgb(208,149,11)" fg:x="133130" fg:w="58"/><text x="44.0425%" y="831.50"></text></g><g><title>cc1_main (58 samples, 0.02%)</title><rect x="43.7925%" y="805" width="0.0191%" height="15" fill="rgb(211,33,11)" fg:x="133130" fg:w="58"/><text x="44.0425%" y="815.50"></text></g><g><title>clang::ExecuteCompilerInvocation (57 samples, 0.02%)</title><rect x="43.7928%" y="789" width="0.0187%" height="15" fill="rgb(221,29,38)" fg:x="133131" fg:w="57"/><text x="44.0428%" y="799.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (57 samples, 0.02%)</title><rect x="43.7928%" y="773" width="0.0187%" height="15" fill="rgb(206,182,49)" fg:x="133131" fg:w="57"/><text x="44.0428%" y="783.50"></text></g><g><title>clang::FrontendAction::Execute (57 samples, 0.02%)</title><rect x="43.7928%" y="757" width="0.0187%" height="15" fill="rgb(216,140,1)" fg:x="133131" fg:w="57"/><text x="44.0428%" y="767.50"></text></g><g><title>clang::ParseAST (57 samples, 0.02%)</title><rect x="43.7928%" y="741" width="0.0187%" height="15" fill="rgb(232,57,40)" fg:x="133131" fg:w="57"/><text x="44.0428%" y="751.50"></text></g><g><title>llvm::opt::OptTable::ParseArgs (32 samples, 0.01%)</title><rect x="43.8435%" y="773" width="0.0105%" height="15" fill="rgb(224,186,18)" fg:x="133285" fg:w="32"/><text x="44.0935%" y="783.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgs (69 samples, 0.02%)</title><rect x="43.8319%" y="805" width="0.0227%" height="15" fill="rgb(215,121,11)" fg:x="133250" fg:w="69"/><text x="44.0819%" y="815.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgsImpl (69 samples, 0.02%)</title><rect x="43.8319%" y="789" width="0.0227%" height="15" fill="rgb(245,147,10)" fg:x="133250" fg:w="69"/><text x="44.0819%" y="799.50"></text></g><g><title>llvm::TargetPassConfig::addPass (39 samples, 0.01%)</title><rect x="43.8750%" y="677" width="0.0128%" height="15" fill="rgb(238,153,13)" fg:x="133381" fg:w="39"/><text x="44.1250%" y="687.50"></text></g><g><title>llvm::TargetPassConfig::addMachinePasses (50 samples, 0.02%)</title><rect x="43.8731%" y="693" width="0.0164%" height="15" fill="rgb(233,108,0)" fg:x="133375" fg:w="50"/><text x="44.1231%" y="703.50"></text></g><g><title>llvm::LLVMTargetMachine::addPassesToEmitFile (117 samples, 0.04%)</title><rect x="43.8609%" y="709" width="0.0385%" height="15" fill="rgb(212,157,17)" fg:x="133338" fg:w="117"/><text x="44.1109%" y="719.50"></text></g><g><title>llvm::AsmPrinter::doInitialization (33 samples, 0.01%)</title><rect x="43.9139%" y="677" width="0.0109%" height="15" fill="rgb(225,213,38)" fg:x="133499" fg:w="33"/><text x="44.1639%" y="687.50"></text></g><g><title>llvm::FPPassManager::doInitialization (37 samples, 0.01%)</title><rect x="43.9129%" y="693" width="0.0122%" height="15" fill="rgb(248,16,11)" fg:x="133496" fg:w="37"/><text x="44.1629%" y="703.50"></text></g><g><title>llvm::FPPassManager::runOnModule (48 samples, 0.02%)</title><rect x="43.9250%" y="693" width="0.0158%" height="15" fill="rgb(241,33,4)" fg:x="133533" fg:w="48"/><text x="44.1750%" y="703.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (48 samples, 0.02%)</title><rect x="43.9250%" y="677" width="0.0158%" height="15" fill="rgb(222,26,43)" fg:x="133533" fg:w="48"/><text x="44.1750%" y="687.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (100 samples, 0.03%)</title><rect x="43.9089%" y="709" width="0.0329%" height="15" fill="rgb(243,29,36)" fg:x="133484" fg:w="100"/><text x="44.1589%" y="719.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (250 samples, 0.08%)</title><rect x="43.8606%" y="741" width="0.0822%" height="15" fill="rgb(241,9,27)" fg:x="133337" fg:w="250"/><text x="44.1106%" y="751.50"></text></g><g><title>clang::EmitBackendOutput (250 samples, 0.08%)</title><rect x="43.8606%" y="725" width="0.0822%" height="15" fill="rgb(205,117,26)" fg:x="133337" fg:w="250"/><text x="44.1106%" y="735.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (51 samples, 0.02%)</title><rect x="43.9530%" y="501" width="0.0168%" height="15" fill="rgb(209,80,39)" fg:x="133618" fg:w="51"/><text x="44.2030%" y="511.50"></text></g><g><title>clang::Lexer::LexTokenInternal (36 samples, 0.01%)</title><rect x="43.9889%" y="469" width="0.0118%" height="15" fill="rgb(239,155,6)" fg:x="133727" fg:w="36"/><text x="44.2389%" y="479.50"></text></g><g><title>clang::Preprocessor::HandleIfdefDirective (60 samples, 0.02%)</title><rect x="43.9856%" y="501" width="0.0197%" height="15" fill="rgb(212,104,12)" fg:x="133717" fg:w="60"/><text x="44.2356%" y="511.50"></text></g><g><title>clang::Preprocessor::SkipExcludedConditionalBlock (54 samples, 0.02%)</title><rect x="43.9875%" y="485" width="0.0178%" height="15" fill="rgb(234,204,3)" fg:x="133723" fg:w="54"/><text x="44.2375%" y="495.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (203 samples, 0.07%)</title><rect x="43.9520%" y="597" width="0.0668%" height="15" fill="rgb(251,218,7)" fg:x="133615" fg:w="203"/><text x="44.2020%" y="607.50"></text></g><g><title>clang::Preprocessor::Lex (203 samples, 0.07%)</title><rect x="43.9520%" y="581" width="0.0668%" height="15" fill="rgb(221,81,32)" fg:x="133615" fg:w="203"/><text x="44.2020%" y="591.50"></text></g><g><title>clang::Preprocessor::CachingLex (202 samples, 0.07%)</title><rect x="43.9523%" y="565" width="0.0664%" height="15" fill="rgb(214,152,26)" fg:x="133616" fg:w="202"/><text x="44.2023%" y="575.50"></text></g><g><title>clang::Preprocessor::Lex (202 samples, 0.07%)</title><rect x="43.9523%" y="549" width="0.0664%" height="15" fill="rgb(223,22,3)" fg:x="133616" fg:w="202"/><text x="44.2023%" y="559.50"></text></g><g><title>clang::Lexer::LexTokenInternal (202 samples, 0.07%)</title><rect x="43.9523%" y="533" width="0.0664%" height="15" fill="rgb(207,174,7)" fg:x="133616" fg:w="202"/><text x="44.2023%" y="543.50"></text></g><g><title>clang::Preprocessor::HandleDirective (200 samples, 0.07%)</title><rect x="43.9530%" y="517" width="0.0658%" height="15" fill="rgb(224,19,52)" fg:x="133618" fg:w="200"/><text x="44.2030%" y="527.50"></text></g><g><title>clang::Parser::ParseDeclGroup (239 samples, 0.08%)</title><rect x="43.9520%" y="613" width="0.0786%" height="15" fill="rgb(228,24,14)" fg:x="133615" fg:w="239"/><text x="44.2020%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclaration (260 samples, 0.09%)</title><rect x="43.9520%" y="645" width="0.0855%" height="15" fill="rgb(230,153,43)" fg:x="133615" fg:w="260"/><text x="44.2020%" y="655.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (260 samples, 0.09%)</title><rect x="43.9520%" y="629" width="0.0855%" height="15" fill="rgb(231,106,12)" fg:x="133615" fg:w="260"/><text x="44.2020%" y="639.50"></text></g><g><title>clang::Preprocessor::HandleDirective (39 samples, 0.01%)</title><rect x="44.0379%" y="549" width="0.0128%" height="15" fill="rgb(215,92,2)" fg:x="133876" fg:w="39"/><text x="44.2879%" y="559.50"></text></g><g><title>clang::Lexer::LexTokenInternal (41 samples, 0.01%)</title><rect x="44.0375%" y="565" width="0.0135%" height="15" fill="rgb(249,143,25)" fg:x="133875" fg:w="41"/><text x="44.2875%" y="575.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (47 samples, 0.02%)</title><rect x="44.0375%" y="597" width="0.0155%" height="15" fill="rgb(252,7,35)" fg:x="133875" fg:w="47"/><text x="44.2875%" y="607.50"></text></g><g><title>clang::Preprocessor::Lex (47 samples, 0.02%)</title><rect x="44.0375%" y="581" width="0.0155%" height="15" fill="rgb(216,69,40)" fg:x="133875" fg:w="47"/><text x="44.2875%" y="591.50"></text></g><g><title>clang::Sema::ActOnDeclarator (55 samples, 0.02%)</title><rect x="44.0596%" y="581" width="0.0181%" height="15" fill="rgb(240,36,33)" fg:x="133942" fg:w="55"/><text x="44.3096%" y="591.50"></text></g><g><title>clang::Sema::HandleDeclarator (55 samples, 0.02%)</title><rect x="44.0596%" y="565" width="0.0181%" height="15" fill="rgb(231,128,14)" fg:x="133942" fg:w="55"/><text x="44.3096%" y="575.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (59 samples, 0.02%)</title><rect x="44.0596%" y="597" width="0.0194%" height="15" fill="rgb(245,143,14)" fg:x="133942" fg:w="59"/><text x="44.3096%" y="607.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (55 samples, 0.02%)</title><rect x="44.0806%" y="581" width="0.0181%" height="15" fill="rgb(222,130,28)" fg:x="134006" fg:w="55"/><text x="44.3306%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclGroup (188 samples, 0.06%)</title><rect x="44.0375%" y="613" width="0.0618%" height="15" fill="rgb(212,10,48)" fg:x="133875" fg:w="188"/><text x="44.2875%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (62 samples, 0.02%)</title><rect x="44.0790%" y="597" width="0.0204%" height="15" fill="rgb(254,118,45)" fg:x="134001" fg:w="62"/><text x="44.3290%" y="607.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (489 samples, 0.16%)</title><rect x="43.9520%" y="661" width="0.1609%" height="15" fill="rgb(228,6,45)" fg:x="133615" fg:w="489"/><text x="44.2020%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (229 samples, 0.08%)</title><rect x="44.0375%" y="645" width="0.0753%" height="15" fill="rgb(241,18,35)" fg:x="133875" fg:w="229"/><text x="44.2875%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (229 samples, 0.08%)</title><rect x="44.0375%" y="629" width="0.0753%" height="15" fill="rgb(227,214,53)" fg:x="133875" fg:w="229"/><text x="44.2875%" y="639.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (510 samples, 0.17%)</title><rect x="43.9474%" y="741" width="0.1678%" height="15" fill="rgb(224,107,51)" fg:x="133601" fg:w="510"/><text x="44.1974%" y="751.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (510 samples, 0.17%)</title><rect x="43.9474%" y="725" width="0.1678%" height="15" fill="rgb(248,60,28)" fg:x="133601" fg:w="510"/><text x="44.1974%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (510 samples, 0.17%)</title><rect x="43.9474%" y="709" width="0.1678%" height="15" fill="rgb(249,101,23)" fg:x="133601" fg:w="510"/><text x="44.1974%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (510 samples, 0.17%)</title><rect x="43.9474%" y="693" width="0.1678%" height="15" fill="rgb(228,51,19)" fg:x="133601" fg:w="510"/><text x="44.1974%" y="703.50"></text></g><g><title>clang::Parser::ParseLinkage (496 samples, 0.16%)</title><rect x="43.9520%" y="677" width="0.1632%" height="15" fill="rgb(213,20,6)" fg:x="133615" fg:w="496"/><text x="44.2020%" y="687.50"></text></g><g><title>cc1_main (871 samples, 0.29%)</title><rect x="43.8319%" y="821" width="0.2865%" height="15" fill="rgb(212,124,10)" fg:x="133250" fg:w="871"/><text x="44.0819%" y="831.50"></text></g><g><title>clang::ExecuteCompilerInvocation (802 samples, 0.26%)</title><rect x="43.8546%" y="805" width="0.2638%" height="15" fill="rgb(248,3,40)" fg:x="133319" fg:w="802"/><text x="44.1046%" y="815.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (802 samples, 0.26%)</title><rect x="43.8546%" y="789" width="0.2638%" height="15" fill="rgb(223,178,23)" fg:x="133319" fg:w="802"/><text x="44.1046%" y="799.50"></text></g><g><title>clang::FrontendAction::Execute (793 samples, 0.26%)</title><rect x="43.8576%" y="773" width="0.2609%" height="15" fill="rgb(240,132,45)" fg:x="133328" fg:w="793"/><text x="44.1076%" y="783.50"></text></g><g><title>clang::ParseAST (793 samples, 0.26%)</title><rect x="43.8576%" y="757" width="0.2609%" height="15" fill="rgb(245,164,36)" fg:x="133328" fg:w="793"/><text x="44.1076%" y="767.50"></text></g><g><title>llvm::X86LegalizerInfo::X86LegalizerInfo (49 samples, 0.02%)</title><rect x="44.1444%" y="709" width="0.0161%" height="15" fill="rgb(231,188,53)" fg:x="134200" fg:w="49"/><text x="44.3944%" y="719.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (120 samples, 0.04%)</title><rect x="44.1234%" y="821" width="0.0395%" height="15" fill="rgb(237,198,39)" fg:x="134136" fg:w="120"/><text x="44.3734%" y="831.50"></text></g><g><title>clang::EmitBackendOutput (106 samples, 0.03%)</title><rect x="44.1280%" y="805" width="0.0349%" height="15" fill="rgb(223,120,35)" fg:x="134150" fg:w="106"/><text x="44.3780%" y="815.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (106 samples, 0.03%)</title><rect x="44.1280%" y="789" width="0.0349%" height="15" fill="rgb(253,107,49)" fg:x="134150" fg:w="106"/><text x="44.3780%" y="799.50"></text></g><g><title>llvm::FPPassManager::runOnModule (79 samples, 0.03%)</title><rect x="44.1369%" y="773" width="0.0260%" height="15" fill="rgb(216,44,31)" fg:x="134177" fg:w="79"/><text x="44.3869%" y="783.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (79 samples, 0.03%)</title><rect x="44.1369%" y="757" width="0.0260%" height="15" fill="rgb(253,87,21)" fg:x="134177" fg:w="79"/><text x="44.3869%" y="767.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (58 samples, 0.02%)</title><rect x="44.1438%" y="741" width="0.0191%" height="15" fill="rgb(226,18,2)" fg:x="134198" fg:w="58"/><text x="44.3938%" y="751.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (58 samples, 0.02%)</title><rect x="44.1438%" y="725" width="0.0191%" height="15" fill="rgb(216,8,46)" fg:x="134198" fg:w="58"/><text x="44.3938%" y="735.50"></text></g><g><title>clang::CodeGen::CodeGenModule::EmitTopLevelDecl (38 samples, 0.01%)</title><rect x="44.1724%" y="821" width="0.0125%" height="15" fill="rgb(226,140,39)" fg:x="134285" fg:w="38"/><text x="44.4224%" y="831.50"></text></g><g><title>clang::CodeGen::CodeGenModule::EmitGlobalDefinition (38 samples, 0.01%)</title><rect x="44.1724%" y="805" width="0.0125%" height="15" fill="rgb(221,194,54)" fg:x="134285" fg:w="38"/><text x="44.4224%" y="815.50"></text></g><g><title>clang::CodeGen::CodeGenModule::EmitGlobalFunctionDefinition (38 samples, 0.01%)</title><rect x="44.1724%" y="789" width="0.0125%" height="15" fill="rgb(213,92,11)" fg:x="134285" fg:w="38"/><text x="44.4224%" y="799.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (55 samples, 0.02%)</title><rect x="44.1879%" y="677" width="0.0181%" height="15" fill="rgb(229,162,46)" fg:x="134332" fg:w="55"/><text x="44.4379%" y="687.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (48 samples, 0.02%)</title><rect x="44.1902%" y="661" width="0.0158%" height="15" fill="rgb(214,111,36)" fg:x="134339" fg:w="48"/><text x="44.4402%" y="671.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (65 samples, 0.02%)</title><rect x="44.1862%" y="773" width="0.0214%" height="15" fill="rgb(207,6,21)" fg:x="134327" fg:w="65"/><text x="44.4362%" y="783.50"></text></g><g><title>clang::EmitBackendOutput (65 samples, 0.02%)</title><rect x="44.1862%" y="757" width="0.0214%" height="15" fill="rgb(213,127,38)" fg:x="134327" fg:w="65"/><text x="44.4362%" y="767.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (65 samples, 0.02%)</title><rect x="44.1862%" y="741" width="0.0214%" height="15" fill="rgb(238,118,32)" fg:x="134327" fg:w="65"/><text x="44.4362%" y="751.50"></text></g><g><title>llvm::FPPassManager::runOnModule (65 samples, 0.02%)</title><rect x="44.1862%" y="725" width="0.0214%" height="15" fill="rgb(240,139,39)" fg:x="134327" fg:w="65"/><text x="44.4362%" y="735.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (65 samples, 0.02%)</title><rect x="44.1862%" y="709" width="0.0214%" height="15" fill="rgb(235,10,37)" fg:x="134327" fg:w="65"/><text x="44.4362%" y="719.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (60 samples, 0.02%)</title><rect x="44.1879%" y="693" width="0.0197%" height="15" fill="rgb(249,171,38)" fg:x="134332" fg:w="60"/><text x="44.4379%" y="703.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (84 samples, 0.03%)</title><rect x="44.1862%" y="821" width="0.0276%" height="15" fill="rgb(242,144,32)" fg:x="134327" fg:w="84"/><text x="44.4362%" y="831.50"></text></g><g><title>clang::FrontendAction::Execute (84 samples, 0.03%)</title><rect x="44.1862%" y="805" width="0.0276%" height="15" fill="rgb(217,117,21)" fg:x="134327" fg:w="84"/><text x="44.4362%" y="815.50"></text></g><g><title>clang::ParseAST (84 samples, 0.03%)</title><rect x="44.1862%" y="789" width="0.0276%" height="15" fill="rgb(249,87,1)" fg:x="134327" fg:w="84"/><text x="44.4362%" y="799.50"></text></g><g><title>do_readlinkat (44 samples, 0.01%)</title><rect x="44.2319%" y="645" width="0.0145%" height="15" fill="rgb(248,196,48)" fg:x="134466" fg:w="44"/><text x="44.4819%" y="655.50"></text></g><g><title>__GI_readlink (46 samples, 0.02%)</title><rect x="44.2316%" y="709" width="0.0151%" height="15" fill="rgb(251,206,33)" fg:x="134465" fg:w="46"/><text x="44.4816%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.01%)</title><rect x="44.2319%" y="693" width="0.0148%" height="15" fill="rgb(232,141,28)" fg:x="134466" fg:w="45"/><text x="44.4819%" y="703.50"></text></g><g><title>do_syscall_64 (45 samples, 0.01%)</title><rect x="44.2319%" y="677" width="0.0148%" height="15" fill="rgb(209,167,14)" fg:x="134466" fg:w="45"/><text x="44.4819%" y="687.50"></text></g><g><title>__x64_sys_readlink (45 samples, 0.01%)</title><rect x="44.2319%" y="661" width="0.0148%" height="15" fill="rgb(225,11,50)" fg:x="134466" fg:w="45"/><text x="44.4819%" y="671.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (33 samples, 0.01%)</title><rect x="44.2576%" y="565" width="0.0109%" height="15" fill="rgb(209,50,20)" fg:x="134544" fg:w="33"/><text x="44.5076%" y="575.50"></text></g><g><title>do_filp_open (56 samples, 0.02%)</title><rect x="44.2527%" y="597" width="0.0184%" height="15" fill="rgb(212,17,46)" fg:x="134529" fg:w="56"/><text x="44.5027%" y="607.50"></text></g><g><title>path_openat (56 samples, 0.02%)</title><rect x="44.2527%" y="581" width="0.0184%" height="15" fill="rgb(216,101,39)" fg:x="134529" fg:w="56"/><text x="44.5027%" y="591.50"></text></g><g><title>__x64_sys_openat (70 samples, 0.02%)</title><rect x="44.2523%" y="629" width="0.0230%" height="15" fill="rgb(212,228,48)" fg:x="134528" fg:w="70"/><text x="44.5023%" y="639.50"></text></g><g><title>do_sys_openat2 (70 samples, 0.02%)</title><rect x="44.2523%" y="613" width="0.0230%" height="15" fill="rgb(250,6,50)" fg:x="134528" fg:w="70"/><text x="44.5023%" y="623.50"></text></g><g><title>cshook_systemcalltable_post_openat (52 samples, 0.02%)</title><rect x="44.2754%" y="629" width="0.0171%" height="15" fill="rgb(250,160,48)" fg:x="134598" fg:w="52"/><text x="44.5254%" y="639.50"></text></g><g><title>fshook_syscalltable_pre_lchown (41 samples, 0.01%)</title><rect x="44.2790%" y="613" width="0.0135%" height="15" fill="rgb(244,216,33)" fg:x="134609" fg:w="41"/><text x="44.5290%" y="623.50"></text></g><g><title>do_syscall_64 (137 samples, 0.05%)</title><rect x="44.2484%" y="661" width="0.0451%" height="15" fill="rgb(207,157,5)" fg:x="134516" fg:w="137"/><text x="44.4984%" y="671.50"></text></g><g><title>unload_network_ops_symbols (125 samples, 0.04%)</title><rect x="44.2523%" y="645" width="0.0411%" height="15" fill="rgb(228,199,8)" fg:x="134528" fg:w="125"/><text x="44.5023%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (138 samples, 0.05%)</title><rect x="44.2484%" y="677" width="0.0454%" height="15" fill="rgb(227,80,20)" fg:x="134516" fg:w="138"/><text x="44.4984%" y="687.50"></text></g><g><title>__libc_open64 (140 samples, 0.05%)</title><rect x="44.2481%" y="693" width="0.0461%" height="15" fill="rgb(222,9,33)" fg:x="134515" fg:w="140"/><text x="44.4981%" y="703.50"></text></g><g><title>llvm::sys::fs::openFile (148 samples, 0.05%)</title><rect x="44.2467%" y="709" width="0.0487%" height="15" fill="rgb(239,44,28)" fg:x="134511" fg:w="148"/><text x="44.4967%" y="719.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (207 samples, 0.07%)</title><rect x="44.2277%" y="821" width="0.0681%" height="15" fill="rgb(249,187,43)" fg:x="134453" fg:w="207"/><text x="44.4777%" y="831.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (207 samples, 0.07%)</title><rect x="44.2277%" y="805" width="0.0681%" height="15" fill="rgb(216,141,28)" fg:x="134453" fg:w="207"/><text x="44.4777%" y="815.50"></text></g><g><title>clang::FileManager::getFileRef (207 samples, 0.07%)</title><rect x="44.2277%" y="789" width="0.0681%" height="15" fill="rgb(230,154,53)" fg:x="134453" fg:w="207"/><text x="44.4777%" y="799.50"></text></g><g><title>clang::FileManager::getStatValue (207 samples, 0.07%)</title><rect x="44.2277%" y="773" width="0.0681%" height="15" fill="rgb(227,82,4)" fg:x="134453" fg:w="207"/><text x="44.4777%" y="783.50"></text></g><g><title>clang::FileSystemStatCache::get (207 samples, 0.07%)</title><rect x="44.2277%" y="757" width="0.0681%" height="15" fill="rgb(220,107,16)" fg:x="134453" fg:w="207"/><text x="44.4777%" y="767.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (207 samples, 0.07%)</title><rect x="44.2277%" y="741" width="0.0681%" height="15" fill="rgb(207,187,2)" fg:x="134453" fg:w="207"/><text x="44.4777%" y="751.50"></text></g><g><title>llvm::sys::fs::openFileForRead (207 samples, 0.07%)</title><rect x="44.2277%" y="725" width="0.0681%" height="15" fill="rgb(210,162,52)" fg:x="134453" fg:w="207"/><text x="44.4777%" y="735.50"></text></g><g><title>clang::EmitBackendOutput (37 samples, 0.01%)</title><rect x="44.2958%" y="821" width="0.0122%" height="15" fill="rgb(217,216,49)" fg:x="134660" fg:w="37"/><text x="44.5458%" y="831.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (35 samples, 0.01%)</title><rect x="44.3145%" y="789" width="0.0115%" height="15" fill="rgb(218,146,49)" fg:x="134717" fg:w="35"/><text x="44.5645%" y="799.50"></text></g><g><title>clang::EmitBackendOutput (35 samples, 0.01%)</title><rect x="44.3145%" y="773" width="0.0115%" height="15" fill="rgb(216,55,40)" fg:x="134717" fg:w="35"/><text x="44.5645%" y="783.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (35 samples, 0.01%)</title><rect x="44.3145%" y="757" width="0.0115%" height="15" fill="rgb(208,196,21)" fg:x="134717" fg:w="35"/><text x="44.5645%" y="767.50"></text></g><g><title>llvm::FPPassManager::runOnModule (35 samples, 0.01%)</title><rect x="44.3145%" y="741" width="0.0115%" height="15" fill="rgb(242,117,42)" fg:x="134717" fg:w="35"/><text x="44.5645%" y="751.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (35 samples, 0.01%)</title><rect x="44.3145%" y="725" width="0.0115%" height="15" fill="rgb(210,11,23)" fg:x="134717" fg:w="35"/><text x="44.5645%" y="735.50"></text></g><g><title>clang::FrontendAction::Execute (50 samples, 0.02%)</title><rect x="44.3145%" y="821" width="0.0164%" height="15" fill="rgb(217,110,2)" fg:x="134717" fg:w="50"/><text x="44.5645%" y="831.50"></text></g><g><title>clang::ParseAST (50 samples, 0.02%)</title><rect x="44.3145%" y="805" width="0.0164%" height="15" fill="rgb(229,77,54)" fg:x="134717" fg:w="50"/><text x="44.5645%" y="815.50"></text></g><g><title>clang::Parser::ParseClassSpecifier (34 samples, 0.01%)</title><rect x="44.3668%" y="821" width="0.0112%" height="15" fill="rgb(218,53,16)" fg:x="134876" fg:w="34"/><text x="44.6168%" y="831.50"></text></g><g><title>clang::Parser::ParseCXXMemberSpecification (33 samples, 0.01%)</title><rect x="44.3671%" y="805" width="0.0109%" height="15" fill="rgb(215,38,13)" fg:x="134877" fg:w="33"/><text x="44.6171%" y="815.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclarationWithPragmas (33 samples, 0.01%)</title><rect x="44.3671%" y="789" width="0.0109%" height="15" fill="rgb(235,42,18)" fg:x="134877" fg:w="33"/><text x="44.6171%" y="799.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclaration (33 samples, 0.01%)</title><rect x="44.3671%" y="773" width="0.0109%" height="15" fill="rgb(219,66,54)" fg:x="134877" fg:w="33"/><text x="44.6171%" y="783.50"></text></g><g><title>clang::Sema::GetTypeForDeclarator (41 samples, 0.01%)</title><rect x="44.4037%" y="725" width="0.0135%" height="15" fill="rgb(222,205,4)" fg:x="134988" fg:w="41"/><text x="44.6537%" y="735.50"></text></g><g><title>GetFullTypeForDeclarator (37 samples, 0.01%)</title><rect x="44.4050%" y="709" width="0.0122%" height="15" fill="rgb(227,213,46)" fg:x="134992" fg:w="37"/><text x="44.6550%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (110 samples, 0.04%)</title><rect x="44.3833%" y="805" width="0.0362%" height="15" fill="rgb(250,145,42)" fg:x="134926" fg:w="110"/><text x="44.6333%" y="815.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (89 samples, 0.03%)</title><rect x="44.3902%" y="789" width="0.0293%" height="15" fill="rgb(219,15,2)" fg:x="134947" fg:w="89"/><text x="44.6402%" y="799.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (89 samples, 0.03%)</title><rect x="44.3902%" y="773" width="0.0293%" height="15" fill="rgb(231,181,52)" fg:x="134947" fg:w="89"/><text x="44.6402%" y="783.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (89 samples, 0.03%)</title><rect x="44.3902%" y="757" width="0.0293%" height="15" fill="rgb(235,1,42)" fg:x="134947" fg:w="89"/><text x="44.6402%" y="767.50"></text></g><g><title>clang::Sema::ActOnParamDeclarator (54 samples, 0.02%)</title><rect x="44.4017%" y="741" width="0.0178%" height="15" fill="rgb(249,88,27)" fg:x="134982" fg:w="54"/><text x="44.6517%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclGroup (130 samples, 0.04%)</title><rect x="44.3783%" y="821" width="0.0428%" height="15" fill="rgb(235,145,16)" fg:x="134911" fg:w="130"/><text x="44.6283%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (34 samples, 0.01%)</title><rect x="44.4211%" y="821" width="0.0112%" height="15" fill="rgb(237,114,19)" fg:x="135041" fg:w="34"/><text x="44.6711%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (58 samples, 0.02%)</title><rect x="44.4408%" y="773" width="0.0191%" height="15" fill="rgb(238,51,50)" fg:x="135101" fg:w="58"/><text x="44.6908%" y="783.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (56 samples, 0.02%)</title><rect x="44.4415%" y="757" width="0.0184%" height="15" fill="rgb(205,194,25)" fg:x="135103" fg:w="56"/><text x="44.6915%" y="767.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (56 samples, 0.02%)</title><rect x="44.4415%" y="741" width="0.0184%" height="15" fill="rgb(215,203,17)" fg:x="135103" fg:w="56"/><text x="44.6915%" y="751.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (56 samples, 0.02%)</title><rect x="44.4415%" y="725" width="0.0184%" height="15" fill="rgb(233,112,49)" fg:x="135103" fg:w="56"/><text x="44.6915%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclGroup (83 samples, 0.03%)</title><rect x="44.4333%" y="789" width="0.0273%" height="15" fill="rgb(241,130,26)" fg:x="135078" fg:w="83"/><text x="44.6833%" y="799.50"></text></g><g><title>clang::Sema::ActOnFunctionDeclarator (65 samples, 0.02%)</title><rect x="44.4662%" y="661" width="0.0214%" height="15" fill="rgb(252,223,19)" fg:x="135178" fg:w="65"/><text x="44.7162%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (97 samples, 0.03%)</title><rect x="44.4662%" y="709" width="0.0319%" height="15" fill="rgb(211,95,25)" fg:x="135178" fg:w="97"/><text x="44.7162%" y="719.50"></text></g><g><title>clang::Sema::ActOnDeclarator (97 samples, 0.03%)</title><rect x="44.4662%" y="693" width="0.0319%" height="15" fill="rgb(251,182,27)" fg:x="135178" fg:w="97"/><text x="44.7162%" y="703.50"></text></g><g><title>clang::Sema::HandleDeclarator (97 samples, 0.03%)</title><rect x="44.4662%" y="677" width="0.0319%" height="15" fill="rgb(238,24,4)" fg:x="135178" fg:w="97"/><text x="44.7162%" y="687.50"></text></g><g><title>clang::Parser::ParseDeclGroup (99 samples, 0.03%)</title><rect x="44.4662%" y="725" width="0.0326%" height="15" fill="rgb(224,220,25)" fg:x="135178" fg:w="99"/><text x="44.7162%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (205 samples, 0.07%)</title><rect x="44.4333%" y="821" width="0.0674%" height="15" fill="rgb(239,133,26)" fg:x="135078" fg:w="205"/><text x="44.6833%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (205 samples, 0.07%)</title><rect x="44.4333%" y="805" width="0.0674%" height="15" fill="rgb(211,94,48)" fg:x="135078" fg:w="205"/><text x="44.6833%" y="815.50"></text></g><g><title>clang::Parser::ParseLinkage (120 samples, 0.04%)</title><rect x="44.4612%" y="789" width="0.0395%" height="15" fill="rgb(239,87,6)" fg:x="135163" fg:w="120"/><text x="44.7112%" y="799.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (120 samples, 0.04%)</title><rect x="44.4612%" y="773" width="0.0395%" height="15" fill="rgb(227,62,0)" fg:x="135163" fg:w="120"/><text x="44.7112%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (105 samples, 0.03%)</title><rect x="44.4662%" y="757" width="0.0345%" height="15" fill="rgb(211,226,4)" fg:x="135178" fg:w="105"/><text x="44.7162%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (105 samples, 0.03%)</title><rect x="44.4662%" y="741" width="0.0345%" height="15" fill="rgb(253,38,52)" fg:x="135178" fg:w="105"/><text x="44.7162%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclarationSpecifiers (40 samples, 0.01%)</title><rect x="44.5007%" y="821" width="0.0132%" height="15" fill="rgb(229,126,40)" fg:x="135283" fg:w="40"/><text x="44.7507%" y="831.50"></text></g><g><title>clang::Parser::ParseClassSpecifier (40 samples, 0.01%)</title><rect x="44.5007%" y="805" width="0.0132%" height="15" fill="rgb(229,165,44)" fg:x="135283" fg:w="40"/><text x="44.7507%" y="815.50"></text></g><g><title>clang::Parser::ParseCXXMemberSpecification (40 samples, 0.01%)</title><rect x="44.5007%" y="789" width="0.0132%" height="15" fill="rgb(247,95,47)" fg:x="135283" fg:w="40"/><text x="44.7507%" y="799.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclarationWithPragmas (40 samples, 0.01%)</title><rect x="44.5007%" y="773" width="0.0132%" height="15" fill="rgb(216,140,30)" fg:x="135283" fg:w="40"/><text x="44.7507%" y="783.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclaration (40 samples, 0.01%)</title><rect x="44.5007%" y="757" width="0.0132%" height="15" fill="rgb(246,214,8)" fg:x="135283" fg:w="40"/><text x="44.7507%" y="767.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (60 samples, 0.02%)</title><rect x="44.5240%" y="821" width="0.0197%" height="15" fill="rgb(227,224,15)" fg:x="135354" fg:w="60"/><text x="44.7740%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (55 samples, 0.02%)</title><rect x="44.5257%" y="805" width="0.0181%" height="15" fill="rgb(233,175,4)" fg:x="135359" fg:w="55"/><text x="44.7757%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (55 samples, 0.02%)</title><rect x="44.5257%" y="789" width="0.0181%" height="15" fill="rgb(221,66,45)" fg:x="135359" fg:w="55"/><text x="44.7757%" y="799.50"></text></g><g><title>clang::Parser::ParseLinkage (42 samples, 0.01%)</title><rect x="44.5300%" y="773" width="0.0138%" height="15" fill="rgb(221,178,18)" fg:x="135372" fg:w="42"/><text x="44.7800%" y="783.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (42 samples, 0.01%)</title><rect x="44.5300%" y="757" width="0.0138%" height="15" fill="rgb(213,81,29)" fg:x="135372" fg:w="42"/><text x="44.7800%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (36 samples, 0.01%)</title><rect x="44.5319%" y="741" width="0.0118%" height="15" fill="rgb(220,89,49)" fg:x="135378" fg:w="36"/><text x="44.7819%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (36 samples, 0.01%)</title><rect x="44.5319%" y="725" width="0.0118%" height="15" fill="rgb(227,60,33)" fg:x="135378" fg:w="36"/><text x="44.7819%" y="735.50"></text></g><g><title>clang::Parser::ParseLinkage (40 samples, 0.01%)</title><rect x="44.5444%" y="821" width="0.0132%" height="15" fill="rgb(205,113,12)" fg:x="135416" fg:w="40"/><text x="44.7944%" y="831.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (40 samples, 0.01%)</title><rect x="44.5444%" y="805" width="0.0132%" height="15" fill="rgb(211,32,1)" fg:x="135416" fg:w="40"/><text x="44.7944%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (36 samples, 0.01%)</title><rect x="44.5458%" y="789" width="0.0118%" height="15" fill="rgb(246,2,12)" fg:x="135420" fg:w="36"/><text x="44.7958%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (36 samples, 0.01%)</title><rect x="44.5458%" y="773" width="0.0118%" height="15" fill="rgb(243,37,27)" fg:x="135420" fg:w="36"/><text x="44.7958%" y="783.50"></text></g><g><title>clang::Preprocessor::EnterSourceFile (35 samples, 0.01%)</title><rect x="44.5589%" y="661" width="0.0115%" height="15" fill="rgb(248,211,31)" fg:x="135460" fg:w="35"/><text x="44.8089%" y="671.50"></text></g><g><title>clang::SrcMgr::ContentCache::getBufferOrNone (35 samples, 0.01%)</title><rect x="44.5589%" y="645" width="0.0115%" height="15" fill="rgb(242,146,47)" fg:x="135460" fg:w="35"/><text x="44.8089%" y="655.50"></text></g><g><title>clang::FileManager::getBufferForFile (35 samples, 0.01%)</title><rect x="44.5589%" y="629" width="0.0115%" height="15" fill="rgb(206,70,20)" fg:x="135460" fg:w="35"/><text x="44.8089%" y="639.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (42 samples, 0.01%)</title><rect x="44.5589%" y="789" width="0.0138%" height="15" fill="rgb(215,10,51)" fg:x="135460" fg:w="42"/><text x="44.8089%" y="799.50"></text></g><g><title>clang::Preprocessor::Lex (42 samples, 0.01%)</title><rect x="44.5589%" y="773" width="0.0138%" height="15" fill="rgb(243,178,53)" fg:x="135460" fg:w="42"/><text x="44.8089%" y="783.50"></text></g><g><title>clang::Preprocessor::CachingLex (42 samples, 0.01%)</title><rect x="44.5589%" y="757" width="0.0138%" height="15" fill="rgb(233,221,20)" fg:x="135460" fg:w="42"/><text x="44.8089%" y="767.50"></text></g><g><title>clang::Preprocessor::Lex (42 samples, 0.01%)</title><rect x="44.5589%" y="741" width="0.0138%" height="15" fill="rgb(218,95,35)" fg:x="135460" fg:w="42"/><text x="44.8089%" y="751.50"></text></g><g><title>clang::Lexer::LexTokenInternal (42 samples, 0.01%)</title><rect x="44.5589%" y="725" width="0.0138%" height="15" fill="rgb(229,13,5)" fg:x="135460" fg:w="42"/><text x="44.8089%" y="735.50"></text></g><g><title>clang::Preprocessor::HandleDirective (42 samples, 0.01%)</title><rect x="44.5589%" y="709" width="0.0138%" height="15" fill="rgb(252,164,30)" fg:x="135460" fg:w="42"/><text x="44.8089%" y="719.50"></text></g><g><title>clang::Preprocessor::HandleIncludeDirective (42 samples, 0.01%)</title><rect x="44.5589%" y="693" width="0.0138%" height="15" fill="rgb(232,68,36)" fg:x="135460" fg:w="42"/><text x="44.8089%" y="703.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (42 samples, 0.01%)</title><rect x="44.5589%" y="677" width="0.0138%" height="15" fill="rgb(219,59,54)" fg:x="135460" fg:w="42"/><text x="44.8089%" y="687.50"></text></g><g><title>clang::Parser::ParseDeclGroup (54 samples, 0.02%)</title><rect x="44.5589%" y="805" width="0.0178%" height="15" fill="rgb(250,92,33)" fg:x="135460" fg:w="54"/><text x="44.8089%" y="815.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (60 samples, 0.02%)</title><rect x="44.5589%" y="821" width="0.0197%" height="15" fill="rgb(229,162,54)" fg:x="135460" fg:w="60"/><text x="44.8089%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (40 samples, 0.01%)</title><rect x="44.5790%" y="677" width="0.0132%" height="15" fill="rgb(244,114,52)" fg:x="135521" fg:w="40"/><text x="44.8290%" y="687.50"></text></g><g><title>clang::Sema::ActOnDeclarator (40 samples, 0.01%)</title><rect x="44.5790%" y="661" width="0.0132%" height="15" fill="rgb(212,211,43)" fg:x="135521" fg:w="40"/><text x="44.8290%" y="671.50"></text></g><g><title>clang::Sema::HandleDeclarator (40 samples, 0.01%)</title><rect x="44.5790%" y="645" width="0.0132%" height="15" fill="rgb(226,147,8)" fg:x="135521" fg:w="40"/><text x="44.8290%" y="655.50"></text></g><g><title>clang::Sema::ActOnFunctionDeclarator (40 samples, 0.01%)</title><rect x="44.5790%" y="629" width="0.0132%" height="15" fill="rgb(226,23,13)" fg:x="135521" fg:w="40"/><text x="44.8290%" y="639.50"></text></g><g><title>clang::Parser::ParseDeclGroup (42 samples, 0.01%)</title><rect x="44.5790%" y="693" width="0.0138%" height="15" fill="rgb(240,63,4)" fg:x="135521" fg:w="42"/><text x="44.8290%" y="703.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (45 samples, 0.01%)</title><rect x="44.5787%" y="821" width="0.0148%" height="15" fill="rgb(221,1,32)" fg:x="135520" fg:w="45"/><text x="44.8287%" y="831.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (45 samples, 0.01%)</title><rect x="44.5787%" y="805" width="0.0148%" height="15" fill="rgb(242,117,10)" fg:x="135520" fg:w="45"/><text x="44.8287%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (45 samples, 0.01%)</title><rect x="44.5787%" y="789" width="0.0148%" height="15" fill="rgb(249,172,44)" fg:x="135520" fg:w="45"/><text x="44.8287%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (45 samples, 0.01%)</title><rect x="44.5787%" y="773" width="0.0148%" height="15" fill="rgb(244,46,45)" fg:x="135520" fg:w="45"/><text x="44.8287%" y="783.50"></text></g><g><title>clang::Parser::ParseLinkage (45 samples, 0.01%)</title><rect x="44.5787%" y="757" width="0.0148%" height="15" fill="rgb(206,43,17)" fg:x="135520" fg:w="45"/><text x="44.8287%" y="767.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (44 samples, 0.01%)</title><rect x="44.5790%" y="741" width="0.0145%" height="15" fill="rgb(239,218,39)" fg:x="135521" fg:w="44"/><text x="44.8290%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (44 samples, 0.01%)</title><rect x="44.5790%" y="725" width="0.0145%" height="15" fill="rgb(208,169,54)" fg:x="135521" fg:w="44"/><text x="44.8290%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (44 samples, 0.01%)</title><rect x="44.5790%" y="709" width="0.0145%" height="15" fill="rgb(247,25,42)" fg:x="135521" fg:w="44"/><text x="44.8290%" y="719.50"></text></g><g><title>clang::FileManager::getFileRef (75 samples, 0.02%)</title><rect x="44.6040%" y="725" width="0.0247%" height="15" fill="rgb(226,23,31)" fg:x="135597" fg:w="75"/><text x="44.8540%" y="735.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (81 samples, 0.03%)</title><rect x="44.6033%" y="741" width="0.0266%" height="15" fill="rgb(247,16,28)" fg:x="135595" fg:w="81"/><text x="44.8533%" y="751.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (98 samples, 0.03%)</title><rect x="44.6000%" y="821" width="0.0322%" height="15" fill="rgb(231,147,38)" fg:x="135585" fg:w="98"/><text x="44.8500%" y="831.50"></text></g><g><title>clang::Preprocessor::LookupHeaderIncludeOrImport (96 samples, 0.03%)</title><rect x="44.6007%" y="805" width="0.0316%" height="15" fill="rgb(253,81,48)" fg:x="135587" fg:w="96"/><text x="44.8507%" y="815.50"></text></g><g><title>clang::Preprocessor::LookupFile (96 samples, 0.03%)</title><rect x="44.6007%" y="789" width="0.0316%" height="15" fill="rgb(249,222,43)" fg:x="135587" fg:w="96"/><text x="44.8507%" y="799.50"></text></g><g><title>clang::HeaderSearch::LookupFile (96 samples, 0.03%)</title><rect x="44.6007%" y="773" width="0.0316%" height="15" fill="rgb(221,3,27)" fg:x="135587" fg:w="96"/><text x="44.8507%" y="783.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (96 samples, 0.03%)</title><rect x="44.6007%" y="757" width="0.0316%" height="15" fill="rgb(228,180,5)" fg:x="135587" fg:w="96"/><text x="44.8507%" y="767.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (59 samples, 0.02%)</title><rect x="44.6760%" y="597" width="0.0194%" height="15" fill="rgb(227,131,42)" fg:x="135816" fg:w="59"/><text x="44.9260%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (34 samples, 0.01%)</title><rect x="44.6842%" y="581" width="0.0112%" height="15" fill="rgb(212,3,39)" fg:x="135841" fg:w="34"/><text x="44.9342%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (34 samples, 0.01%)</title><rect x="44.6842%" y="565" width="0.0112%" height="15" fill="rgb(226,45,5)" fg:x="135841" fg:w="34"/><text x="44.9342%" y="575.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (72 samples, 0.02%)</title><rect x="44.6731%" y="677" width="0.0237%" height="15" fill="rgb(215,167,45)" fg:x="135807" fg:w="72"/><text x="44.9231%" y="687.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (72 samples, 0.02%)</title><rect x="44.6731%" y="661" width="0.0237%" height="15" fill="rgb(250,218,53)" fg:x="135807" fg:w="72"/><text x="44.9231%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (72 samples, 0.02%)</title><rect x="44.6731%" y="645" width="0.0237%" height="15" fill="rgb(207,140,0)" fg:x="135807" fg:w="72"/><text x="44.9231%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (72 samples, 0.02%)</title><rect x="44.6731%" y="629" width="0.0237%" height="15" fill="rgb(238,133,51)" fg:x="135807" fg:w="72"/><text x="44.9231%" y="639.50"></text></g><g><title>clang::Parser::ParseLinkage (63 samples, 0.02%)</title><rect x="44.6760%" y="613" width="0.0207%" height="15" fill="rgb(218,203,53)" fg:x="135816" fg:w="63"/><text x="44.9260%" y="623.50"></text></g><g><title>clang::FileManager::getBufferForFile (39 samples, 0.01%)</title><rect x="44.7010%" y="565" width="0.0128%" height="15" fill="rgb(226,184,25)" fg:x="135892" fg:w="39"/><text x="44.9510%" y="575.50"></text></g><g><title>clang::SrcMgr::ContentCache::getBufferOrNone (43 samples, 0.01%)</title><rect x="44.7010%" y="581" width="0.0141%" height="15" fill="rgb(231,121,21)" fg:x="135892" fg:w="43"/><text x="44.9510%" y="591.50"></text></g><g><title>clang::Preprocessor::EnterSourceFile (47 samples, 0.02%)</title><rect x="44.7004%" y="597" width="0.0155%" height="15" fill="rgb(251,14,34)" fg:x="135890" fg:w="47"/><text x="44.9504%" y="607.50"></text></g><g><title>clang::driver::CC1Command::Execute (174 samples, 0.06%)</title><rect x="44.6599%" y="821" width="0.0572%" height="15" fill="rgb(249,193,11)" fg:x="135767" fg:w="174"/><text x="44.9099%" y="831.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (174 samples, 0.06%)</title><rect x="44.6599%" y="805" width="0.0572%" height="15" fill="rgb(220,172,37)" fg:x="135767" fg:w="174"/><text x="44.9099%" y="815.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (174 samples, 0.06%)</title><rect x="44.6599%" y="789" width="0.0572%" height="15" fill="rgb(231,229,43)" fg:x="135767" fg:w="174"/><text x="44.9099%" y="799.50"></text></g><g><title>ExecuteCC1Tool (174 samples, 0.06%)</title><rect x="44.6599%" y="773" width="0.0572%" height="15" fill="rgb(250,161,5)" fg:x="135767" fg:w="174"/><text x="44.9099%" y="783.50"></text></g><g><title>cc1_main (174 samples, 0.06%)</title><rect x="44.6599%" y="757" width="0.0572%" height="15" fill="rgb(218,225,18)" fg:x="135767" fg:w="174"/><text x="44.9099%" y="767.50"></text></g><g><title>clang::ExecuteCompilerInvocation (164 samples, 0.05%)</title><rect x="44.6632%" y="741" width="0.0539%" height="15" fill="rgb(245,45,42)" fg:x="135777" fg:w="164"/><text x="44.9132%" y="751.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (164 samples, 0.05%)</title><rect x="44.6632%" y="725" width="0.0539%" height="15" fill="rgb(211,115,1)" fg:x="135777" fg:w="164"/><text x="44.9132%" y="735.50"></text></g><g><title>clang::FrontendAction::Execute (149 samples, 0.05%)</title><rect x="44.6681%" y="709" width="0.0490%" height="15" fill="rgb(248,133,52)" fg:x="135792" fg:w="149"/><text x="44.9181%" y="719.50"></text></g><g><title>clang::ParseAST (149 samples, 0.05%)</title><rect x="44.6681%" y="693" width="0.0490%" height="15" fill="rgb(238,100,21)" fg:x="135792" fg:w="149"/><text x="44.9181%" y="703.50"></text></g><g><title>clang::Preprocessor::Lex (62 samples, 0.02%)</title><rect x="44.6967%" y="677" width="0.0204%" height="15" fill="rgb(247,144,11)" fg:x="135879" fg:w="62"/><text x="44.9467%" y="687.50"></text></g><g><title>clang::Lexer::LexTokenInternal (62 samples, 0.02%)</title><rect x="44.6967%" y="661" width="0.0204%" height="15" fill="rgb(206,164,16)" fg:x="135879" fg:w="62"/><text x="44.9467%" y="671.50"></text></g><g><title>clang::Preprocessor::HandleDirective (62 samples, 0.02%)</title><rect x="44.6967%" y="645" width="0.0204%" height="15" fill="rgb(222,34,3)" fg:x="135879" fg:w="62"/><text x="44.9467%" y="655.50"></text></g><g><title>clang::Preprocessor::HandleIncludeDirective (51 samples, 0.02%)</title><rect x="44.7004%" y="629" width="0.0168%" height="15" fill="rgb(248,82,4)" fg:x="135890" fg:w="51"/><text x="44.9504%" y="639.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (51 samples, 0.02%)</title><rect x="44.7004%" y="613" width="0.0168%" height="15" fill="rgb(228,81,46)" fg:x="135890" fg:w="51"/><text x="44.9504%" y="623.50"></text></g><g><title>clang::driver::CudaInstallationDetector::CudaInstallationDetector (37 samples, 0.01%)</title><rect x="44.7300%" y="757" width="0.0122%" height="15" fill="rgb(227,67,47)" fg:x="135980" fg:w="37"/><text x="44.9800%" y="767.50"></text></g><g><title>clang::driver::Distro::Distro (37 samples, 0.01%)</title><rect x="44.7300%" y="741" width="0.0122%" height="15" fill="rgb(215,93,53)" fg:x="135980" fg:w="37"/><text x="44.9800%" y="751.50"></text></g><g><title>DetectDistro (37 samples, 0.01%)</title><rect x="44.7300%" y="725" width="0.0122%" height="15" fill="rgb(248,194,39)" fg:x="135980" fg:w="37"/><text x="44.9800%" y="735.50"></text></g><g><title>llvm::vfs::FileSystem::getBufferForFile (37 samples, 0.01%)</title><rect x="44.7300%" y="709" width="0.0122%" height="15" fill="rgb(215,5,19)" fg:x="135980" fg:w="37"/><text x="44.9800%" y="719.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (37 samples, 0.01%)</title><rect x="44.7300%" y="693" width="0.0122%" height="15" fill="rgb(226,215,51)" fg:x="135980" fg:w="37"/><text x="44.9800%" y="703.50"></text></g><g><title>llvm::sys::fs::openFileForRead (37 samples, 0.01%)</title><rect x="44.7300%" y="677" width="0.0122%" height="15" fill="rgb(225,56,26)" fg:x="135980" fg:w="37"/><text x="44.9800%" y="687.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (52 samples, 0.02%)</title><rect x="44.7254%" y="821" width="0.0171%" height="15" fill="rgb(222,75,29)" fg:x="135966" fg:w="52"/><text x="44.9754%" y="831.50"></text></g><g><title>clang::driver::Driver::getToolChain (38 samples, 0.01%)</title><rect x="44.7300%" y="805" width="0.0125%" height="15" fill="rgb(236,139,6)" fg:x="135980" fg:w="38"/><text x="44.9800%" y="815.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (38 samples, 0.01%)</title><rect x="44.7300%" y="789" width="0.0125%" height="15" fill="rgb(223,137,36)" fg:x="135980" fg:w="38"/><text x="44.9800%" y="799.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::Generic_GCC (38 samples, 0.01%)</title><rect x="44.7300%" y="773" width="0.0125%" height="15" fill="rgb(226,99,2)" fg:x="135980" fg:w="38"/><text x="44.9800%" y="783.50"></text></g><g><title>clang::driver::tools::Clang::ConstructJob (58 samples, 0.02%)</title><rect x="44.8211%" y="741" width="0.0191%" height="15" fill="rgb(206,133,23)" fg:x="136257" fg:w="58"/><text x="45.0711%" y="751.50"></text></g><g><title>clang::driver::ToolChain::GetFilePath[abi:cxx11] (42 samples, 0.01%)</title><rect x="44.8418%" y="725" width="0.0138%" height="15" fill="rgb(243,173,15)" fg:x="136320" fg:w="42"/><text x="45.0918%" y="735.50"></text></g><g><title>clang::driver::Driver::GetFilePath[abi:cxx11] (42 samples, 0.01%)</title><rect x="44.8418%" y="709" width="0.0138%" height="15" fill="rgb(228,69,28)" fg:x="136320" fg:w="42"/><text x="45.0918%" y="719.50"></text></g><g><title>clang::driver::tools::gnutools::Linker::ConstructJob (94 samples, 0.03%)</title><rect x="44.8402%" y="741" width="0.0309%" height="15" fill="rgb(212,51,22)" fg:x="136315" fg:w="94"/><text x="45.0902%" y="751.50"></text></g><g><title>clang::driver::Driver::BuildJobs (168 samples, 0.06%)</title><rect x="44.8165%" y="789" width="0.0553%" height="15" fill="rgb(227,113,0)" fg:x="136243" fg:w="168"/><text x="45.0665%" y="799.50"></text></g><g><title>clang::driver::Driver::BuildJobsForAction (168 samples, 0.06%)</title><rect x="44.8165%" y="773" width="0.0553%" height="15" fill="rgb(252,84,27)" fg:x="136243" fg:w="168"/><text x="45.0665%" y="783.50"></text></g><g><title>clang::driver::Driver::BuildJobsForActionNoCache (168 samples, 0.06%)</title><rect x="44.8165%" y="757" width="0.0553%" height="15" fill="rgb(223,145,39)" fg:x="136243" fg:w="168"/><text x="45.0665%" y="767.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (34 samples, 0.01%)</title><rect x="44.9099%" y="549" width="0.0112%" height="15" fill="rgb(239,219,30)" fg:x="136527" fg:w="34"/><text x="45.1599%" y="559.50"></text></g><g><title>do_filp_open (54 samples, 0.02%)</title><rect x="44.9053%" y="581" width="0.0178%" height="15" fill="rgb(224,196,39)" fg:x="136513" fg:w="54"/><text x="45.1553%" y="591.50"></text></g><g><title>path_openat (54 samples, 0.02%)</title><rect x="44.9053%" y="565" width="0.0178%" height="15" fill="rgb(205,35,43)" fg:x="136513" fg:w="54"/><text x="45.1553%" y="575.50"></text></g><g><title>do_sys_openat2 (71 samples, 0.02%)</title><rect x="44.9053%" y="597" width="0.0234%" height="15" fill="rgb(228,201,21)" fg:x="136513" fg:w="71"/><text x="45.1553%" y="607.50"></text></g><g><title>__x64_sys_openat (72 samples, 0.02%)</title><rect x="44.9053%" y="613" width="0.0237%" height="15" fill="rgb(237,118,16)" fg:x="136513" fg:w="72"/><text x="45.1553%" y="623.50"></text></g><g><title>do_syscall_64 (108 samples, 0.04%)</title><rect x="44.9004%" y="645" width="0.0355%" height="15" fill="rgb(241,17,19)" fg:x="136498" fg:w="108"/><text x="45.1504%" y="655.50"></text></g><g><title>unload_network_ops_symbols (94 samples, 0.03%)</title><rect x="44.9050%" y="629" width="0.0309%" height="15" fill="rgb(214,10,25)" fg:x="136512" fg:w="94"/><text x="45.1550%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (111 samples, 0.04%)</title><rect x="44.9000%" y="661" width="0.0365%" height="15" fill="rgb(238,37,29)" fg:x="136497" fg:w="111"/><text x="45.1500%" y="671.50"></text></g><g><title>__GI___open64_nocancel (116 samples, 0.04%)</title><rect x="44.8987%" y="677" width="0.0382%" height="15" fill="rgb(253,83,25)" fg:x="136493" fg:w="116"/><text x="45.1487%" y="687.50"></text></g><g><title>__opendir (122 samples, 0.04%)</title><rect x="44.8987%" y="693" width="0.0401%" height="15" fill="rgb(234,192,12)" fg:x="136493" fg:w="122"/><text x="45.1487%" y="703.50"></text></g><g><title>llvm::sys::fs::detail::directory_iterator_construct (144 samples, 0.05%)</title><rect x="44.8987%" y="709" width="0.0474%" height="15" fill="rgb(241,216,45)" fg:x="136493" fg:w="144"/><text x="45.1487%" y="719.50"></text></g><g><title>llvm::sys::fs::directory_iterator::directory_iterator (148 samples, 0.05%)</title><rect x="44.8977%" y="725" width="0.0487%" height="15" fill="rgb(242,22,33)" fg:x="136490" fg:w="148"/><text x="45.1477%" y="735.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::ScanLibDirForGCCTriple (217 samples, 0.07%)</title><rect x="44.8790%" y="741" width="0.0714%" height="15" fill="rgb(231,105,49)" fg:x="136433" fg:w="217"/><text x="45.1290%" y="751.50"></text></g><g><title>filename_lookup (35 samples, 0.01%)</title><rect x="44.9527%" y="597" width="0.0115%" height="15" fill="rgb(218,204,15)" fg:x="136657" fg:w="35"/><text x="45.2027%" y="607.50"></text></g><g><title>path_lookupat (35 samples, 0.01%)</title><rect x="44.9527%" y="581" width="0.0115%" height="15" fill="rgb(235,138,41)" fg:x="136657" fg:w="35"/><text x="45.2027%" y="591.50"></text></g><g><title>user_path_at_empty (41 samples, 0.01%)</title><rect x="44.9527%" y="613" width="0.0135%" height="15" fill="rgb(246,0,9)" fg:x="136657" fg:w="41"/><text x="45.2027%" y="623.50"></text></g><g><title>___xstat64 (45 samples, 0.01%)</title><rect x="44.9517%" y="709" width="0.0148%" height="15" fill="rgb(210,74,4)" fg:x="136654" fg:w="45"/><text x="45.2017%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.01%)</title><rect x="44.9517%" y="693" width="0.0148%" height="15" fill="rgb(250,60,41)" fg:x="136654" fg:w="45"/><text x="45.2017%" y="703.50"></text></g><g><title>do_syscall_64 (43 samples, 0.01%)</title><rect x="44.9523%" y="677" width="0.0141%" height="15" fill="rgb(220,115,12)" fg:x="136656" fg:w="43"/><text x="45.2023%" y="687.50"></text></g><g><title>__x64_sys_newstat (42 samples, 0.01%)</title><rect x="44.9527%" y="661" width="0.0138%" height="15" fill="rgb(237,100,13)" fg:x="136657" fg:w="42"/><text x="45.2027%" y="671.50"></text></g><g><title>__do_sys_newstat (42 samples, 0.01%)</title><rect x="44.9527%" y="645" width="0.0138%" height="15" fill="rgb(213,55,26)" fg:x="136657" fg:w="42"/><text x="45.2027%" y="655.50"></text></g><g><title>vfs_statx (42 samples, 0.01%)</title><rect x="44.9527%" y="629" width="0.0138%" height="15" fill="rgb(216,17,4)" fg:x="136657" fg:w="42"/><text x="45.2027%" y="639.50"></text></g><g><title>llvm::sys::fs::status (46 samples, 0.02%)</title><rect x="44.9517%" y="725" width="0.0151%" height="15" fill="rgb(220,153,47)" fg:x="136654" fg:w="46"/><text x="45.2017%" y="735.50"></text></g><g><title>llvm::vfs::FileSystem::exists (48 samples, 0.02%)</title><rect x="44.9513%" y="741" width="0.0158%" height="15" fill="rgb(215,131,9)" fg:x="136653" fg:w="48"/><text x="45.2013%" y="751.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init (281 samples, 0.09%)</title><rect x="44.8754%" y="757" width="0.0924%" height="15" fill="rgb(233,46,42)" fg:x="136422" fg:w="281"/><text x="45.1254%" y="767.50"></text></g><g><title>llvm::sys::fs::can_execute (32 samples, 0.01%)</title><rect x="44.9760%" y="709" width="0.0105%" height="15" fill="rgb(226,86,7)" fg:x="136728" fg:w="32"/><text x="45.2260%" y="719.50"></text></g><g><title>llvm::sys::fs::access (32 samples, 0.01%)</title><rect x="44.9760%" y="693" width="0.0105%" height="15" fill="rgb(239,226,21)" fg:x="136728" fg:w="32"/><text x="45.2260%" y="703.50"></text></g><g><title>__GI___access (31 samples, 0.01%)</title><rect x="44.9763%" y="677" width="0.0102%" height="15" fill="rgb(244,137,22)" fg:x="136729" fg:w="31"/><text x="45.2263%" y="687.50"></text></g><g><title>llvm::sys::findProgramByName[abi:cxx11] (35 samples, 0.01%)</title><rect x="44.9757%" y="725" width="0.0115%" height="15" fill="rgb(211,139,35)" fg:x="136727" fg:w="35"/><text x="45.2257%" y="735.50"></text></g><g><title>clang::driver::CudaInstallationDetector::CudaInstallationDetector (73 samples, 0.02%)</title><rect x="44.9678%" y="741" width="0.0240%" height="15" fill="rgb(214,62,50)" fg:x="136703" fg:w="73"/><text x="45.2178%" y="751.50"></text></g><g><title>clang::driver::RocmInstallationDetector::RocmInstallationDetector (40 samples, 0.01%)</title><rect x="44.9918%" y="741" width="0.0132%" height="15" fill="rgb(212,113,44)" fg:x="136776" fg:w="40"/><text x="45.2418%" y="751.50"></text></g><g><title>clang::driver::RocmInstallationDetector::detectHIPRuntime (40 samples, 0.01%)</title><rect x="44.9918%" y="725" width="0.0132%" height="15" fill="rgb(226,150,43)" fg:x="136776" fg:w="40"/><text x="45.2418%" y="735.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (583 samples, 0.19%)</title><rect x="44.8165%" y="805" width="0.1918%" height="15" fill="rgb(250,71,37)" fg:x="136243" fg:w="583"/><text x="45.0665%" y="815.50"></text></g><g><title>clang::driver::Driver::getToolChain (415 samples, 0.14%)</title><rect x="44.8717%" y="789" width="0.1365%" height="15" fill="rgb(219,76,19)" fg:x="136411" fg:w="415"/><text x="45.1217%" y="799.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (415 samples, 0.14%)</title><rect x="44.8717%" y="773" width="0.1365%" height="15" fill="rgb(250,39,11)" fg:x="136411" fg:w="415"/><text x="45.1217%" y="783.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::Generic_GCC (123 samples, 0.04%)</title><rect x="44.9678%" y="757" width="0.0405%" height="15" fill="rgb(230,64,31)" fg:x="136703" fg:w="123"/><text x="45.2178%" y="767.50"></text></g><g><title>clang::Builtin::Context::builtinIsSupported (41 samples, 0.01%)</title><rect x="45.0306%" y="613" width="0.0135%" height="15" fill="rgb(208,222,23)" fg:x="136894" fg:w="41"/><text x="45.2806%" y="623.50"></text></g><g><title>llvm::StringMapImpl::LookupBucketFor (62 samples, 0.02%)</title><rect x="45.0596%" y="581" width="0.0204%" height="15" fill="rgb(227,125,18)" fg:x="136982" fg:w="62"/><text x="45.3096%" y="591.50"></text></g><g><title>llvm::StringMap&lt;clang::IdentifierInfo*, llvm::BumpPtrAllocatorImpl&lt;llvm::MallocAllocator, 4096ul, 4096ul, 128ul&gt; &gt;::try_emplace&lt;clang::IdentifierInfo*&gt; (101 samples, 0.03%)</title><rect x="45.0474%" y="597" width="0.0332%" height="15" fill="rgb(234,210,9)" fg:x="136945" fg:w="101"/><text x="45.2974%" y="607.50"></text></g><g><title>clang::IdentifierTable::get (121 samples, 0.04%)</title><rect x="45.0441%" y="613" width="0.0398%" height="15" fill="rgb(217,127,24)" fg:x="136935" fg:w="121"/><text x="45.2941%" y="623.50"></text></g><g><title>clang::Builtin::Context::initializeBuiltins (171 samples, 0.06%)</title><rect x="45.0280%" y="629" width="0.0562%" height="15" fill="rgb(239,141,48)" fg:x="136886" fg:w="171"/><text x="45.2780%" y="639.50"></text></g><g><title>InitializePredefinedMacros (40 samples, 0.01%)</title><rect x="45.1037%" y="597" width="0.0132%" height="15" fill="rgb(227,109,8)" fg:x="137116" fg:w="40"/><text x="45.3537%" y="607.50"></text></g><g><title>clang::InitializePreprocessor (45 samples, 0.01%)</title><rect x="45.1037%" y="613" width="0.0148%" height="15" fill="rgb(235,184,23)" fg:x="137116" fg:w="45"/><text x="45.3537%" y="623.50"></text></g><g><title>clang::CompilerInstance::createPreprocessor (120 samples, 0.04%)</title><rect x="45.0912%" y="629" width="0.0395%" height="15" fill="rgb(227,226,48)" fg:x="137078" fg:w="120"/><text x="45.3412%" y="639.50"></text></g><g><title>std::__shared_ptr&lt;clang::Preprocessor, (__gnu_cxx::_Lock_policy)2&gt;::__shared_ptr&lt;std::allocator&lt;clang::Preprocessor&gt;, std::shared_ptr&lt;clang::PreprocessorOptions&gt;, clang::DiagnosticsEngine&amp;, clang::LangOptions&amp;, clang::SourceManager&amp;, clang::HeaderSearch&amp;, clang::CompilerInstance&amp;, decltype(nullptr), bool, clang::TranslationUnitKind&amp;&gt; (37 samples, 0.01%)</title><rect x="45.1185%" y="613" width="0.0122%" height="15" fill="rgb(206,150,11)" fg:x="137161" fg:w="37"/><text x="45.3685%" y="623.50"></text></g><g><title>clang::Preprocessor::Preprocessor (37 samples, 0.01%)</title><rect x="45.1185%" y="597" width="0.0122%" height="15" fill="rgb(254,2,33)" fg:x="137161" fg:w="37"/><text x="45.3685%" y="607.50"></text></g><g><title>GetOutputStream (44 samples, 0.01%)</title><rect x="45.1306%" y="597" width="0.0145%" height="15" fill="rgb(243,160,20)" fg:x="137198" fg:w="44"/><text x="45.3806%" y="607.50"></text></g><g><title>clang::CompilerInstance::createDefaultOutputFile (44 samples, 0.01%)</title><rect x="45.1306%" y="581" width="0.0145%" height="15" fill="rgb(218,208,30)" fg:x="137198" fg:w="44"/><text x="45.3806%" y="591.50"></text></g><g><title>clang::CompilerInstance::createOutputFile (44 samples, 0.01%)</title><rect x="45.1306%" y="565" width="0.0145%" height="15" fill="rgb(224,120,49)" fg:x="137198" fg:w="44"/><text x="45.3806%" y="575.50"></text></g><g><title>clang::CompilerInstance::createOutputFileImpl (43 samples, 0.01%)</title><rect x="45.1310%" y="549" width="0.0141%" height="15" fill="rgb(246,12,2)" fg:x="137199" fg:w="43"/><text x="45.3810%" y="559.50"></text></g><g><title>clang::FrontendAction::BeginSourceFile (379 samples, 0.12%)</title><rect x="45.0227%" y="645" width="0.1247%" height="15" fill="rgb(236,117,3)" fg:x="136870" fg:w="379"/><text x="45.2727%" y="655.50"></text></g><g><title>clang::FrontendAction::CreateWrappedASTConsumer (51 samples, 0.02%)</title><rect x="45.1306%" y="629" width="0.0168%" height="15" fill="rgb(216,128,52)" fg:x="137198" fg:w="51"/><text x="45.3806%" y="639.50"></text></g><g><title>clang::CodeGenAction::CreateASTConsumer (51 samples, 0.02%)</title><rect x="45.1306%" y="613" width="0.0168%" height="15" fill="rgb(246,145,19)" fg:x="137198" fg:w="51"/><text x="45.3806%" y="623.50"></text></g><g><title>copy_inode_items_to_log (41 samples, 0.01%)</title><rect x="45.1767%" y="373" width="0.0135%" height="15" fill="rgb(222,11,46)" fg:x="137338" fg:w="41"/><text x="45.4267%" y="383.50"></text></g><g><title>btrfs_log_new_name (76 samples, 0.02%)</title><rect x="45.1658%" y="437" width="0.0250%" height="15" fill="rgb(245,82,36)" fg:x="137305" fg:w="76"/><text x="45.4158%" y="447.50"></text></g><g><title>btrfs_log_inode_parent (76 samples, 0.02%)</title><rect x="45.1658%" y="421" width="0.0250%" height="15" fill="rgb(250,73,51)" fg:x="137305" fg:w="76"/><text x="45.4158%" y="431.50"></text></g><g><title>log_all_new_ancestors (56 samples, 0.02%)</title><rect x="45.1724%" y="405" width="0.0184%" height="15" fill="rgb(221,189,23)" fg:x="137325" fg:w="56"/><text x="45.4224%" y="415.50"></text></g><g><title>btrfs_log_inode (56 samples, 0.02%)</title><rect x="45.1724%" y="389" width="0.0184%" height="15" fill="rgb(210,33,7)" fg:x="137325" fg:w="56"/><text x="45.4224%" y="399.50"></text></g><g><title>__x64_sys_rename (104 samples, 0.03%)</title><rect x="45.1569%" y="517" width="0.0342%" height="15" fill="rgb(210,107,22)" fg:x="137278" fg:w="104"/><text x="45.4069%" y="527.50"></text></g><g><title>do_renameat2 (104 samples, 0.03%)</title><rect x="45.1569%" y="501" width="0.0342%" height="15" fill="rgb(222,116,37)" fg:x="137278" fg:w="104"/><text x="45.4069%" y="511.50"></text></g><g><title>vfs_rename (100 samples, 0.03%)</title><rect x="45.1583%" y="485" width="0.0329%" height="15" fill="rgb(254,17,48)" fg:x="137282" fg:w="100"/><text x="45.4083%" y="495.50"></text></g><g><title>btrfs_rename2 (100 samples, 0.03%)</title><rect x="45.1583%" y="469" width="0.0329%" height="15" fill="rgb(224,36,32)" fg:x="137282" fg:w="100"/><text x="45.4083%" y="479.50"></text></g><g><title>btrfs_rename (100 samples, 0.03%)</title><rect x="45.1583%" y="453" width="0.0329%" height="15" fill="rgb(232,90,46)" fg:x="137282" fg:w="100"/><text x="45.4083%" y="463.50"></text></g><g><title>do_syscall_64 (106 samples, 0.03%)</title><rect x="45.1569%" y="549" width="0.0349%" height="15" fill="rgb(241,66,40)" fg:x="137278" fg:w="106"/><text x="45.4069%" y="559.50"></text></g><g><title>unload_network_ops_symbols (106 samples, 0.03%)</title><rect x="45.1569%" y="533" width="0.0349%" height="15" fill="rgb(249,184,29)" fg:x="137278" fg:w="106"/><text x="45.4069%" y="543.50"></text></g><g><title>clang::CompilerInstance::clearOutputFiles (132 samples, 0.04%)</title><rect x="45.1487%" y="629" width="0.0434%" height="15" fill="rgb(231,181,1)" fg:x="137253" fg:w="132"/><text x="45.3987%" y="639.50"></text></g><g><title>llvm::sys::fs::TempFile::keep (132 samples, 0.04%)</title><rect x="45.1487%" y="613" width="0.0434%" height="15" fill="rgb(224,94,2)" fg:x="137253" fg:w="132"/><text x="45.3987%" y="623.50"></text></g><g><title>llvm::sys::fs::rename (109 samples, 0.04%)</title><rect x="45.1563%" y="597" width="0.0359%" height="15" fill="rgb(229,170,15)" fg:x="137276" fg:w="109"/><text x="45.4063%" y="607.50"></text></g><g><title>rename (108 samples, 0.04%)</title><rect x="45.1566%" y="581" width="0.0355%" height="15" fill="rgb(240,127,35)" fg:x="137277" fg:w="108"/><text x="45.4066%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (107 samples, 0.04%)</title><rect x="45.1569%" y="565" width="0.0352%" height="15" fill="rgb(248,196,34)" fg:x="137278" fg:w="107"/><text x="45.4069%" y="575.50"></text></g><g><title>llvm::raw_fd_ostream::raw_fd_ostream (31 samples, 0.01%)</title><rect x="45.1948%" y="613" width="0.0102%" height="15" fill="rgb(236,137,7)" fg:x="137393" fg:w="31"/><text x="45.4448%" y="623.50"></text></g><g><title>llvm::raw_fd_ostream::raw_fd_ostream (31 samples, 0.01%)</title><rect x="45.1948%" y="597" width="0.0102%" height="15" fill="rgb(235,127,16)" fg:x="137393" fg:w="31"/><text x="45.4448%" y="607.50"></text></g><g><title>_ZdlPv (32 samples, 0.01%)</title><rect x="45.2115%" y="437" width="0.0105%" height="15" fill="rgb(250,192,54)" fg:x="137444" fg:w="32"/><text x="45.4615%" y="447.50"></text></g><g><title>clang::FrontendAction::EndSourceFile (228 samples, 0.07%)</title><rect x="45.1474%" y="645" width="0.0750%" height="15" fill="rgb(218,98,20)" fg:x="137249" fg:w="228"/><text x="45.3974%" y="655.50"></text></g><g><title>clang::DependencyFileGenerator::outputDependencyFile (92 samples, 0.03%)</title><rect x="45.1921%" y="629" width="0.0303%" height="15" fill="rgb(230,176,47)" fg:x="137385" fg:w="92"/><text x="45.4421%" y="639.50"></text></g><g><title>llvm::raw_fd_ostream::~raw_fd_ostream (53 samples, 0.02%)</title><rect x="45.2050%" y="613" width="0.0174%" height="15" fill="rgb(244,2,33)" fg:x="137424" fg:w="53"/><text x="45.4550%" y="623.50"></text></g><g><title>llvm::sys::Process::SafelyCloseFileDescriptor (39 samples, 0.01%)</title><rect x="45.2096%" y="597" width="0.0128%" height="15" fill="rgb(231,100,17)" fg:x="137438" fg:w="39"/><text x="45.4596%" y="607.50"></text></g><g><title>__GI___close (39 samples, 0.01%)</title><rect x="45.2096%" y="581" width="0.0128%" height="15" fill="rgb(245,23,12)" fg:x="137438" fg:w="39"/><text x="45.4596%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.01%)</title><rect x="45.2096%" y="565" width="0.0128%" height="15" fill="rgb(249,55,22)" fg:x="137438" fg:w="39"/><text x="45.4596%" y="575.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="45.2096%" y="549" width="0.0128%" height="15" fill="rgb(207,134,9)" fg:x="137438" fg:w="39"/><text x="45.4596%" y="559.50"></text></g><g><title>unload_network_ops_symbols (35 samples, 0.01%)</title><rect x="45.2109%" y="533" width="0.0115%" height="15" fill="rgb(218,134,0)" fg:x="137442" fg:w="35"/><text x="45.4609%" y="543.50"></text></g><g><title>cshook_systemcalltable_pre_close (35 samples, 0.01%)</title><rect x="45.2109%" y="517" width="0.0115%" height="15" fill="rgb(213,212,33)" fg:x="137442" fg:w="35"/><text x="45.4609%" y="527.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (35 samples, 0.01%)</title><rect x="45.2109%" y="501" width="0.0115%" height="15" fill="rgb(252,106,18)" fg:x="137442" fg:w="35"/><text x="45.4609%" y="511.50"></text></g><g><title>fshook_syscalltable_pre_lchown (34 samples, 0.01%)</title><rect x="45.2112%" y="485" width="0.0112%" height="15" fill="rgb(208,126,42)" fg:x="137443" fg:w="34"/><text x="45.4612%" y="495.50"></text></g><g><title>_ZdlPv (33 samples, 0.01%)</title><rect x="45.2115%" y="469" width="0.0109%" height="15" fill="rgb(246,175,29)" fg:x="137444" fg:w="33"/><text x="45.4615%" y="479.50"></text></g><g><title>_ZdlPv (33 samples, 0.01%)</title><rect x="45.2115%" y="453" width="0.0109%" height="15" fill="rgb(215,13,50)" fg:x="137444" fg:w="33"/><text x="45.4615%" y="463.50"></text></g><g><title>clang::BalancedDelimiterTracker::consumeClose (95 samples, 0.03%)</title><rect x="45.2431%" y="517" width="0.0312%" height="15" fill="rgb(216,172,15)" fg:x="137540" fg:w="95"/><text x="45.4931%" y="527.50"></text></g><g><title>clang::Parser::ConsumeBrace (95 samples, 0.03%)</title><rect x="45.2431%" y="501" width="0.0312%" height="15" fill="rgb(212,103,13)" fg:x="137540" fg:w="95"/><text x="45.4931%" y="511.50"></text></g><g><title>clang::Preprocessor::Lex (95 samples, 0.03%)</title><rect x="45.2431%" y="485" width="0.0312%" height="15" fill="rgb(231,171,36)" fg:x="137540" fg:w="95"/><text x="45.4931%" y="495.50"></text></g><g><title>clang::Lexer::LexTokenInternal (95 samples, 0.03%)</title><rect x="45.2431%" y="469" width="0.0312%" height="15" fill="rgb(250,123,20)" fg:x="137540" fg:w="95"/><text x="45.4931%" y="479.50"></text></g><g><title>clang::Preprocessor::HandleDirective (86 samples, 0.03%)</title><rect x="45.2461%" y="453" width="0.0283%" height="15" fill="rgb(212,53,50)" fg:x="137549" fg:w="86"/><text x="45.4961%" y="463.50"></text></g><g><title>clang::Parser::ParseInnerNamespace (99 samples, 0.03%)</title><rect x="45.2431%" y="533" width="0.0326%" height="15" fill="rgb(243,54,12)" fg:x="137540" fg:w="99"/><text x="45.4931%" y="543.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (114 samples, 0.04%)</title><rect x="45.2411%" y="581" width="0.0375%" height="15" fill="rgb(234,101,34)" fg:x="137534" fg:w="114"/><text x="45.4911%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclaration (113 samples, 0.04%)</title><rect x="45.2415%" y="565" width="0.0372%" height="15" fill="rgb(254,67,22)" fg:x="137535" fg:w="113"/><text x="45.4915%" y="575.50"></text></g><g><title>clang::Parser::ParseNamespace (113 samples, 0.04%)</title><rect x="45.2415%" y="549" width="0.0372%" height="15" fill="rgb(250,35,47)" fg:x="137535" fg:w="113"/><text x="45.4915%" y="559.50"></text></g><g><title>clang::Parser::ParseFirstTopLevelDecl (117 samples, 0.04%)</title><rect x="45.2408%" y="613" width="0.0385%" height="15" fill="rgb(226,126,38)" fg:x="137533" fg:w="117"/><text x="45.4908%" y="623.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (117 samples, 0.04%)</title><rect x="45.2408%" y="597" width="0.0385%" height="15" fill="rgb(216,138,53)" fg:x="137533" fg:w="117"/><text x="45.4908%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (37 samples, 0.01%)</title><rect x="45.2928%" y="501" width="0.0122%" height="15" fill="rgb(246,199,43)" fg:x="137691" fg:w="37"/><text x="45.5428%" y="511.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (44 samples, 0.01%)</title><rect x="45.2918%" y="517" width="0.0145%" height="15" fill="rgb(232,125,11)" fg:x="137688" fg:w="44"/><text x="45.5418%" y="527.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (74 samples, 0.02%)</title><rect x="45.2839%" y="533" width="0.0243%" height="15" fill="rgb(218,219,45)" fg:x="137664" fg:w="74"/><text x="45.5339%" y="543.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (103 samples, 0.03%)</title><rect x="45.2793%" y="597" width="0.0339%" height="15" fill="rgb(216,102,54)" fg:x="137650" fg:w="103"/><text x="45.5293%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (103 samples, 0.03%)</title><rect x="45.2793%" y="581" width="0.0339%" height="15" fill="rgb(250,228,7)" fg:x="137650" fg:w="103"/><text x="45.5293%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (103 samples, 0.03%)</title><rect x="45.2793%" y="565" width="0.0339%" height="15" fill="rgb(226,125,25)" fg:x="137650" fg:w="103"/><text x="45.5293%" y="575.50"></text></g><g><title>clang::Parser::ParseLinkage (101 samples, 0.03%)</title><rect x="45.2800%" y="549" width="0.0332%" height="15" fill="rgb(224,165,27)" fg:x="137652" fg:w="101"/><text x="45.5300%" y="559.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (104 samples, 0.03%)</title><rect x="45.2793%" y="613" width="0.0342%" height="15" fill="rgb(233,86,3)" fg:x="137650" fg:w="104"/><text x="45.5293%" y="623.50"></text></g><g><title>clang::Preprocessor::ReadMacroName (71 samples, 0.02%)</title><rect x="45.3388%" y="549" width="0.0234%" height="15" fill="rgb(228,116,20)" fg:x="137831" fg:w="71"/><text x="45.5888%" y="559.50"></text></g><g><title>clang::Preprocessor::Lex (58 samples, 0.02%)</title><rect x="45.3431%" y="533" width="0.0191%" height="15" fill="rgb(209,192,17)" fg:x="137844" fg:w="58"/><text x="45.5931%" y="543.50"></text></g><g><title>clang::Lexer::LexTokenInternal (55 samples, 0.02%)</title><rect x="45.3441%" y="517" width="0.0181%" height="15" fill="rgb(224,88,34)" fg:x="137847" fg:w="55"/><text x="45.5941%" y="527.50"></text></g><g><title>clang::Lexer::LexIdentifierContinue (52 samples, 0.02%)</title><rect x="45.3451%" y="501" width="0.0171%" height="15" fill="rgb(233,38,6)" fg:x="137850" fg:w="52"/><text x="45.5951%" y="511.50"></text></g><g><title>clang::Preprocessor::LookUpIdentifierInfo (34 samples, 0.01%)</title><rect x="45.3510%" y="485" width="0.0112%" height="15" fill="rgb(212,59,30)" fg:x="137868" fg:w="34"/><text x="45.6010%" y="495.50"></text></g><g><title>clang::Preprocessor::AllocateMacroInfo (32 samples, 0.01%)</title><rect x="45.3645%" y="533" width="0.0105%" height="15" fill="rgb(213,80,3)" fg:x="137909" fg:w="32"/><text x="45.6145%" y="543.50"></text></g><g><title>clang::Preprocessor::Lex (32 samples, 0.01%)</title><rect x="45.3750%" y="533" width="0.0105%" height="15" fill="rgb(251,178,7)" fg:x="137941" fg:w="32"/><text x="45.6250%" y="543.50"></text></g><g><title>clang::Preprocessor::ReadOptionalMacroParameterListAndBody (77 samples, 0.03%)</title><rect x="45.3622%" y="549" width="0.0253%" height="15" fill="rgb(213,154,26)" fg:x="137902" fg:w="77"/><text x="45.6122%" y="559.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (178 samples, 0.06%)</title><rect x="45.3352%" y="565" width="0.0586%" height="15" fill="rgb(238,165,49)" fg:x="137820" fg:w="178"/><text x="45.5852%" y="575.50"></text></g><g><title>clang::Preprocessor::EvaluateDirectiveExpression (81 samples, 0.03%)</title><rect x="45.4004%" y="549" width="0.0266%" height="15" fill="rgb(248,91,46)" fg:x="138018" fg:w="81"/><text x="45.6504%" y="559.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (123 samples, 0.04%)</title><rect x="45.4000%" y="565" width="0.0405%" height="15" fill="rgb(244,21,52)" fg:x="138017" fg:w="123"/><text x="45.6500%" y="575.50"></text></g><g><title>clang::Preprocessor::SkipExcludedConditionalBlock (41 samples, 0.01%)</title><rect x="45.4270%" y="549" width="0.0135%" height="15" fill="rgb(247,122,20)" fg:x="138099" fg:w="41"/><text x="45.6770%" y="559.50"></text></g><g><title>clang::Preprocessor::Lex (37 samples, 0.01%)</title><rect x="45.4494%" y="565" width="0.0122%" height="15" fill="rgb(218,27,9)" fg:x="138167" fg:w="37"/><text x="45.6994%" y="575.50"></text></g><g><title>clang::Lexer::LexTokenInternal (35 samples, 0.01%)</title><rect x="45.4500%" y="549" width="0.0115%" height="15" fill="rgb(246,7,6)" fg:x="138169" fg:w="35"/><text x="45.7000%" y="559.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (1,364 samples, 0.45%)</title><rect x="45.0168%" y="661" width="0.4487%" height="15" fill="rgb(227,135,54)" fg:x="136852" fg:w="1364"/><text x="45.2668%" y="671.50"></text></g><g><title>clang::FrontendAction::Execute (739 samples, 0.24%)</title><rect x="45.2224%" y="645" width="0.2431%" height="15" fill="rgb(247,14,11)" fg:x="137477" fg:w="739"/><text x="45.4724%" y="655.50"></text></g><g><title>clang::ParseAST (721 samples, 0.24%)</title><rect x="45.2283%" y="629" width="0.2372%" height="15" fill="rgb(206,149,34)" fg:x="137495" fg:w="721"/><text x="45.4783%" y="639.50"></text></g><g><title>clang::Preprocessor::Lex (442 samples, 0.15%)</title><rect x="45.3201%" y="613" width="0.1454%" height="15" fill="rgb(227,228,4)" fg:x="137774" fg:w="442"/><text x="45.5701%" y="623.50"></text></g><g><title>clang::Lexer::LexTokenInternal (437 samples, 0.14%)</title><rect x="45.3217%" y="597" width="0.1437%" height="15" fill="rgb(238,218,28)" fg:x="137779" fg:w="437"/><text x="45.5717%" y="607.50"></text></g><g><title>clang::Preprocessor::HandleDirective (409 samples, 0.13%)</title><rect x="45.3310%" y="581" width="0.1345%" height="15" fill="rgb(252,86,40)" fg:x="137807" fg:w="409"/><text x="45.5810%" y="591.50"></text></g><g><title>clang::ExecuteCompilerInvocation (1,405 samples, 0.46%)</title><rect x="45.0158%" y="677" width="0.4622%" height="15" fill="rgb(251,225,11)" fg:x="136849" fg:w="1405"/><text x="45.2658%" y="687.50"></text></g><g><title>clang::driver::CC1Command::Execute (1,457 samples, 0.48%)</title><rect x="45.0083%" y="757" width="0.4793%" height="15" fill="rgb(206,46,49)" fg:x="136826" fg:w="1457"/><text x="45.2583%" y="767.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (1,457 samples, 0.48%)</title><rect x="45.0083%" y="741" width="0.4793%" height="15" fill="rgb(245,128,24)" fg:x="136826" fg:w="1457"/><text x="45.2583%" y="751.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (1,457 samples, 0.48%)</title><rect x="45.0083%" y="725" width="0.4793%" height="15" fill="rgb(219,177,34)" fg:x="136826" fg:w="1457"/><text x="45.2583%" y="735.50"></text></g><g><title>ExecuteCC1Tool (1,457 samples, 0.48%)</title><rect x="45.0083%" y="709" width="0.4793%" height="15" fill="rgb(218,60,48)" fg:x="136826" fg:w="1457"/><text x="45.2583%" y="719.50"></text></g><g><title>cc1_main (1,456 samples, 0.48%)</title><rect x="45.0086%" y="693" width="0.4789%" height="15" fill="rgb(221,11,5)" fg:x="136827" fg:w="1456"/><text x="45.2586%" y="703.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (1,467 samples, 0.48%)</title><rect x="45.0083%" y="805" width="0.4826%" height="15" fill="rgb(220,148,13)" fg:x="136826" fg:w="1467"/><text x="45.2583%" y="815.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (1,467 samples, 0.48%)</title><rect x="45.0083%" y="789" width="0.4826%" height="15" fill="rgb(210,16,3)" fg:x="136826" fg:w="1467"/><text x="45.2583%" y="799.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (1,467 samples, 0.48%)</title><rect x="45.0083%" y="773" width="0.4826%" height="15" fill="rgb(236,80,2)" fg:x="136826" fg:w="1467"/><text x="45.2583%" y="783.50"></text></g><g><title>main (2,079 samples, 0.68%)</title><rect x="44.8165%" y="821" width="0.6839%" height="15" fill="rgb(239,129,19)" fg:x="136243" fg:w="2079"/><text x="45.0665%" y="831.50"></text></g><g><title>[unknown] (5,227 samples, 1.72%)</title><rect x="43.7866%" y="837" width="1.7194%" height="15" fill="rgb(220,106,35)" fg:x="133112" fg:w="5227"/><text x="44.0366%" y="847.50"></text></g><g><title>_ZdlPv (130 samples, 0.04%)</title><rect x="45.5323%" y="453" width="0.0428%" height="15" fill="rgb(252,139,45)" fg:x="138419" fg:w="130"/><text x="45.7823%" y="463.50"></text></g><g><title>_ZdlPv (128 samples, 0.04%)</title><rect x="45.5329%" y="437" width="0.0421%" height="15" fill="rgb(229,8,36)" fg:x="138421" fg:w="128"/><text x="45.7829%" y="447.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (127 samples, 0.04%)</title><rect x="45.5333%" y="421" width="0.0418%" height="15" fill="rgb(230,126,33)" fg:x="138422" fg:w="127"/><text x="45.7833%" y="431.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (111 samples, 0.04%)</title><rect x="45.5385%" y="405" width="0.0365%" height="15" fill="rgb(239,140,21)" fg:x="138438" fg:w="111"/><text x="45.7885%" y="415.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (31 samples, 0.01%)</title><rect x="45.5648%" y="389" width="0.0102%" height="15" fill="rgb(254,104,9)" fg:x="138518" fg:w="31"/><text x="45.8148%" y="399.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (131 samples, 0.04%)</title><rect x="45.5323%" y="469" width="0.0431%" height="15" fill="rgb(239,52,14)" fg:x="138419" fg:w="131"/><text x="45.7823%" y="479.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (162 samples, 0.05%)</title><rect x="45.5300%" y="501" width="0.0533%" height="15" fill="rgb(208,227,44)" fg:x="138412" fg:w="162"/><text x="45.7800%" y="511.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (157 samples, 0.05%)</title><rect x="45.5316%" y="485" width="0.0516%" height="15" fill="rgb(246,18,19)" fg:x="138417" fg:w="157"/><text x="45.7816%" y="495.50"></text></g><g><title>_ZdlPv (34 samples, 0.01%)</title><rect x="45.5849%" y="437" width="0.0112%" height="15" fill="rgb(235,228,25)" fg:x="138579" fg:w="34"/><text x="45.8349%" y="447.50"></text></g><g><title>_ZdlPv (43 samples, 0.01%)</title><rect x="45.5842%" y="453" width="0.0141%" height="15" fill="rgb(240,156,20)" fg:x="138577" fg:w="43"/><text x="45.8342%" y="463.50"></text></g><g><title>_ZdlPv (48 samples, 0.02%)</title><rect x="45.5836%" y="469" width="0.0158%" height="15" fill="rgb(224,8,20)" fg:x="138575" fg:w="48"/><text x="45.8336%" y="479.50"></text></g><g><title>_ZdlPv (49 samples, 0.02%)</title><rect x="45.5836%" y="485" width="0.0161%" height="15" fill="rgb(214,12,52)" fg:x="138575" fg:w="49"/><text x="45.8336%" y="495.50"></text></g><g><title>_ZdlPv (53 samples, 0.02%)</title><rect x="45.5833%" y="501" width="0.0174%" height="15" fill="rgb(211,220,47)" fg:x="138574" fg:w="53"/><text x="45.8333%" y="511.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (77 samples, 0.03%)</title><rect x="45.6033%" y="453" width="0.0253%" height="15" fill="rgb(250,173,5)" fg:x="138635" fg:w="77"/><text x="45.8533%" y="463.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (61 samples, 0.02%)</title><rect x="45.6086%" y="437" width="0.0201%" height="15" fill="rgb(250,125,52)" fg:x="138651" fg:w="61"/><text x="45.8586%" y="447.50"></text></g><g><title>_ZdlPv (78 samples, 0.03%)</title><rect x="45.6033%" y="469" width="0.0257%" height="15" fill="rgb(209,133,18)" fg:x="138635" fg:w="78"/><text x="45.8533%" y="479.50"></text></g><g><title>_ZdlPv (82 samples, 0.03%)</title><rect x="45.6030%" y="485" width="0.0270%" height="15" fill="rgb(216,173,22)" fg:x="138634" fg:w="82"/><text x="45.8530%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (48 samples, 0.02%)</title><rect x="45.6612%" y="357" width="0.0158%" height="15" fill="rgb(205,3,22)" fg:x="138811" fg:w="48"/><text x="45.9112%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (45 samples, 0.01%)</title><rect x="45.6622%" y="341" width="0.0148%" height="15" fill="rgb(248,22,20)" fg:x="138814" fg:w="45"/><text x="45.9122%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (39 samples, 0.01%)</title><rect x="45.6642%" y="325" width="0.0128%" height="15" fill="rgb(233,6,29)" fg:x="138820" fg:w="39"/><text x="45.9142%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (73 samples, 0.02%)</title><rect x="45.6540%" y="405" width="0.0240%" height="15" fill="rgb(240,22,54)" fg:x="138789" fg:w="73"/><text x="45.9040%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (68 samples, 0.02%)</title><rect x="45.6556%" y="389" width="0.0224%" height="15" fill="rgb(231,133,32)" fg:x="138794" fg:w="68"/><text x="45.9056%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (54 samples, 0.02%)</title><rect x="45.6602%" y="373" width="0.0178%" height="15" fill="rgb(248,193,4)" fg:x="138808" fg:w="54"/><text x="45.9102%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (88 samples, 0.03%)</title><rect x="45.6507%" y="421" width="0.0289%" height="15" fill="rgb(211,178,46)" fg:x="138779" fg:w="88"/><text x="45.9007%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (95 samples, 0.03%)</title><rect x="45.6487%" y="437" width="0.0312%" height="15" fill="rgb(224,5,42)" fg:x="138773" fg:w="95"/><text x="45.8987%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (111 samples, 0.04%)</title><rect x="45.6438%" y="453" width="0.0365%" height="15" fill="rgb(239,176,25)" fg:x="138758" fg:w="111"/><text x="45.8938%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (139 samples, 0.05%)</title><rect x="45.6356%" y="469" width="0.0457%" height="15" fill="rgb(245,187,50)" fg:x="138733" fg:w="139"/><text x="45.8856%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (161 samples, 0.05%)</title><rect x="45.6303%" y="485" width="0.0530%" height="15" fill="rgb(248,24,15)" fg:x="138717" fg:w="161"/><text x="45.8803%" y="495.50"></text></g><g><title>_ZdlPv (483 samples, 0.16%)</title><rect x="45.5247%" y="549" width="0.1589%" height="15" fill="rgb(205,166,13)" fg:x="138396" fg:w="483"/><text x="45.7747%" y="559.50"></text></g><g><title>_ZdlPv (483 samples, 0.16%)</title><rect x="45.5247%" y="533" width="0.1589%" height="15" fill="rgb(208,114,23)" fg:x="138396" fg:w="483"/><text x="45.7747%" y="543.50"></text></g><g><title>_ZdlPv (479 samples, 0.16%)</title><rect x="45.5260%" y="517" width="0.1576%" height="15" fill="rgb(239,127,18)" fg:x="138400" fg:w="479"/><text x="45.7760%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (248 samples, 0.08%)</title><rect x="45.6020%" y="501" width="0.0816%" height="15" fill="rgb(219,154,28)" fg:x="138631" fg:w="248"/><text x="45.8520%" y="511.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (48 samples, 0.02%)</title><rect x="45.6885%" y="437" width="0.0158%" height="15" fill="rgb(225,157,23)" fg:x="138894" fg:w="48"/><text x="45.9385%" y="447.50"></text></g><g><title>_ZdlPv (48 samples, 0.02%)</title><rect x="45.6885%" y="421" width="0.0158%" height="15" fill="rgb(219,8,6)" fg:x="138894" fg:w="48"/><text x="45.9385%" y="431.50"></text></g><g><title>_ZdlPv (48 samples, 0.02%)</title><rect x="45.6885%" y="405" width="0.0158%" height="15" fill="rgb(212,47,6)" fg:x="138894" fg:w="48"/><text x="45.9385%" y="415.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (47 samples, 0.02%)</title><rect x="45.6888%" y="389" width="0.0155%" height="15" fill="rgb(224,190,4)" fg:x="138895" fg:w="47"/><text x="45.9388%" y="399.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (45 samples, 0.01%)</title><rect x="45.6895%" y="373" width="0.0148%" height="15" fill="rgb(239,183,29)" fg:x="138897" fg:w="45"/><text x="45.9395%" y="383.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (71 samples, 0.02%)</title><rect x="45.6875%" y="469" width="0.0234%" height="15" fill="rgb(213,57,7)" fg:x="138891" fg:w="71"/><text x="45.9375%" y="479.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (69 samples, 0.02%)</title><rect x="45.6882%" y="453" width="0.0227%" height="15" fill="rgb(216,148,1)" fg:x="138893" fg:w="69"/><text x="45.9382%" y="463.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (87 samples, 0.03%)</title><rect x="45.7240%" y="405" width="0.0286%" height="15" fill="rgb(236,182,29)" fg:x="139002" fg:w="87"/><text x="45.9740%" y="415.50"></text></g><g><title>_ZdlPv (98 samples, 0.03%)</title><rect x="45.7208%" y="453" width="0.0322%" height="15" fill="rgb(244,120,48)" fg:x="138992" fg:w="98"/><text x="45.9708%" y="463.50"></text></g><g><title>_ZdlPv (98 samples, 0.03%)</title><rect x="45.7208%" y="437" width="0.0322%" height="15" fill="rgb(206,71,34)" fg:x="138992" fg:w="98"/><text x="45.9708%" y="447.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (98 samples, 0.03%)</title><rect x="45.7208%" y="421" width="0.0322%" height="15" fill="rgb(242,32,6)" fg:x="138992" fg:w="98"/><text x="45.9708%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (35 samples, 0.01%)</title><rect x="45.7691%" y="357" width="0.0115%" height="15" fill="rgb(241,35,3)" fg:x="139139" fg:w="35"/><text x="46.0191%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (42 samples, 0.01%)</title><rect x="45.7671%" y="373" width="0.0138%" height="15" fill="rgb(222,62,19)" fg:x="139133" fg:w="42"/><text x="46.0171%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (80 samples, 0.03%)</title><rect x="45.7559%" y="437" width="0.0263%" height="15" fill="rgb(223,110,41)" fg:x="139099" fg:w="80"/><text x="46.0059%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (70 samples, 0.02%)</title><rect x="45.7592%" y="421" width="0.0230%" height="15" fill="rgb(208,224,4)" fg:x="139109" fg:w="70"/><text x="46.0092%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (55 samples, 0.02%)</title><rect x="45.7642%" y="405" width="0.0181%" height="15" fill="rgb(241,137,19)" fg:x="139124" fg:w="55"/><text x="46.0142%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (50 samples, 0.02%)</title><rect x="45.7658%" y="389" width="0.0164%" height="15" fill="rgb(244,24,17)" fg:x="139129" fg:w="50"/><text x="46.0158%" y="399.50"></text></g><g><title>_ZdlPv (298 samples, 0.10%)</title><rect x="45.6849%" y="485" width="0.0980%" height="15" fill="rgb(245,178,49)" fg:x="138883" fg:w="298"/><text x="45.9349%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (191 samples, 0.06%)</title><rect x="45.7201%" y="469" width="0.0628%" height="15" fill="rgb(219,160,38)" fg:x="138990" fg:w="191"/><text x="45.9701%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (91 samples, 0.03%)</title><rect x="45.7530%" y="453" width="0.0299%" height="15" fill="rgb(228,137,14)" fg:x="139090" fg:w="91"/><text x="46.0030%" y="463.50"></text></g><g><title>_ZdlPv (303 samples, 0.10%)</title><rect x="45.6836%" y="501" width="0.0997%" height="15" fill="rgb(237,134,11)" fg:x="138879" fg:w="303"/><text x="45.9336%" y="511.50"></text></g><g><title>_ZdlPv (304 samples, 0.10%)</title><rect x="45.6836%" y="533" width="0.1000%" height="15" fill="rgb(211,126,44)" fg:x="138879" fg:w="304"/><text x="45.9336%" y="543.50"></text></g><g><title>_ZdlPv (304 samples, 0.10%)</title><rect x="45.6836%" y="517" width="0.1000%" height="15" fill="rgb(226,171,33)" fg:x="138879" fg:w="304"/><text x="45.9336%" y="527.50"></text></g><g><title>cshook_security_sb_free_security (314 samples, 0.10%)</title><rect x="45.6836%" y="549" width="0.1033%" height="15" fill="rgb(253,99,13)" fg:x="138879" fg:w="314"/><text x="45.9336%" y="559.50"></text></g><g><title>cshook_security_file_permission (809 samples, 0.27%)</title><rect x="45.5240%" y="597" width="0.2661%" height="15" fill="rgb(244,48,7)" fg:x="138394" fg:w="809"/><text x="45.7740%" y="607.50"></text></g><g><title>cshook_security_sb_free_security (809 samples, 0.27%)</title><rect x="45.5240%" y="581" width="0.2661%" height="15" fill="rgb(244,217,54)" fg:x="138394" fg:w="809"/><text x="45.7740%" y="591.50"></text></g><g><title>cshook_security_sb_free_security (808 samples, 0.27%)</title><rect x="45.5244%" y="565" width="0.2658%" height="15" fill="rgb(224,15,18)" fg:x="138395" fg:w="808"/><text x="45.7744%" y="575.50"></text></g><g><title>exec_binprm (848 samples, 0.28%)</title><rect x="45.5119%" y="693" width="0.2789%" height="15" fill="rgb(244,99,12)" fg:x="138357" fg:w="848"/><text x="45.7619%" y="703.50"></text></g><g><title>search_binary_handler (848 samples, 0.28%)</title><rect x="45.5119%" y="677" width="0.2789%" height="15" fill="rgb(233,226,8)" fg:x="138357" fg:w="848"/><text x="45.7619%" y="687.50"></text></g><g><title>security_bprm_check (818 samples, 0.27%)</title><rect x="45.5217%" y="661" width="0.2691%" height="15" fill="rgb(229,211,3)" fg:x="138387" fg:w="818"/><text x="45.7717%" y="671.50"></text></g><g><title>pinnedhook_security_bprm_check_security (818 samples, 0.27%)</title><rect x="45.5217%" y="645" width="0.2691%" height="15" fill="rgb(216,140,21)" fg:x="138387" fg:w="818"/><text x="45.7717%" y="655.50"></text></g><g><title>cshook_security_bprm_check_security (817 samples, 0.27%)</title><rect x="45.5221%" y="629" width="0.2687%" height="15" fill="rgb(234,122,30)" fg:x="138388" fg:w="817"/><text x="45.7721%" y="639.50"></text></g><g><title>cshook_security_file_permission (817 samples, 0.27%)</title><rect x="45.5221%" y="613" width="0.2687%" height="15" fill="rgb(236,25,46)" fg:x="138388" fg:w="817"/><text x="45.7721%" y="623.50"></text></g><g><title>bprm_execve.part.0 (854 samples, 0.28%)</title><rect x="45.5106%" y="709" width="0.2809%" height="15" fill="rgb(217,52,54)" fg:x="138353" fg:w="854"/><text x="45.7606%" y="719.50"></text></g><g><title>bprm_execve (855 samples, 0.28%)</title><rect x="45.5106%" y="725" width="0.2812%" height="15" fill="rgb(222,29,26)" fg:x="138353" fg:w="855"/><text x="45.7606%" y="735.50"></text></g><g><title>do_execveat_common.isra.0 (863 samples, 0.28%)</title><rect x="45.5099%" y="741" width="0.2839%" height="15" fill="rgb(216,177,29)" fg:x="138351" fg:w="863"/><text x="45.7599%" y="751.50"></text></g><g><title>__spawni_child (870 samples, 0.29%)</title><rect x="45.5079%" y="821" width="0.2862%" height="15" fill="rgb(247,136,51)" fg:x="138345" fg:w="870"/><text x="45.7579%" y="831.50"></text></g><g><title>__GI_execve (864 samples, 0.28%)</title><rect x="45.5099%" y="805" width="0.2842%" height="15" fill="rgb(231,47,47)" fg:x="138351" fg:w="864"/><text x="45.7599%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (864 samples, 0.28%)</title><rect x="45.5099%" y="789" width="0.2842%" height="15" fill="rgb(211,192,36)" fg:x="138351" fg:w="864"/><text x="45.7599%" y="799.50"></text></g><g><title>do_syscall_64 (864 samples, 0.28%)</title><rect x="45.5099%" y="773" width="0.2842%" height="15" fill="rgb(229,156,32)" fg:x="138351" fg:w="864"/><text x="45.7599%" y="783.50"></text></g><g><title>__x64_sys_execve (864 samples, 0.28%)</title><rect x="45.5099%" y="757" width="0.2842%" height="15" fill="rgb(248,213,20)" fg:x="138351" fg:w="864"/><text x="45.7599%" y="767.50"></text></g><g><title>__x64_sys_clone3 (34 samples, 0.01%)</title><rect x="45.7958%" y="789" width="0.0112%" height="15" fill="rgb(217,64,7)" fg:x="139220" fg:w="34"/><text x="46.0458%" y="799.50"></text></g><g><title>__do_sys_clone3 (34 samples, 0.01%)</title><rect x="45.7958%" y="773" width="0.0112%" height="15" fill="rgb(232,142,8)" fg:x="139220" fg:w="34"/><text x="46.0458%" y="783.50"></text></g><g><title>kernel_clone (34 samples, 0.01%)</title><rect x="45.7958%" y="757" width="0.0112%" height="15" fill="rgb(224,92,44)" fg:x="139220" fg:w="34"/><text x="46.0458%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.01%)</title><rect x="45.7958%" y="821" width="0.0115%" height="15" fill="rgb(214,169,17)" fg:x="139220" fg:w="35"/><text x="46.0458%" y="831.50"></text></g><g><title>do_syscall_64 (35 samples, 0.01%)</title><rect x="45.7958%" y="805" width="0.0115%" height="15" fill="rgb(210,59,37)" fg:x="139220" fg:w="35"/><text x="46.0458%" y="815.50"></text></g><g><title>finish_task_switch.isra.0 (39 samples, 0.01%)</title><rect x="45.8079%" y="789" width="0.0128%" height="15" fill="rgb(214,116,48)" fg:x="139257" fg:w="39"/><text x="46.0579%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (38 samples, 0.01%)</title><rect x="45.8083%" y="773" width="0.0125%" height="15" fill="rgb(244,191,6)" fg:x="139258" fg:w="38"/><text x="46.0583%" y="783.50"></text></g><g><title>x86_pmu_enable (37 samples, 0.01%)</title><rect x="45.8086%" y="757" width="0.0122%" height="15" fill="rgb(241,50,52)" fg:x="139259" fg:w="37"/><text x="46.0586%" y="767.50"></text></g><g><title>intel_pmu_enable_all (37 samples, 0.01%)</title><rect x="45.8086%" y="741" width="0.0122%" height="15" fill="rgb(236,75,39)" fg:x="139259" fg:w="37"/><text x="46.0586%" y="751.50"></text></g><g><title>native_write_msr (37 samples, 0.01%)</title><rect x="45.8086%" y="725" width="0.0122%" height="15" fill="rgb(236,99,0)" fg:x="139259" fg:w="37"/><text x="46.0586%" y="735.50"></text></g><g><title>schedule_tail (42 samples, 0.01%)</title><rect x="45.8073%" y="805" width="0.0138%" height="15" fill="rgb(207,202,15)" fg:x="139255" fg:w="42"/><text x="46.0573%" y="815.50"></text></g><g><title>__clone3 (954 samples, 0.31%)</title><rect x="45.5079%" y="837" width="0.3138%" height="15" fill="rgb(233,207,14)" fg:x="138345" fg:w="954"/><text x="45.7579%" y="847.50"></text></g><g><title>ret_from_fork (44 samples, 0.01%)</title><rect x="45.8073%" y="821" width="0.0145%" height="15" fill="rgb(226,27,51)" fg:x="139255" fg:w="44"/><text x="46.0573%" y="831.50"></text></g><g><title>_GLOBAL__sub_I_AArch64TargetMachine.cpp (45 samples, 0.01%)</title><rect x="45.8559%" y="789" width="0.0148%" height="15" fill="rgb(206,104,42)" fg:x="139403" fg:w="45"/><text x="46.1059%" y="799.50"></text></g><g><title>initializeCodeGenerationPassOnce (33 samples, 0.01%)</title><rect x="46.2609%" y="725" width="0.0109%" height="15" fill="rgb(212,225,4)" fg:x="140634" fg:w="33"/><text x="46.5109%" y="735.50"></text></g><g><title>llvm::initializeDependenceInfoPass (33 samples, 0.01%)</title><rect x="46.2609%" y="709" width="0.0109%" height="15" fill="rgb(233,96,42)" fg:x="140634" fg:w="33"/><text x="46.5109%" y="719.50"></text></g><g><title>__pthread_once_slow (33 samples, 0.01%)</title><rect x="46.2609%" y="693" width="0.0109%" height="15" fill="rgb(229,21,32)" fg:x="140634" fg:w="33"/><text x="46.5109%" y="703.50"></text></g><g><title>initializeDependenceInfoPassOnce (33 samples, 0.01%)</title><rect x="46.2609%" y="677" width="0.0109%" height="15" fill="rgb(226,216,24)" fg:x="140634" fg:w="33"/><text x="46.5109%" y="687.50"></text></g><g><title>llvm::initializeScopInfoRegionPassPass (33 samples, 0.01%)</title><rect x="46.2609%" y="661" width="0.0109%" height="15" fill="rgb(221,163,17)" fg:x="140634" fg:w="33"/><text x="46.5109%" y="671.50"></text></g><g><title>__pthread_once_slow (37 samples, 0.01%)</title><rect x="46.2599%" y="741" width="0.0122%" height="15" fill="rgb(216,216,42)" fg:x="140631" fg:w="37"/><text x="46.5099%" y="751.50"></text></g><g><title>llvm::initializeCodeGenerationPass (39 samples, 0.01%)</title><rect x="46.2599%" y="757" width="0.0128%" height="15" fill="rgb(240,118,7)" fg:x="140631" fg:w="39"/><text x="46.5099%" y="767.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (75 samples, 0.02%)</title><rect x="46.2563%" y="789" width="0.0247%" height="15" fill="rgb(221,67,37)" fg:x="140620" fg:w="75"/><text x="46.5063%" y="799.50"></text></g><g><title>polly::initializePollyPasses (64 samples, 0.02%)</title><rect x="46.2599%" y="773" width="0.0211%" height="15" fill="rgb(241,32,44)" fg:x="140631" fg:w="64"/><text x="46.5099%" y="783.50"></text></g><g><title>_GLOBAL__sub_I_SimplifyCFGPass.cpp (36 samples, 0.01%)</title><rect x="46.3171%" y="789" width="0.0118%" height="15" fill="rgb(235,204,43)" fg:x="140805" fg:w="36"/><text x="46.5671%" y="799.50"></text></g><g><title>llvm::cl::Option::addArgument (36 samples, 0.01%)</title><rect x="46.3171%" y="773" width="0.0118%" height="15" fill="rgb(213,116,10)" fg:x="140805" fg:w="36"/><text x="46.5671%" y="783.50"></text></g><g><title>llvm::StringMap&lt;llvm::cl::Option*, llvm::MallocAllocator&gt;::try_emplace&lt;llvm::cl::Option*&gt; (35 samples, 0.01%)</title><rect x="46.3175%" y="757" width="0.0115%" height="15" fill="rgb(239,15,48)" fg:x="140806" fg:w="35"/><text x="46.5675%" y="767.50"></text></g><g><title>llvm::StringMapImpl::RehashTable (33 samples, 0.01%)</title><rect x="46.3181%" y="741" width="0.0109%" height="15" fill="rgb(207,123,36)" fg:x="140808" fg:w="33"/><text x="46.5681%" y="751.50"></text></g><g><title>__libc_csu_init (1,687 samples, 0.55%)</title><rect x="45.8352%" y="805" width="0.5549%" height="15" fill="rgb(209,103,30)" fg:x="139340" fg:w="1687"/><text x="46.0852%" y="815.50"></text></g><g><title>__GI_exit (171 samples, 0.06%)</title><rect x="46.3902%" y="789" width="0.0562%" height="15" fill="rgb(238,100,19)" fg:x="141027" fg:w="171"/><text x="46.6402%" y="799.50"></text></g><g><title>__run_exit_handlers (171 samples, 0.06%)</title><rect x="46.3902%" y="773" width="0.0562%" height="15" fill="rgb(244,30,14)" fg:x="141027" fg:w="171"/><text x="46.6402%" y="783.50"></text></g><g><title>clang::CreateAndPopulateDiagOpts (45 samples, 0.01%)</title><rect x="46.4497%" y="773" width="0.0148%" height="15" fill="rgb(249,174,6)" fg:x="141208" fg:w="45"/><text x="46.6997%" y="783.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (44 samples, 0.01%)</title><rect x="46.4842%" y="741" width="0.0145%" height="15" fill="rgb(235,213,41)" fg:x="141313" fg:w="44"/><text x="46.7342%" y="751.50"></text></g><g><title>clang::driver::Driver::getToolChain (47 samples, 0.02%)</title><rect x="46.4842%" y="757" width="0.0155%" height="15" fill="rgb(213,118,6)" fg:x="141313" fg:w="47"/><text x="46.7342%" y="767.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (98 samples, 0.03%)</title><rect x="46.4698%" y="773" width="0.0322%" height="15" fill="rgb(235,44,51)" fg:x="141269" fg:w="98"/><text x="46.7198%" y="783.50"></text></g><g><title>clang::driver::CC1Command::Execute (55 samples, 0.02%)</title><rect x="46.5050%" y="725" width="0.0181%" height="15" fill="rgb(217,9,53)" fg:x="141376" fg:w="55"/><text x="46.7550%" y="735.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (55 samples, 0.02%)</title><rect x="46.5050%" y="709" width="0.0181%" height="15" fill="rgb(237,172,34)" fg:x="141376" fg:w="55"/><text x="46.7550%" y="719.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (55 samples, 0.02%)</title><rect x="46.5050%" y="693" width="0.0181%" height="15" fill="rgb(206,206,11)" fg:x="141376" fg:w="55"/><text x="46.7550%" y="703.50"></text></g><g><title>ExecuteCC1Tool (55 samples, 0.02%)</title><rect x="46.5050%" y="677" width="0.0181%" height="15" fill="rgb(214,149,29)" fg:x="141376" fg:w="55"/><text x="46.7550%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (53 samples, 0.02%)</title><rect x="46.5254%" y="517" width="0.0174%" height="15" fill="rgb(208,123,3)" fg:x="141438" fg:w="53"/><text x="46.7754%" y="527.50"></text></g><g><title>x86_pmu_enable (51 samples, 0.02%)</title><rect x="46.5260%" y="501" width="0.0168%" height="15" fill="rgb(229,126,4)" fg:x="141440" fg:w="51"/><text x="46.7760%" y="511.50"></text></g><g><title>intel_pmu_enable_all (50 samples, 0.02%)</title><rect x="46.5263%" y="485" width="0.0164%" height="15" fill="rgb(222,92,36)" fg:x="141441" fg:w="50"/><text x="46.7763%" y="495.50"></text></g><g><title>native_write_msr (50 samples, 0.02%)</title><rect x="46.5263%" y="469" width="0.0164%" height="15" fill="rgb(216,39,41)" fg:x="141441" fg:w="50"/><text x="46.7763%" y="479.50"></text></g><g><title>finish_task_switch.isra.0 (59 samples, 0.02%)</title><rect x="46.5244%" y="533" width="0.0194%" height="15" fill="rgb(253,127,28)" fg:x="141435" fg:w="59"/><text x="46.7744%" y="543.50"></text></g><g><title>schedule (61 samples, 0.02%)</title><rect x="46.5240%" y="565" width="0.0201%" height="15" fill="rgb(249,152,51)" fg:x="141434" fg:w="61"/><text x="46.7740%" y="575.50"></text></g><g><title>__schedule (60 samples, 0.02%)</title><rect x="46.5244%" y="549" width="0.0197%" height="15" fill="rgb(209,123,42)" fg:x="141435" fg:w="60"/><text x="46.7744%" y="559.50"></text></g><g><title>__GI___wait4 (71 samples, 0.02%)</title><rect x="46.5234%" y="677" width="0.0234%" height="15" fill="rgb(241,118,22)" fg:x="141432" fg:w="71"/><text x="46.7734%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.02%)</title><rect x="46.5237%" y="661" width="0.0230%" height="15" fill="rgb(208,25,7)" fg:x="141433" fg:w="70"/><text x="46.7737%" y="671.50"></text></g><g><title>do_syscall_64 (70 samples, 0.02%)</title><rect x="46.5237%" y="645" width="0.0230%" height="15" fill="rgb(243,144,39)" fg:x="141433" fg:w="70"/><text x="46.7737%" y="655.50"></text></g><g><title>__x64_sys_wait4 (70 samples, 0.02%)</title><rect x="46.5237%" y="629" width="0.0230%" height="15" fill="rgb(250,50,5)" fg:x="141433" fg:w="70"/><text x="46.7737%" y="639.50"></text></g><g><title>__do_sys_wait4 (70 samples, 0.02%)</title><rect x="46.5237%" y="613" width="0.0230%" height="15" fill="rgb(207,67,11)" fg:x="141433" fg:w="70"/><text x="46.7737%" y="623.50"></text></g><g><title>kernel_wait4 (70 samples, 0.02%)</title><rect x="46.5237%" y="597" width="0.0230%" height="15" fill="rgb(245,204,40)" fg:x="141433" fg:w="70"/><text x="46.7737%" y="607.50"></text></g><g><title>do_wait (70 samples, 0.02%)</title><rect x="46.5237%" y="581" width="0.0230%" height="15" fill="rgb(238,228,24)" fg:x="141433" fg:w="70"/><text x="46.7737%" y="591.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (130 samples, 0.04%)</title><rect x="46.5043%" y="757" width="0.0428%" height="15" fill="rgb(217,116,22)" fg:x="141374" fg:w="130"/><text x="46.7543%" y="767.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (128 samples, 0.04%)</title><rect x="46.5050%" y="741" width="0.0421%" height="15" fill="rgb(234,98,12)" fg:x="141376" fg:w="128"/><text x="46.7550%" y="751.50"></text></g><g><title>clang::driver::Command::Execute (73 samples, 0.02%)</title><rect x="46.5230%" y="725" width="0.0240%" height="15" fill="rgb(242,170,50)" fg:x="141431" fg:w="73"/><text x="46.7730%" y="735.50"></text></g><g><title>llvm::sys::ExecuteAndWait (73 samples, 0.02%)</title><rect x="46.5230%" y="709" width="0.0240%" height="15" fill="rgb(235,7,5)" fg:x="141431" fg:w="73"/><text x="46.7730%" y="719.50"></text></g><g><title>llvm::sys::Wait (72 samples, 0.02%)</title><rect x="46.5234%" y="693" width="0.0237%" height="15" fill="rgb(241,114,28)" fg:x="141432" fg:w="72"/><text x="46.7734%" y="703.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (133 samples, 0.04%)</title><rect x="46.5040%" y="773" width="0.0437%" height="15" fill="rgb(246,112,42)" fg:x="141373" fg:w="133"/><text x="46.7540%" y="783.50"></text></g><g><title>__handle_mm_fault (34 samples, 0.01%)</title><rect x="46.5661%" y="629" width="0.0112%" height="15" fill="rgb(248,228,14)" fg:x="141562" fg:w="34"/><text x="46.8161%" y="639.50"></text></g><g><title>handle_pte_fault (31 samples, 0.01%)</title><rect x="46.5671%" y="613" width="0.0102%" height="15" fill="rgb(208,133,18)" fg:x="141565" fg:w="31"/><text x="46.8171%" y="623.50"></text></g><g><title>do_user_addr_fault (39 samples, 0.01%)</title><rect x="46.5648%" y="661" width="0.0128%" height="15" fill="rgb(207,35,49)" fg:x="141558" fg:w="39"/><text x="46.8148%" y="671.50"></text></g><g><title>handle_mm_fault (37 samples, 0.01%)</title><rect x="46.5655%" y="645" width="0.0122%" height="15" fill="rgb(205,68,36)" fg:x="141560" fg:w="37"/><text x="46.8155%" y="655.50"></text></g><g><title>asm_exc_page_fault (43 samples, 0.01%)</title><rect x="46.5638%" y="693" width="0.0141%" height="15" fill="rgb(245,62,40)" fg:x="141555" fg:w="43"/><text x="46.8138%" y="703.50"></text></g><g><title>exc_page_fault (41 samples, 0.01%)</title><rect x="46.5645%" y="677" width="0.0135%" height="15" fill="rgb(228,27,24)" fg:x="141557" fg:w="41"/><text x="46.8145%" y="687.50"></text></g><g><title>[libc.so.6] (62 samples, 0.02%)</title><rect x="46.5589%" y="709" width="0.0204%" height="15" fill="rgb(253,19,12)" fg:x="141540" fg:w="62"/><text x="46.8089%" y="719.50"></text></g><g><title>llvm::opt::OptTable::OptTable (110 samples, 0.04%)</title><rect x="46.5530%" y="725" width="0.0362%" height="15" fill="rgb(232,28,20)" fg:x="141522" fg:w="110"/><text x="46.8030%" y="735.50"></text></g><g><title>[libc.so.6] (56 samples, 0.02%)</title><rect x="46.5934%" y="693" width="0.0184%" height="15" fill="rgb(218,35,51)" fg:x="141645" fg:w="56"/><text x="46.8434%" y="703.50"></text></g><g><title>clang::driver::getDriverOptTable (184 samples, 0.06%)</title><rect x="46.5520%" y="757" width="0.0605%" height="15" fill="rgb(212,90,40)" fg:x="141519" fg:w="184"/><text x="46.8020%" y="767.50"></text></g><g><title>clang::driver::getDriverOptTable (181 samples, 0.06%)</title><rect x="46.5530%" y="741" width="0.0595%" height="15" fill="rgb(220,172,12)" fg:x="141522" fg:w="181"/><text x="46.8030%" y="751.50"></text></g><g><title>llvm::opt::OptTable::addValues (71 samples, 0.02%)</title><rect x="46.5892%" y="725" width="0.0234%" height="15" fill="rgb(226,159,20)" fg:x="141632" fg:w="71"/><text x="46.8392%" y="735.50"></text></g><g><title>optionMatches (67 samples, 0.02%)</title><rect x="46.5905%" y="709" width="0.0220%" height="15" fill="rgb(234,205,16)" fg:x="141636" fg:w="67"/><text x="46.8405%" y="719.50"></text></g><g><title>clang::driver::getDriverMode (193 samples, 0.06%)</title><rect x="46.5494%" y="773" width="0.0635%" height="15" fill="rgb(207,9,39)" fg:x="141511" fg:w="193"/><text x="46.7994%" y="783.50"></text></g><g><title>llvm::object_deleter&lt;llvm::cl::SubCommand&gt;::call (75 samples, 0.02%)</title><rect x="46.6254%" y="741" width="0.0247%" height="15" fill="rgb(249,143,15)" fg:x="141742" fg:w="75"/><text x="46.8754%" y="751.50"></text></g><g><title>llvm::InitLLVM::~InitLLVM (107 samples, 0.04%)</title><rect x="46.6155%" y="773" width="0.0352%" height="15" fill="rgb(253,133,29)" fg:x="141712" fg:w="107"/><text x="46.8655%" y="783.50"></text></g><g><title>llvm::llvm_shutdown (106 samples, 0.03%)</title><rect x="46.6158%" y="757" width="0.0349%" height="15" fill="rgb(221,187,0)" fg:x="141713" fg:w="106"/><text x="46.8658%" y="767.50"></text></g><g><title>LLVMInitializeAArch64Target (32 samples, 0.01%)</title><rect x="46.6507%" y="757" width="0.0105%" height="15" fill="rgb(205,204,26)" fg:x="141819" fg:w="32"/><text x="46.9007%" y="767.50"></text></g><g><title>LLVMInitializeAMDGPUTarget (74 samples, 0.02%)</title><rect x="46.6612%" y="757" width="0.0243%" height="15" fill="rgb(224,68,54)" fg:x="141851" fg:w="74"/><text x="46.9112%" y="767.50"></text></g><g><title>llvm::InitializeAllTargets (234 samples, 0.08%)</title><rect x="46.6507%" y="773" width="0.0770%" height="15" fill="rgb(209,67,4)" fg:x="141819" fg:w="234"/><text x="46.9007%" y="783.50"></text></g><g><title>__libc_start_call_main (1,075 samples, 0.35%)</title><rect x="46.3902%" y="805" width="0.3536%" height="15" fill="rgb(228,229,18)" fg:x="141027" fg:w="1075"/><text x="46.6402%" y="815.50"></text></g><g><title>main (904 samples, 0.30%)</title><rect x="46.4464%" y="789" width="0.2974%" height="15" fill="rgb(231,89,13)" fg:x="141198" fg:w="904"/><text x="46.6964%" y="799.50"></text></g><g><title>__libc_start_main_impl (2,765 samples, 0.91%)</title><rect x="45.8349%" y="821" width="0.9095%" height="15" fill="rgb(210,182,18)" fg:x="139339" fg:w="2765"/><text x="46.0849%" y="831.50"></text></g><g><title>do_filp_open (34 samples, 0.01%)</title><rect x="46.7701%" y="565" width="0.0112%" height="15" fill="rgb(240,105,2)" fg:x="142182" fg:w="34"/><text x="47.0201%" y="575.50"></text></g><g><title>path_openat (34 samples, 0.01%)</title><rect x="46.7701%" y="549" width="0.0112%" height="15" fill="rgb(207,170,50)" fg:x="142182" fg:w="34"/><text x="47.0201%" y="559.50"></text></g><g><title>do_sys_openat2 (39 samples, 0.01%)</title><rect x="46.7698%" y="581" width="0.0128%" height="15" fill="rgb(232,133,24)" fg:x="142181" fg:w="39"/><text x="47.0198%" y="591.50"></text></g><g><title>__x64_sys_openat (40 samples, 0.01%)</title><rect x="46.7698%" y="597" width="0.0132%" height="15" fill="rgb(235,166,27)" fg:x="142181" fg:w="40"/><text x="47.0198%" y="607.50"></text></g><g><title>[ld-linux-x86-64.so.2] (66 samples, 0.02%)</title><rect x="46.7625%" y="693" width="0.0217%" height="15" fill="rgb(209,19,13)" fg:x="142159" fg:w="66"/><text x="47.0125%" y="703.50"></text></g><g><title>open_verify (51 samples, 0.02%)</title><rect x="46.7675%" y="677" width="0.0168%" height="15" fill="rgb(226,79,39)" fg:x="142174" fg:w="51"/><text x="47.0175%" y="687.50"></text></g><g><title>__GI___open64_nocancel (51 samples, 0.02%)</title><rect x="46.7675%" y="661" width="0.0168%" height="15" fill="rgb(222,163,10)" fg:x="142174" fg:w="51"/><text x="47.0175%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.02%)</title><rect x="46.7675%" y="645" width="0.0168%" height="15" fill="rgb(214,44,19)" fg:x="142174" fg:w="51"/><text x="47.0175%" y="655.50"></text></g><g><title>do_syscall_64 (50 samples, 0.02%)</title><rect x="46.7678%" y="629" width="0.0164%" height="15" fill="rgb(210,217,13)" fg:x="142175" fg:w="50"/><text x="47.0178%" y="639.50"></text></g><g><title>unload_network_ops_symbols (44 samples, 0.01%)</title><rect x="46.7698%" y="613" width="0.0145%" height="15" fill="rgb(237,61,54)" fg:x="142181" fg:w="44"/><text x="47.0198%" y="623.50"></text></g><g><title>_dl_load_cache_lookup (38 samples, 0.01%)</title><rect x="46.7842%" y="693" width="0.0125%" height="15" fill="rgb(226,184,24)" fg:x="142225" fg:w="38"/><text x="47.0342%" y="703.50"></text></g><g><title>__split_vma (38 samples, 0.01%)</title><rect x="46.8142%" y="485" width="0.0125%" height="15" fill="rgb(223,226,4)" fg:x="142316" fg:w="38"/><text x="47.0642%" y="495.50"></text></g><g><title>__do_munmap (67 samples, 0.02%)</title><rect x="46.8122%" y="501" width="0.0220%" height="15" fill="rgb(210,26,41)" fg:x="142310" fg:w="67"/><text x="47.0622%" y="511.50"></text></g><g><title>mmap_region (101 samples, 0.03%)</title><rect x="46.8109%" y="517" width="0.0332%" height="15" fill="rgb(220,221,6)" fg:x="142306" fg:w="101"/><text x="47.0609%" y="527.50"></text></g><g><title>do_mmap (104 samples, 0.03%)</title><rect x="46.8102%" y="533" width="0.0342%" height="15" fill="rgb(225,89,49)" fg:x="142304" fg:w="104"/><text x="47.0602%" y="543.50"></text></g><g><title>__x64_sys_mmap (108 samples, 0.04%)</title><rect x="46.8096%" y="581" width="0.0355%" height="15" fill="rgb(218,70,45)" fg:x="142302" fg:w="108"/><text x="47.0596%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (107 samples, 0.04%)</title><rect x="46.8099%" y="565" width="0.0352%" height="15" fill="rgb(238,166,21)" fg:x="142303" fg:w="107"/><text x="47.0599%" y="575.50"></text></g><g><title>vm_mmap_pgoff (106 samples, 0.03%)</title><rect x="46.8102%" y="549" width="0.0349%" height="15" fill="rgb(224,141,44)" fg:x="142304" fg:w="106"/><text x="47.0602%" y="559.50"></text></g><g><title>__mmap64 (122 samples, 0.04%)</title><rect x="46.8079%" y="661" width="0.0401%" height="15" fill="rgb(230,12,49)" fg:x="142297" fg:w="122"/><text x="47.0579%" y="671.50"></text></g><g><title>__mmap64 (122 samples, 0.04%)</title><rect x="46.8079%" y="645" width="0.0401%" height="15" fill="rgb(212,174,12)" fg:x="142297" fg:w="122"/><text x="47.0579%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (118 samples, 0.04%)</title><rect x="46.8092%" y="629" width="0.0388%" height="15" fill="rgb(246,67,9)" fg:x="142301" fg:w="118"/><text x="47.0592%" y="639.50"></text></g><g><title>do_syscall_64 (117 samples, 0.04%)</title><rect x="46.8096%" y="613" width="0.0385%" height="15" fill="rgb(239,35,23)" fg:x="142302" fg:w="117"/><text x="47.0596%" y="623.50"></text></g><g><title>unload_network_ops_symbols (117 samples, 0.04%)</title><rect x="46.8096%" y="597" width="0.0385%" height="15" fill="rgb(211,167,0)" fg:x="142302" fg:w="117"/><text x="47.0596%" y="607.50"></text></g><g><title>_dl_map_segments (168 samples, 0.06%)</title><rect x="46.8010%" y="677" width="0.0553%" height="15" fill="rgb(225,119,45)" fg:x="142276" fg:w="168"/><text x="47.0510%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (222 samples, 0.07%)</title><rect x="46.7967%" y="693" width="0.0730%" height="15" fill="rgb(210,162,6)" fg:x="142263" fg:w="222"/><text x="47.0467%" y="703.50"></text></g><g><title>do_syscall_64 (48 samples, 0.02%)</title><rect x="46.8730%" y="645" width="0.0158%" height="15" fill="rgb(208,118,35)" fg:x="142495" fg:w="48"/><text x="47.1230%" y="655.50"></text></g><g><title>unload_network_ops_symbols (48 samples, 0.02%)</title><rect x="46.8730%" y="629" width="0.0158%" height="15" fill="rgb(239,4,53)" fg:x="142495" fg:w="48"/><text x="47.1230%" y="639.50"></text></g><g><title>__GI___open64_nocancel (50 samples, 0.02%)</title><rect x="46.8727%" y="677" width="0.0164%" height="15" fill="rgb(213,130,21)" fg:x="142494" fg:w="50"/><text x="47.1227%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.02%)</title><rect x="46.8727%" y="661" width="0.0164%" height="15" fill="rgb(235,148,0)" fg:x="142494" fg:w="50"/><text x="47.1227%" y="671.50"></text></g><g><title>open_verify (62 samples, 0.02%)</title><rect x="46.8724%" y="693" width="0.0204%" height="15" fill="rgb(244,224,18)" fg:x="142493" fg:w="62"/><text x="47.1224%" y="703.50"></text></g><g><title>_dl_catch_exception (401 samples, 0.13%)</title><rect x="46.7622%" y="741" width="0.1319%" height="15" fill="rgb(211,214,4)" fg:x="142158" fg:w="401"/><text x="47.0122%" y="751.50"></text></g><g><title>openaux (401 samples, 0.13%)</title><rect x="46.7622%" y="725" width="0.1319%" height="15" fill="rgb(206,119,25)" fg:x="142158" fg:w="401"/><text x="47.0122%" y="735.50"></text></g><g><title>_dl_map_object (401 samples, 0.13%)</title><rect x="46.7622%" y="709" width="0.1319%" height="15" fill="rgb(243,93,47)" fg:x="142158" fg:w="401"/><text x="47.0122%" y="719.50"></text></g><g><title>_dl_map_object_deps (407 samples, 0.13%)</title><rect x="46.7605%" y="757" width="0.1339%" height="15" fill="rgb(224,194,6)" fg:x="142153" fg:w="407"/><text x="47.0105%" y="767.50"></text></g><g><title>__x64_sys_mprotect (49 samples, 0.02%)</title><rect x="46.9043%" y="677" width="0.0161%" height="15" fill="rgb(243,229,6)" fg:x="142590" fg:w="49"/><text x="47.1543%" y="687.50"></text></g><g><title>do_mprotect_pkey (49 samples, 0.02%)</title><rect x="46.9043%" y="661" width="0.0161%" height="15" fill="rgb(207,23,50)" fg:x="142590" fg:w="49"/><text x="47.1543%" y="671.50"></text></g><g><title>mprotect_fixup (47 samples, 0.02%)</title><rect x="46.9050%" y="645" width="0.0155%" height="15" fill="rgb(253,192,32)" fg:x="142592" fg:w="47"/><text x="47.1550%" y="655.50"></text></g><g><title>_dl_protect_relro (51 samples, 0.02%)</title><rect x="46.9040%" y="741" width="0.0168%" height="15" fill="rgb(213,21,6)" fg:x="142589" fg:w="51"/><text x="47.1540%" y="751.50"></text></g><g><title>__mprotect (51 samples, 0.02%)</title><rect x="46.9040%" y="725" width="0.0168%" height="15" fill="rgb(243,151,13)" fg:x="142589" fg:w="51"/><text x="47.1540%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.02%)</title><rect x="46.9043%" y="709" width="0.0164%" height="15" fill="rgb(233,165,41)" fg:x="142590" fg:w="50"/><text x="47.1543%" y="719.50"></text></g><g><title>do_syscall_64 (50 samples, 0.02%)</title><rect x="46.9043%" y="693" width="0.0164%" height="15" fill="rgb(246,176,45)" fg:x="142590" fg:w="50"/><text x="47.1543%" y="703.50"></text></g><g><title>dl_new_hash (115 samples, 0.04%)</title><rect x="46.9921%" y="693" width="0.0378%" height="15" fill="rgb(217,170,52)" fg:x="142857" fg:w="115"/><text x="47.2421%" y="703.50"></text></g><g><title>check_match (48 samples, 0.02%)</title><rect x="47.1122%" y="677" width="0.0158%" height="15" fill="rgb(214,203,54)" fg:x="143222" fg:w="48"/><text x="47.3622%" y="687.50"></text></g><g><title>_dl_lookup_symbol_x (468 samples, 0.15%)</title><rect x="46.9816%" y="709" width="0.1539%" height="15" fill="rgb(248,215,49)" fg:x="142825" fg:w="468"/><text x="47.2316%" y="719.50"></text></g><g><title>do_lookup_x (321 samples, 0.11%)</title><rect x="47.0300%" y="693" width="0.1056%" height="15" fill="rgb(208,46,10)" fg:x="142972" fg:w="321"/><text x="47.2800%" y="703.50"></text></g><g><title>__do_fault (32 samples, 0.01%)</title><rect x="47.1569%" y="597" width="0.0105%" height="15" fill="rgb(254,5,31)" fg:x="143358" fg:w="32"/><text x="47.4069%" y="607.50"></text></g><g><title>clear_page_erms (41 samples, 0.01%)</title><rect x="47.1806%" y="549" width="0.0135%" height="15" fill="rgb(222,104,33)" fg:x="143430" fg:w="41"/><text x="47.4306%" y="559.50"></text></g><g><title>get_page_from_freelist (71 samples, 0.02%)</title><rect x="47.1793%" y="565" width="0.0234%" height="15" fill="rgb(248,49,16)" fg:x="143426" fg:w="71"/><text x="47.4293%" y="575.50"></text></g><g><title>__alloc_pages (80 samples, 0.03%)</title><rect x="47.1767%" y="581" width="0.0263%" height="15" fill="rgb(232,198,41)" fg:x="143418" fg:w="80"/><text x="47.4267%" y="591.50"></text></g><g><title>alloc_pages_vma (88 samples, 0.03%)</title><rect x="47.1760%" y="597" width="0.0289%" height="15" fill="rgb(214,125,3)" fg:x="143416" fg:w="88"/><text x="47.4260%" y="607.50"></text></g><g><title>copy_page (84 samples, 0.03%)</title><rect x="47.2050%" y="597" width="0.0276%" height="15" fill="rgb(229,220,28)" fg:x="143504" fg:w="84"/><text x="47.4550%" y="607.50"></text></g><g><title>do_set_pte (47 samples, 0.02%)</title><rect x="47.2415%" y="581" width="0.0155%" height="15" fill="rgb(222,64,37)" fg:x="143615" fg:w="47"/><text x="47.4915%" y="591.50"></text></g><g><title>finish_fault (58 samples, 0.02%)</title><rect x="47.2392%" y="597" width="0.0191%" height="15" fill="rgb(249,184,13)" fg:x="143608" fg:w="58"/><text x="47.4892%" y="607.50"></text></g><g><title>do_fault (326 samples, 0.11%)</title><rect x="47.1523%" y="613" width="0.1072%" height="15" fill="rgb(252,176,6)" fg:x="143344" fg:w="326"/><text x="47.4023%" y="623.50"></text></g><g><title>handle_pte_fault (336 samples, 0.11%)</title><rect x="47.1507%" y="629" width="0.1105%" height="15" fill="rgb(228,153,7)" fg:x="143339" fg:w="336"/><text x="47.4007%" y="639.50"></text></g><g><title>__handle_mm_fault (354 samples, 0.12%)</title><rect x="47.1451%" y="645" width="0.1164%" height="15" fill="rgb(242,193,5)" fg:x="143322" fg:w="354"/><text x="47.3951%" y="655.50"></text></g><g><title>handle_mm_fault (363 samples, 0.12%)</title><rect x="47.1431%" y="661" width="0.1194%" height="15" fill="rgb(232,140,9)" fg:x="143316" fg:w="363"/><text x="47.3931%" y="671.50"></text></g><g><title>do_user_addr_fault (376 samples, 0.12%)</title><rect x="47.1392%" y="677" width="0.1237%" height="15" fill="rgb(213,222,16)" fg:x="143304" fg:w="376"/><text x="47.3892%" y="687.50"></text></g><g><title>exc_page_fault (394 samples, 0.13%)</title><rect x="47.1385%" y="693" width="0.1296%" height="15" fill="rgb(222,75,50)" fg:x="143302" fg:w="394"/><text x="47.3885%" y="703.50"></text></g><g><title>asm_exc_page_fault (401 samples, 0.13%)</title><rect x="47.1369%" y="709" width="0.1319%" height="15" fill="rgb(205,180,2)" fg:x="143297" fg:w="401"/><text x="47.3869%" y="719.50"></text></g><g><title>elf_machine_rela (1,041 samples, 0.34%)</title><rect x="46.9405%" y="725" width="0.3424%" height="15" fill="rgb(216,34,7)" fg:x="142700" fg:w="1041"/><text x="47.1905%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (1,128 samples, 0.37%)</title><rect x="46.9207%" y="741" width="0.3711%" height="15" fill="rgb(253,16,32)" fg:x="142640" fg:w="1128"/><text x="47.1707%" y="751.50"></text></g><g><title>_dl_relocate_object (1,192 samples, 0.39%)</title><rect x="46.9027%" y="757" width="0.3921%" height="15" fill="rgb(208,97,28)" fg:x="142585" fg:w="1192"/><text x="47.1527%" y="767.50"></text></g><g><title>dl_main (1,707 samples, 0.56%)</title><rect x="46.7471%" y="773" width="0.5615%" height="15" fill="rgb(225,92,11)" fg:x="142112" fg:w="1707"/><text x="46.9971%" y="783.50"></text></g><g><title>_dl_start_final (1,723 samples, 0.57%)</title><rect x="46.7448%" y="805" width="0.5668%" height="15" fill="rgb(243,38,12)" fg:x="142105" fg:w="1723"/><text x="46.9948%" y="815.50"></text></g><g><title>_dl_sysdep_start (1,719 samples, 0.57%)</title><rect x="46.7461%" y="789" width="0.5655%" height="15" fill="rgb(208,139,16)" fg:x="142109" fg:w="1719"/><text x="46.9961%" y="799.50"></text></g><g><title>_dl_start (1,730 samples, 0.57%)</title><rect x="46.7444%" y="821" width="0.5691%" height="15" fill="rgb(227,24,9)" fg:x="142104" fg:w="1730"/><text x="46.9944%" y="831.50"></text></g><g><title>_start (4,518 samples, 1.49%)</title><rect x="45.8349%" y="837" width="1.4862%" height="15" fill="rgb(206,62,11)" fg:x="139339" fg:w="4518"/><text x="46.0849%" y="847.50"></text></g><g><title>asm_exc_page_fault (348 samples, 0.11%)</title><rect x="47.3211%" y="837" width="0.1145%" height="15" fill="rgb(228,134,27)" fg:x="143857" fg:w="348"/><text x="47.5711%" y="847.50"></text></g><g><title>__x64_sys_execve (39 samples, 0.01%)</title><rect x="47.4438%" y="805" width="0.0128%" height="15" fill="rgb(205,55,33)" fg:x="144230" fg:w="39"/><text x="47.6938%" y="815.50"></text></g><g><title>do_execveat_common.isra.0 (39 samples, 0.01%)</title><rect x="47.4438%" y="789" width="0.0128%" height="15" fill="rgb(243,75,43)" fg:x="144230" fg:w="39"/><text x="47.6938%" y="799.50"></text></g><g><title>bprm_execve (39 samples, 0.01%)</title><rect x="47.4438%" y="773" width="0.0128%" height="15" fill="rgb(223,27,42)" fg:x="144230" fg:w="39"/><text x="47.6938%" y="783.50"></text></g><g><title>bprm_execve.part.0 (39 samples, 0.01%)</title><rect x="47.4438%" y="757" width="0.0128%" height="15" fill="rgb(232,189,33)" fg:x="144230" fg:w="39"/><text x="47.6938%" y="767.50"></text></g><g><title>exec_binprm (39 samples, 0.01%)</title><rect x="47.4438%" y="741" width="0.0128%" height="15" fill="rgb(210,9,39)" fg:x="144230" fg:w="39"/><text x="47.6938%" y="751.50"></text></g><g><title>search_binary_handler (39 samples, 0.01%)</title><rect x="47.4438%" y="725" width="0.0128%" height="15" fill="rgb(242,85,26)" fg:x="144230" fg:w="39"/><text x="47.6938%" y="735.50"></text></g><g><title>load_elf_binary (39 samples, 0.01%)</title><rect x="47.4438%" y="709" width="0.0128%" height="15" fill="rgb(248,44,4)" fg:x="144230" fg:w="39"/><text x="47.6938%" y="719.50"></text></g><g><title>free_pages_and_swap_cache (84 samples, 0.03%)</title><rect x="47.4714%" y="693" width="0.0276%" height="15" fill="rgb(250,96,46)" fg:x="144314" fg:w="84"/><text x="47.7214%" y="703.50"></text></g><g><title>release_pages (82 samples, 0.03%)</title><rect x="47.4721%" y="677" width="0.0270%" height="15" fill="rgb(229,116,26)" fg:x="144316" fg:w="82"/><text x="47.7221%" y="687.50"></text></g><g><title>tlb_finish_mmu (103 samples, 0.03%)</title><rect x="47.4701%" y="709" width="0.0339%" height="15" fill="rgb(246,94,34)" fg:x="144310" fg:w="103"/><text x="47.7201%" y="719.50"></text></g><g><title>mark_page_accessed (43 samples, 0.01%)</title><rect x="47.6257%" y="629" width="0.0141%" height="15" fill="rgb(251,73,21)" fg:x="144783" fg:w="43"/><text x="47.8757%" y="639.50"></text></g><g><title>lock_page_memcg (32 samples, 0.01%)</title><rect x="47.6638%" y="613" width="0.0105%" height="15" fill="rgb(254,121,25)" fg:x="144899" fg:w="32"/><text x="47.9138%" y="623.50"></text></g><g><title>__mod_memcg_lruvec_state (40 samples, 0.01%)</title><rect x="47.7119%" y="565" width="0.0132%" height="15" fill="rgb(215,161,49)" fg:x="145045" fg:w="40"/><text x="47.9619%" y="575.50"></text></g><g><title>__mod_lruvec_state (63 samples, 0.02%)</title><rect x="47.7099%" y="581" width="0.0207%" height="15" fill="rgb(221,43,13)" fg:x="145039" fg:w="63"/><text x="47.9599%" y="591.50"></text></g><g><title>__mod_lruvec_page_state (86 samples, 0.03%)</title><rect x="47.7033%" y="597" width="0.0283%" height="15" fill="rgb(249,5,37)" fg:x="145019" fg:w="86"/><text x="47.9533%" y="607.50"></text></g><g><title>page_remove_file_rmap (177 samples, 0.06%)</title><rect x="47.6744%" y="613" width="0.0582%" height="15" fill="rgb(226,25,44)" fg:x="144931" fg:w="177"/><text x="47.9244%" y="623.50"></text></g><g><title>page_remove_rmap (307 samples, 0.10%)</title><rect x="47.6405%" y="629" width="0.1010%" height="15" fill="rgb(238,189,16)" fg:x="144828" fg:w="307"/><text x="47.8905%" y="639.50"></text></g><g><title>free_pages_and_swap_cache (98 samples, 0.03%)</title><rect x="47.7421%" y="613" width="0.0322%" height="15" fill="rgb(251,186,8)" fg:x="145137" fg:w="98"/><text x="47.9921%" y="623.50"></text></g><g><title>release_pages (91 samples, 0.03%)</title><rect x="47.7444%" y="597" width="0.0299%" height="15" fill="rgb(254,34,31)" fg:x="145144" fg:w="91"/><text x="47.9944%" y="607.50"></text></g><g><title>tlb_flush_mmu (146 samples, 0.05%)</title><rect x="47.7418%" y="629" width="0.0480%" height="15" fill="rgb(225,215,27)" fg:x="145136" fg:w="146"/><text x="47.9918%" y="639.50"></text></g><g><title>free_swap_cache (47 samples, 0.02%)</title><rect x="47.7744%" y="613" width="0.0155%" height="15" fill="rgb(221,192,48)" fg:x="145235" fg:w="47"/><text x="48.0244%" y="623.50"></text></g><g><title>unmap_single_vma (903 samples, 0.30%)</title><rect x="47.5043%" y="693" width="0.2970%" height="15" fill="rgb(219,137,20)" fg:x="144414" fg:w="903"/><text x="47.7543%" y="703.50"></text></g><g><title>unmap_page_range (903 samples, 0.30%)</title><rect x="47.5043%" y="677" width="0.2970%" height="15" fill="rgb(219,84,11)" fg:x="144414" fg:w="903"/><text x="47.7543%" y="687.50"></text></g><g><title>zap_pmd_range.isra.0 (901 samples, 0.30%)</title><rect x="47.5050%" y="661" width="0.2964%" height="15" fill="rgb(224,10,23)" fg:x="144416" fg:w="901"/><text x="47.7550%" y="671.50"></text></g><g><title>zap_pte_range (874 samples, 0.29%)</title><rect x="47.5138%" y="645" width="0.2875%" height="15" fill="rgb(248,22,39)" fg:x="144443" fg:w="874"/><text x="47.7638%" y="655.50"></text></g><g><title>exit_mm (1,039 samples, 0.34%)</title><rect x="47.4599%" y="757" width="0.3418%" height="15" fill="rgb(212,154,20)" fg:x="144279" fg:w="1039"/><text x="47.7099%" y="767.50"></text></g><g><title>mmput (1,039 samples, 0.34%)</title><rect x="47.4599%" y="741" width="0.3418%" height="15" fill="rgb(236,199,50)" fg:x="144279" fg:w="1039"/><text x="47.7099%" y="751.50"></text></g><g><title>exit_mmap (1,039 samples, 0.34%)</title><rect x="47.4599%" y="725" width="0.3418%" height="15" fill="rgb(211,9,17)" fg:x="144279" fg:w="1039"/><text x="47.7099%" y="735.50"></text></g><g><title>unmap_vmas (904 samples, 0.30%)</title><rect x="47.5043%" y="709" width="0.2974%" height="15" fill="rgb(243,216,36)" fg:x="144414" fg:w="904"/><text x="47.7543%" y="719.50"></text></g><g><title>__x64_sys_exit_group (1,060 samples, 0.35%)</title><rect x="47.4566%" y="805" width="0.3487%" height="15" fill="rgb(250,2,10)" fg:x="144269" fg:w="1060"/><text x="47.7066%" y="815.50"></text></g><g><title>do_group_exit (1,060 samples, 0.35%)</title><rect x="47.4566%" y="789" width="0.3487%" height="15" fill="rgb(226,50,48)" fg:x="144269" fg:w="1060"/><text x="47.7066%" y="799.50"></text></g><g><title>do_exit (1,060 samples, 0.35%)</title><rect x="47.4566%" y="773" width="0.3487%" height="15" fill="rgb(243,81,16)" fg:x="144269" fg:w="1060"/><text x="47.7066%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,100 samples, 0.36%)</title><rect x="47.4438%" y="837" width="0.3618%" height="15" fill="rgb(250,14,2)" fg:x="144230" fg:w="1100"/><text x="47.6938%" y="847.50"></text></g><g><title>do_syscall_64 (1,100 samples, 0.36%)</title><rect x="47.4438%" y="821" width="0.3618%" height="15" fill="rgb(233,135,29)" fg:x="144230" fg:w="1100"/><text x="47.6938%" y="831.50"></text></g><g><title>clang (13,082 samples, 4.30%)</title><rect x="43.5148%" y="853" width="4.3033%" height="15" fill="rgb(224,64,43)" fg:x="132286" fg:w="13082"/><text x="43.7648%" y="863.50">clang</text></g><g><title>[perf-720743.map] (404 samples, 0.13%)</title><rect x="47.8253%" y="837" width="0.1329%" height="15" fill="rgb(238,84,13)" fg:x="145390" fg:w="404"/><text x="48.0753%" y="847.50"></text></g><g><title>find-action-loo (444 samples, 0.15%)</title><rect x="47.8230%" y="853" width="0.1461%" height="15" fill="rgb(253,48,26)" fg:x="145383" fg:w="444"/><text x="48.0730%" y="863.50"></text></g><g><title>[perf-720743.map] (38 samples, 0.01%)</title><rect x="47.9711%" y="837" width="0.0125%" height="15" fill="rgb(205,223,31)" fg:x="145833" fg:w="38"/><text x="48.2211%" y="847.50"></text></g><g><title>globbing_pool-0 (46 samples, 0.02%)</title><rect x="47.9691%" y="853" width="0.0151%" height="15" fill="rgb(221,41,32)" fg:x="145827" fg:w="46"/><text x="48.2191%" y="863.50"></text></g><g><title>[libunix_jni.so] (75 samples, 0.02%)</title><rect x="47.9869%" y="837" width="0.0247%" height="15" fill="rgb(213,158,31)" fg:x="145881" fg:w="75"/><text x="48.2369%" y="847.50"></text></g><g><title>finish_task_switch.isra.0 (39 samples, 0.01%)</title><rect x="48.1046%" y="581" width="0.0128%" height="15" fill="rgb(245,126,43)" fg:x="146239" fg:w="39"/><text x="48.3546%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.01%)</title><rect x="48.1046%" y="565" width="0.0128%" height="15" fill="rgb(227,7,22)" fg:x="146239" fg:w="39"/><text x="48.3546%" y="575.50"></text></g><g><title>x86_pmu_enable (38 samples, 0.01%)</title><rect x="48.1049%" y="549" width="0.0125%" height="15" fill="rgb(252,90,44)" fg:x="146240" fg:w="38"/><text x="48.3549%" y="559.50"></text></g><g><title>intel_pmu_enable_all (38 samples, 0.01%)</title><rect x="48.1049%" y="533" width="0.0125%" height="15" fill="rgb(253,91,0)" fg:x="146240" fg:w="38"/><text x="48.3549%" y="543.50"></text></g><g><title>native_write_msr (38 samples, 0.01%)</title><rect x="48.1049%" y="517" width="0.0125%" height="15" fill="rgb(252,175,49)" fg:x="146240" fg:w="38"/><text x="48.3549%" y="527.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.01%)</title><rect x="48.1040%" y="677" width="0.0138%" height="15" fill="rgb(246,150,1)" fg:x="146237" fg:w="42"/><text x="48.3540%" y="687.50"></text></g><g><title>do_futex (41 samples, 0.01%)</title><rect x="48.1043%" y="661" width="0.0135%" height="15" fill="rgb(241,192,25)" fg:x="146238" fg:w="41"/><text x="48.3543%" y="671.50"></text></g><g><title>futex_wait (41 samples, 0.01%)</title><rect x="48.1043%" y="645" width="0.0135%" height="15" fill="rgb(239,187,11)" fg:x="146238" fg:w="41"/><text x="48.3543%" y="655.50"></text></g><g><title>futex_wait_queue_me (40 samples, 0.01%)</title><rect x="48.1046%" y="629" width="0.0132%" height="15" fill="rgb(218,202,51)" fg:x="146239" fg:w="40"/><text x="48.3546%" y="639.50"></text></g><g><title>schedule (40 samples, 0.01%)</title><rect x="48.1046%" y="613" width="0.0132%" height="15" fill="rgb(225,176,8)" fg:x="146239" fg:w="40"/><text x="48.3546%" y="623.50"></text></g><g><title>__schedule (40 samples, 0.01%)</title><rect x="48.1046%" y="597" width="0.0132%" height="15" fill="rgb(219,122,41)" fg:x="146239" fg:w="40"/><text x="48.3546%" y="607.50"></text></g><g><title>___pthread_cond_wait (43 samples, 0.01%)</title><rect x="48.1040%" y="789" width="0.0141%" height="15" fill="rgb(248,140,20)" fg:x="146237" fg:w="43"/><text x="48.3540%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (43 samples, 0.01%)</title><rect x="48.1040%" y="773" width="0.0141%" height="15" fill="rgb(245,41,37)" fg:x="146237" fg:w="43"/><text x="48.3540%" y="783.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (43 samples, 0.01%)</title><rect x="48.1040%" y="757" width="0.0141%" height="15" fill="rgb(235,82,39)" fg:x="146237" fg:w="43"/><text x="48.3540%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (43 samples, 0.01%)</title><rect x="48.1040%" y="741" width="0.0141%" height="15" fill="rgb(230,108,42)" fg:x="146237" fg:w="43"/><text x="48.3540%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (43 samples, 0.01%)</title><rect x="48.1040%" y="725" width="0.0141%" height="15" fill="rgb(215,150,50)" fg:x="146237" fg:w="43"/><text x="48.3540%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.01%)</title><rect x="48.1040%" y="709" width="0.0141%" height="15" fill="rgb(233,212,5)" fg:x="146237" fg:w="43"/><text x="48.3540%" y="719.50"></text></g><g><title>do_syscall_64 (43 samples, 0.01%)</title><rect x="48.1040%" y="693" width="0.0141%" height="15" fill="rgb(245,80,22)" fg:x="146237" fg:w="43"/><text x="48.3540%" y="703.50"></text></g><g><title>Unsafe_Park (44 samples, 0.01%)</title><rect x="48.1040%" y="821" width="0.0145%" height="15" fill="rgb(238,129,16)" fg:x="146237" fg:w="44"/><text x="48.3540%" y="831.50"></text></g><g><title>Parker::park (44 samples, 0.01%)</title><rect x="48.1040%" y="805" width="0.0145%" height="15" fill="rgb(240,19,0)" fg:x="146237" fg:w="44"/><text x="48.3540%" y="815.50"></text></g><g><title>[perf-720743.map] (342 samples, 0.11%)</title><rect x="48.0115%" y="837" width="0.1125%" height="15" fill="rgb(232,42,35)" fg:x="145956" fg:w="342"/><text x="48.2615%" y="847.50"></text></g><g><title>schedule_tail (55 samples, 0.02%)</title><rect x="48.1421%" y="821" width="0.0181%" height="15" fill="rgb(223,130,24)" fg:x="146353" fg:w="55"/><text x="48.3921%" y="831.50"></text></g><g><title>finish_task_switch.isra.0 (55 samples, 0.02%)</title><rect x="48.1421%" y="805" width="0.0181%" height="15" fill="rgb(237,16,22)" fg:x="146353" fg:w="55"/><text x="48.3921%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.02%)</title><rect x="48.1424%" y="789" width="0.0178%" height="15" fill="rgb(248,192,20)" fg:x="146354" fg:w="54"/><text x="48.3924%" y="799.50"></text></g><g><title>x86_pmu_enable (53 samples, 0.02%)</title><rect x="48.1428%" y="773" width="0.0174%" height="15" fill="rgb(233,167,2)" fg:x="146355" fg:w="53"/><text x="48.3928%" y="783.50"></text></g><g><title>intel_pmu_enable_all (52 samples, 0.02%)</title><rect x="48.1431%" y="757" width="0.0171%" height="15" fill="rgb(252,71,44)" fg:x="146356" fg:w="52"/><text x="48.3931%" y="767.50"></text></g><g><title>native_write_msr (52 samples, 0.02%)</title><rect x="48.1431%" y="741" width="0.0171%" height="15" fill="rgb(238,37,47)" fg:x="146356" fg:w="52"/><text x="48.3931%" y="751.50"></text></g><g><title>globbing_pool-1 (536 samples, 0.18%)</title><rect x="47.9842%" y="853" width="0.1763%" height="15" fill="rgb(214,202,54)" fg:x="145873" fg:w="536"/><text x="48.2342%" y="863.50"></text></g><g><title>ret_from_fork (57 samples, 0.02%)</title><rect x="48.1418%" y="837" width="0.0187%" height="15" fill="rgb(254,165,40)" fg:x="146352" fg:w="57"/><text x="48.3918%" y="847.50"></text></g><g><title>[libunix_jni.so] (66 samples, 0.02%)</title><rect x="48.1628%" y="837" width="0.0217%" height="15" fill="rgb(246,173,38)" fg:x="146416" fg:w="66"/><text x="48.4128%" y="847.50"></text></g><g><title>[perf-720743.map] (287 samples, 0.09%)</title><rect x="48.1846%" y="837" width="0.0944%" height="15" fill="rgb(215,3,27)" fg:x="146482" fg:w="287"/><text x="48.4346%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.01%)</title><rect x="48.2888%" y="789" width="0.0115%" height="15" fill="rgb(239,169,51)" fg:x="146799" fg:w="35"/><text x="48.5388%" y="799.50"></text></g><g><title>x86_pmu_enable (34 samples, 0.01%)</title><rect x="48.2892%" y="773" width="0.0112%" height="15" fill="rgb(212,5,25)" fg:x="146800" fg:w="34"/><text x="48.5392%" y="783.50"></text></g><g><title>intel_pmu_enable_all (34 samples, 0.01%)</title><rect x="48.2892%" y="757" width="0.0112%" height="15" fill="rgb(243,45,17)" fg:x="146800" fg:w="34"/><text x="48.5392%" y="767.50"></text></g><g><title>native_write_msr (34 samples, 0.01%)</title><rect x="48.2892%" y="741" width="0.0112%" height="15" fill="rgb(242,97,9)" fg:x="146800" fg:w="34"/><text x="48.5392%" y="751.50"></text></g><g><title>globbing_pool-2 (426 samples, 0.14%)</title><rect x="48.1605%" y="853" width="0.1401%" height="15" fill="rgb(228,71,31)" fg:x="146409" fg:w="426"/><text x="48.4105%" y="863.50"></text></g><g><title>ret_from_fork (36 samples, 0.01%)</title><rect x="48.2888%" y="837" width="0.0118%" height="15" fill="rgb(252,184,16)" fg:x="146799" fg:w="36"/><text x="48.5388%" y="847.50"></text></g><g><title>schedule_tail (36 samples, 0.01%)</title><rect x="48.2888%" y="821" width="0.0118%" height="15" fill="rgb(236,169,46)" fg:x="146799" fg:w="36"/><text x="48.5388%" y="831.50"></text></g><g><title>finish_task_switch.isra.0 (36 samples, 0.01%)</title><rect x="48.2888%" y="805" width="0.0118%" height="15" fill="rgb(207,17,47)" fg:x="146799" fg:w="36"/><text x="48.5388%" y="815.50"></text></g><g><title>__opendir (40 samples, 0.01%)</title><rect x="48.3112%" y="821" width="0.0132%" height="15" fill="rgb(206,201,28)" fg:x="146867" fg:w="40"/><text x="48.5612%" y="831.50"></text></g><g><title>[libunix_jni.so] (85 samples, 0.03%)</title><rect x="48.3026%" y="837" width="0.0280%" height="15" fill="rgb(224,184,23)" fg:x="146841" fg:w="85"/><text x="48.5526%" y="847.50"></text></g><g><title>___pthread_cond_wait (31 samples, 0.01%)</title><rect x="48.3938%" y="789" width="0.0102%" height="15" fill="rgb(208,139,48)" fg:x="147118" fg:w="31"/><text x="48.6438%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (31 samples, 0.01%)</title><rect x="48.3938%" y="773" width="0.0102%" height="15" fill="rgb(208,130,10)" fg:x="147118" fg:w="31"/><text x="48.6438%" y="783.50"></text></g><g><title>Unsafe_Park (34 samples, 0.01%)</title><rect x="48.3934%" y="821" width="0.0112%" height="15" fill="rgb(211,213,45)" fg:x="147117" fg:w="34"/><text x="48.6434%" y="831.50"></text></g><g><title>Parker::park (33 samples, 0.01%)</title><rect x="48.3938%" y="805" width="0.0109%" height="15" fill="rgb(235,100,30)" fg:x="147118" fg:w="33"/><text x="48.6438%" y="815.50"></text></g><g><title>[perf-720743.map] (249 samples, 0.08%)</title><rect x="48.3306%" y="837" width="0.0819%" height="15" fill="rgb(206,144,31)" fg:x="146926" fg:w="249"/><text x="48.5806%" y="847.50"></text></g><g><title>globbing_pool-3 (362 samples, 0.12%)</title><rect x="48.3007%" y="853" width="0.1191%" height="15" fill="rgb(224,200,26)" fg:x="146835" fg:w="362"/><text x="48.5507%" y="863.50"></text></g><g><title>[libunix_jni.so] (45 samples, 0.01%)</title><rect x="48.4211%" y="837" width="0.0148%" height="15" fill="rgb(247,104,53)" fg:x="147201" fg:w="45"/><text x="48.6711%" y="847.50"></text></g><g><title>Unsafe_Park (32 samples, 0.01%)</title><rect x="48.4915%" y="821" width="0.0105%" height="15" fill="rgb(220,14,17)" fg:x="147415" fg:w="32"/><text x="48.7415%" y="831.50"></text></g><g><title>Parker::park (32 samples, 0.01%)</title><rect x="48.4915%" y="805" width="0.0105%" height="15" fill="rgb(230,140,40)" fg:x="147415" fg:w="32"/><text x="48.7415%" y="815.50"></text></g><g><title>[perf-720743.map] (226 samples, 0.07%)</title><rect x="48.4359%" y="837" width="0.0743%" height="15" fill="rgb(229,2,41)" fg:x="147246" fg:w="226"/><text x="48.6859%" y="847.50"></text></g><g><title>__free_one_page (37 samples, 0.01%)</title><rect x="48.5786%" y="469" width="0.0122%" height="15" fill="rgb(232,89,16)" fg:x="147680" fg:w="37"/><text x="48.8286%" y="479.50"></text></g><g><title>free_unref_page_list (83 samples, 0.03%)</title><rect x="48.5638%" y="517" width="0.0273%" height="15" fill="rgb(247,59,52)" fg:x="147635" fg:w="83"/><text x="48.8138%" y="527.50"></text></g><g><title>free_unref_page_commit.constprop.0 (71 samples, 0.02%)</title><rect x="48.5678%" y="501" width="0.0234%" height="15" fill="rgb(226,110,21)" fg:x="147647" fg:w="71"/><text x="48.8178%" y="511.50"></text></g><g><title>free_pcppages_bulk (60 samples, 0.02%)</title><rect x="48.5714%" y="485" width="0.0197%" height="15" fill="rgb(224,176,43)" fg:x="147658" fg:w="60"/><text x="48.8214%" y="495.50"></text></g><g><title>free_pages_and_swap_cache (144 samples, 0.05%)</title><rect x="48.5457%" y="549" width="0.0474%" height="15" fill="rgb(221,73,6)" fg:x="147580" fg:w="144"/><text x="48.7957%" y="559.50"></text></g><g><title>release_pages (142 samples, 0.05%)</title><rect x="48.5464%" y="533" width="0.0467%" height="15" fill="rgb(232,78,19)" fg:x="147582" fg:w="142"/><text x="48.7964%" y="543.50"></text></g><g><title>tlb_flush_mmu (151 samples, 0.05%)</title><rect x="48.5457%" y="565" width="0.0497%" height="15" fill="rgb(233,112,48)" fg:x="147580" fg:w="151"/><text x="48.7957%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (232 samples, 0.08%)</title><rect x="48.5197%" y="837" width="0.0763%" height="15" fill="rgb(243,131,47)" fg:x="147501" fg:w="232"/><text x="48.7697%" y="847.50"></text></g><g><title>do_syscall_64 (232 samples, 0.08%)</title><rect x="48.5197%" y="821" width="0.0763%" height="15" fill="rgb(226,51,1)" fg:x="147501" fg:w="232"/><text x="48.7697%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (232 samples, 0.08%)</title><rect x="48.5197%" y="805" width="0.0763%" height="15" fill="rgb(247,58,7)" fg:x="147501" fg:w="232"/><text x="48.7697%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (232 samples, 0.08%)</title><rect x="48.5197%" y="789" width="0.0763%" height="15" fill="rgb(209,7,32)" fg:x="147501" fg:w="232"/><text x="48.7697%" y="799.50"></text></g><g><title>exit_to_user_mode_loop (232 samples, 0.08%)</title><rect x="48.5197%" y="773" width="0.0763%" height="15" fill="rgb(209,39,41)" fg:x="147501" fg:w="232"/><text x="48.7697%" y="783.50"></text></g><g><title>arch_do_signal_or_restart (232 samples, 0.08%)</title><rect x="48.5197%" y="757" width="0.0763%" height="15" fill="rgb(226,182,46)" fg:x="147501" fg:w="232"/><text x="48.7697%" y="767.50"></text></g><g><title>get_signal (232 samples, 0.08%)</title><rect x="48.5197%" y="741" width="0.0763%" height="15" fill="rgb(230,219,10)" fg:x="147501" fg:w="232"/><text x="48.7697%" y="751.50"></text></g><g><title>do_group_exit (232 samples, 0.08%)</title><rect x="48.5197%" y="725" width="0.0763%" height="15" fill="rgb(227,175,30)" fg:x="147501" fg:w="232"/><text x="48.7697%" y="735.50"></text></g><g><title>do_exit (232 samples, 0.08%)</title><rect x="48.5197%" y="709" width="0.0763%" height="15" fill="rgb(217,2,50)" fg:x="147501" fg:w="232"/><text x="48.7697%" y="719.50"></text></g><g><title>exit_mm (232 samples, 0.08%)</title><rect x="48.5197%" y="693" width="0.0763%" height="15" fill="rgb(229,160,0)" fg:x="147501" fg:w="232"/><text x="48.7697%" y="703.50"></text></g><g><title>mmput (232 samples, 0.08%)</title><rect x="48.5197%" y="677" width="0.0763%" height="15" fill="rgb(207,78,37)" fg:x="147501" fg:w="232"/><text x="48.7697%" y="687.50"></text></g><g><title>exit_mmap (232 samples, 0.08%)</title><rect x="48.5197%" y="661" width="0.0763%" height="15" fill="rgb(225,57,0)" fg:x="147501" fg:w="232"/><text x="48.7697%" y="671.50"></text></g><g><title>unmap_vmas (230 samples, 0.08%)</title><rect x="48.5204%" y="645" width="0.0757%" height="15" fill="rgb(232,154,2)" fg:x="147503" fg:w="230"/><text x="48.7704%" y="655.50"></text></g><g><title>unmap_single_vma (229 samples, 0.08%)</title><rect x="48.5207%" y="629" width="0.0753%" height="15" fill="rgb(241,212,25)" fg:x="147504" fg:w="229"/><text x="48.7707%" y="639.50"></text></g><g><title>unmap_page_range (229 samples, 0.08%)</title><rect x="48.5207%" y="613" width="0.0753%" height="15" fill="rgb(226,69,20)" fg:x="147504" fg:w="229"/><text x="48.7707%" y="623.50"></text></g><g><title>zap_pmd_range.isra.0 (229 samples, 0.08%)</title><rect x="48.5207%" y="597" width="0.0753%" height="15" fill="rgb(247,184,54)" fg:x="147504" fg:w="229"/><text x="48.7707%" y="607.50"></text></g><g><title>zap_pte_range (228 samples, 0.07%)</title><rect x="48.5211%" y="581" width="0.0750%" height="15" fill="rgb(210,145,0)" fg:x="147505" fg:w="228"/><text x="48.7711%" y="591.50"></text></g><g><title>schedule_tail (35 samples, 0.01%)</title><rect x="48.5961%" y="821" width="0.0115%" height="15" fill="rgb(253,82,12)" fg:x="147733" fg:w="35"/><text x="48.8461%" y="831.50"></text></g><g><title>finish_task_switch.isra.0 (35 samples, 0.01%)</title><rect x="48.5961%" y="805" width="0.0115%" height="15" fill="rgb(245,42,11)" fg:x="147733" fg:w="35"/><text x="48.8461%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.01%)</title><rect x="48.5961%" y="789" width="0.0115%" height="15" fill="rgb(219,147,32)" fg:x="147733" fg:w="35"/><text x="48.8461%" y="799.50"></text></g><g><title>x86_pmu_enable (35 samples, 0.01%)</title><rect x="48.5961%" y="773" width="0.0115%" height="15" fill="rgb(246,12,7)" fg:x="147733" fg:w="35"/><text x="48.8461%" y="783.50"></text></g><g><title>intel_pmu_enable_all (35 samples, 0.01%)</title><rect x="48.5961%" y="757" width="0.0115%" height="15" fill="rgb(243,50,9)" fg:x="147733" fg:w="35"/><text x="48.8461%" y="767.50"></text></g><g><title>native_write_msr (35 samples, 0.01%)</title><rect x="48.5961%" y="741" width="0.0115%" height="15" fill="rgb(219,149,6)" fg:x="147733" fg:w="35"/><text x="48.8461%" y="751.50"></text></g><g><title>ret_from_fork (36 samples, 0.01%)</title><rect x="48.5961%" y="837" width="0.0118%" height="15" fill="rgb(241,51,42)" fg:x="147733" fg:w="36"/><text x="48.8461%" y="847.50"></text></g><g><title>globbing_pool-4 (573 samples, 0.19%)</title><rect x="48.4197%" y="853" width="0.1885%" height="15" fill="rgb(226,128,27)" fg:x="147197" fg:w="573"/><text x="48.6697%" y="863.50"></text></g><g><title>[libunix_jni.so] (56 samples, 0.02%)</title><rect x="48.6095%" y="837" width="0.0184%" height="15" fill="rgb(244,144,4)" fg:x="147774" fg:w="56"/><text x="48.8595%" y="847.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.01%)</title><rect x="48.7043%" y="677" width="0.0105%" height="15" fill="rgb(221,4,13)" fg:x="148062" fg:w="32"/><text x="48.9543%" y="687.50"></text></g><g><title>do_futex (32 samples, 0.01%)</title><rect x="48.7043%" y="661" width="0.0105%" height="15" fill="rgb(208,170,28)" fg:x="148062" fg:w="32"/><text x="48.9543%" y="671.50"></text></g><g><title>futex_wait (32 samples, 0.01%)</title><rect x="48.7043%" y="645" width="0.0105%" height="15" fill="rgb(226,131,13)" fg:x="148062" fg:w="32"/><text x="48.9543%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.01%)</title><rect x="48.7043%" y="709" width="0.0112%" height="15" fill="rgb(215,72,41)" fg:x="148062" fg:w="34"/><text x="48.9543%" y="719.50"></text></g><g><title>do_syscall_64 (34 samples, 0.01%)</title><rect x="48.7043%" y="693" width="0.0112%" height="15" fill="rgb(243,108,20)" fg:x="148062" fg:w="34"/><text x="48.9543%" y="703.50"></text></g><g><title>___pthread_cond_wait (36 samples, 0.01%)</title><rect x="48.7040%" y="789" width="0.0118%" height="15" fill="rgb(230,189,17)" fg:x="148061" fg:w="36"/><text x="48.9540%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (36 samples, 0.01%)</title><rect x="48.7040%" y="773" width="0.0118%" height="15" fill="rgb(220,50,17)" fg:x="148061" fg:w="36"/><text x="48.9540%" y="783.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (36 samples, 0.01%)</title><rect x="48.7040%" y="757" width="0.0118%" height="15" fill="rgb(248,152,48)" fg:x="148061" fg:w="36"/><text x="48.9540%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (36 samples, 0.01%)</title><rect x="48.7040%" y="741" width="0.0118%" height="15" fill="rgb(244,91,11)" fg:x="148061" fg:w="36"/><text x="48.9540%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (36 samples, 0.01%)</title><rect x="48.7040%" y="725" width="0.0118%" height="15" fill="rgb(220,157,5)" fg:x="148061" fg:w="36"/><text x="48.9540%" y="735.50"></text></g><g><title>Parker::park (38 samples, 0.01%)</title><rect x="48.7036%" y="805" width="0.0125%" height="15" fill="rgb(253,137,8)" fg:x="148060" fg:w="38"/><text x="48.9536%" y="815.50"></text></g><g><title>Unsafe_Park (39 samples, 0.01%)</title><rect x="48.7036%" y="821" width="0.0128%" height="15" fill="rgb(217,137,51)" fg:x="148060" fg:w="39"/><text x="48.9536%" y="831.50"></text></g><g><title>do_user_addr_fault (31 samples, 0.01%)</title><rect x="48.7178%" y="789" width="0.0102%" height="15" fill="rgb(218,209,53)" fg:x="148103" fg:w="31"/><text x="48.9678%" y="799.50"></text></g><g><title>asm_exc_page_fault (33 samples, 0.01%)</title><rect x="48.7174%" y="821" width="0.0109%" height="15" fill="rgb(249,137,25)" fg:x="148102" fg:w="33"/><text x="48.9674%" y="831.50"></text></g><g><title>exc_page_fault (33 samples, 0.01%)</title><rect x="48.7174%" y="805" width="0.0109%" height="15" fill="rgb(239,155,26)" fg:x="148102" fg:w="33"/><text x="48.9674%" y="815.50"></text></g><g><title>[perf-720743.map] (310 samples, 0.10%)</title><rect x="48.6280%" y="837" width="0.1020%" height="15" fill="rgb(227,85,46)" fg:x="147830" fg:w="310"/><text x="48.8780%" y="847.50"></text></g><g><title>globbing_pool-5 (420 samples, 0.14%)</title><rect x="48.6082%" y="853" width="0.1382%" height="15" fill="rgb(251,107,43)" fg:x="147770" fg:w="420"/><text x="48.8582%" y="863.50"></text></g><g><title>[libunix_jni.so] (66 samples, 0.02%)</title><rect x="48.7474%" y="837" width="0.0217%" height="15" fill="rgb(234,170,33)" fg:x="148193" fg:w="66"/><text x="48.9974%" y="847.50"></text></g><g><title>Unsafe_Park (34 samples, 0.01%)</title><rect x="48.8418%" y="821" width="0.0112%" height="15" fill="rgb(206,29,35)" fg:x="148480" fg:w="34"/><text x="49.0918%" y="831.50"></text></g><g><title>Parker::park (33 samples, 0.01%)</title><rect x="48.8421%" y="805" width="0.0109%" height="15" fill="rgb(227,138,25)" fg:x="148481" fg:w="33"/><text x="49.0921%" y="815.50"></text></g><g><title>___pthread_cond_wait (32 samples, 0.01%)</title><rect x="48.8424%" y="789" width="0.0105%" height="15" fill="rgb(249,131,35)" fg:x="148482" fg:w="32"/><text x="49.0924%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (31 samples, 0.01%)</title><rect x="48.8428%" y="773" width="0.0102%" height="15" fill="rgb(239,6,40)" fg:x="148483" fg:w="31"/><text x="49.0928%" y="783.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (31 samples, 0.01%)</title><rect x="48.8428%" y="757" width="0.0102%" height="15" fill="rgb(246,136,47)" fg:x="148483" fg:w="31"/><text x="49.0928%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (31 samples, 0.01%)</title><rect x="48.8428%" y="741" width="0.0102%" height="15" fill="rgb(253,58,26)" fg:x="148483" fg:w="31"/><text x="49.0928%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (31 samples, 0.01%)</title><rect x="48.8428%" y="725" width="0.0102%" height="15" fill="rgb(237,141,10)" fg:x="148483" fg:w="31"/><text x="49.0928%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="48.8428%" y="709" width="0.0102%" height="15" fill="rgb(234,156,12)" fg:x="148483" fg:w="31"/><text x="49.0928%" y="719.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="48.8428%" y="693" width="0.0102%" height="15" fill="rgb(243,224,36)" fg:x="148483" fg:w="31"/><text x="49.0928%" y="703.50"></text></g><g><title>do_user_addr_fault (33 samples, 0.01%)</title><rect x="48.8543%" y="789" width="0.0109%" height="15" fill="rgb(205,229,51)" fg:x="148518" fg:w="33"/><text x="49.1043%" y="799.50"></text></g><g><title>asm_exc_page_fault (36 samples, 0.01%)</title><rect x="48.8540%" y="821" width="0.0118%" height="15" fill="rgb(223,189,4)" fg:x="148517" fg:w="36"/><text x="49.1040%" y="831.50"></text></g><g><title>exc_page_fault (36 samples, 0.01%)</title><rect x="48.8540%" y="805" width="0.0118%" height="15" fill="rgb(249,167,54)" fg:x="148517" fg:w="36"/><text x="49.1040%" y="815.50"></text></g><g><title>[perf-720743.map] (296 samples, 0.10%)</title><rect x="48.7691%" y="837" width="0.0974%" height="15" fill="rgb(218,34,28)" fg:x="148259" fg:w="296"/><text x="49.0191%" y="847.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (31 samples, 0.01%)</title><rect x="48.8671%" y="821" width="0.0102%" height="15" fill="rgb(232,109,42)" fg:x="148557" fg:w="31"/><text x="49.1171%" y="831.50"></text></g><g><title>SafepointSynchronize::block (31 samples, 0.01%)</title><rect x="48.8671%" y="805" width="0.0102%" height="15" fill="rgb(248,214,46)" fg:x="148557" fg:w="31"/><text x="49.1171%" y="815.50"></text></g><g><title>[unknown] (34 samples, 0.01%)</title><rect x="48.8665%" y="837" width="0.0112%" height="15" fill="rgb(244,216,40)" fg:x="148555" fg:w="34"/><text x="49.1165%" y="847.50"></text></g><g><title>globbing_pool-6 (416 samples, 0.14%)</title><rect x="48.7464%" y="853" width="0.1368%" height="15" fill="rgb(231,226,31)" fg:x="148190" fg:w="416"/><text x="48.9964%" y="863.50"></text></g><g><title>[libunix_jni.so] (45 samples, 0.01%)</title><rect x="48.8842%" y="837" width="0.0148%" height="15" fill="rgb(238,38,43)" fg:x="148609" fg:w="45"/><text x="49.1342%" y="847.50"></text></g><g><title>[perf-720743.map] (205 samples, 0.07%)</title><rect x="48.8990%" y="837" width="0.0674%" height="15" fill="rgb(208,88,43)" fg:x="148654" fg:w="205"/><text x="49.1490%" y="847.50"></text></g><g><title>[unknown] (34 samples, 0.01%)</title><rect x="48.9665%" y="837" width="0.0112%" height="15" fill="rgb(205,136,37)" fg:x="148859" fg:w="34"/><text x="49.2165%" y="847.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (31 samples, 0.01%)</title><rect x="48.9674%" y="821" width="0.0102%" height="15" fill="rgb(237,34,14)" fg:x="148862" fg:w="31"/><text x="49.2174%" y="831.50"></text></g><g><title>SafepointSynchronize::block (31 samples, 0.01%)</title><rect x="48.9674%" y="805" width="0.0102%" height="15" fill="rgb(236,193,44)" fg:x="148862" fg:w="31"/><text x="49.2174%" y="815.50"></text></g><g><title>Monitor::lock_without_safepoint_check (31 samples, 0.01%)</title><rect x="48.9674%" y="789" width="0.0102%" height="15" fill="rgb(231,48,10)" fg:x="148862" fg:w="31"/><text x="49.2174%" y="799.50"></text></g><g><title>globbing_pool-7 (305 samples, 0.10%)</title><rect x="48.8832%" y="853" width="0.1003%" height="15" fill="rgb(213,141,34)" fg:x="148606" fg:w="305"/><text x="49.1332%" y="863.50"></text></g><g><title>[libunix_jni.so] (57 samples, 0.02%)</title><rect x="48.9845%" y="837" width="0.0187%" height="15" fill="rgb(249,130,34)" fg:x="148914" fg:w="57"/><text x="49.2345%" y="847.50"></text></g><g><title>[perf-720743.map] (175 samples, 0.06%)</title><rect x="49.0033%" y="837" width="0.0576%" height="15" fill="rgb(219,42,41)" fg:x="148971" fg:w="175"/><text x="49.2533%" y="847.50"></text></g><g><title>globbing_pool-8 (294 samples, 0.10%)</title><rect x="48.9836%" y="853" width="0.0967%" height="15" fill="rgb(224,100,54)" fg:x="148911" fg:w="294"/><text x="49.2336%" y="863.50"></text></g><g><title>[libunix_jni.so] (36 samples, 0.01%)</title><rect x="49.0809%" y="837" width="0.0118%" height="15" fill="rgb(229,200,27)" fg:x="149207" fg:w="36"/><text x="49.3309%" y="847.50"></text></g><g><title>[perf-720743.map] (103 samples, 0.03%)</title><rect x="49.0928%" y="837" width="0.0339%" height="15" fill="rgb(217,118,10)" fg:x="149243" fg:w="103"/><text x="49.3428%" y="847.50"></text></g><g><title>[unknown] (33 samples, 0.01%)</title><rect x="49.1267%" y="837" width="0.0109%" height="15" fill="rgb(206,22,3)" fg:x="149346" fg:w="33"/><text x="49.3767%" y="847.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (31 samples, 0.01%)</title><rect x="49.1273%" y="821" width="0.0102%" height="15" fill="rgb(232,163,46)" fg:x="149348" fg:w="31"/><text x="49.3773%" y="831.50"></text></g><g><title>SafepointSynchronize::block (31 samples, 0.01%)</title><rect x="49.1273%" y="805" width="0.0102%" height="15" fill="rgb(206,95,13)" fg:x="149348" fg:w="31"/><text x="49.3773%" y="815.50"></text></g><g><title>globbing_pool-9 (178 samples, 0.06%)</title><rect x="49.0803%" y="853" width="0.0586%" height="15" fill="rgb(253,154,18)" fg:x="149205" fg:w="178"/><text x="49.3303%" y="863.50"></text></g><g><title>[anon] (261 samples, 0.09%)</title><rect x="49.1434%" y="837" width="0.0859%" height="15" fill="rgb(219,32,23)" fg:x="149397" fg:w="261"/><text x="49.3934%" y="847.50"></text></g><g><title>[libunix_jni.so] (45 samples, 0.01%)</title><rect x="49.2293%" y="837" width="0.0148%" height="15" fill="rgb(230,191,45)" fg:x="149658" fg:w="45"/><text x="49.4793%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (36 samples, 0.01%)</title><rect x="49.9480%" y="661" width="0.0118%" height="15" fill="rgb(229,64,36)" fg:x="151843" fg:w="36"/><text x="50.1980%" y="671.50"></text></g><g><title>SymbolTable::lookup_only (31 samples, 0.01%)</title><rect x="49.9497%" y="645" width="0.0102%" height="15" fill="rgb(205,129,25)" fg:x="151848" fg:w="31"/><text x="50.1997%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool (37 samples, 0.01%)</title><rect x="49.9480%" y="677" width="0.0122%" height="15" fill="rgb(254,112,7)" fg:x="151843" fg:w="37"/><text x="50.1980%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (58 samples, 0.02%)</title><rect x="49.9480%" y="709" width="0.0191%" height="15" fill="rgb(226,53,48)" fg:x="151843" fg:w="58"/><text x="50.1980%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (58 samples, 0.02%)</title><rect x="49.9480%" y="693" width="0.0191%" height="15" fill="rgb(214,153,38)" fg:x="151843" fg:w="58"/><text x="50.1980%" y="703.50"></text></g><g><title>ClassLoader::load_class (114 samples, 0.04%)</title><rect x="49.9434%" y="741" width="0.0375%" height="15" fill="rgb(243,101,7)" fg:x="151829" fg:w="114"/><text x="50.1934%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (101 samples, 0.03%)</title><rect x="49.9477%" y="725" width="0.0332%" height="15" fill="rgb(240,140,22)" fg:x="151842" fg:w="101"/><text x="50.1977%" y="735.50"></text></g><g><title>ConstantPool::klass_at_impl (138 samples, 0.05%)</title><rect x="49.9391%" y="805" width="0.0454%" height="15" fill="rgb(235,114,2)" fg:x="151816" fg:w="138"/><text x="50.1891%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (136 samples, 0.04%)</title><rect x="49.9398%" y="789" width="0.0447%" height="15" fill="rgb(242,59,12)" fg:x="151818" fg:w="136"/><text x="50.1898%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (132 samples, 0.04%)</title><rect x="49.9411%" y="773" width="0.0434%" height="15" fill="rgb(252,134,9)" fg:x="151822" fg:w="132"/><text x="50.1911%" y="783.50"></text></g><g><title>SystemDictionary::load_instance_class (125 samples, 0.04%)</title><rect x="49.9434%" y="757" width="0.0411%" height="15" fill="rgb(236,4,44)" fg:x="151829" fg:w="125"/><text x="50.1934%" y="767.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (31 samples, 0.01%)</title><rect x="49.9967%" y="725" width="0.0102%" height="15" fill="rgb(254,172,41)" fg:x="151991" fg:w="31"/><text x="50.2467%" y="735.50"></text></g><g><title>InstanceKlass::link_methods (39 samples, 0.01%)</title><rect x="49.9947%" y="773" width="0.0128%" height="15" fill="rgb(244,63,20)" fg:x="151985" fg:w="39"/><text x="50.2447%" y="783.50"></text></g><g><title>Method::link_method (38 samples, 0.01%)</title><rect x="49.9951%" y="757" width="0.0125%" height="15" fill="rgb(250,73,31)" fg:x="151986" fg:w="38"/><text x="50.2451%" y="767.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (34 samples, 0.01%)</title><rect x="49.9964%" y="741" width="0.0112%" height="15" fill="rgb(241,38,36)" fg:x="151990" fg:w="34"/><text x="50.2464%" y="751.50"></text></g><g><title>Rewriter::rewrite (61 samples, 0.02%)</title><rect x="50.0076%" y="773" width="0.0201%" height="15" fill="rgb(245,211,2)" fg:x="152024" fg:w="61"/><text x="50.2576%" y="783.50"></text></g><g><title>Rewriter::Rewriter (61 samples, 0.02%)</title><rect x="50.0076%" y="757" width="0.0201%" height="15" fill="rgb(206,120,28)" fg:x="152024" fg:w="61"/><text x="50.2576%" y="767.50"></text></g><g><title>Rewriter::rewrite_bytecodes (48 samples, 0.02%)</title><rect x="50.0118%" y="741" width="0.0158%" height="15" fill="rgb(211,59,34)" fg:x="152037" fg:w="48"/><text x="50.2618%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (150 samples, 0.05%)</title><rect x="49.9868%" y="789" width="0.0493%" height="15" fill="rgb(233,168,5)" fg:x="151961" fg:w="150"/><text x="50.2368%" y="799.50"></text></g><g><title>InstanceKlass::initialize_impl (156 samples, 0.05%)</title><rect x="49.9855%" y="805" width="0.0513%" height="15" fill="rgb(234,33,13)" fg:x="151957" fg:w="156"/><text x="50.2355%" y="815.50"></text></g><g><title>InterpreterRuntime::_new (299 samples, 0.10%)</title><rect x="49.9391%" y="821" width="0.0984%" height="15" fill="rgb(231,150,26)" fg:x="151816" fg:w="299"/><text x="50.1891%" y="831.50"></text></g><g><title>InterpreterRuntime::anewarray (32 samples, 0.01%)</title><rect x="50.0375%" y="821" width="0.0105%" height="15" fill="rgb(217,191,4)" fg:x="152115" fg:w="32"/><text x="50.2875%" y="831.50"></text></g><g><title>TieredThresholdPolicy::event (50 samples, 0.02%)</title><rect x="50.0546%" y="789" width="0.0164%" height="15" fill="rgb(246,198,38)" fg:x="152167" fg:w="50"/><text x="50.3046%" y="799.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (47 samples, 0.02%)</title><rect x="50.0556%" y="773" width="0.0155%" height="15" fill="rgb(245,64,37)" fg:x="152170" fg:w="47"/><text x="50.3056%" y="783.50"></text></g><g><title>TieredThresholdPolicy::compile (31 samples, 0.01%)</title><rect x="50.0609%" y="757" width="0.0102%" height="15" fill="rgb(250,30,36)" fg:x="152186" fg:w="31"/><text x="50.3109%" y="767.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (31 samples, 0.01%)</title><rect x="50.0609%" y="741" width="0.0102%" height="15" fill="rgb(217,86,53)" fg:x="152186" fg:w="31"/><text x="50.3109%" y="751.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (58 samples, 0.02%)</title><rect x="50.0523%" y="821" width="0.0191%" height="15" fill="rgb(228,157,16)" fg:x="152160" fg:w="58"/><text x="50.3023%" y="831.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (57 samples, 0.02%)</title><rect x="50.0526%" y="805" width="0.0187%" height="15" fill="rgb(217,59,31)" fg:x="152161" fg:w="57"/><text x="50.3026%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (36 samples, 0.01%)</title><rect x="50.1043%" y="757" width="0.0118%" height="15" fill="rgb(237,138,41)" fg:x="152318" fg:w="36"/><text x="50.3543%" y="767.50"></text></g><g><title>InstanceKlass::link_class_impl (35 samples, 0.01%)</title><rect x="50.1046%" y="741" width="0.0115%" height="15" fill="rgb(227,91,49)" fg:x="152319" fg:w="35"/><text x="50.3546%" y="751.50"></text></g><g><title>LinkResolver::resolve_field_access (77 samples, 0.03%)</title><rect x="50.0924%" y="789" width="0.0253%" height="15" fill="rgb(247,21,44)" fg:x="152282" fg:w="77"/><text x="50.3424%" y="799.50"></text></g><g><title>LinkResolver::resolve_field (54 samples, 0.02%)</title><rect x="50.1000%" y="773" width="0.0178%" height="15" fill="rgb(219,210,51)" fg:x="152305" fg:w="54"/><text x="50.3500%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (89 samples, 0.03%)</title><rect x="50.0891%" y="805" width="0.0293%" height="15" fill="rgb(209,140,6)" fg:x="152272" fg:w="89"/><text x="50.3391%" y="815.50"></text></g><g><title>ClassFileParser::ClassFileParser (31 samples, 0.01%)</title><rect x="50.1378%" y="677" width="0.0102%" height="15" fill="rgb(221,188,24)" fg:x="152420" fg:w="31"/><text x="50.3878%" y="687.50"></text></g><g><title>ClassFileParser::parse_stream (31 samples, 0.01%)</title><rect x="50.1378%" y="661" width="0.0102%" height="15" fill="rgb(232,154,20)" fg:x="152420" fg:w="31"/><text x="50.3878%" y="671.50"></text></g><g><title>ClassLoader::load_class (47 samples, 0.02%)</title><rect x="50.1355%" y="709" width="0.0155%" height="15" fill="rgb(244,137,50)" fg:x="152413" fg:w="47"/><text x="50.3855%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (40 samples, 0.01%)</title><rect x="50.1378%" y="693" width="0.0132%" height="15" fill="rgb(225,185,43)" fg:x="152420" fg:w="40"/><text x="50.3878%" y="703.50"></text></g><g><title>SystemDictionary::load_instance_class (55 samples, 0.02%)</title><rect x="50.1355%" y="725" width="0.0181%" height="15" fill="rgb(213,205,38)" fg:x="152413" fg:w="55"/><text x="50.3855%" y="735.50"></text></g><g><title>ConstantPool::klass_ref_at (74 samples, 0.02%)</title><rect x="50.1296%" y="773" width="0.0243%" height="15" fill="rgb(236,73,12)" fg:x="152395" fg:w="74"/><text x="50.3796%" y="783.50"></text></g><g><title>SystemDictionary::resolve_or_fail (66 samples, 0.02%)</title><rect x="50.1322%" y="757" width="0.0217%" height="15" fill="rgb(235,219,13)" fg:x="152403" fg:w="66"/><text x="50.3822%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (64 samples, 0.02%)</title><rect x="50.1329%" y="741" width="0.0211%" height="15" fill="rgb(218,59,36)" fg:x="152405" fg:w="64"/><text x="50.3829%" y="751.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (41 samples, 0.01%)</title><rect x="50.1648%" y="773" width="0.0135%" height="15" fill="rgb(205,110,39)" fg:x="152502" fg:w="41"/><text x="50.4148%" y="783.50"></text></g><g><title>Rewriter::rewrite (35 samples, 0.01%)</title><rect x="50.1888%" y="725" width="0.0115%" height="15" fill="rgb(218,206,42)" fg:x="152575" fg:w="35"/><text x="50.4388%" y="735.50"></text></g><g><title>Rewriter::Rewriter (35 samples, 0.01%)</title><rect x="50.1888%" y="709" width="0.0115%" height="15" fill="rgb(248,125,24)" fg:x="152575" fg:w="35"/><text x="50.4388%" y="719.50"></text></g><g><title>InstanceKlass::initialize_impl (73 samples, 0.02%)</title><rect x="50.1796%" y="757" width="0.0240%" height="15" fill="rgb(242,28,27)" fg:x="152547" fg:w="73"/><text x="50.4296%" y="767.50"></text></g><g><title>InstanceKlass::link_class_impl (69 samples, 0.02%)</title><rect x="50.1809%" y="741" width="0.0227%" height="15" fill="rgb(216,228,15)" fg:x="152551" fg:w="69"/><text x="50.4309%" y="751.50"></text></g><g><title>LinkResolver::resolve_static_call (106 samples, 0.03%)</title><rect x="50.1783%" y="773" width="0.0349%" height="15" fill="rgb(235,116,46)" fg:x="152543" fg:w="106"/><text x="50.4283%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (259 samples, 0.09%)</title><rect x="50.1293%" y="789" width="0.0852%" height="15" fill="rgb(224,18,32)" fg:x="152394" fg:w="259"/><text x="50.3793%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (307 samples, 0.10%)</title><rect x="50.1184%" y="805" width="0.1010%" height="15" fill="rgb(252,5,12)" fg:x="152361" fg:w="307"/><text x="50.3684%" y="815.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (38 samples, 0.01%)</title><rect x="50.2197%" y="757" width="0.0125%" height="15" fill="rgb(251,36,5)" fg:x="152669" fg:w="38"/><text x="50.4697%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (48 samples, 0.02%)</title><rect x="50.2194%" y="805" width="0.0158%" height="15" fill="rgb(217,53,14)" fg:x="152668" fg:w="48"/><text x="50.4694%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (47 samples, 0.02%)</title><rect x="50.2197%" y="789" width="0.0155%" height="15" fill="rgb(215,86,45)" fg:x="152669" fg:w="47"/><text x="50.4697%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (47 samples, 0.02%)</title><rect x="50.2197%" y="773" width="0.0155%" height="15" fill="rgb(242,169,11)" fg:x="152669" fg:w="47"/><text x="50.4697%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (457 samples, 0.15%)</title><rect x="50.0875%" y="821" width="0.1503%" height="15" fill="rgb(211,213,45)" fg:x="152267" fg:w="457"/><text x="50.3375%" y="831.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (35 samples, 0.01%)</title><rect x="50.2385%" y="805" width="0.0115%" height="15" fill="rgb(205,88,11)" fg:x="152726" fg:w="35"/><text x="50.4885%" y="815.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (34 samples, 0.01%)</title><rect x="50.2388%" y="789" width="0.0112%" height="15" fill="rgb(252,69,26)" fg:x="152727" fg:w="34"/><text x="50.4888%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (42 samples, 0.01%)</title><rect x="50.2378%" y="821" width="0.0138%" height="15" fill="rgb(246,123,37)" fg:x="152724" fg:w="42"/><text x="50.4878%" y="831.50"></text></g><g><title>JVM_FindLoadedClass (33 samples, 0.01%)</title><rect x="50.2648%" y="821" width="0.0109%" height="15" fill="rgb(212,205,5)" fg:x="152806" fg:w="33"/><text x="50.5148%" y="831.50"></text></g><g><title>JVM_GetClassDeclaredMethods (35 samples, 0.01%)</title><rect x="50.2865%" y="821" width="0.0115%" height="15" fill="rgb(253,148,0)" fg:x="152872" fg:w="35"/><text x="50.5365%" y="831.50"></text></g><g><title>get_class_declared_methods_helper (34 samples, 0.01%)</title><rect x="50.2868%" y="805" width="0.0112%" height="15" fill="rgb(239,22,4)" fg:x="152873" fg:w="34"/><text x="50.5368%" y="815.50"></text></g><g><title>SymbolTable::add (73 samples, 0.02%)</title><rect x="50.3595%" y="677" width="0.0240%" height="15" fill="rgb(226,26,53)" fg:x="153094" fg:w="73"/><text x="50.6095%" y="687.50"></text></g><g><title>SymbolTable::basic_add (73 samples, 0.02%)</title><rect x="50.3595%" y="661" width="0.0240%" height="15" fill="rgb(225,229,45)" fg:x="153094" fg:w="73"/><text x="50.6095%" y="671.50"></text></g><g><title>SymbolTable::lookup_only (452 samples, 0.15%)</title><rect x="50.3836%" y="677" width="0.1487%" height="15" fill="rgb(220,60,37)" fg:x="153167" fg:w="452"/><text x="50.6336%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (557 samples, 0.18%)</title><rect x="50.3500%" y="693" width="0.1832%" height="15" fill="rgb(217,180,35)" fg:x="153065" fg:w="557"/><text x="50.6000%" y="703.50"></text></g><g><title>ClassFileParser::parse_constant_pool (578 samples, 0.19%)</title><rect x="50.3457%" y="709" width="0.1901%" height="15" fill="rgb(229,7,53)" fg:x="153052" fg:w="578"/><text x="50.5957%" y="719.50"></text></g><g><title>Method::allocate (32 samples, 0.01%)</title><rect x="50.5770%" y="677" width="0.0105%" height="15" fill="rgb(254,137,3)" fg:x="153755" fg:w="32"/><text x="50.8270%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (162 samples, 0.05%)</title><rect x="50.5431%" y="693" width="0.0533%" height="15" fill="rgb(215,140,41)" fg:x="153652" fg:w="162"/><text x="50.7931%" y="703.50"></text></g><g><title>ClassFileParser::parse_methods (165 samples, 0.05%)</title><rect x="50.5428%" y="709" width="0.0543%" height="15" fill="rgb(250,80,15)" fg:x="153651" fg:w="165"/><text x="50.7928%" y="719.50"></text></g><g><title>ClassFileParser::ClassFileParser (791 samples, 0.26%)</title><rect x="50.3414%" y="741" width="0.2602%" height="15" fill="rgb(252,191,6)" fg:x="153039" fg:w="791"/><text x="50.5914%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (791 samples, 0.26%)</title><rect x="50.3414%" y="725" width="0.2602%" height="15" fill="rgb(246,217,18)" fg:x="153039" fg:w="791"/><text x="50.5914%" y="735.50"></text></g><g><title>InstanceKlass::find_method (31 samples, 0.01%)</title><rect x="50.6171%" y="677" width="0.0102%" height="15" fill="rgb(223,93,7)" fg:x="153877" fg:w="31"/><text x="50.8671%" y="687.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (95 samples, 0.03%)</title><rect x="50.6099%" y="693" width="0.0312%" height="15" fill="rgb(225,55,52)" fg:x="153855" fg:w="95"/><text x="50.8599%" y="703.50"></text></g><g><title>resource_allocate_bytes (37 samples, 0.01%)</title><rect x="50.6289%" y="677" width="0.0122%" height="15" fill="rgb(240,31,24)" fg:x="153913" fg:w="37"/><text x="50.8789%" y="687.50"></text></g><g><title>DefaultMethods::generate_default_methods (131 samples, 0.04%)</title><rect x="50.6033%" y="709" width="0.0431%" height="15" fill="rgb(205,56,52)" fg:x="153835" fg:w="131"/><text x="50.8533%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (167 samples, 0.05%)</title><rect x="50.6016%" y="725" width="0.0549%" height="15" fill="rgb(246,146,12)" fg:x="153830" fg:w="167"/><text x="50.8516%" y="735.50"></text></g><g><title>ClassFileParser::create_instance_klass (174 samples, 0.06%)</title><rect x="50.6016%" y="741" width="0.0572%" height="15" fill="rgb(239,84,36)" fg:x="153830" fg:w="174"/><text x="50.8516%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (1,012 samples, 0.33%)</title><rect x="50.3405%" y="757" width="0.3329%" height="15" fill="rgb(207,41,40)" fg:x="153036" fg:w="1012"/><text x="50.5905%" y="767.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (44 samples, 0.01%)</title><rect x="50.6589%" y="741" width="0.0145%" height="15" fill="rgb(241,179,25)" fg:x="154004" fg:w="44"/><text x="50.9089%" y="751.50"></text></g><g><title>JVM_DefineClassWithSource (1,063 samples, 0.35%)</title><rect x="50.3345%" y="805" width="0.3497%" height="15" fill="rgb(210,0,34)" fg:x="153018" fg:w="1063"/><text x="50.5845%" y="815.50"></text></g><g><title>jvm_define_class_common (1,061 samples, 0.35%)</title><rect x="50.3352%" y="789" width="0.3490%" height="15" fill="rgb(225,217,29)" fg:x="153020" fg:w="1061"/><text x="50.5852%" y="799.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,048 samples, 0.34%)</title><rect x="50.3395%" y="773" width="0.3447%" height="15" fill="rgb(216,191,38)" fg:x="153033" fg:w="1048"/><text x="50.5895%" y="783.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,118 samples, 0.37%)</title><rect x="50.3336%" y="821" width="0.3678%" height="15" fill="rgb(232,140,52)" fg:x="153015" fg:w="1118"/><text x="50.5836%" y="831.50"></text></g><g><title>SystemDictionary::resolve_or_null (52 samples, 0.02%)</title><rect x="50.7026%" y="789" width="0.0171%" height="15" fill="rgb(223,158,51)" fg:x="154137" fg:w="52"/><text x="50.9526%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (52 samples, 0.02%)</title><rect x="50.7026%" y="773" width="0.0171%" height="15" fill="rgb(235,29,51)" fg:x="154137" fg:w="52"/><text x="50.9526%" y="783.50"></text></g><g><title>SystemDictionary::load_instance_class (48 samples, 0.02%)</title><rect x="50.7039%" y="757" width="0.0158%" height="15" fill="rgb(215,181,18)" fg:x="154141" fg:w="48"/><text x="50.9539%" y="767.50"></text></g><g><title>JVM_FindClassFromBootLoader (57 samples, 0.02%)</title><rect x="50.7013%" y="805" width="0.0187%" height="15" fill="rgb(227,125,34)" fg:x="154133" fg:w="57"/><text x="50.9513%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (68 samples, 0.02%)</title><rect x="50.7013%" y="821" width="0.0224%" height="15" fill="rgb(230,197,49)" fg:x="154133" fg:w="68"/><text x="50.9513%" y="831.50"></text></g><g><title>MHN_resolve_Mem (35 samples, 0.01%)</title><rect x="50.7405%" y="821" width="0.0115%" height="15" fill="rgb(239,141,16)" fg:x="154252" fg:w="35"/><text x="50.9905%" y="831.50"></text></g><g><title>MethodHandles::resolve_MemberName (35 samples, 0.01%)</title><rect x="50.7405%" y="805" width="0.0115%" height="15" fill="rgb(225,105,43)" fg:x="154252" fg:w="35"/><text x="50.9905%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (52 samples, 0.02%)</title><rect x="50.7651%" y="789" width="0.0171%" height="15" fill="rgb(214,131,14)" fg:x="154327" fg:w="52"/><text x="51.0151%" y="799.50"></text></g><g><title>SystemDictionary::parse_stream (78 samples, 0.03%)</title><rect x="50.7572%" y="805" width="0.0257%" height="15" fill="rgb(229,177,11)" fg:x="154303" fg:w="78"/><text x="51.0072%" y="815.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (81 samples, 0.03%)</title><rect x="50.7569%" y="821" width="0.0266%" height="15" fill="rgb(231,180,14)" fg:x="154302" fg:w="81"/><text x="51.0069%" y="831.50"></text></g><g><title>do_user_addr_fault (38 samples, 0.01%)</title><rect x="50.7882%" y="789" width="0.0125%" height="15" fill="rgb(232,88,2)" fg:x="154397" fg:w="38"/><text x="51.0382%" y="799.50"></text></g><g><title>handle_mm_fault (31 samples, 0.01%)</title><rect x="50.7905%" y="773" width="0.0102%" height="15" fill="rgb(205,220,8)" fg:x="154404" fg:w="31"/><text x="51.0405%" y="783.50"></text></g><g><title>asm_exc_page_fault (41 samples, 0.01%)</title><rect x="50.7882%" y="821" width="0.0135%" height="15" fill="rgb(225,23,53)" fg:x="154397" fg:w="41"/><text x="51.0382%" y="831.50"></text></g><g><title>exc_page_fault (41 samples, 0.01%)</title><rect x="50.7882%" y="805" width="0.0135%" height="15" fill="rgb(213,62,29)" fg:x="154397" fg:w="41"/><text x="51.0382%" y="815.50"></text></g><g><title>[perf-720743.map] (4,757 samples, 1.56%)</title><rect x="49.2441%" y="837" width="1.5648%" height="15" fill="rgb(227,75,7)" fg:x="149703" fg:w="4757"/><text x="49.4941%" y="847.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (43 samples, 0.01%)</title><rect x="50.8204%" y="821" width="0.0141%" height="15" fill="rgb(207,105,14)" fg:x="154495" fg:w="43"/><text x="51.0704%" y="831.50"></text></g><g><title>btrfs_file_read_iter (41 samples, 0.01%)</title><rect x="50.8477%" y="645" width="0.0135%" height="15" fill="rgb(245,62,29)" fg:x="154578" fg:w="41"/><text x="51.0977%" y="655.50"></text></g><g><title>filemap_read (41 samples, 0.01%)</title><rect x="50.8477%" y="629" width="0.0135%" height="15" fill="rgb(236,202,4)" fg:x="154578" fg:w="41"/><text x="51.0977%" y="639.50"></text></g><g><title>new_sync_read (45 samples, 0.01%)</title><rect x="50.8467%" y="661" width="0.0148%" height="15" fill="rgb(250,67,1)" fg:x="154575" fg:w="45"/><text x="51.0967%" y="671.50"></text></g><g><title>__x64_sys_read (59 samples, 0.02%)</title><rect x="50.8444%" y="709" width="0.0194%" height="15" fill="rgb(253,115,44)" fg:x="154568" fg:w="59"/><text x="51.0944%" y="719.50"></text></g><g><title>ksys_read (58 samples, 0.02%)</title><rect x="50.8447%" y="693" width="0.0191%" height="15" fill="rgb(251,139,18)" fg:x="154569" fg:w="58"/><text x="51.0947%" y="703.50"></text></g><g><title>vfs_read (53 samples, 0.02%)</title><rect x="50.8464%" y="677" width="0.0174%" height="15" fill="rgb(218,22,32)" fg:x="154574" fg:w="53"/><text x="51.0964%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.02%)</title><rect x="50.8428%" y="757" width="0.0214%" height="15" fill="rgb(243,53,5)" fg:x="154563" fg:w="65"/><text x="51.0928%" y="767.50"></text></g><g><title>do_syscall_64 (65 samples, 0.02%)</title><rect x="50.8428%" y="741" width="0.0214%" height="15" fill="rgb(227,56,16)" fg:x="154563" fg:w="65"/><text x="51.0928%" y="751.50"></text></g><g><title>unload_network_ops_symbols (62 samples, 0.02%)</title><rect x="50.8437%" y="725" width="0.0204%" height="15" fill="rgb(245,53,0)" fg:x="154566" fg:w="62"/><text x="51.0937%" y="735.50"></text></g><g><title>handleRead (71 samples, 0.02%)</title><rect x="50.8411%" y="805" width="0.0234%" height="15" fill="rgb(216,170,35)" fg:x="154558" fg:w="71"/><text x="51.0911%" y="815.50"></text></g><g><title>__GI___libc_read (70 samples, 0.02%)</title><rect x="50.8414%" y="789" width="0.0230%" height="15" fill="rgb(211,200,8)" fg:x="154559" fg:w="70"/><text x="51.0914%" y="799.50"></text></g><g><title>__GI___libc_read (70 samples, 0.02%)</title><rect x="50.8414%" y="773" width="0.0230%" height="15" fill="rgb(228,204,44)" fg:x="154559" fg:w="70"/><text x="51.0914%" y="783.50"></text></g><g><title>readBytes (93 samples, 0.03%)</title><rect x="50.8398%" y="821" width="0.0306%" height="15" fill="rgb(214,121,17)" fg:x="154554" fg:w="93"/><text x="51.0898%" y="831.50"></text></g><g><title>[unknown] (190 samples, 0.06%)</title><rect x="50.8089%" y="837" width="0.0625%" height="15" fill="rgb(233,64,38)" fg:x="154460" fg:w="190"/><text x="51.0589%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.01%)</title><rect x="50.8763%" y="773" width="0.0138%" height="15" fill="rgb(253,54,19)" fg:x="154665" fg:w="42"/><text x="51.1263%" y="783.50"></text></g><g><title>x86_pmu_enable (42 samples, 0.01%)</title><rect x="50.8763%" y="757" width="0.0138%" height="15" fill="rgb(253,94,18)" fg:x="154665" fg:w="42"/><text x="51.1263%" y="767.50"></text></g><g><title>intel_pmu_enable_all (41 samples, 0.01%)</title><rect x="50.8766%" y="741" width="0.0135%" height="15" fill="rgb(227,57,52)" fg:x="154666" fg:w="41"/><text x="51.1266%" y="751.50"></text></g><g><title>native_write_msr (41 samples, 0.01%)</title><rect x="50.8766%" y="725" width="0.0135%" height="15" fill="rgb(230,228,50)" fg:x="154666" fg:w="41"/><text x="51.1266%" y="735.50"></text></g><g><title>schedule_tail (45 samples, 0.01%)</title><rect x="50.8760%" y="805" width="0.0148%" height="15" fill="rgb(217,205,27)" fg:x="154664" fg:w="45"/><text x="51.1260%" y="815.50"></text></g><g><title>finish_task_switch.isra.0 (45 samples, 0.01%)</title><rect x="50.8760%" y="789" width="0.0148%" height="15" fill="rgb(252,71,50)" fg:x="154664" fg:w="45"/><text x="51.1260%" y="799.50"></text></g><g><title>ret_from_fork (47 samples, 0.02%)</title><rect x="50.8760%" y="821" width="0.0155%" height="15" fill="rgb(209,86,4)" fg:x="154664" fg:w="47"/><text x="51.1260%" y="831.50"></text></g><g><title>SystemDictionary::initialize_preloaded_classes (31 samples, 0.01%)</title><rect x="50.8974%" y="709" width="0.0102%" height="15" fill="rgb(229,94,0)" fg:x="154729" fg:w="31"/><text x="51.1474%" y="719.50"></text></g><g><title>universe2_init (32 samples, 0.01%)</title><rect x="50.8974%" y="741" width="0.0105%" height="15" fill="rgb(252,223,21)" fg:x="154729" fg:w="32"/><text x="51.1474%" y="751.50"></text></g><g><title>Universe::genesis (32 samples, 0.01%)</title><rect x="50.8974%" y="725" width="0.0105%" height="15" fill="rgb(230,210,4)" fg:x="154729" fg:w="32"/><text x="51.1474%" y="735.50"></text></g><g><title>init_globals (59 samples, 0.02%)</title><rect x="50.8947%" y="757" width="0.0194%" height="15" fill="rgb(240,149,38)" fg:x="154721" fg:w="59"/><text x="51.1447%" y="767.50"></text></g><g><title>JNI_CreateJavaVM (76 samples, 0.02%)</title><rect x="50.8918%" y="789" width="0.0250%" height="15" fill="rgb(254,105,20)" fg:x="154712" fg:w="76"/><text x="51.1418%" y="799.50"></text></g><g><title>Threads::create_vm (76 samples, 0.02%)</title><rect x="50.8918%" y="773" width="0.0250%" height="15" fill="rgb(253,87,46)" fg:x="154712" fg:w="76"/><text x="51.1418%" y="783.50"></text></g><g><title>JavaMain (77 samples, 0.03%)</title><rect x="50.8918%" y="805" width="0.0253%" height="15" fill="rgb(253,116,33)" fg:x="154712" fg:w="77"/><text x="51.1418%" y="815.50"></text></g><g><title>__clone3 (156 samples, 0.05%)</title><rect x="50.8714%" y="837" width="0.0513%" height="15" fill="rgb(229,198,5)" fg:x="154650" fg:w="156"/><text x="51.1214%" y="847.50"></text></g><g><title>start_thread (95 samples, 0.03%)</title><rect x="50.8914%" y="821" width="0.0312%" height="15" fill="rgb(242,38,37)" fg:x="154711" fg:w="95"/><text x="51.1414%" y="831.50"></text></g><g><title>schedule_tail (32 samples, 0.01%)</title><rect x="50.9342%" y="821" width="0.0105%" height="15" fill="rgb(242,69,53)" fg:x="154841" fg:w="32"/><text x="51.1842%" y="831.50"></text></g><g><title>finish_task_switch.isra.0 (32 samples, 0.01%)</title><rect x="50.9342%" y="805" width="0.0105%" height="15" fill="rgb(249,80,16)" fg:x="154841" fg:w="32"/><text x="51.1842%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (31 samples, 0.01%)</title><rect x="50.9345%" y="789" width="0.0102%" height="15" fill="rgb(206,128,11)" fg:x="154842" fg:w="31"/><text x="51.1845%" y="799.50"></text></g><g><title>ret_from_fork (33 samples, 0.01%)</title><rect x="50.9342%" y="837" width="0.0109%" height="15" fill="rgb(212,35,20)" fg:x="154841" fg:w="33"/><text x="51.1842%" y="847.50"></text></g><g><title>java (5,493 samples, 1.81%)</title><rect x="49.1388%" y="853" width="1.8069%" height="15" fill="rgb(236,79,13)" fg:x="149383" fg:w="5493"/><text x="49.3888%" y="863.50">j..</text></g><g><title>[[heap]] (106 samples, 0.03%)</title><rect x="50.9457%" y="837" width="0.0349%" height="15" fill="rgb(233,123,3)" fg:x="154876" fg:w="106"/><text x="51.1957%" y="847.50"></text></g><g><title>[[stack]] (64 samples, 0.02%)</title><rect x="50.9806%" y="837" width="0.0211%" height="15" fill="rgb(214,93,52)" fg:x="154982" fg:w="64"/><text x="51.2306%" y="847.50"></text></g><g><title>__libc_open64 (42 samples, 0.01%)</title><rect x="51.0651%" y="645" width="0.0138%" height="15" fill="rgb(251,37,40)" fg:x="155239" fg:w="42"/><text x="51.3151%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (42 samples, 0.01%)</title><rect x="51.0651%" y="629" width="0.0138%" height="15" fill="rgb(227,80,54)" fg:x="155239" fg:w="42"/><text x="51.3151%" y="639.50"></text></g><g><title>do_syscall_64 (42 samples, 0.01%)</title><rect x="51.0651%" y="613" width="0.0138%" height="15" fill="rgb(254,48,11)" fg:x="155239" fg:w="42"/><text x="51.3151%" y="623.50"></text></g><g><title>unload_network_ops_symbols (41 samples, 0.01%)</title><rect x="51.0655%" y="597" width="0.0135%" height="15" fill="rgb(235,193,26)" fg:x="155240" fg:w="41"/><text x="51.3155%" y="607.50"></text></g><g><title>llvm::sys::fs::openFile (46 samples, 0.02%)</title><rect x="51.0645%" y="661" width="0.0151%" height="15" fill="rgb(229,99,21)" fg:x="155237" fg:w="46"/><text x="51.3145%" y="671.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (47 samples, 0.02%)</title><rect x="51.0645%" y="757" width="0.0155%" height="15" fill="rgb(211,140,41)" fg:x="155237" fg:w="47"/><text x="51.3145%" y="767.50"></text></g><g><title>lld::elf::readFile (47 samples, 0.02%)</title><rect x="51.0645%" y="741" width="0.0155%" height="15" fill="rgb(240,227,30)" fg:x="155237" fg:w="47"/><text x="51.3145%" y="751.50"></text></g><g><title>llvm::MemoryBuffer::getFile (47 samples, 0.02%)</title><rect x="51.0645%" y="725" width="0.0155%" height="15" fill="rgb(215,224,45)" fg:x="155237" fg:w="47"/><text x="51.3145%" y="735.50"></text></g><g><title>getFileAux&lt;llvm::MemoryBuffer&gt; (47 samples, 0.02%)</title><rect x="51.0645%" y="709" width="0.0155%" height="15" fill="rgb(206,123,31)" fg:x="155237" fg:w="47"/><text x="51.3145%" y="719.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (47 samples, 0.02%)</title><rect x="51.0645%" y="693" width="0.0155%" height="15" fill="rgb(210,138,16)" fg:x="155237" fg:w="47"/><text x="51.3145%" y="703.50"></text></g><g><title>llvm::sys::fs::openFileForRead (47 samples, 0.02%)</title><rect x="51.0645%" y="677" width="0.0155%" height="15" fill="rgb(228,57,28)" fg:x="155237" fg:w="47"/><text x="51.3145%" y="687.50"></text></g><g><title>lldMain (116 samples, 0.04%)</title><rect x="51.0618%" y="821" width="0.0382%" height="15" fill="rgb(242,170,10)" fg:x="155229" fg:w="116"/><text x="51.3118%" y="831.50"></text></g><g><title>lld::elf::link (116 samples, 0.04%)</title><rect x="51.0618%" y="805" width="0.0382%" height="15" fill="rgb(228,214,39)" fg:x="155229" fg:w="116"/><text x="51.3118%" y="815.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (116 samples, 0.04%)</title><rect x="51.0618%" y="789" width="0.0382%" height="15" fill="rgb(218,179,33)" fg:x="155229" fg:w="116"/><text x="51.3118%" y="799.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (108 samples, 0.04%)</title><rect x="51.0645%" y="773" width="0.0355%" height="15" fill="rgb(235,193,39)" fg:x="155237" fg:w="108"/><text x="51.3145%" y="783.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (61 samples, 0.02%)</title><rect x="51.0799%" y="757" width="0.0201%" height="15" fill="rgb(219,221,36)" fg:x="155284" fg:w="61"/><text x="51.3299%" y="767.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (61 samples, 0.02%)</title><rect x="51.0799%" y="741" width="0.0201%" height="15" fill="rgb(248,218,19)" fg:x="155284" fg:w="61"/><text x="51.3299%" y="751.50"></text></g><g><title>lld::elf::readLinkerScript (32 samples, 0.01%)</title><rect x="51.0895%" y="725" width="0.0105%" height="15" fill="rgb(205,50,9)" fg:x="155313" fg:w="32"/><text x="51.3395%" y="735.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (32 samples, 0.01%)</title><rect x="51.0895%" y="709" width="0.0105%" height="15" fill="rgb(238,81,28)" fg:x="155313" fg:w="32"/><text x="51.3395%" y="719.50"></text></g><g><title>lld::elf::readFile (32 samples, 0.01%)</title><rect x="51.0895%" y="693" width="0.0105%" height="15" fill="rgb(235,110,19)" fg:x="155313" fg:w="32"/><text x="51.3395%" y="703.50"></text></g><g><title>llvm::MemoryBuffer::getFile (32 samples, 0.01%)</title><rect x="51.0895%" y="677" width="0.0105%" height="15" fill="rgb(214,7,14)" fg:x="155313" fg:w="32"/><text x="51.3395%" y="687.50"></text></g><g><title>getFileAux&lt;llvm::MemoryBuffer&gt; (32 samples, 0.01%)</title><rect x="51.0895%" y="661" width="0.0105%" height="15" fill="rgb(211,77,3)" fg:x="155313" fg:w="32"/><text x="51.3395%" y="671.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (32 samples, 0.01%)</title><rect x="51.0895%" y="645" width="0.0105%" height="15" fill="rgb(229,5,9)" fg:x="155313" fg:w="32"/><text x="51.3395%" y="655.50"></text></g><g><title>llvm::sys::fs::openFileForRead (32 samples, 0.01%)</title><rect x="51.0895%" y="629" width="0.0105%" height="15" fill="rgb(225,90,11)" fg:x="155313" fg:w="32"/><text x="51.3395%" y="639.50"></text></g><g><title>llvm::sys::fs::openFile (32 samples, 0.01%)</title><rect x="51.0895%" y="613" width="0.0105%" height="15" fill="rgb(242,56,8)" fg:x="155313" fg:w="32"/><text x="51.3395%" y="623.50"></text></g><g><title>__libc_open64 (32 samples, 0.01%)</title><rect x="51.0895%" y="597" width="0.0105%" height="15" fill="rgb(249,212,39)" fg:x="155313" fg:w="32"/><text x="51.3395%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.01%)</title><rect x="51.0895%" y="581" width="0.0105%" height="15" fill="rgb(236,90,9)" fg:x="155313" fg:w="32"/><text x="51.3395%" y="591.50"></text></g><g><title>do_syscall_64 (32 samples, 0.01%)</title><rect x="51.0895%" y="565" width="0.0105%" height="15" fill="rgb(206,88,35)" fg:x="155313" fg:w="32"/><text x="51.3395%" y="575.50"></text></g><g><title>unload_network_ops_symbols (32 samples, 0.01%)</title><rect x="51.0895%" y="549" width="0.0105%" height="15" fill="rgb(205,126,30)" fg:x="155313" fg:w="32"/><text x="51.3395%" y="559.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (33 samples, 0.01%)</title><rect x="51.1020%" y="821" width="0.0109%" height="15" fill="rgb(230,176,12)" fg:x="155351" fg:w="33"/><text x="51.3520%" y="831.50"></text></g><g><title>[unknown] (384 samples, 0.13%)</title><rect x="51.0289%" y="837" width="0.1263%" height="15" fill="rgb(243,19,9)" fg:x="155129" fg:w="384"/><text x="51.2789%" y="847.50"></text></g><g><title>inherit_event.constprop.0 (33 samples, 0.01%)</title><rect x="51.1704%" y="677" width="0.0109%" height="15" fill="rgb(245,171,17)" fg:x="155559" fg:w="33"/><text x="51.4204%" y="687.50"></text></g><g><title>inherit_task_group.isra.0 (37 samples, 0.01%)</title><rect x="51.1697%" y="693" width="0.0122%" height="15" fill="rgb(227,52,21)" fg:x="155557" fg:w="37"/><text x="51.4197%" y="703.50"></text></g><g><title>perf_event_init_context (40 samples, 0.01%)</title><rect x="51.1691%" y="709" width="0.0132%" height="15" fill="rgb(238,69,14)" fg:x="155555" fg:w="40"/><text x="51.4191%" y="719.50"></text></g><g><title>perf_event_init_task (41 samples, 0.01%)</title><rect x="51.1691%" y="725" width="0.0135%" height="15" fill="rgb(241,156,39)" fg:x="155555" fg:w="41"/><text x="51.4191%" y="735.50"></text></g><g><title>copy_process (78 samples, 0.03%)</title><rect x="51.1579%" y="741" width="0.0257%" height="15" fill="rgb(212,227,28)" fg:x="155521" fg:w="78"/><text x="51.4079%" y="751.50"></text></g><g><title>__x64_sys_clone3 (101 samples, 0.03%)</title><rect x="51.1566%" y="789" width="0.0332%" height="15" fill="rgb(209,118,27)" fg:x="155517" fg:w="101"/><text x="51.4066%" y="799.50"></text></g><g><title>__do_sys_clone3 (101 samples, 0.03%)</title><rect x="51.1566%" y="773" width="0.0332%" height="15" fill="rgb(226,102,5)" fg:x="155517" fg:w="101"/><text x="51.4066%" y="783.50"></text></g><g><title>kernel_clone (99 samples, 0.03%)</title><rect x="51.1572%" y="757" width="0.0326%" height="15" fill="rgb(223,34,3)" fg:x="155519" fg:w="99"/><text x="51.4072%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.03%)</title><rect x="51.1566%" y="821" width="0.0336%" height="15" fill="rgb(221,81,38)" fg:x="155517" fg:w="102"/><text x="51.4066%" y="831.50"></text></g><g><title>do_syscall_64 (102 samples, 0.03%)</title><rect x="51.1566%" y="805" width="0.0336%" height="15" fill="rgb(236,219,28)" fg:x="155517" fg:w="102"/><text x="51.4066%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.01%)</title><rect x="51.1990%" y="565" width="0.0118%" height="15" fill="rgb(213,200,14)" fg:x="155646" fg:w="36"/><text x="51.4490%" y="575.50"></text></g><g><title>x86_pmu_enable (36 samples, 0.01%)</title><rect x="51.1990%" y="549" width="0.0118%" height="15" fill="rgb(240,33,19)" fg:x="155646" fg:w="36"/><text x="51.4490%" y="559.50"></text></g><g><title>intel_pmu_enable_all (36 samples, 0.01%)</title><rect x="51.1990%" y="533" width="0.0118%" height="15" fill="rgb(233,113,27)" fg:x="155646" fg:w="36"/><text x="51.4490%" y="543.50"></text></g><g><title>native_write_msr (36 samples, 0.01%)</title><rect x="51.1990%" y="517" width="0.0118%" height="15" fill="rgb(220,221,18)" fg:x="155646" fg:w="36"/><text x="51.4490%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (38 samples, 0.01%)</title><rect x="51.1990%" y="581" width="0.0125%" height="15" fill="rgb(238,92,8)" fg:x="155646" fg:w="38"/><text x="51.4490%" y="591.50"></text></g><g><title>futex_wait_queue_me (46 samples, 0.02%)</title><rect x="51.1980%" y="629" width="0.0151%" height="15" fill="rgb(222,164,16)" fg:x="155643" fg:w="46"/><text x="51.4480%" y="639.50"></text></g><g><title>schedule (46 samples, 0.02%)</title><rect x="51.1980%" y="613" width="0.0151%" height="15" fill="rgb(241,119,3)" fg:x="155643" fg:w="46"/><text x="51.4480%" y="623.50"></text></g><g><title>__schedule (46 samples, 0.02%)</title><rect x="51.1980%" y="597" width="0.0151%" height="15" fill="rgb(241,44,8)" fg:x="155643" fg:w="46"/><text x="51.4480%" y="607.50"></text></g><g><title>__x64_sys_futex (53 samples, 0.02%)</title><rect x="51.1970%" y="677" width="0.0174%" height="15" fill="rgb(230,36,40)" fg:x="155640" fg:w="53"/><text x="51.4470%" y="687.50"></text></g><g><title>do_futex (52 samples, 0.02%)</title><rect x="51.1974%" y="661" width="0.0171%" height="15" fill="rgb(243,16,36)" fg:x="155641" fg:w="52"/><text x="51.4474%" y="671.50"></text></g><g><title>futex_wait (52 samples, 0.02%)</title><rect x="51.1974%" y="645" width="0.0171%" height="15" fill="rgb(231,4,26)" fg:x="155641" fg:w="52"/><text x="51.4474%" y="655.50"></text></g><g><title>__GI___lll_lock_wait (62 samples, 0.02%)</title><rect x="51.1954%" y="741" width="0.0204%" height="15" fill="rgb(240,9,31)" fg:x="155635" fg:w="62"/><text x="51.4454%" y="751.50"></text></g><g><title>futex_wait (59 samples, 0.02%)</title><rect x="51.1964%" y="725" width="0.0194%" height="15" fill="rgb(207,173,15)" fg:x="155638" fg:w="59"/><text x="51.4464%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.02%)</title><rect x="51.1970%" y="709" width="0.0187%" height="15" fill="rgb(224,192,53)" fg:x="155640" fg:w="57"/><text x="51.4470%" y="719.50"></text></g><g><title>do_syscall_64 (57 samples, 0.02%)</title><rect x="51.1970%" y="693" width="0.0187%" height="15" fill="rgb(223,67,28)" fg:x="155640" fg:w="57"/><text x="51.4470%" y="703.50"></text></g><g><title>___pthread_mutex_lock (67 samples, 0.02%)</title><rect x="51.1941%" y="773" width="0.0220%" height="15" fill="rgb(211,20,47)" fg:x="155631" fg:w="67"/><text x="51.4441%" y="783.50"></text></g><g><title>lll_mutex_lock_optimized (66 samples, 0.02%)</title><rect x="51.1944%" y="757" width="0.0217%" height="15" fill="rgb(240,228,2)" fg:x="155632" fg:w="66"/><text x="51.4444%" y="767.50"></text></g><g><title>futex_wake (35 samples, 0.01%)</title><rect x="51.2201%" y="645" width="0.0115%" height="15" fill="rgb(248,151,12)" fg:x="155710" fg:w="35"/><text x="51.4701%" y="655.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.01%)</title><rect x="51.2194%" y="677" width="0.0128%" height="15" fill="rgb(244,8,39)" fg:x="155708" fg:w="39"/><text x="51.4694%" y="687.50"></text></g><g><title>do_futex (39 samples, 0.01%)</title><rect x="51.2194%" y="661" width="0.0128%" height="15" fill="rgb(222,26,8)" fg:x="155708" fg:w="39"/><text x="51.4694%" y="671.50"></text></g><g><title>___pthread_mutex_unlock (61 samples, 0.02%)</title><rect x="51.2161%" y="773" width="0.0201%" height="15" fill="rgb(213,106,44)" fg:x="155698" fg:w="61"/><text x="51.4661%" y="783.50"></text></g><g><title>__GI___pthread_mutex_unlock_usercnt (61 samples, 0.02%)</title><rect x="51.2161%" y="757" width="0.0201%" height="15" fill="rgb(214,129,20)" fg:x="155698" fg:w="61"/><text x="51.4661%" y="767.50"></text></g><g><title>lll_mutex_unlock_optimized (58 samples, 0.02%)</title><rect x="51.2171%" y="741" width="0.0191%" height="15" fill="rgb(212,32,13)" fg:x="155701" fg:w="58"/><text x="51.4671%" y="751.50"></text></g><g><title>__GI___lll_lock_wake (55 samples, 0.02%)</title><rect x="51.2181%" y="725" width="0.0181%" height="15" fill="rgb(208,168,33)" fg:x="155704" fg:w="55"/><text x="51.4681%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.02%)</title><rect x="51.2187%" y="709" width="0.0174%" height="15" fill="rgb(231,207,8)" fg:x="155706" fg:w="53"/><text x="51.4687%" y="719.50"></text></g><g><title>do_syscall_64 (52 samples, 0.02%)</title><rect x="51.2191%" y="693" width="0.0171%" height="15" fill="rgb(235,219,23)" fg:x="155707" fg:w="52"/><text x="51.4691%" y="703.50"></text></g><g><title>operator new (40 samples, 0.01%)</title><rect x="51.2424%" y="757" width="0.0132%" height="15" fill="rgb(226,216,26)" fg:x="155778" fg:w="40"/><text x="51.4924%" y="767.50"></text></g><g><title>__GI___libc_malloc (38 samples, 0.01%)</title><rect x="51.2431%" y="741" width="0.0125%" height="15" fill="rgb(239,137,16)" fg:x="155780" fg:w="38"/><text x="51.4931%" y="751.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (87 samples, 0.03%)</title><rect x="51.2368%" y="773" width="0.0286%" height="15" fill="rgb(207,12,36)" fg:x="155761" fg:w="87"/><text x="51.4868%" y="783.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_invoke (72 samples, 0.02%)</title><rect x="51.2743%" y="757" width="0.0237%" height="15" fill="rgb(210,214,24)" fg:x="155875" fg:w="72"/><text x="51.5243%" y="767.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;llvm::parallelForEach&lt;lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1}&gt;(lld::elf::Symbol* const*, lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1})::{lambda(unsigned long)#1}&gt; (57 samples, 0.02%)</title><rect x="51.2793%" y="741" width="0.0187%" height="15" fill="rgb(206,56,30)" fg:x="155890" fg:w="57"/><text x="51.5293%" y="751.50"></text></g><g><title>lld::elf::computeIsPreemptible (44 samples, 0.01%)</title><rect x="51.2835%" y="725" width="0.0145%" height="15" fill="rgb(228,143,26)" fg:x="155903" fg:w="44"/><text x="51.5335%" y="735.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_invoke (101 samples, 0.03%)</title><rect x="51.2655%" y="773" width="0.0332%" height="15" fill="rgb(216,218,46)" fg:x="155848" fg:w="101"/><text x="51.5155%" y="783.50"></text></g><g><title>dequeue_task_fair (35 samples, 0.01%)</title><rect x="51.3220%" y="533" width="0.0115%" height="15" fill="rgb(206,6,19)" fg:x="156020" fg:w="35"/><text x="51.5720%" y="543.50"></text></g><g><title>dequeue_task (41 samples, 0.01%)</title><rect x="51.3207%" y="549" width="0.0135%" height="15" fill="rgb(239,177,51)" fg:x="156016" fg:w="41"/><text x="51.5707%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (430 samples, 0.14%)</title><rect x="51.3362%" y="533" width="0.1414%" height="15" fill="rgb(216,55,25)" fg:x="156063" fg:w="430"/><text x="51.5862%" y="543.50"></text></g><g><title>x86_pmu_enable (427 samples, 0.14%)</title><rect x="51.3372%" y="517" width="0.1405%" height="15" fill="rgb(231,163,29)" fg:x="156066" fg:w="427"/><text x="51.5872%" y="527.50"></text></g><g><title>intel_pmu_enable_all (425 samples, 0.14%)</title><rect x="51.3378%" y="501" width="0.1398%" height="15" fill="rgb(232,149,50)" fg:x="156068" fg:w="425"/><text x="51.5878%" y="511.50"></text></g><g><title>native_write_msr (423 samples, 0.14%)</title><rect x="51.3385%" y="485" width="0.1391%" height="15" fill="rgb(223,142,48)" fg:x="156070" fg:w="423"/><text x="51.5885%" y="495.50"></text></g><g><title>finish_task_switch.isra.0 (456 samples, 0.15%)</title><rect x="51.3342%" y="549" width="0.1500%" height="15" fill="rgb(245,83,23)" fg:x="156057" fg:w="456"/><text x="51.5842%" y="559.50"></text></g><g><title>psi_task_switch (32 samples, 0.01%)</title><rect x="51.4997%" y="549" width="0.0105%" height="15" fill="rgb(224,63,2)" fg:x="156560" fg:w="32"/><text x="51.7497%" y="559.50"></text></g><g><title>__schedule (601 samples, 0.20%)</title><rect x="51.3161%" y="565" width="0.1977%" height="15" fill="rgb(218,65,53)" fg:x="156002" fg:w="601"/><text x="51.5661%" y="575.50"></text></g><g><title>futex_wait_queue_me (618 samples, 0.20%)</title><rect x="51.3112%" y="597" width="0.2033%" height="15" fill="rgb(221,84,29)" fg:x="155987" fg:w="618"/><text x="51.5612%" y="607.50"></text></g><g><title>schedule (605 samples, 0.20%)</title><rect x="51.3155%" y="581" width="0.1990%" height="15" fill="rgb(234,0,32)" fg:x="156000" fg:w="605"/><text x="51.5655%" y="591.50"></text></g><g><title>__x64_sys_futex (641 samples, 0.21%)</title><rect x="51.3066%" y="645" width="0.2109%" height="15" fill="rgb(206,20,16)" fg:x="155973" fg:w="641"/><text x="51.5566%" y="655.50"></text></g><g><title>do_futex (635 samples, 0.21%)</title><rect x="51.3085%" y="629" width="0.2089%" height="15" fill="rgb(244,172,18)" fg:x="155979" fg:w="635"/><text x="51.5585%" y="639.50"></text></g><g><title>futex_wait (634 samples, 0.21%)</title><rect x="51.3089%" y="613" width="0.2086%" height="15" fill="rgb(254,133,1)" fg:x="155980" fg:w="634"/><text x="51.5589%" y="623.50"></text></g><g><title>exit_to_user_mode_prepare (39 samples, 0.01%)</title><rect x="51.5181%" y="629" width="0.0128%" height="15" fill="rgb(222,206,41)" fg:x="156616" fg:w="39"/><text x="51.7681%" y="639.50"></text></g><g><title>do_syscall_64 (684 samples, 0.22%)</title><rect x="51.3062%" y="661" width="0.2250%" height="15" fill="rgb(212,3,42)" fg:x="155972" fg:w="684"/><text x="51.5562%" y="671.50"></text></g><g><title>syscall_exit_to_user_mode (42 samples, 0.01%)</title><rect x="51.5174%" y="645" width="0.0138%" height="15" fill="rgb(241,11,4)" fg:x="156614" fg:w="42"/><text x="51.7674%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (687 samples, 0.23%)</title><rect x="51.3056%" y="677" width="0.2260%" height="15" fill="rgb(205,19,26)" fg:x="155970" fg:w="687"/><text x="51.5556%" y="687.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (709 samples, 0.23%)</title><rect x="51.3000%" y="725" width="0.2332%" height="15" fill="rgb(210,179,32)" fg:x="155953" fg:w="709"/><text x="51.5500%" y="735.50"></text></g><g><title>__futex_abstimed_wait_common (709 samples, 0.23%)</title><rect x="51.3000%" y="709" width="0.2332%" height="15" fill="rgb(227,116,49)" fg:x="155953" fg:w="709"/><text x="51.5500%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common64 (709 samples, 0.23%)</title><rect x="51.3000%" y="693" width="0.2332%" height="15" fill="rgb(211,146,6)" fg:x="155953" fg:w="709"/><text x="51.5500%" y="703.50"></text></g><g><title>finish_task_switch.isra.0 (39 samples, 0.01%)</title><rect x="51.5506%" y="581" width="0.0128%" height="15" fill="rgb(219,44,39)" fg:x="156715" fg:w="39"/><text x="51.8006%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.01%)</title><rect x="51.5513%" y="565" width="0.0122%" height="15" fill="rgb(234,128,11)" fg:x="156717" fg:w="37"/><text x="51.8013%" y="575.50"></text></g><g><title>x86_pmu_enable (37 samples, 0.01%)</title><rect x="51.5513%" y="549" width="0.0122%" height="15" fill="rgb(220,183,53)" fg:x="156717" fg:w="37"/><text x="51.8013%" y="559.50"></text></g><g><title>intel_pmu_enable_all (37 samples, 0.01%)</title><rect x="51.5513%" y="533" width="0.0122%" height="15" fill="rgb(213,219,32)" fg:x="156717" fg:w="37"/><text x="51.8013%" y="543.50"></text></g><g><title>native_write_msr (37 samples, 0.01%)</title><rect x="51.5513%" y="517" width="0.0122%" height="15" fill="rgb(232,156,16)" fg:x="156717" fg:w="37"/><text x="51.8013%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.02%)</title><rect x="51.5405%" y="693" width="0.0237%" height="15" fill="rgb(246,135,34)" fg:x="156684" fg:w="72"/><text x="51.7905%" y="703.50"></text></g><g><title>do_syscall_64 (72 samples, 0.02%)</title><rect x="51.5405%" y="677" width="0.0237%" height="15" fill="rgb(241,99,0)" fg:x="156684" fg:w="72"/><text x="51.7905%" y="687.50"></text></g><g><title>syscall_exit_to_user_mode (45 samples, 0.01%)</title><rect x="51.5493%" y="661" width="0.0148%" height="15" fill="rgb(222,103,45)" fg:x="156711" fg:w="45"/><text x="51.7993%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (45 samples, 0.01%)</title><rect x="51.5493%" y="645" width="0.0148%" height="15" fill="rgb(212,57,4)" fg:x="156711" fg:w="45"/><text x="51.7993%" y="655.50"></text></g><g><title>exit_to_user_mode_loop (45 samples, 0.01%)</title><rect x="51.5493%" y="629" width="0.0148%" height="15" fill="rgb(215,68,47)" fg:x="156711" fg:w="45"/><text x="51.7993%" y="639.50"></text></g><g><title>schedule (41 samples, 0.01%)</title><rect x="51.5506%" y="613" width="0.0135%" height="15" fill="rgb(230,84,2)" fg:x="156715" fg:w="41"/><text x="51.8006%" y="623.50"></text></g><g><title>__schedule (41 samples, 0.01%)</title><rect x="51.5506%" y="597" width="0.0135%" height="15" fill="rgb(220,102,14)" fg:x="156715" fg:w="41"/><text x="51.8006%" y="607.50"></text></g><g><title>__condvar_dec_grefs (77 samples, 0.03%)</title><rect x="51.5391%" y="725" width="0.0253%" height="15" fill="rgb(240,10,32)" fg:x="156680" fg:w="77"/><text x="51.7891%" y="735.50"></text></g><g><title>futex_wake (74 samples, 0.02%)</title><rect x="51.5401%" y="709" width="0.0243%" height="15" fill="rgb(215,47,27)" fg:x="156683" fg:w="74"/><text x="51.7901%" y="719.50"></text></g><g><title>std::condition_variable::wait (830 samples, 0.27%)</title><rect x="51.2987%" y="773" width="0.2730%" height="15" fill="rgb(233,188,43)" fg:x="155949" fg:w="830"/><text x="51.5487%" y="783.50"></text></g><g><title>___pthread_cond_wait (827 samples, 0.27%)</title><rect x="51.2997%" y="757" width="0.2720%" height="15" fill="rgb(253,190,1)" fg:x="155952" fg:w="827"/><text x="51.5497%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (827 samples, 0.27%)</title><rect x="51.2997%" y="741" width="0.2720%" height="15" fill="rgb(206,114,52)" fg:x="155952" fg:w="827"/><text x="51.5497%" y="751.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (1,159 samples, 0.38%)</title><rect x="51.1911%" y="789" width="0.3812%" height="15" fill="rgb(233,120,37)" fg:x="155622" fg:w="1159"/><text x="51.4411%" y="799.50"></text></g><g><title>___pthread_mutex_lock (34 samples, 0.01%)</title><rect x="51.5737%" y="757" width="0.0112%" height="15" fill="rgb(214,52,39)" fg:x="156785" fg:w="34"/><text x="51.8237%" y="767.50"></text></g><g><title>lll_mutex_lock_optimized (31 samples, 0.01%)</title><rect x="51.5747%" y="741" width="0.0102%" height="15" fill="rgb(223,80,29)" fg:x="156788" fg:w="31"/><text x="51.8247%" y="751.50"></text></g><g><title>___pthread_mutex_unlock (38 samples, 0.01%)</title><rect x="51.5849%" y="757" width="0.0125%" height="15" fill="rgb(230,101,40)" fg:x="156819" fg:w="38"/><text x="51.8349%" y="767.50"></text></g><g><title>__GI___pthread_mutex_unlock_usercnt (38 samples, 0.01%)</title><rect x="51.5849%" y="741" width="0.0125%" height="15" fill="rgb(219,211,8)" fg:x="156819" fg:w="38"/><text x="51.8349%" y="751.50"></text></g><g><title>lll_mutex_unlock_optimized (36 samples, 0.01%)</title><rect x="51.5855%" y="725" width="0.0118%" height="15" fill="rgb(252,126,28)" fg:x="156821" fg:w="36"/><text x="51.8355%" y="735.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_invoke (51 samples, 0.02%)</title><rect x="51.6072%" y="757" width="0.0168%" height="15" fill="rgb(215,56,38)" fg:x="156887" fg:w="51"/><text x="51.8572%" y="767.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_invoke (37 samples, 0.01%)</title><rect x="51.6118%" y="741" width="0.0122%" height="15" fill="rgb(249,55,44)" fg:x="156901" fg:w="37"/><text x="51.8618%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (103 samples, 0.03%)</title><rect x="51.6339%" y="517" width="0.0339%" height="15" fill="rgb(220,221,32)" fg:x="156968" fg:w="103"/><text x="51.8839%" y="527.50"></text></g><g><title>x86_pmu_enable (101 samples, 0.03%)</title><rect x="51.6345%" y="501" width="0.0332%" height="15" fill="rgb(212,216,41)" fg:x="156970" fg:w="101"/><text x="51.8845%" y="511.50"></text></g><g><title>intel_pmu_enable_all (99 samples, 0.03%)</title><rect x="51.6352%" y="485" width="0.0326%" height="15" fill="rgb(228,213,43)" fg:x="156972" fg:w="99"/><text x="51.8852%" y="495.50"></text></g><g><title>native_write_msr (99 samples, 0.03%)</title><rect x="51.6352%" y="469" width="0.0326%" height="15" fill="rgb(211,31,26)" fg:x="156972" fg:w="99"/><text x="51.8852%" y="479.50"></text></g><g><title>finish_task_switch.isra.0 (110 samples, 0.04%)</title><rect x="51.6326%" y="533" width="0.0362%" height="15" fill="rgb(229,202,19)" fg:x="156964" fg:w="110"/><text x="51.8826%" y="543.50"></text></g><g><title>futex_wait_queue_me (140 samples, 0.05%)</title><rect x="51.6283%" y="581" width="0.0461%" height="15" fill="rgb(229,105,46)" fg:x="156951" fg:w="140"/><text x="51.8783%" y="591.50"></text></g><g><title>schedule (138 samples, 0.05%)</title><rect x="51.6289%" y="565" width="0.0454%" height="15" fill="rgb(235,108,1)" fg:x="156953" fg:w="138"/><text x="51.8789%" y="575.50"></text></g><g><title>__schedule (138 samples, 0.05%)</title><rect x="51.6289%" y="549" width="0.0454%" height="15" fill="rgb(245,111,35)" fg:x="156953" fg:w="138"/><text x="51.8789%" y="559.50"></text></g><g><title>__x64_sys_futex (147 samples, 0.05%)</title><rect x="51.6263%" y="629" width="0.0484%" height="15" fill="rgb(219,185,31)" fg:x="156945" fg:w="147"/><text x="51.8763%" y="639.50"></text></g><g><title>do_futex (146 samples, 0.05%)</title><rect x="51.6266%" y="613" width="0.0480%" height="15" fill="rgb(214,4,43)" fg:x="156946" fg:w="146"/><text x="51.8766%" y="623.50"></text></g><g><title>futex_wait (146 samples, 0.05%)</title><rect x="51.6266%" y="597" width="0.0480%" height="15" fill="rgb(235,227,40)" fg:x="156946" fg:w="146"/><text x="51.8766%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (156 samples, 0.05%)</title><rect x="51.6263%" y="661" width="0.0513%" height="15" fill="rgb(230,88,30)" fg:x="156945" fg:w="156"/><text x="51.8763%" y="671.50"></text></g><g><title>do_syscall_64 (156 samples, 0.05%)</title><rect x="51.6263%" y="645" width="0.0513%" height="15" fill="rgb(216,217,1)" fg:x="156945" fg:w="156"/><text x="51.8763%" y="655.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (164 samples, 0.05%)</title><rect x="51.6253%" y="709" width="0.0539%" height="15" fill="rgb(248,139,50)" fg:x="156942" fg:w="164"/><text x="51.8753%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common (164 samples, 0.05%)</title><rect x="51.6253%" y="693" width="0.0539%" height="15" fill="rgb(233,1,21)" fg:x="156942" fg:w="164"/><text x="51.8753%" y="703.50"></text></g><g><title>__futex_abstimed_wait_common64 (164 samples, 0.05%)</title><rect x="51.6253%" y="677" width="0.0539%" height="15" fill="rgb(215,183,12)" fg:x="156942" fg:w="164"/><text x="51.8753%" y="687.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (337 samples, 0.11%)</title><rect x="51.5727%" y="773" width="0.1109%" height="15" fill="rgb(229,104,42)" fg:x="156782" fg:w="337"/><text x="51.8227%" y="783.50"></text></g><g><title>std::condition_variable::wait (181 samples, 0.06%)</title><rect x="51.6240%" y="757" width="0.0595%" height="15" fill="rgb(243,34,48)" fg:x="156938" fg:w="181"/><text x="51.8740%" y="767.50"></text></g><g><title>___pthread_cond_wait (180 samples, 0.06%)</title><rect x="51.6243%" y="741" width="0.0592%" height="15" fill="rgb(239,11,44)" fg:x="156939" fg:w="180"/><text x="51.8743%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (180 samples, 0.06%)</title><rect x="51.6243%" y="725" width="0.0592%" height="15" fill="rgb(231,98,35)" fg:x="156939" fg:w="180"/><text x="51.8743%" y="735.50"></text></g><g><title>[libstdc++.so.6.0.30] (1,551 samples, 0.51%)</title><rect x="51.1901%" y="805" width="0.5102%" height="15" fill="rgb(233,28,25)" fg:x="155619" fg:w="1551"/><text x="51.4401%" y="815.50"></text></g><g><title>std::thread::_State_impl&lt;std::thread::_Invoker&lt;std::tuple&lt;llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::ThreadPoolExecutor(llvm::ThreadPoolStrategy)::{lambda()#1}&gt; &gt; &gt;::_M_run (389 samples, 0.13%)</title><rect x="51.5724%" y="789" width="0.1280%" height="15" fill="rgb(234,123,11)" fg:x="156781" fg:w="389"/><text x="51.8224%" y="799.50"></text></g><g><title>std::thread::_M_start_thread (38 samples, 0.01%)</title><rect x="51.6878%" y="773" width="0.0125%" height="15" fill="rgb(220,69,3)" fg:x="157132" fg:w="38"/><text x="51.9378%" y="783.50"></text></g><g><title>__pthread_create_2_1 (38 samples, 0.01%)</title><rect x="51.6878%" y="757" width="0.0125%" height="15" fill="rgb(214,64,36)" fg:x="157132" fg:w="38"/><text x="51.9378%" y="767.50"></text></g><g><title>allocate_stack (38 samples, 0.01%)</title><rect x="51.6878%" y="741" width="0.0125%" height="15" fill="rgb(211,138,32)" fg:x="157132" fg:w="38"/><text x="51.9378%" y="751.50"></text></g><g><title>__clone3 (1,681 samples, 0.55%)</title><rect x="51.1559%" y="837" width="0.5530%" height="15" fill="rgb(213,118,47)" fg:x="155515" fg:w="1681"/><text x="51.4059%" y="847.50"></text></g><g><title>start_thread (1,577 samples, 0.52%)</title><rect x="51.1901%" y="821" width="0.5187%" height="15" fill="rgb(243,124,49)" fg:x="155619" fg:w="1577"/><text x="51.4401%" y="831.50"></text></g><g><title>llvm::initializeAAResultsWrapperPassPass (34 samples, 0.01%)</title><rect x="51.9164%" y="613" width="0.0112%" height="15" fill="rgb(221,30,28)" fg:x="157827" fg:w="34"/><text x="52.1664%" y="623.50"></text></g><g><title>__pthread_once_slow (33 samples, 0.01%)</title><rect x="51.9168%" y="597" width="0.0109%" height="15" fill="rgb(246,37,13)" fg:x="157828" fg:w="33"/><text x="52.1668%" y="607.50"></text></g><g><title>initializeAAResultsWrapperPassPassOnce (32 samples, 0.01%)</title><rect x="51.9171%" y="581" width="0.0105%" height="15" fill="rgb(249,66,14)" fg:x="157829" fg:w="32"/><text x="52.1671%" y="591.50"></text></g><g><title>llvm::initializeDependenceInfoPass (39 samples, 0.01%)</title><rect x="51.9161%" y="709" width="0.0128%" height="15" fill="rgb(213,166,5)" fg:x="157826" fg:w="39"/><text x="52.1661%" y="719.50"></text></g><g><title>__pthread_once_slow (38 samples, 0.01%)</title><rect x="51.9164%" y="693" width="0.0125%" height="15" fill="rgb(221,66,24)" fg:x="157827" fg:w="38"/><text x="52.1664%" y="703.50"></text></g><g><title>initializeDependenceInfoPassOnce (38 samples, 0.01%)</title><rect x="51.9164%" y="677" width="0.0125%" height="15" fill="rgb(210,132,17)" fg:x="157827" fg:w="38"/><text x="52.1664%" y="687.50"></text></g><g><title>llvm::initializeScopInfoRegionPassPass (38 samples, 0.01%)</title><rect x="51.9164%" y="661" width="0.0125%" height="15" fill="rgb(243,202,5)" fg:x="157827" fg:w="38"/><text x="52.1664%" y="671.50"></text></g><g><title>__pthread_once_slow (38 samples, 0.01%)</title><rect x="51.9164%" y="645" width="0.0125%" height="15" fill="rgb(233,70,48)" fg:x="157827" fg:w="38"/><text x="52.1664%" y="655.50"></text></g><g><title>initializeScopInfoRegionPassPassOnce (38 samples, 0.01%)</title><rect x="51.9164%" y="629" width="0.0125%" height="15" fill="rgb(238,41,26)" fg:x="157827" fg:w="38"/><text x="52.1664%" y="639.50"></text></g><g><title>__pthread_once_slow (40 samples, 0.01%)</title><rect x="51.9161%" y="741" width="0.0132%" height="15" fill="rgb(241,19,31)" fg:x="157826" fg:w="40"/><text x="52.1661%" y="751.50"></text></g><g><title>initializeCodeGenerationPassOnce (40 samples, 0.01%)</title><rect x="51.9161%" y="725" width="0.0132%" height="15" fill="rgb(214,76,10)" fg:x="157826" fg:w="40"/><text x="52.1661%" y="735.50"></text></g><g><title>llvm::initializeCodeGenerationPass (42 samples, 0.01%)</title><rect x="51.9161%" y="757" width="0.0138%" height="15" fill="rgb(254,202,22)" fg:x="157826" fg:w="42"/><text x="52.1661%" y="767.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (61 samples, 0.02%)</title><rect x="51.9125%" y="789" width="0.0201%" height="15" fill="rgb(214,72,24)" fg:x="157815" fg:w="61"/><text x="52.1625%" y="799.50"></text></g><g><title>polly::initializePollyPasses (50 samples, 0.02%)</title><rect x="51.9161%" y="773" width="0.0164%" height="15" fill="rgb(221,92,46)" fg:x="157826" fg:w="50"/><text x="52.1661%" y="783.50"></text></g><g><title>__libc_csu_init (832 samples, 0.27%)</title><rect x="51.7154%" y="805" width="0.2737%" height="15" fill="rgb(246,13,50)" fg:x="157216" fg:w="832"/><text x="51.9654%" y="815.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (34 samples, 0.01%)</title><rect x="51.9977%" y="709" width="0.0112%" height="15" fill="rgb(240,165,38)" fg:x="158074" fg:w="34"/><text x="52.2477%" y="719.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (49 samples, 0.02%)</title><rect x="52.0168%" y="661" width="0.0161%" height="15" fill="rgb(241,24,51)" fg:x="158132" fg:w="49"/><text x="52.2668%" y="671.50"></text></g><g><title>llvm::sys::fs::equivalent (31 samples, 0.01%)</title><rect x="52.0408%" y="661" width="0.0102%" height="15" fill="rgb(227,51,44)" fg:x="158205" fg:w="31"/><text x="52.2908%" y="671.50"></text></g><g><title>lld::elf::readLinkerScript (107 samples, 0.04%)</title><rect x="52.0161%" y="677" width="0.0352%" height="15" fill="rgb(231,121,3)" fg:x="158130" fg:w="107"/><text x="52.2661%" y="687.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (138 samples, 0.05%)</title><rect x="52.0089%" y="693" width="0.0454%" height="15" fill="rgb(245,3,41)" fg:x="158108" fg:w="138"/><text x="52.2589%" y="703.50"></text></g><g><title>__GI___access (48 samples, 0.02%)</title><rect x="52.0559%" y="629" width="0.0158%" height="15" fill="rgb(214,13,26)" fg:x="158251" fg:w="48"/><text x="52.3059%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.01%)</title><rect x="52.0569%" y="613" width="0.0148%" height="15" fill="rgb(252,75,11)" fg:x="158254" fg:w="45"/><text x="52.3069%" y="623.50"></text></g><g><title>do_syscall_64 (45 samples, 0.01%)</title><rect x="52.0569%" y="597" width="0.0148%" height="15" fill="rgb(218,226,17)" fg:x="158254" fg:w="45"/><text x="52.3069%" y="607.50"></text></g><g><title>__x64_sys_access (45 samples, 0.01%)</title><rect x="52.0569%" y="581" width="0.0148%" height="15" fill="rgb(248,89,38)" fg:x="158254" fg:w="45"/><text x="52.3069%" y="591.50"></text></g><g><title>do_faccessat (45 samples, 0.01%)</title><rect x="52.0569%" y="565" width="0.0148%" height="15" fill="rgb(237,73,46)" fg:x="158254" fg:w="45"/><text x="52.3069%" y="575.50"></text></g><g><title>llvm::sys::fs::access (53 samples, 0.02%)</title><rect x="52.0556%" y="645" width="0.0174%" height="15" fill="rgb(242,78,33)" fg:x="158250" fg:w="53"/><text x="52.3056%" y="655.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (238 samples, 0.08%)</title><rect x="51.9970%" y="725" width="0.0783%" height="15" fill="rgb(235,60,3)" fg:x="158072" fg:w="238"/><text x="52.2470%" y="735.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (202 samples, 0.07%)</title><rect x="52.0089%" y="709" width="0.0664%" height="15" fill="rgb(216,172,19)" fg:x="158108" fg:w="202"/><text x="52.2589%" y="719.50"></text></g><g><title>lld::elf::searchLibrary[abi:cxx11] (64 samples, 0.02%)</title><rect x="52.0543%" y="693" width="0.0211%" height="15" fill="rgb(227,6,42)" fg:x="158246" fg:w="64"/><text x="52.3043%" y="703.50"></text></g><g><title>lld::elf::searchLibraryBaseName[abi:cxx11] (60 samples, 0.02%)</title><rect x="52.0556%" y="677" width="0.0197%" height="15" fill="rgb(223,207,42)" fg:x="158250" fg:w="60"/><text x="52.3056%" y="687.50"></text></g><g><title>findFile[abi:cxx11] (60 samples, 0.02%)</title><rect x="52.0556%" y="661" width="0.0197%" height="15" fill="rgb(246,138,30)" fg:x="158250" fg:w="60"/><text x="52.3056%" y="671.50"></text></g><g><title>lld::make&lt;lld::elf::SymbolUnion&gt; (35 samples, 0.01%)</title><rect x="52.1076%" y="661" width="0.0115%" height="15" fill="rgb(251,199,47)" fg:x="158408" fg:w="35"/><text x="52.3576%" y="671.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::InsertIntoBucketImpl&lt;llvm::CachedHashStringRef&gt; (91 samples, 0.03%)</title><rect x="52.1191%" y="661" width="0.0299%" height="15" fill="rgb(228,218,44)" fg:x="158443" fg:w="91"/><text x="52.3691%" y="671.50"></text></g><g><title>llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::grow (86 samples, 0.03%)</title><rect x="52.1207%" y="645" width="0.0283%" height="15" fill="rgb(220,68,6)" fg:x="158448" fg:w="86"/><text x="52.3707%" y="655.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (45 samples, 0.01%)</title><rect x="52.1490%" y="661" width="0.0148%" height="15" fill="rgb(240,60,26)" fg:x="158534" fg:w="45"/><text x="52.3990%" y="671.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (265 samples, 0.09%)</title><rect x="52.0898%" y="693" width="0.0872%" height="15" fill="rgb(211,200,19)" fg:x="158354" fg:w="265"/><text x="52.3398%" y="703.50"></text></g><g><title>lld::elf::SymbolTable::insert (242 samples, 0.08%)</title><rect x="52.0974%" y="677" width="0.0796%" height="15" fill="rgb(242,145,30)" fg:x="158377" fg:w="242"/><text x="52.3474%" y="687.50"></text></g><g><title>lld::elf::ArchiveFile::parse (322 samples, 0.11%)</title><rect x="52.0865%" y="709" width="0.1059%" height="15" fill="rgb(225,64,13)" fg:x="158344" fg:w="322"/><text x="52.3365%" y="719.50"></text></g><g><title>lld::elf::OutputSection::finalizeInputSections (40 samples, 0.01%)</title><rect x="52.1997%" y="709" width="0.0132%" height="15" fill="rgb(218,103,35)" fg:x="158688" fg:w="40"/><text x="52.4497%" y="719.50"></text></g><g><title>lld::elf::MergeNoTailSection::finalizeContents (39 samples, 0.01%)</title><rect x="52.2000%" y="693" width="0.0128%" height="15" fill="rgb(216,93,46)" fg:x="158689" fg:w="39"/><text x="52.4500%" y="703.50"></text></g><g><title>llvm::parallelForEachN (36 samples, 0.01%)</title><rect x="52.2010%" y="677" width="0.0118%" height="15" fill="rgb(225,159,27)" fg:x="158692" fg:w="36"/><text x="52.4510%" y="687.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (76 samples, 0.02%)</title><rect x="52.2187%" y="693" width="0.0250%" height="15" fill="rgb(225,204,11)" fg:x="158746" fg:w="76"/><text x="52.4687%" y="703.50"></text></g><g><title>lld::elf::SymbolTable::find (90 samples, 0.03%)</title><rect x="52.2174%" y="709" width="0.0296%" height="15" fill="rgb(205,56,4)" fg:x="158742" fg:w="90"/><text x="52.4674%" y="719.50"></text></g><g><title>lld::make&lt;lld::elf::SymbolUnion&gt; (77 samples, 0.03%)</title><rect x="52.3227%" y="645" width="0.0253%" height="15" fill="rgb(206,6,35)" fg:x="159062" fg:w="77"/><text x="52.5727%" y="655.50"></text></g><g><title>operator new (39 samples, 0.01%)</title><rect x="52.3352%" y="629" width="0.0128%" height="15" fill="rgb(247,73,52)" fg:x="159100" fg:w="39"/><text x="52.5852%" y="639.50"></text></g><g><title>__GI___libc_malloc (39 samples, 0.01%)</title><rect x="52.3352%" y="613" width="0.0128%" height="15" fill="rgb(246,97,4)" fg:x="159100" fg:w="39"/><text x="52.5852%" y="623.50"></text></g><g><title>_int_malloc (39 samples, 0.01%)</title><rect x="52.3352%" y="597" width="0.0128%" height="15" fill="rgb(212,37,15)" fg:x="159100" fg:w="39"/><text x="52.5852%" y="607.50"></text></g><g><title>do_anonymous_page (34 samples, 0.01%)</title><rect x="52.3658%" y="517" width="0.0112%" height="15" fill="rgb(208,130,40)" fg:x="159193" fg:w="34"/><text x="52.6158%" y="527.50"></text></g><g><title>__handle_mm_fault (39 samples, 0.01%)</title><rect x="52.3645%" y="549" width="0.0128%" height="15" fill="rgb(236,55,29)" fg:x="159189" fg:w="39"/><text x="52.6145%" y="559.50"></text></g><g><title>handle_pte_fault (37 samples, 0.01%)</title><rect x="52.3651%" y="533" width="0.0122%" height="15" fill="rgb(209,156,45)" fg:x="159191" fg:w="37"/><text x="52.6151%" y="543.50"></text></g><g><title>handle_mm_fault (41 samples, 0.01%)</title><rect x="52.3641%" y="565" width="0.0135%" height="15" fill="rgb(249,107,4)" fg:x="159188" fg:w="41"/><text x="52.6141%" y="575.50"></text></g><g><title>do_user_addr_fault (46 samples, 0.02%)</title><rect x="52.3631%" y="581" width="0.0151%" height="15" fill="rgb(227,7,13)" fg:x="159185" fg:w="46"/><text x="52.6131%" y="591.50"></text></g><g><title>asm_exc_page_fault (49 samples, 0.02%)</title><rect x="52.3628%" y="613" width="0.0161%" height="15" fill="rgb(250,129,14)" fg:x="159184" fg:w="49"/><text x="52.6128%" y="623.50"></text></g><g><title>exc_page_fault (49 samples, 0.02%)</title><rect x="52.3628%" y="597" width="0.0161%" height="15" fill="rgb(229,92,13)" fg:x="159184" fg:w="49"/><text x="52.6128%" y="607.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (40 samples, 0.01%)</title><rect x="52.3789%" y="613" width="0.0132%" height="15" fill="rgb(245,98,39)" fg:x="159233" fg:w="40"/><text x="52.6289%" y="623.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::InsertIntoBucketImpl&lt;llvm::CachedHashStringRef&gt; (140 samples, 0.05%)</title><rect x="52.3480%" y="645" width="0.0461%" height="15" fill="rgb(234,135,48)" fg:x="159139" fg:w="140"/><text x="52.5980%" y="655.50"></text></g><g><title>llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::grow (135 samples, 0.04%)</title><rect x="52.3497%" y="629" width="0.0444%" height="15" fill="rgb(230,98,28)" fg:x="159144" fg:w="135"/><text x="52.5997%" y="639.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (125 samples, 0.04%)</title><rect x="52.3941%" y="645" width="0.0411%" height="15" fill="rgb(223,121,0)" fg:x="159279" fg:w="125"/><text x="52.6441%" y="655.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (472 samples, 0.16%)</title><rect x="52.2951%" y="677" width="0.1553%" height="15" fill="rgb(234,173,33)" fg:x="158978" fg:w="472"/><text x="52.5451%" y="687.50"></text></g><g><title>lld::elf::SymbolTable::insert (437 samples, 0.14%)</title><rect x="52.3066%" y="661" width="0.1437%" height="15" fill="rgb(245,47,8)" fg:x="159013" fg:w="437"/><text x="52.5566%" y="671.50"></text></g><g><title>llvm::Twine::printOneChild (41 samples, 0.01%)</title><rect x="52.4608%" y="661" width="0.0135%" height="15" fill="rgb(205,17,20)" fg:x="159482" fg:w="41"/><text x="52.7108%" y="671.50"></text></g><g><title>llvm::Twine::toVector (84 samples, 0.03%)</title><rect x="52.4589%" y="677" width="0.0276%" height="15" fill="rgb(232,151,16)" fg:x="159476" fg:w="84"/><text x="52.7089%" y="687.50"></text></g><g><title>lld::elf::SharedFile::parse&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (678 samples, 0.22%)</title><rect x="52.2717%" y="693" width="0.2230%" height="15" fill="rgb(208,30,32)" fg:x="158907" fg:w="678"/><text x="52.5217%" y="703.50"></text></g><g><title>lld::elf::parseFile (696 samples, 0.23%)</title><rect x="52.2664%" y="709" width="0.2289%" height="15" fill="rgb(254,26,3)" fg:x="158891" fg:w="696"/><text x="52.5164%" y="719.50"></text></g><g><title>lld::elf::splitSections&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (48 samples, 0.02%)</title><rect x="52.4954%" y="709" width="0.0158%" height="15" fill="rgb(240,177,30)" fg:x="159587" fg:w="48"/><text x="52.7454%" y="719.50"></text></g><g><title>llvm::parallelForEachN (48 samples, 0.02%)</title><rect x="52.4954%" y="693" width="0.0158%" height="15" fill="rgb(248,76,44)" fg:x="159587" fg:w="48"/><text x="52.7454%" y="703.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::~TaskGroup (31 samples, 0.01%)</title><rect x="52.5010%" y="677" width="0.0102%" height="15" fill="rgb(241,186,54)" fg:x="159604" fg:w="31"/><text x="52.7510%" y="687.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;lld::elf::OutputSection::writeTo&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;(unsigned char*)::{lambda(unsigned long)#2}&gt; (51 samples, 0.02%)</title><rect x="52.5276%" y="661" width="0.0168%" height="15" fill="rgb(249,171,29)" fg:x="159685" fg:w="51"/><text x="52.7776%" y="671.50"></text></g><g><title>lld::elf::OutputSection::writeTo&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (90 samples, 0.03%)</title><rect x="52.5263%" y="693" width="0.0296%" height="15" fill="rgb(237,151,44)" fg:x="159681" fg:w="90"/><text x="52.7763%" y="703.50"></text></g><g><title>llvm::parallelForEachN (87 samples, 0.03%)</title><rect x="52.5273%" y="677" width="0.0286%" height="15" fill="rgb(228,174,30)" fg:x="159684" fg:w="87"/><text x="52.7773%" y="687.50"></text></g><g><title>lld::elf::postScanRelocations (31 samples, 0.01%)</title><rect x="52.5625%" y="693" width="0.0102%" height="15" fill="rgb(252,14,37)" fg:x="159791" fg:w="31"/><text x="52.8125%" y="703.50"></text></g><g><title>llvm::FileOutputBuffer::create (49 samples, 0.02%)</title><rect x="52.5763%" y="693" width="0.0161%" height="15" fill="rgb(207,111,40)" fg:x="159833" fg:w="49"/><text x="52.8263%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.02%)</title><rect x="52.6043%" y="453" width="0.0178%" height="15" fill="rgb(248,171,54)" fg:x="159918" fg:w="54"/><text x="52.8543%" y="463.50"></text></g><g><title>x86_pmu_enable (53 samples, 0.02%)</title><rect x="52.6046%" y="437" width="0.0174%" height="15" fill="rgb(211,127,2)" fg:x="159919" fg:w="53"/><text x="52.8546%" y="447.50"></text></g><g><title>intel_pmu_enable_all (52 samples, 0.02%)</title><rect x="52.6049%" y="421" width="0.0171%" height="15" fill="rgb(236,87,47)" fg:x="159920" fg:w="52"/><text x="52.8549%" y="431.50"></text></g><g><title>native_write_msr (51 samples, 0.02%)</title><rect x="52.6052%" y="405" width="0.0168%" height="15" fill="rgb(223,190,45)" fg:x="159921" fg:w="51"/><text x="52.8552%" y="415.50"></text></g><g><title>finish_task_switch.isra.0 (58 samples, 0.02%)</title><rect x="52.6036%" y="469" width="0.0191%" height="15" fill="rgb(215,5,16)" fg:x="159916" fg:w="58"/><text x="52.8536%" y="479.50"></text></g><g><title>__x64_sys_futex (85 samples, 0.03%)</title><rect x="52.5993%" y="565" width="0.0280%" height="15" fill="rgb(252,82,33)" fg:x="159903" fg:w="85"/><text x="52.8493%" y="575.50"></text></g><g><title>do_futex (84 samples, 0.03%)</title><rect x="52.5997%" y="549" width="0.0276%" height="15" fill="rgb(247,213,44)" fg:x="159904" fg:w="84"/><text x="52.8497%" y="559.50"></text></g><g><title>futex_wait (84 samples, 0.03%)</title><rect x="52.5997%" y="533" width="0.0276%" height="15" fill="rgb(205,196,44)" fg:x="159904" fg:w="84"/><text x="52.8497%" y="543.50"></text></g><g><title>futex_wait_queue_me (84 samples, 0.03%)</title><rect x="52.5997%" y="517" width="0.0276%" height="15" fill="rgb(237,96,54)" fg:x="159904" fg:w="84"/><text x="52.8497%" y="527.50"></text></g><g><title>schedule (82 samples, 0.03%)</title><rect x="52.6003%" y="501" width="0.0270%" height="15" fill="rgb(230,113,34)" fg:x="159906" fg:w="82"/><text x="52.8503%" y="511.50"></text></g><g><title>__schedule (81 samples, 0.03%)</title><rect x="52.6006%" y="485" width="0.0266%" height="15" fill="rgb(221,224,12)" fg:x="159907" fg:w="81"/><text x="52.8506%" y="495.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (91 samples, 0.03%)</title><rect x="52.5987%" y="645" width="0.0299%" height="15" fill="rgb(219,112,44)" fg:x="159901" fg:w="91"/><text x="52.8487%" y="655.50"></text></g><g><title>futex_wait_simple (91 samples, 0.03%)</title><rect x="52.5987%" y="629" width="0.0299%" height="15" fill="rgb(210,31,13)" fg:x="159901" fg:w="91"/><text x="52.8487%" y="639.50"></text></g><g><title>futex_wait (91 samples, 0.03%)</title><rect x="52.5987%" y="613" width="0.0299%" height="15" fill="rgb(230,25,16)" fg:x="159901" fg:w="91"/><text x="52.8487%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (90 samples, 0.03%)</title><rect x="52.5990%" y="597" width="0.0296%" height="15" fill="rgb(246,108,53)" fg:x="159902" fg:w="90"/><text x="52.8490%" y="607.50"></text></g><g><title>do_syscall_64 (89 samples, 0.03%)</title><rect x="52.5993%" y="581" width="0.0293%" height="15" fill="rgb(241,172,50)" fg:x="159903" fg:w="89"/><text x="52.8493%" y="591.50"></text></g><g><title>enqueue_task_fair (50 samples, 0.02%)</title><rect x="52.6589%" y="485" width="0.0164%" height="15" fill="rgb(235,141,10)" fg:x="160084" fg:w="50"/><text x="52.9089%" y="495.50"></text></g><g><title>enqueue_task (78 samples, 0.03%)</title><rect x="52.6582%" y="501" width="0.0257%" height="15" fill="rgb(220,174,43)" fg:x="160082" fg:w="78"/><text x="52.9082%" y="511.50"></text></g><g><title>ttwu_do_activate (89 samples, 0.03%)</title><rect x="52.6575%" y="517" width="0.0293%" height="15" fill="rgb(215,181,40)" fg:x="160080" fg:w="89"/><text x="52.9075%" y="527.50"></text></g><g><title>__x64_sys_futex (182 samples, 0.06%)</title><rect x="52.6312%" y="597" width="0.0599%" height="15" fill="rgb(230,97,2)" fg:x="160000" fg:w="182"/><text x="52.8812%" y="607.50"></text></g><g><title>do_futex (180 samples, 0.06%)</title><rect x="52.6319%" y="581" width="0.0592%" height="15" fill="rgb(211,25,27)" fg:x="160002" fg:w="180"/><text x="52.8819%" y="591.50"></text></g><g><title>futex_wake (179 samples, 0.06%)</title><rect x="52.6322%" y="565" width="0.0589%" height="15" fill="rgb(230,87,26)" fg:x="160003" fg:w="179"/><text x="52.8822%" y="575.50"></text></g><g><title>wake_up_q (166 samples, 0.05%)</title><rect x="52.6365%" y="549" width="0.0546%" height="15" fill="rgb(227,160,17)" fg:x="160016" fg:w="166"/><text x="52.8865%" y="559.50"></text></g><g><title>try_to_wake_up (164 samples, 0.05%)</title><rect x="52.6372%" y="533" width="0.0539%" height="15" fill="rgb(244,85,34)" fg:x="160018" fg:w="164"/><text x="52.8872%" y="543.50"></text></g><g><title>do_syscall_64 (210 samples, 0.07%)</title><rect x="52.6309%" y="613" width="0.0691%" height="15" fill="rgb(207,70,0)" fg:x="159999" fg:w="210"/><text x="52.8809%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (214 samples, 0.07%)</title><rect x="52.6299%" y="629" width="0.0704%" height="15" fill="rgb(223,129,7)" fg:x="159996" fg:w="214"/><text x="52.8799%" y="639.50"></text></g><g><title>___pthread_cond_signal (316 samples, 0.10%)</title><rect x="52.5970%" y="661" width="0.1039%" height="15" fill="rgb(246,105,7)" fg:x="159896" fg:w="316"/><text x="52.8470%" y="671.50"></text></g><g><title>futex_wake (220 samples, 0.07%)</title><rect x="52.6286%" y="645" width="0.0724%" height="15" fill="rgb(215,154,42)" fg:x="159992" fg:w="220"/><text x="52.8786%" y="655.50"></text></g><g><title>___pthread_mutex_lock (34 samples, 0.01%)</title><rect x="52.7046%" y="645" width="0.0112%" height="15" fill="rgb(220,215,30)" fg:x="160223" fg:w="34"/><text x="52.9546%" y="655.50"></text></g><g><title>lll_mutex_lock_optimized (31 samples, 0.01%)</title><rect x="52.7056%" y="629" width="0.0102%" height="15" fill="rgb(228,81,51)" fg:x="160226" fg:w="31"/><text x="52.9556%" y="639.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (110 samples, 0.04%)</title><rect x="52.7046%" y="661" width="0.0362%" height="15" fill="rgb(247,71,54)" fg:x="160223" fg:w="110"/><text x="52.9546%" y="671.50"></text></g><g><title>std::deque&lt;std::function&lt;void ()&gt;, std::allocator&lt;std::function&lt;void ()&gt; &gt; &gt;::push_back (50 samples, 0.02%)</title><rect x="52.7243%" y="645" width="0.0164%" height="15" fill="rgb(234,176,34)" fg:x="160283" fg:w="50"/><text x="52.9743%" y="655.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (38 samples, 0.01%)</title><rect x="52.7283%" y="629" width="0.0125%" height="15" fill="rgb(241,103,54)" fg:x="160295" fg:w="38"/><text x="52.9783%" y="639.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (479 samples, 0.16%)</title><rect x="52.5934%" y="677" width="0.1576%" height="15" fill="rgb(228,22,34)" fg:x="159885" fg:w="479"/><text x="52.8434%" y="687.50"></text></g><g><title>llvm::parallelForEachN (495 samples, 0.16%)</title><rect x="52.5927%" y="693" width="0.1628%" height="15" fill="rgb(241,179,48)" fg:x="159883" fg:w="495"/><text x="52.8427%" y="703.50"></text></g><g><title>cshook_security_inode_free_security (38 samples, 0.01%)</title><rect x="52.7602%" y="517" width="0.0125%" height="15" fill="rgb(235,167,37)" fg:x="160392" fg:w="38"/><text x="53.0102%" y="527.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (38 samples, 0.01%)</title><rect x="52.7602%" y="501" width="0.0125%" height="15" fill="rgb(213,109,30)" fg:x="160392" fg:w="38"/><text x="53.0102%" y="511.50"></text></g><g><title>[[falcon_kal]] (34 samples, 0.01%)</title><rect x="52.7615%" y="485" width="0.0112%" height="15" fill="rgb(222,172,16)" fg:x="160396" fg:w="34"/><text x="53.0115%" y="495.50"></text></g><g><title>[[falcon_kal]] (34 samples, 0.01%)</title><rect x="52.7615%" y="469" width="0.0112%" height="15" fill="rgb(233,192,5)" fg:x="160396" fg:w="34"/><text x="53.0115%" y="479.50"></text></g><g><title>_ZdlPv (51 samples, 0.02%)</title><rect x="52.7566%" y="533" width="0.0168%" height="15" fill="rgb(247,189,41)" fg:x="160381" fg:w="51"/><text x="53.0066%" y="543.50"></text></g><g><title>__GI___close (55 samples, 0.02%)</title><rect x="52.7556%" y="677" width="0.0181%" height="15" fill="rgb(218,134,47)" fg:x="160378" fg:w="55"/><text x="53.0056%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.02%)</title><rect x="52.7556%" y="661" width="0.0181%" height="15" fill="rgb(216,29,3)" fg:x="160378" fg:w="55"/><text x="53.0056%" y="671.50"></text></g><g><title>do_syscall_64 (55 samples, 0.02%)</title><rect x="52.7556%" y="645" width="0.0181%" height="15" fill="rgb(246,140,12)" fg:x="160378" fg:w="55"/><text x="53.0056%" y="655.50"></text></g><g><title>unload_network_ops_symbols (54 samples, 0.02%)</title><rect x="52.7559%" y="629" width="0.0178%" height="15" fill="rgb(230,136,11)" fg:x="160379" fg:w="54"/><text x="53.0059%" y="639.50"></text></g><g><title>cshook_systemcalltable_pre_close (53 samples, 0.02%)</title><rect x="52.7562%" y="613" width="0.0174%" height="15" fill="rgb(247,22,47)" fg:x="160380" fg:w="53"/><text x="53.0062%" y="623.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (53 samples, 0.02%)</title><rect x="52.7562%" y="597" width="0.0174%" height="15" fill="rgb(218,84,22)" fg:x="160380" fg:w="53"/><text x="53.0062%" y="607.50"></text></g><g><title>fshook_syscalltable_pre_lchown (52 samples, 0.02%)</title><rect x="52.7566%" y="581" width="0.0171%" height="15" fill="rgb(216,87,39)" fg:x="160381" fg:w="52"/><text x="53.0066%" y="591.50"></text></g><g><title>_ZdlPv (52 samples, 0.02%)</title><rect x="52.7566%" y="565" width="0.0171%" height="15" fill="rgb(221,178,8)" fg:x="160381" fg:w="52"/><text x="53.0066%" y="575.50"></text></g><g><title>_ZdlPv (52 samples, 0.02%)</title><rect x="52.7566%" y="549" width="0.0171%" height="15" fill="rgb(230,42,11)" fg:x="160381" fg:w="52"/><text x="53.0066%" y="559.50"></text></g><g><title>btrfs_rename2 (41 samples, 0.01%)</title><rect x="52.7747%" y="549" width="0.0135%" height="15" fill="rgb(237,229,4)" fg:x="160436" fg:w="41"/><text x="53.0247%" y="559.50"></text></g><g><title>btrfs_rename (40 samples, 0.01%)</title><rect x="52.7750%" y="533" width="0.0132%" height="15" fill="rgb(222,31,33)" fg:x="160437" fg:w="40"/><text x="53.0250%" y="543.50"></text></g><g><title>__x64_sys_rename (42 samples, 0.01%)</title><rect x="52.7747%" y="597" width="0.0138%" height="15" fill="rgb(210,17,39)" fg:x="160436" fg:w="42"/><text x="53.0247%" y="607.50"></text></g><g><title>do_renameat2 (42 samples, 0.01%)</title><rect x="52.7747%" y="581" width="0.0138%" height="15" fill="rgb(244,93,20)" fg:x="160436" fg:w="42"/><text x="53.0247%" y="591.50"></text></g><g><title>vfs_rename (42 samples, 0.01%)</title><rect x="52.7747%" y="565" width="0.0138%" height="15" fill="rgb(210,40,47)" fg:x="160436" fg:w="42"/><text x="53.0247%" y="575.50"></text></g><g><title>llvm::sys::fs::TempFile::keep (106 samples, 0.03%)</title><rect x="52.7556%" y="693" width="0.0349%" height="15" fill="rgb(239,211,47)" fg:x="160378" fg:w="106"/><text x="53.0056%" y="703.50"></text></g><g><title>llvm::sys::fs::rename (50 samples, 0.02%)</title><rect x="52.7740%" y="677" width="0.0164%" height="15" fill="rgb(251,223,49)" fg:x="160434" fg:w="50"/><text x="53.0240%" y="687.50"></text></g><g><title>rename (49 samples, 0.02%)</title><rect x="52.7743%" y="661" width="0.0161%" height="15" fill="rgb(221,149,5)" fg:x="160435" fg:w="49"/><text x="53.0243%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.02%)</title><rect x="52.7743%" y="645" width="0.0161%" height="15" fill="rgb(219,224,51)" fg:x="160435" fg:w="49"/><text x="53.0243%" y="655.50"></text></g><g><title>do_syscall_64 (49 samples, 0.02%)</title><rect x="52.7743%" y="629" width="0.0161%" height="15" fill="rgb(223,7,8)" fg:x="160435" fg:w="49"/><text x="53.0243%" y="639.50"></text></g><g><title>unload_network_ops_symbols (48 samples, 0.02%)</title><rect x="52.7747%" y="613" width="0.0158%" height="15" fill="rgb(241,217,22)" fg:x="160436" fg:w="48"/><text x="53.0247%" y="623.50"></text></g><g><title>lld::elf::writeResult&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (856 samples, 0.28%)</title><rect x="52.5112%" y="709" width="0.2816%" height="15" fill="rgb(248,209,0)" fg:x="159635" fg:w="856"/><text x="52.7612%" y="719.50"></text></g><g><title>llvm::sys::fs::TempFile::create (35 samples, 0.01%)</title><rect x="52.7950%" y="677" width="0.0115%" height="15" fill="rgb(217,205,4)" fg:x="160498" fg:w="35"/><text x="53.0450%" y="687.50"></text></g><g><title>llvm::FileOutputBuffer::create (55 samples, 0.02%)</title><rect x="52.7947%" y="693" width="0.0181%" height="15" fill="rgb(228,124,39)" fg:x="160497" fg:w="55"/><text x="53.0447%" y="703.50"></text></g><g><title>lld::tryCreateFile (106 samples, 0.03%)</title><rect x="52.7937%" y="709" width="0.0349%" height="15" fill="rgb(250,116,42)" fg:x="160494" fg:w="106"/><text x="53.0437%" y="719.50"></text></g><g><title>llvm::sys::fs::TempFile::discard (48 samples, 0.02%)</title><rect x="52.8128%" y="693" width="0.0158%" height="15" fill="rgb(223,202,9)" fg:x="160552" fg:w="48"/><text x="53.0628%" y="703.50"></text></g><g><title>llvm::sys::fs::remove (35 samples, 0.01%)</title><rect x="52.8171%" y="677" width="0.0115%" height="15" fill="rgb(242,222,40)" fg:x="160565" fg:w="35"/><text x="53.0671%" y="687.50"></text></g><g><title>lld::elf::LinkerDriver::link (2,293 samples, 0.75%)</title><rect x="52.0753%" y="725" width="0.7543%" height="15" fill="rgb(229,99,46)" fg:x="158310" fg:w="2293"/><text x="52.3253%" y="735.50"></text></g><g><title>llvm::InitializeAllTargets (115 samples, 0.04%)</title><rect x="52.8319%" y="725" width="0.0378%" height="15" fill="rgb(225,56,46)" fg:x="160610" fg:w="115"/><text x="53.0819%" y="735.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (2,730 samples, 0.90%)</title><rect x="51.9951%" y="741" width="0.8980%" height="15" fill="rgb(227,94,5)" fg:x="158066" fg:w="2730"/><text x="52.2451%" y="751.50"></text></g><g><title>readConfigs (60 samples, 0.02%)</title><rect x="52.8733%" y="725" width="0.0197%" height="15" fill="rgb(205,112,38)" fg:x="160736" fg:w="60"/><text x="53.1233%" y="735.50"></text></g><g><title>lld::elf::link (2,749 samples, 0.90%)</title><rect x="51.9891%" y="757" width="0.9043%" height="15" fill="rgb(231,133,46)" fg:x="158048" fg:w="2749"/><text x="52.2391%" y="767.50"></text></g><g><title>llvm::object_deleter&lt;llvm::cl::SubCommand&gt;::call (50 samples, 0.02%)</title><rect x="52.9003%" y="725" width="0.0164%" height="15" fill="rgb(217,16,9)" fg:x="160818" fg:w="50"/><text x="53.1503%" y="735.50"></text></g><g><title>finish_task_switch.isra.0 (32 samples, 0.01%)</title><rect x="52.9174%" y="517" width="0.0105%" height="15" fill="rgb(249,173,9)" fg:x="160870" fg:w="32"/><text x="53.1674%" y="527.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (35 samples, 0.01%)</title><rect x="52.9168%" y="693" width="0.0115%" height="15" fill="rgb(205,163,53)" fg:x="160868" fg:w="35"/><text x="53.1668%" y="703.50"></text></g><g><title>futex_wait_simple (34 samples, 0.01%)</title><rect x="52.9171%" y="677" width="0.0112%" height="15" fill="rgb(217,54,41)" fg:x="160869" fg:w="34"/><text x="53.1671%" y="687.50"></text></g><g><title>futex_wait (34 samples, 0.01%)</title><rect x="52.9171%" y="661" width="0.0112%" height="15" fill="rgb(228,216,12)" fg:x="160869" fg:w="34"/><text x="53.1671%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.01%)</title><rect x="52.9171%" y="645" width="0.0112%" height="15" fill="rgb(244,228,15)" fg:x="160869" fg:w="34"/><text x="53.1671%" y="655.50"></text></g><g><title>do_syscall_64 (34 samples, 0.01%)</title><rect x="52.9171%" y="629" width="0.0112%" height="15" fill="rgb(221,176,53)" fg:x="160869" fg:w="34"/><text x="53.1671%" y="639.50"></text></g><g><title>__x64_sys_futex (34 samples, 0.01%)</title><rect x="52.9171%" y="613" width="0.0112%" height="15" fill="rgb(205,94,34)" fg:x="160869" fg:w="34"/><text x="53.1671%" y="623.50"></text></g><g><title>do_futex (34 samples, 0.01%)</title><rect x="52.9171%" y="597" width="0.0112%" height="15" fill="rgb(213,110,48)" fg:x="160869" fg:w="34"/><text x="53.1671%" y="607.50"></text></g><g><title>futex_wait (34 samples, 0.01%)</title><rect x="52.9171%" y="581" width="0.0112%" height="15" fill="rgb(236,142,28)" fg:x="160869" fg:w="34"/><text x="53.1671%" y="591.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.01%)</title><rect x="52.9171%" y="565" width="0.0112%" height="15" fill="rgb(225,135,29)" fg:x="160869" fg:w="34"/><text x="53.1671%" y="575.50"></text></g><g><title>schedule (34 samples, 0.01%)</title><rect x="52.9171%" y="549" width="0.0112%" height="15" fill="rgb(252,45,31)" fg:x="160869" fg:w="34"/><text x="53.1671%" y="559.50"></text></g><g><title>__schedule (34 samples, 0.01%)</title><rect x="52.9171%" y="533" width="0.0112%" height="15" fill="rgb(211,187,50)" fg:x="160869" fg:w="34"/><text x="53.1671%" y="543.50"></text></g><g><title>llvm::llvm_shutdown (125 samples, 0.04%)</title><rect x="52.8934%" y="741" width="0.0411%" height="15" fill="rgb(229,109,7)" fg:x="160797" fg:w="125"/><text x="53.1434%" y="751.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::stop (54 samples, 0.02%)</title><rect x="52.9168%" y="725" width="0.0178%" height="15" fill="rgb(251,131,51)" fg:x="160868" fg:w="54"/><text x="53.1668%" y="735.50"></text></g><g><title>___pthread_cond_broadcast (54 samples, 0.02%)</title><rect x="52.9168%" y="709" width="0.0178%" height="15" fill="rgb(251,180,35)" fg:x="160868" fg:w="54"/><text x="53.1668%" y="719.50"></text></g><g><title>lld::exitLld (130 samples, 0.04%)</title><rect x="52.8934%" y="757" width="0.0428%" height="15" fill="rgb(211,46,32)" fg:x="160797" fg:w="130"/><text x="53.1434%" y="767.50"></text></g><g><title>lldMain (2,880 samples, 0.95%)</title><rect x="51.9891%" y="773" width="0.9474%" height="15" fill="rgb(248,123,17)" fg:x="158048" fg:w="2880"/><text x="52.2391%" y="783.50"></text></g><g><title>__libc_start_main_impl (3,727 samples, 1.23%)</title><rect x="51.7154%" y="821" width="1.2260%" height="15" fill="rgb(227,141,18)" fg:x="157216" fg:w="3727"/><text x="51.9654%" y="831.50"></text></g><g><title>__libc_start_call_main (2,895 samples, 0.95%)</title><rect x="51.9891%" y="805" width="0.9523%" height="15" fill="rgb(216,102,9)" fg:x="158048" fg:w="2895"/><text x="52.2391%" y="815.50"></text></g><g><title>main (2,895 samples, 0.95%)</title><rect x="51.9891%" y="789" width="0.9523%" height="15" fill="rgb(253,47,13)" fg:x="158048" fg:w="2895"/><text x="52.2391%" y="799.50"></text></g><g><title>__do_munmap (40 samples, 0.01%)</title><rect x="52.9727%" y="501" width="0.0132%" height="15" fill="rgb(226,93,23)" fg:x="161038" fg:w="40"/><text x="53.2227%" y="511.50"></text></g><g><title>__x64_sys_mmap (57 samples, 0.02%)</title><rect x="52.9717%" y="581" width="0.0187%" height="15" fill="rgb(247,104,17)" fg:x="161035" fg:w="57"/><text x="53.2217%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (57 samples, 0.02%)</title><rect x="52.9717%" y="565" width="0.0187%" height="15" fill="rgb(233,203,26)" fg:x="161035" fg:w="57"/><text x="53.2217%" y="575.50"></text></g><g><title>vm_mmap_pgoff (57 samples, 0.02%)</title><rect x="52.9717%" y="549" width="0.0187%" height="15" fill="rgb(244,98,49)" fg:x="161035" fg:w="57"/><text x="53.2217%" y="559.50"></text></g><g><title>do_mmap (57 samples, 0.02%)</title><rect x="52.9717%" y="533" width="0.0187%" height="15" fill="rgb(235,134,22)" fg:x="161035" fg:w="57"/><text x="53.2217%" y="543.50"></text></g><g><title>mmap_region (57 samples, 0.02%)</title><rect x="52.9717%" y="517" width="0.0187%" height="15" fill="rgb(221,70,32)" fg:x="161035" fg:w="57"/><text x="53.2217%" y="527.50"></text></g><g><title>__mmap64 (61 samples, 0.02%)</title><rect x="52.9710%" y="661" width="0.0201%" height="15" fill="rgb(238,15,50)" fg:x="161033" fg:w="61"/><text x="53.2210%" y="671.50"></text></g><g><title>__mmap64 (61 samples, 0.02%)</title><rect x="52.9710%" y="645" width="0.0201%" height="15" fill="rgb(215,221,48)" fg:x="161033" fg:w="61"/><text x="53.2210%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.02%)</title><rect x="52.9714%" y="629" width="0.0197%" height="15" fill="rgb(236,73,3)" fg:x="161034" fg:w="60"/><text x="53.2214%" y="639.50"></text></g><g><title>do_syscall_64 (60 samples, 0.02%)</title><rect x="52.9714%" y="613" width="0.0197%" height="15" fill="rgb(250,107,11)" fg:x="161034" fg:w="60"/><text x="53.2214%" y="623.50"></text></g><g><title>unload_network_ops_symbols (59 samples, 0.02%)</title><rect x="52.9717%" y="597" width="0.0194%" height="15" fill="rgb(242,39,14)" fg:x="161035" fg:w="59"/><text x="53.2217%" y="607.50"></text></g><g><title>_dl_map_segments (90 samples, 0.03%)</title><rect x="52.9658%" y="677" width="0.0296%" height="15" fill="rgb(248,164,37)" fg:x="161017" fg:w="90"/><text x="53.2158%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (122 samples, 0.04%)</title><rect x="52.9615%" y="693" width="0.0401%" height="15" fill="rgb(217,60,12)" fg:x="161004" fg:w="122"/><text x="53.2115%" y="703.50"></text></g><g><title>_dl_map_object_deps (211 samples, 0.07%)</title><rect x="52.9464%" y="757" width="0.0694%" height="15" fill="rgb(240,125,29)" fg:x="160958" fg:w="211"/><text x="53.1964%" y="767.50"></text></g><g><title>_dl_catch_exception (208 samples, 0.07%)</title><rect x="52.9473%" y="741" width="0.0684%" height="15" fill="rgb(208,207,28)" fg:x="160961" fg:w="208"/><text x="53.1973%" y="751.50"></text></g><g><title>openaux (208 samples, 0.07%)</title><rect x="52.9473%" y="725" width="0.0684%" height="15" fill="rgb(209,159,27)" fg:x="160961" fg:w="208"/><text x="53.1973%" y="735.50"></text></g><g><title>_dl_map_object (208 samples, 0.07%)</title><rect x="52.9473%" y="709" width="0.0684%" height="15" fill="rgb(251,176,53)" fg:x="160961" fg:w="208"/><text x="53.1973%" y="719.50"></text></g><g><title>open_verify (40 samples, 0.01%)</title><rect x="53.0026%" y="693" width="0.0132%" height="15" fill="rgb(211,85,7)" fg:x="161129" fg:w="40"/><text x="53.2526%" y="703.50"></text></g><g><title>dl_new_hash (64 samples, 0.02%)</title><rect x="53.0457%" y="693" width="0.0211%" height="15" fill="rgb(216,64,54)" fg:x="161260" fg:w="64"/><text x="53.2957%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (222 samples, 0.07%)</title><rect x="53.0414%" y="709" width="0.0730%" height="15" fill="rgb(217,54,24)" fg:x="161247" fg:w="222"/><text x="53.2914%" y="719.50"></text></g><g><title>do_lookup_x (145 samples, 0.05%)</title><rect x="53.0668%" y="693" width="0.0477%" height="15" fill="rgb(208,206,53)" fg:x="161324" fg:w="145"/><text x="53.3168%" y="703.50"></text></g><g><title>do_fault (60 samples, 0.02%)</title><rect x="53.1184%" y="613" width="0.0197%" height="15" fill="rgb(251,74,39)" fg:x="161481" fg:w="60"/><text x="53.3684%" y="623.50"></text></g><g><title>do_user_addr_fault (78 samples, 0.03%)</title><rect x="53.1148%" y="677" width="0.0257%" height="15" fill="rgb(226,47,5)" fg:x="161470" fg:w="78"/><text x="53.3648%" y="687.50"></text></g><g><title>handle_mm_fault (77 samples, 0.03%)</title><rect x="53.1151%" y="661" width="0.0253%" height="15" fill="rgb(234,111,33)" fg:x="161471" fg:w="77"/><text x="53.3651%" y="671.50"></text></g><g><title>__handle_mm_fault (75 samples, 0.02%)</title><rect x="53.1158%" y="645" width="0.0247%" height="15" fill="rgb(251,14,10)" fg:x="161473" fg:w="75"/><text x="53.3658%" y="655.50"></text></g><g><title>handle_pte_fault (68 samples, 0.02%)</title><rect x="53.1181%" y="629" width="0.0224%" height="15" fill="rgb(232,43,0)" fg:x="161480" fg:w="68"/><text x="53.3681%" y="639.50"></text></g><g><title>asm_exc_page_fault (82 samples, 0.03%)</title><rect x="53.1145%" y="709" width="0.0270%" height="15" fill="rgb(222,68,43)" fg:x="161469" fg:w="82"/><text x="53.3645%" y="719.50"></text></g><g><title>exc_page_fault (82 samples, 0.03%)</title><rect x="53.1145%" y="693" width="0.0270%" height="15" fill="rgb(217,24,23)" fg:x="161469" fg:w="82"/><text x="53.3645%" y="703.50"></text></g><g><title>elf_machine_rela (344 samples, 0.11%)</title><rect x="53.0302%" y="725" width="0.1132%" height="15" fill="rgb(229,209,14)" fg:x="161213" fg:w="344"/><text x="53.2802%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (378 samples, 0.12%)</title><rect x="53.0237%" y="741" width="0.1243%" height="15" fill="rgb(250,149,48)" fg:x="161193" fg:w="378"/><text x="53.2737%" y="751.50"></text></g><g><title>_dl_relocate_object (400 samples, 0.13%)</title><rect x="53.0177%" y="757" width="0.1316%" height="15" fill="rgb(210,120,37)" fg:x="161175" fg:w="400"/><text x="53.2677%" y="767.50"></text></g><g><title>dl_main (656 samples, 0.22%)</title><rect x="52.9427%" y="773" width="0.2158%" height="15" fill="rgb(210,21,8)" fg:x="160947" fg:w="656"/><text x="53.1927%" y="783.50"></text></g><g><title>_dl_start_final (663 samples, 0.22%)</title><rect x="52.9418%" y="805" width="0.2181%" height="15" fill="rgb(243,145,7)" fg:x="160944" fg:w="663"/><text x="53.1918%" y="815.50"></text></g><g><title>_dl_sysdep_start (662 samples, 0.22%)</title><rect x="52.9421%" y="789" width="0.2178%" height="15" fill="rgb(238,178,32)" fg:x="160945" fg:w="662"/><text x="53.1921%" y="799.50"></text></g><g><title>_dl_start (665 samples, 0.22%)</title><rect x="52.9414%" y="821" width="0.2187%" height="15" fill="rgb(222,4,10)" fg:x="160943" fg:w="665"/><text x="53.1914%" y="831.50"></text></g><g><title>_start (4,398 samples, 1.45%)</title><rect x="51.7154%" y="837" width="1.4467%" height="15" fill="rgb(239,7,37)" fg:x="157216" fg:w="4398"/><text x="51.9654%" y="847.50"></text></g><g><title>asm_exc_page_fault (169 samples, 0.06%)</title><rect x="53.1622%" y="837" width="0.0556%" height="15" fill="rgb(215,31,37)" fg:x="161614" fg:w="169"/><text x="53.4122%" y="847.50"></text></g><g><title>exit_mm (93 samples, 0.03%)</title><rect x="53.2270%" y="757" width="0.0306%" height="15" fill="rgb(224,83,33)" fg:x="161811" fg:w="93"/><text x="53.4770%" y="767.50"></text></g><g><title>mmput (75 samples, 0.02%)</title><rect x="53.2329%" y="741" width="0.0247%" height="15" fill="rgb(239,55,3)" fg:x="161829" fg:w="75"/><text x="53.4829%" y="751.50"></text></g><g><title>exit_mmap (75 samples, 0.02%)</title><rect x="53.2329%" y="725" width="0.0247%" height="15" fill="rgb(247,92,11)" fg:x="161829" fg:w="75"/><text x="53.4829%" y="735.50"></text></g><g><title>unmap_vmas (71 samples, 0.02%)</title><rect x="53.2342%" y="709" width="0.0234%" height="15" fill="rgb(239,200,7)" fg:x="161833" fg:w="71"/><text x="53.4842%" y="719.50"></text></g><g><title>unmap_single_vma (71 samples, 0.02%)</title><rect x="53.2342%" y="693" width="0.0234%" height="15" fill="rgb(227,115,8)" fg:x="161833" fg:w="71"/><text x="53.4842%" y="703.50"></text></g><g><title>unmap_page_range (71 samples, 0.02%)</title><rect x="53.2342%" y="677" width="0.0234%" height="15" fill="rgb(215,189,27)" fg:x="161833" fg:w="71"/><text x="53.4842%" y="687.50"></text></g><g><title>zap_pmd_range.isra.0 (71 samples, 0.02%)</title><rect x="53.2342%" y="661" width="0.0234%" height="15" fill="rgb(251,216,39)" fg:x="161833" fg:w="71"/><text x="53.4842%" y="671.50"></text></g><g><title>zap_pte_range (68 samples, 0.02%)</title><rect x="53.2352%" y="645" width="0.0224%" height="15" fill="rgb(207,29,47)" fg:x="161836" fg:w="68"/><text x="53.4852%" y="655.50"></text></g><g><title>__x64_sys_exit_group (96 samples, 0.03%)</title><rect x="53.2266%" y="805" width="0.0316%" height="15" fill="rgb(210,71,34)" fg:x="161810" fg:w="96"/><text x="53.4766%" y="815.50"></text></g><g><title>do_group_exit (96 samples, 0.03%)</title><rect x="53.2266%" y="789" width="0.0316%" height="15" fill="rgb(253,217,51)" fg:x="161810" fg:w="96"/><text x="53.4766%" y="799.50"></text></g><g><title>do_exit (96 samples, 0.03%)</title><rect x="53.2266%" y="773" width="0.0316%" height="15" fill="rgb(222,117,46)" fg:x="161810" fg:w="96"/><text x="53.4766%" y="783.50"></text></g><g><title>page_remove_rmap (36 samples, 0.01%)</title><rect x="53.2839%" y="565" width="0.0118%" height="15" fill="rgb(226,132,6)" fg:x="161984" fg:w="36"/><text x="53.5339%" y="575.50"></text></g><g><title>exit_mm (143 samples, 0.05%)</title><rect x="53.2585%" y="693" width="0.0470%" height="15" fill="rgb(254,145,51)" fg:x="161907" fg:w="143"/><text x="53.5085%" y="703.50"></text></g><g><title>mmput (133 samples, 0.04%)</title><rect x="53.2618%" y="677" width="0.0437%" height="15" fill="rgb(231,199,27)" fg:x="161917" fg:w="133"/><text x="53.5118%" y="687.50"></text></g><g><title>exit_mmap (131 samples, 0.04%)</title><rect x="53.2625%" y="661" width="0.0431%" height="15" fill="rgb(245,158,14)" fg:x="161919" fg:w="131"/><text x="53.5125%" y="671.50"></text></g><g><title>unmap_vmas (122 samples, 0.04%)</title><rect x="53.2654%" y="645" width="0.0401%" height="15" fill="rgb(240,113,14)" fg:x="161928" fg:w="122"/><text x="53.5154%" y="655.50"></text></g><g><title>unmap_single_vma (120 samples, 0.04%)</title><rect x="53.2661%" y="629" width="0.0395%" height="15" fill="rgb(210,20,13)" fg:x="161930" fg:w="120"/><text x="53.5161%" y="639.50"></text></g><g><title>unmap_page_range (120 samples, 0.04%)</title><rect x="53.2661%" y="613" width="0.0395%" height="15" fill="rgb(241,144,13)" fg:x="161930" fg:w="120"/><text x="53.5161%" y="623.50"></text></g><g><title>zap_pmd_range.isra.0 (119 samples, 0.04%)</title><rect x="53.2664%" y="597" width="0.0391%" height="15" fill="rgb(235,43,34)" fg:x="161931" fg:w="119"/><text x="53.5164%" y="607.50"></text></g><g><title>zap_pte_range (116 samples, 0.04%)</title><rect x="53.2674%" y="581" width="0.0382%" height="15" fill="rgb(208,36,20)" fg:x="161934" fg:w="116"/><text x="53.5174%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (267 samples, 0.09%)</title><rect x="53.2181%" y="837" width="0.0878%" height="15" fill="rgb(239,204,10)" fg:x="161784" fg:w="267"/><text x="53.4681%" y="847.50"></text></g><g><title>do_syscall_64 (267 samples, 0.09%)</title><rect x="53.2181%" y="821" width="0.0878%" height="15" fill="rgb(217,84,43)" fg:x="161784" fg:w="267"/><text x="53.4681%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (144 samples, 0.05%)</title><rect x="53.2585%" y="805" width="0.0474%" height="15" fill="rgb(241,170,50)" fg:x="161907" fg:w="144"/><text x="53.5085%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (144 samples, 0.05%)</title><rect x="53.2585%" y="789" width="0.0474%" height="15" fill="rgb(226,205,29)" fg:x="161907" fg:w="144"/><text x="53.5085%" y="799.50"></text></g><g><title>exit_to_user_mode_loop (144 samples, 0.05%)</title><rect x="53.2585%" y="773" width="0.0474%" height="15" fill="rgb(233,113,1)" fg:x="161907" fg:w="144"/><text x="53.5085%" y="783.50"></text></g><g><title>arch_do_signal_or_restart (144 samples, 0.05%)</title><rect x="53.2585%" y="757" width="0.0474%" height="15" fill="rgb(253,98,13)" fg:x="161907" fg:w="144"/><text x="53.5085%" y="767.50"></text></g><g><title>get_signal (144 samples, 0.05%)</title><rect x="53.2585%" y="741" width="0.0474%" height="15" fill="rgb(211,115,12)" fg:x="161907" fg:w="144"/><text x="53.5085%" y="751.50"></text></g><g><title>do_group_exit (144 samples, 0.05%)</title><rect x="53.2585%" y="725" width="0.0474%" height="15" fill="rgb(208,12,16)" fg:x="161907" fg:w="144"/><text x="53.5085%" y="735.50"></text></g><g><title>do_exit (144 samples, 0.05%)</title><rect x="53.2585%" y="709" width="0.0474%" height="15" fill="rgb(237,193,54)" fg:x="161907" fg:w="144"/><text x="53.5085%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (382 samples, 0.13%)</title><rect x="53.3141%" y="789" width="0.1257%" height="15" fill="rgb(243,22,42)" fg:x="162076" fg:w="382"/><text x="53.5641%" y="799.50"></text></g><g><title>x86_pmu_enable (376 samples, 0.12%)</title><rect x="53.3161%" y="773" width="0.1237%" height="15" fill="rgb(233,151,36)" fg:x="162082" fg:w="376"/><text x="53.5661%" y="783.50"></text></g><g><title>intel_pmu_enable_all (375 samples, 0.12%)</title><rect x="53.3164%" y="757" width="0.1234%" height="15" fill="rgb(237,57,45)" fg:x="162083" fg:w="375"/><text x="53.5664%" y="767.50"></text></g><g><title>native_write_msr (369 samples, 0.12%)</title><rect x="53.3184%" y="741" width="0.1214%" height="15" fill="rgb(221,88,17)" fg:x="162089" fg:w="369"/><text x="53.5684%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (403 samples, 0.13%)</title><rect x="53.3138%" y="805" width="0.1326%" height="15" fill="rgb(230,79,15)" fg:x="162075" fg:w="403"/><text x="53.5638%" y="815.50"></text></g><g><title>schedule_tail (411 samples, 0.14%)</title><rect x="53.3115%" y="821" width="0.1352%" height="15" fill="rgb(213,57,13)" fg:x="162068" fg:w="411"/><text x="53.5615%" y="831.50"></text></g><g><title>page_remove_file_rmap (39 samples, 0.01%)</title><rect x="53.5243%" y="565" width="0.0128%" height="15" fill="rgb(222,116,39)" fg:x="162715" fg:w="39"/><text x="53.7743%" y="575.50"></text></g><g><title>page_remove_rmap (69 samples, 0.02%)</title><rect x="53.5164%" y="581" width="0.0227%" height="15" fill="rgb(245,107,2)" fg:x="162691" fg:w="69"/><text x="53.7664%" y="591.50"></text></g><g><title>free_pages_and_swap_cache (47 samples, 0.02%)</title><rect x="53.5395%" y="565" width="0.0155%" height="15" fill="rgb(238,1,10)" fg:x="162761" fg:w="47"/><text x="53.7895%" y="575.50"></text></g><g><title>release_pages (44 samples, 0.01%)</title><rect x="53.5404%" y="549" width="0.0145%" height="15" fill="rgb(249,4,48)" fg:x="162764" fg:w="44"/><text x="53.7904%" y="559.50"></text></g><g><title>tlb_flush_mmu (66 samples, 0.02%)</title><rect x="53.5391%" y="581" width="0.0217%" height="15" fill="rgb(223,151,18)" fg:x="162760" fg:w="66"/><text x="53.7891%" y="591.50"></text></g><g><title>mmput (329 samples, 0.11%)</title><rect x="53.4559%" y="693" width="0.1082%" height="15" fill="rgb(227,65,43)" fg:x="162507" fg:w="329"/><text x="53.7059%" y="703.50"></text></g><g><title>exit_mmap (329 samples, 0.11%)</title><rect x="53.4559%" y="677" width="0.1082%" height="15" fill="rgb(218,40,45)" fg:x="162507" fg:w="329"/><text x="53.7059%" y="687.50"></text></g><g><title>unmap_vmas (311 samples, 0.10%)</title><rect x="53.4618%" y="661" width="0.1023%" height="15" fill="rgb(252,121,31)" fg:x="162525" fg:w="311"/><text x="53.7118%" y="671.50"></text></g><g><title>unmap_single_vma (308 samples, 0.10%)</title><rect x="53.4628%" y="645" width="0.1013%" height="15" fill="rgb(219,158,43)" fg:x="162528" fg:w="308"/><text x="53.7128%" y="655.50"></text></g><g><title>unmap_page_range (307 samples, 0.10%)</title><rect x="53.4631%" y="629" width="0.1010%" height="15" fill="rgb(231,162,42)" fg:x="162529" fg:w="307"/><text x="53.7131%" y="639.50"></text></g><g><title>zap_pmd_range.isra.0 (304 samples, 0.10%)</title><rect x="53.4641%" y="613" width="0.1000%" height="15" fill="rgb(217,179,25)" fg:x="162532" fg:w="304"/><text x="53.7141%" y="623.50"></text></g><g><title>zap_pte_range (288 samples, 0.09%)</title><rect x="53.4694%" y="597" width="0.0947%" height="15" fill="rgb(206,212,31)" fg:x="162548" fg:w="288"/><text x="53.7194%" y="607.50"></text></g><g><title>exit_mm (348 samples, 0.11%)</title><rect x="53.4500%" y="709" width="0.1145%" height="15" fill="rgb(235,144,12)" fg:x="162489" fg:w="348"/><text x="53.7000%" y="719.50"></text></g><g><title>do_exit (373 samples, 0.12%)</title><rect x="53.4473%" y="725" width="0.1227%" height="15" fill="rgb(213,51,10)" fg:x="162481" fg:w="373"/><text x="53.6973%" y="735.50"></text></g><g><title>arch_do_signal_or_restart (375 samples, 0.12%)</title><rect x="53.4470%" y="773" width="0.1234%" height="15" fill="rgb(231,145,14)" fg:x="162480" fg:w="375"/><text x="53.6970%" y="783.50"></text></g><g><title>get_signal (374 samples, 0.12%)</title><rect x="53.4473%" y="757" width="0.1230%" height="15" fill="rgb(235,15,28)" fg:x="162481" fg:w="374"/><text x="53.6973%" y="767.50"></text></g><g><title>do_group_exit (374 samples, 0.12%)</title><rect x="53.4473%" y="741" width="0.1230%" height="15" fill="rgb(237,206,10)" fg:x="162481" fg:w="374"/><text x="53.6973%" y="751.50"></text></g><g><title>exit_to_user_mode_loop (378 samples, 0.12%)</title><rect x="53.4467%" y="789" width="0.1243%" height="15" fill="rgb(236,227,27)" fg:x="162479" fg:w="378"/><text x="53.6967%" y="799.50"></text></g><g><title>ret_from_fork (792 samples, 0.26%)</title><rect x="53.3108%" y="837" width="0.2605%" height="15" fill="rgb(246,83,35)" fg:x="162066" fg:w="792"/><text x="53.5608%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (379 samples, 0.12%)</title><rect x="53.4467%" y="821" width="0.1247%" height="15" fill="rgb(220,136,24)" fg:x="162479" fg:w="379"/><text x="53.6967%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (379 samples, 0.12%)</title><rect x="53.4467%" y="805" width="0.1247%" height="15" fill="rgb(217,3,25)" fg:x="162479" fg:w="379"/><text x="53.6967%" y="815.50"></text></g><g><title>ld.lld (7,999 samples, 2.63%)</title><rect x="50.9457%" y="853" width="2.6312%" height="15" fill="rgb(239,24,14)" fg:x="154876" fg:w="7999"/><text x="51.1957%" y="863.50">ld..</text></g><g><title>exec_binprm (34 samples, 0.01%)</title><rect x="53.6174%" y="213" width="0.0112%" height="15" fill="rgb(244,16,53)" fg:x="162998" fg:w="34"/><text x="53.8674%" y="223.50"></text></g><g><title>search_binary_handler (34 samples, 0.01%)</title><rect x="53.6174%" y="197" width="0.0112%" height="15" fill="rgb(208,175,44)" fg:x="162998" fg:w="34"/><text x="53.8674%" y="207.50"></text></g><g><title>security_bprm_check (34 samples, 0.01%)</title><rect x="53.6174%" y="181" width="0.0112%" height="15" fill="rgb(252,18,48)" fg:x="162998" fg:w="34"/><text x="53.8674%" y="191.50"></text></g><g><title>pinnedhook_security_bprm_check_security (34 samples, 0.01%)</title><rect x="53.6174%" y="165" width="0.0112%" height="15" fill="rgb(234,199,32)" fg:x="162998" fg:w="34"/><text x="53.8674%" y="175.50"></text></g><g><title>cshook_security_bprm_check_security (34 samples, 0.01%)</title><rect x="53.6174%" y="149" width="0.0112%" height="15" fill="rgb(225,77,54)" fg:x="162998" fg:w="34"/><text x="53.8674%" y="159.50"></text></g><g><title>cshook_security_file_permission (34 samples, 0.01%)</title><rect x="53.6174%" y="133" width="0.0112%" height="15" fill="rgb(225,42,25)" fg:x="162998" fg:w="34"/><text x="53.8674%" y="143.50"></text></g><g><title>cshook_security_file_permission (34 samples, 0.01%)</title><rect x="53.6174%" y="117" width="0.0112%" height="15" fill="rgb(242,227,46)" fg:x="162998" fg:w="34"/><text x="53.8674%" y="127.50"></text></g><g><title>cshook_security_sb_free_security (34 samples, 0.01%)</title><rect x="53.6174%" y="101" width="0.0112%" height="15" fill="rgb(246,197,35)" fg:x="162998" fg:w="34"/><text x="53.8674%" y="111.50"></text></g><g><title>cshook_security_sb_free_security (34 samples, 0.01%)</title><rect x="53.6174%" y="85" width="0.0112%" height="15" fill="rgb(215,159,26)" fg:x="162998" fg:w="34"/><text x="53.8674%" y="95.50"></text></g><g><title>bprm_execve (35 samples, 0.01%)</title><rect x="53.6174%" y="245" width="0.0115%" height="15" fill="rgb(212,194,50)" fg:x="162998" fg:w="35"/><text x="53.8674%" y="255.50"></text></g><g><title>bprm_execve.part.0 (35 samples, 0.01%)</title><rect x="53.6174%" y="229" width="0.0115%" height="15" fill="rgb(246,132,1)" fg:x="162998" fg:w="35"/><text x="53.8674%" y="239.50"></text></g><g><title>[bash] (58 samples, 0.02%)</title><rect x="53.6102%" y="373" width="0.0191%" height="15" fill="rgb(217,71,7)" fg:x="162976" fg:w="58"/><text x="53.8602%" y="383.50"></text></g><g><title>[bash] (58 samples, 0.02%)</title><rect x="53.6102%" y="357" width="0.0191%" height="15" fill="rgb(252,59,32)" fg:x="162976" fg:w="58"/><text x="53.8602%" y="367.50"></text></g><g><title>shell_execve (36 samples, 0.01%)</title><rect x="53.6174%" y="341" width="0.0118%" height="15" fill="rgb(253,204,25)" fg:x="162998" fg:w="36"/><text x="53.8674%" y="351.50"></text></g><g><title>__GI_execve (36 samples, 0.01%)</title><rect x="53.6174%" y="325" width="0.0118%" height="15" fill="rgb(232,21,16)" fg:x="162998" fg:w="36"/><text x="53.8674%" y="335.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.01%)</title><rect x="53.6174%" y="309" width="0.0118%" height="15" fill="rgb(248,90,29)" fg:x="162998" fg:w="36"/><text x="53.8674%" y="319.50"></text></g><g><title>do_syscall_64 (36 samples, 0.01%)</title><rect x="53.6174%" y="293" width="0.0118%" height="15" fill="rgb(249,223,7)" fg:x="162998" fg:w="36"/><text x="53.8674%" y="303.50"></text></g><g><title>__x64_sys_execve (36 samples, 0.01%)</title><rect x="53.6174%" y="277" width="0.0118%" height="15" fill="rgb(231,119,42)" fg:x="162998" fg:w="36"/><text x="53.8674%" y="287.50"></text></g><g><title>do_execveat_common.isra.0 (36 samples, 0.01%)</title><rect x="53.6174%" y="261" width="0.0118%" height="15" fill="rgb(215,41,35)" fg:x="162998" fg:w="36"/><text x="53.8674%" y="271.50"></text></g><g><title>parse_and_execute (74 samples, 0.02%)</title><rect x="53.6102%" y="437" width="0.0243%" height="15" fill="rgb(220,44,45)" fg:x="162976" fg:w="74"/><text x="53.8602%" y="447.50"></text></g><g><title>execute_command_internal (74 samples, 0.02%)</title><rect x="53.6102%" y="421" width="0.0243%" height="15" fill="rgb(253,197,36)" fg:x="162976" fg:w="74"/><text x="53.8602%" y="431.50"></text></g><g><title>[bash] (74 samples, 0.02%)</title><rect x="53.6102%" y="405" width="0.0243%" height="15" fill="rgb(245,225,54)" fg:x="162976" fg:w="74"/><text x="53.8602%" y="415.50"></text></g><g><title>execute_command_internal (74 samples, 0.02%)</title><rect x="53.6102%" y="389" width="0.0243%" height="15" fill="rgb(239,94,37)" fg:x="162976" fg:w="74"/><text x="53.8602%" y="399.50"></text></g><g><title>[bash] (131 samples, 0.04%)</title><rect x="53.5918%" y="821" width="0.0431%" height="15" fill="rgb(242,217,10)" fg:x="162920" fg:w="131"/><text x="53.8418%" y="831.50"></text></g><g><title>execute_command_internal (93 samples, 0.03%)</title><rect x="53.6043%" y="805" width="0.0306%" height="15" fill="rgb(250,193,7)" fg:x="162958" fg:w="93"/><text x="53.8543%" y="815.50"></text></g><g><title>execute_command_internal (93 samples, 0.03%)</title><rect x="53.6043%" y="789" width="0.0306%" height="15" fill="rgb(230,104,19)" fg:x="162958" fg:w="93"/><text x="53.8543%" y="799.50"></text></g><g><title>execute_command_internal (76 samples, 0.02%)</title><rect x="53.6098%" y="773" width="0.0250%" height="15" fill="rgb(230,181,4)" fg:x="162975" fg:w="76"/><text x="53.8598%" y="783.50"></text></g><g><title>[bash] (76 samples, 0.02%)</title><rect x="53.6098%" y="757" width="0.0250%" height="15" fill="rgb(216,219,49)" fg:x="162975" fg:w="76"/><text x="53.8598%" y="767.50"></text></g><g><title>[bash] (76 samples, 0.02%)</title><rect x="53.6098%" y="741" width="0.0250%" height="15" fill="rgb(254,144,0)" fg:x="162975" fg:w="76"/><text x="53.8598%" y="751.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="53.6102%" y="725" width="0.0247%" height="15" fill="rgb(205,209,38)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="735.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="53.6102%" y="709" width="0.0247%" height="15" fill="rgb(240,21,42)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="719.50"></text></g><g><title>execute_command (75 samples, 0.02%)</title><rect x="53.6102%" y="693" width="0.0247%" height="15" fill="rgb(241,132,3)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="703.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="53.6102%" y="677" width="0.0247%" height="15" fill="rgb(225,14,2)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="687.50"></text></g><g><title>execute_command (75 samples, 0.02%)</title><rect x="53.6102%" y="661" width="0.0247%" height="15" fill="rgb(210,141,35)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="671.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="53.6102%" y="645" width="0.0247%" height="15" fill="rgb(251,14,44)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="655.50"></text></g><g><title>execute_command (75 samples, 0.02%)</title><rect x="53.6102%" y="629" width="0.0247%" height="15" fill="rgb(247,48,18)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="639.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="53.6102%" y="613" width="0.0247%" height="15" fill="rgb(225,0,40)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="623.50"></text></g><g><title>execute_command (75 samples, 0.02%)</title><rect x="53.6102%" y="597" width="0.0247%" height="15" fill="rgb(221,31,33)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="607.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="53.6102%" y="581" width="0.0247%" height="15" fill="rgb(237,42,40)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="591.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="53.6102%" y="565" width="0.0247%" height="15" fill="rgb(233,51,29)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="575.50"></text></g><g><title>[bash] (75 samples, 0.02%)</title><rect x="53.6102%" y="549" width="0.0247%" height="15" fill="rgb(226,58,20)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="559.50"></text></g><g><title>[bash] (75 samples, 0.02%)</title><rect x="53.6102%" y="533" width="0.0247%" height="15" fill="rgb(208,98,7)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="543.50"></text></g><g><title>[bash] (75 samples, 0.02%)</title><rect x="53.6102%" y="517" width="0.0247%" height="15" fill="rgb(228,143,44)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="527.50"></text></g><g><title>[bash] (75 samples, 0.02%)</title><rect x="53.6102%" y="501" width="0.0247%" height="15" fill="rgb(246,55,38)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="511.50"></text></g><g><title>expand_string_assignment (75 samples, 0.02%)</title><rect x="53.6102%" y="485" width="0.0247%" height="15" fill="rgb(247,87,16)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="495.50"></text></g><g><title>[bash] (75 samples, 0.02%)</title><rect x="53.6102%" y="469" width="0.0247%" height="15" fill="rgb(234,129,42)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="479.50"></text></g><g><title>command_substitute (75 samples, 0.02%)</title><rect x="53.6102%" y="453" width="0.0247%" height="15" fill="rgb(220,82,16)" fg:x="162976" fg:w="75"/><text x="53.8602%" y="463.50"></text></g><g><title>[bash] (46 samples, 0.02%)</title><rect x="53.6575%" y="789" width="0.0151%" height="15" fill="rgb(211,88,4)" fg:x="163120" fg:w="46"/><text x="53.9075%" y="799.50"></text></g><g><title>[bash] (46 samples, 0.02%)</title><rect x="53.6575%" y="773" width="0.0151%" height="15" fill="rgb(248,151,21)" fg:x="163120" fg:w="46"/><text x="53.9075%" y="783.50"></text></g><g><title>execute_command_internal (46 samples, 0.02%)</title><rect x="53.6575%" y="757" width="0.0151%" height="15" fill="rgb(238,163,6)" fg:x="163120" fg:w="46"/><text x="53.9075%" y="767.50"></text></g><g><title>execute_command_internal (46 samples, 0.02%)</title><rect x="53.6575%" y="741" width="0.0151%" height="15" fill="rgb(209,183,11)" fg:x="163120" fg:w="46"/><text x="53.9075%" y="751.50"></text></g><g><title>execute_command_internal (99 samples, 0.03%)</title><rect x="53.6470%" y="821" width="0.0326%" height="15" fill="rgb(219,37,20)" fg:x="163088" fg:w="99"/><text x="53.8970%" y="831.50"></text></g><g><title>execute_command_internal (67 samples, 0.02%)</title><rect x="53.6575%" y="805" width="0.0220%" height="15" fill="rgb(210,158,4)" fg:x="163120" fg:w="67"/><text x="53.9075%" y="815.50"></text></g><g><title>[unknown] (284 samples, 0.09%)</title><rect x="53.5918%" y="837" width="0.0934%" height="15" fill="rgb(221,167,53)" fg:x="162920" fg:w="284"/><text x="53.8418%" y="847.50"></text></g><g><title>_ZdlPv (31 samples, 0.01%)</title><rect x="53.7256%" y="245" width="0.0102%" height="15" fill="rgb(237,151,45)" fg:x="163327" fg:w="31"/><text x="53.9756%" y="255.50"></text></g><g><title>_ZdlPv (31 samples, 0.01%)</title><rect x="53.7256%" y="229" width="0.0102%" height="15" fill="rgb(231,39,3)" fg:x="163327" fg:w="31"/><text x="53.9756%" y="239.50"></text></g><g><title>cshook_security_file_permission (45 samples, 0.01%)</title><rect x="53.7256%" y="309" width="0.0148%" height="15" fill="rgb(212,167,28)" fg:x="163327" fg:w="45"/><text x="53.9756%" y="319.50"></text></g><g><title>cshook_security_file_permission (45 samples, 0.01%)</title><rect x="53.7256%" y="293" width="0.0148%" height="15" fill="rgb(232,178,8)" fg:x="163327" fg:w="45"/><text x="53.9756%" y="303.50"></text></g><g><title>cshook_security_sb_free_security (45 samples, 0.01%)</title><rect x="53.7256%" y="277" width="0.0148%" height="15" fill="rgb(225,151,20)" fg:x="163327" fg:w="45"/><text x="53.9756%" y="287.50"></text></g><g><title>cshook_security_sb_free_security (45 samples, 0.01%)</title><rect x="53.7256%" y="261" width="0.0148%" height="15" fill="rgb(238,3,37)" fg:x="163327" fg:w="45"/><text x="53.9756%" y="271.50"></text></g><g><title>exec_binprm (48 samples, 0.02%)</title><rect x="53.7250%" y="389" width="0.0158%" height="15" fill="rgb(251,147,42)" fg:x="163325" fg:w="48"/><text x="53.9750%" y="399.50"></text></g><g><title>search_binary_handler (48 samples, 0.02%)</title><rect x="53.7250%" y="373" width="0.0158%" height="15" fill="rgb(208,173,10)" fg:x="163325" fg:w="48"/><text x="53.9750%" y="383.50"></text></g><g><title>security_bprm_check (46 samples, 0.02%)</title><rect x="53.7256%" y="357" width="0.0151%" height="15" fill="rgb(246,225,4)" fg:x="163327" fg:w="46"/><text x="53.9756%" y="367.50"></text></g><g><title>pinnedhook_security_bprm_check_security (46 samples, 0.02%)</title><rect x="53.7256%" y="341" width="0.0151%" height="15" fill="rgb(248,102,6)" fg:x="163327" fg:w="46"/><text x="53.9756%" y="351.50"></text></g><g><title>cshook_security_bprm_check_security (46 samples, 0.02%)</title><rect x="53.7256%" y="325" width="0.0151%" height="15" fill="rgb(232,6,21)" fg:x="163327" fg:w="46"/><text x="53.9756%" y="335.50"></text></g><g><title>bprm_execve (53 samples, 0.02%)</title><rect x="53.7246%" y="421" width="0.0174%" height="15" fill="rgb(221,179,22)" fg:x="163324" fg:w="53"/><text x="53.9746%" y="431.50"></text></g><g><title>bprm_execve.part.0 (53 samples, 0.02%)</title><rect x="53.7246%" y="405" width="0.0174%" height="15" fill="rgb(252,50,20)" fg:x="163324" fg:w="53"/><text x="53.9746%" y="415.50"></text></g><g><title>shell_execve (56 samples, 0.02%)</title><rect x="53.7246%" y="517" width="0.0184%" height="15" fill="rgb(222,56,38)" fg:x="163324" fg:w="56"/><text x="53.9746%" y="527.50"></text></g><g><title>__GI_execve (56 samples, 0.02%)</title><rect x="53.7246%" y="501" width="0.0184%" height="15" fill="rgb(206,193,29)" fg:x="163324" fg:w="56"/><text x="53.9746%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.02%)</title><rect x="53.7246%" y="485" width="0.0184%" height="15" fill="rgb(239,192,45)" fg:x="163324" fg:w="56"/><text x="53.9746%" y="495.50"></text></g><g><title>do_syscall_64 (56 samples, 0.02%)</title><rect x="53.7246%" y="469" width="0.0184%" height="15" fill="rgb(254,18,36)" fg:x="163324" fg:w="56"/><text x="53.9746%" y="479.50"></text></g><g><title>__x64_sys_execve (56 samples, 0.02%)</title><rect x="53.7246%" y="453" width="0.0184%" height="15" fill="rgb(221,127,11)" fg:x="163324" fg:w="56"/><text x="53.9746%" y="463.50"></text></g><g><title>do_execveat_common.isra.0 (56 samples, 0.02%)</title><rect x="53.7246%" y="437" width="0.0184%" height="15" fill="rgb(234,146,35)" fg:x="163324" fg:w="56"/><text x="53.9746%" y="447.50"></text></g><g><title>[bash] (85 samples, 0.03%)</title><rect x="53.7158%" y="533" width="0.0280%" height="15" fill="rgb(254,201,37)" fg:x="163297" fg:w="85"/><text x="53.9658%" y="543.50"></text></g><g><title>schedule_tail (47 samples, 0.02%)</title><rect x="53.7490%" y="453" width="0.0155%" height="15" fill="rgb(211,202,23)" fg:x="163398" fg:w="47"/><text x="53.9990%" y="463.50"></text></g><g><title>finish_task_switch.isra.0 (46 samples, 0.02%)</title><rect x="53.7493%" y="437" width="0.0151%" height="15" fill="rgb(237,91,2)" fg:x="163399" fg:w="46"/><text x="53.9993%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (45 samples, 0.01%)</title><rect x="53.7496%" y="421" width="0.0148%" height="15" fill="rgb(226,228,36)" fg:x="163400" fg:w="45"/><text x="53.9996%" y="431.50"></text></g><g><title>x86_pmu_enable (44 samples, 0.01%)</title><rect x="53.7500%" y="405" width="0.0145%" height="15" fill="rgb(213,63,50)" fg:x="163401" fg:w="44"/><text x="54.0000%" y="415.50"></text></g><g><title>intel_pmu_enable_all (44 samples, 0.01%)</title><rect x="53.7500%" y="389" width="0.0145%" height="15" fill="rgb(235,194,19)" fg:x="163401" fg:w="44"/><text x="54.0000%" y="399.50"></text></g><g><title>native_write_msr (44 samples, 0.01%)</title><rect x="53.7500%" y="373" width="0.0145%" height="15" fill="rgb(207,204,18)" fg:x="163401" fg:w="44"/><text x="54.0000%" y="383.50"></text></g><g><title>__GI__Fork (60 samples, 0.02%)</title><rect x="53.7450%" y="501" width="0.0197%" height="15" fill="rgb(248,8,7)" fg:x="163386" fg:w="60"/><text x="53.9950%" y="511.50"></text></g><g><title>arch_fork (60 samples, 0.02%)</title><rect x="53.7450%" y="485" width="0.0197%" height="15" fill="rgb(223,145,47)" fg:x="163386" fg:w="60"/><text x="53.9950%" y="495.50"></text></g><g><title>ret_from_fork (52 samples, 0.02%)</title><rect x="53.7477%" y="469" width="0.0171%" height="15" fill="rgb(228,84,11)" fg:x="163394" fg:w="52"/><text x="53.9977%" y="479.50"></text></g><g><title>__libc_fork (62 samples, 0.02%)</title><rect x="53.7450%" y="517" width="0.0204%" height="15" fill="rgb(218,76,45)" fg:x="163386" fg:w="62"/><text x="53.9950%" y="527.50"></text></g><g><title>make_child (66 samples, 0.02%)</title><rect x="53.7444%" y="533" width="0.0217%" height="15" fill="rgb(223,80,15)" fg:x="163384" fg:w="66"/><text x="53.9944%" y="543.50"></text></g><g><title>[bash] (155 samples, 0.05%)</title><rect x="53.7158%" y="549" width="0.0510%" height="15" fill="rgb(219,218,33)" fg:x="163297" fg:w="155"/><text x="53.9658%" y="559.50"></text></g><g><title>execute_command_internal (160 samples, 0.05%)</title><rect x="53.7154%" y="597" width="0.0526%" height="15" fill="rgb(208,51,11)" fg:x="163296" fg:w="160"/><text x="53.9654%" y="607.50"></text></g><g><title>[bash] (160 samples, 0.05%)</title><rect x="53.7154%" y="581" width="0.0526%" height="15" fill="rgb(229,165,39)" fg:x="163296" fg:w="160"/><text x="53.9654%" y="591.50"></text></g><g><title>execute_command_internal (159 samples, 0.05%)</title><rect x="53.7158%" y="565" width="0.0523%" height="15" fill="rgb(241,100,24)" fg:x="163297" fg:w="159"/><text x="53.9658%" y="575.50"></text></g><g><title>parse_and_execute (163 samples, 0.05%)</title><rect x="53.7154%" y="613" width="0.0536%" height="15" fill="rgb(228,14,23)" fg:x="163296" fg:w="163"/><text x="53.9654%" y="623.50"></text></g><g><title>command_substitute (207 samples, 0.07%)</title><rect x="53.7049%" y="629" width="0.0681%" height="15" fill="rgb(247,116,52)" fg:x="163264" fg:w="207"/><text x="53.9549%" y="639.50"></text></g><g><title>[bash] (212 samples, 0.07%)</title><rect x="53.7039%" y="645" width="0.0697%" height="15" fill="rgb(216,149,33)" fg:x="163261" fg:w="212"/><text x="53.9539%" y="655.50"></text></g><g><title>expand_string_assignment (216 samples, 0.07%)</title><rect x="53.7039%" y="661" width="0.0711%" height="15" fill="rgb(238,142,29)" fg:x="163261" fg:w="216"/><text x="53.9539%" y="671.50"></text></g><g><title>[bash] (234 samples, 0.08%)</title><rect x="53.6987%" y="677" width="0.0770%" height="15" fill="rgb(224,83,40)" fg:x="163245" fg:w="234"/><text x="53.9487%" y="687.50"></text></g><g><title>[bash] (239 samples, 0.08%)</title><rect x="53.6987%" y="693" width="0.0786%" height="15" fill="rgb(234,165,11)" fg:x="163245" fg:w="239"/><text x="53.9487%" y="703.50"></text></g><g><title>[bash] (259 samples, 0.09%)</title><rect x="53.6983%" y="709" width="0.0852%" height="15" fill="rgb(215,96,23)" fg:x="163244" fg:w="259"/><text x="53.9483%" y="719.50"></text></g><g><title>[bash] (260 samples, 0.09%)</title><rect x="53.6983%" y="725" width="0.0855%" height="15" fill="rgb(233,179,26)" fg:x="163244" fg:w="260"/><text x="53.9483%" y="735.50"></text></g><g><title>copy_command (31 samples, 0.01%)</title><rect x="53.7901%" y="549" width="0.0102%" height="15" fill="rgb(225,129,33)" fg:x="163523" fg:w="31"/><text x="54.0401%" y="559.50"></text></g><g><title>copy_command (41 samples, 0.01%)</title><rect x="53.7871%" y="581" width="0.0135%" height="15" fill="rgb(237,49,13)" fg:x="163514" fg:w="41"/><text x="54.0371%" y="591.50"></text></g><g><title>copy_command (39 samples, 0.01%)</title><rect x="53.7878%" y="565" width="0.0128%" height="15" fill="rgb(211,3,31)" fg:x="163516" fg:w="39"/><text x="54.0378%" y="575.50"></text></g><g><title>copy_command (45 samples, 0.01%)</title><rect x="53.7865%" y="597" width="0.0148%" height="15" fill="rgb(216,152,19)" fg:x="163512" fg:w="45"/><text x="54.0365%" y="607.50"></text></g><g><title>copy_command (49 samples, 0.02%)</title><rect x="53.7855%" y="629" width="0.0161%" height="15" fill="rgb(251,121,35)" fg:x="163509" fg:w="49"/><text x="54.0355%" y="639.50"></text></g><g><title>copy_command (46 samples, 0.02%)</title><rect x="53.7865%" y="613" width="0.0151%" height="15" fill="rgb(210,217,47)" fg:x="163512" fg:w="46"/><text x="54.0365%" y="623.50"></text></g><g><title>copy_command (53 samples, 0.02%)</title><rect x="53.7845%" y="661" width="0.0174%" height="15" fill="rgb(244,116,22)" fg:x="163506" fg:w="53"/><text x="54.0345%" y="671.50"></text></g><g><title>copy_command (52 samples, 0.02%)</title><rect x="53.7848%" y="645" width="0.0171%" height="15" fill="rgb(228,17,21)" fg:x="163507" fg:w="52"/><text x="54.0348%" y="655.50"></text></g><g><title>bind_function (58 samples, 0.02%)</title><rect x="53.7839%" y="725" width="0.0191%" height="15" fill="rgb(240,149,34)" fg:x="163504" fg:w="58"/><text x="54.0339%" y="735.50"></text></g><g><title>copy_command (57 samples, 0.02%)</title><rect x="53.7842%" y="709" width="0.0187%" height="15" fill="rgb(208,125,47)" fg:x="163505" fg:w="57"/><text x="54.0342%" y="719.50"></text></g><g><title>copy_command (57 samples, 0.02%)</title><rect x="53.7842%" y="693" width="0.0187%" height="15" fill="rgb(249,186,39)" fg:x="163505" fg:w="57"/><text x="54.0342%" y="703.50"></text></g><g><title>copy_command (56 samples, 0.02%)</title><rect x="53.7845%" y="677" width="0.0184%" height="15" fill="rgb(240,220,33)" fg:x="163506" fg:w="56"/><text x="54.0345%" y="687.50"></text></g><g><title>copy_command (43 samples, 0.01%)</title><rect x="53.8079%" y="581" width="0.0141%" height="15" fill="rgb(243,110,23)" fg:x="163577" fg:w="43"/><text x="54.0579%" y="591.50"></text></g><g><title>copy_command (42 samples, 0.01%)</title><rect x="53.8082%" y="565" width="0.0138%" height="15" fill="rgb(219,163,46)" fg:x="163578" fg:w="42"/><text x="54.0582%" y="575.50"></text></g><g><title>copy_command (32 samples, 0.01%)</title><rect x="53.8115%" y="549" width="0.0105%" height="15" fill="rgb(216,126,30)" fg:x="163588" fg:w="32"/><text x="54.0615%" y="559.50"></text></g><g><title>copy_command (47 samples, 0.02%)</title><rect x="53.8072%" y="613" width="0.0155%" height="15" fill="rgb(208,139,11)" fg:x="163575" fg:w="47"/><text x="54.0572%" y="623.50"></text></g><g><title>copy_command (46 samples, 0.02%)</title><rect x="53.8075%" y="597" width="0.0151%" height="15" fill="rgb(213,118,36)" fg:x="163576" fg:w="46"/><text x="54.0575%" y="607.50"></text></g><g><title>copy_command (53 samples, 0.02%)</title><rect x="53.8056%" y="629" width="0.0174%" height="15" fill="rgb(226,43,17)" fg:x="163570" fg:w="53"/><text x="54.0556%" y="639.50"></text></g><g><title>copy_command (56 samples, 0.02%)</title><rect x="53.8049%" y="645" width="0.0184%" height="15" fill="rgb(254,217,4)" fg:x="163568" fg:w="56"/><text x="54.0549%" y="655.50"></text></g><g><title>copy_function_def_contents (61 samples, 0.02%)</title><rect x="53.8036%" y="725" width="0.0201%" height="15" fill="rgb(210,134,47)" fg:x="163564" fg:w="61"/><text x="54.0536%" y="735.50"></text></g><g><title>copy_command (61 samples, 0.02%)</title><rect x="53.8036%" y="709" width="0.0201%" height="15" fill="rgb(237,24,49)" fg:x="163564" fg:w="61"/><text x="54.0536%" y="719.50"></text></g><g><title>copy_command (61 samples, 0.02%)</title><rect x="53.8036%" y="693" width="0.0201%" height="15" fill="rgb(251,39,46)" fg:x="163564" fg:w="61"/><text x="54.0536%" y="703.50"></text></g><g><title>copy_command (60 samples, 0.02%)</title><rect x="53.8039%" y="677" width="0.0197%" height="15" fill="rgb(251,220,3)" fg:x="163565" fg:w="60"/><text x="54.0539%" y="687.50"></text></g><g><title>copy_command (58 samples, 0.02%)</title><rect x="53.8046%" y="661" width="0.0191%" height="15" fill="rgb(228,105,12)" fg:x="163567" fg:w="58"/><text x="54.0546%" y="671.50"></text></g><g><title>[bash] (41 samples, 0.01%)</title><rect x="53.8240%" y="693" width="0.0135%" height="15" fill="rgb(215,196,1)" fg:x="163626" fg:w="41"/><text x="54.0740%" y="703.50"></text></g><g><title>ret_from_fork (33 samples, 0.01%)</title><rect x="53.8473%" y="581" width="0.0109%" height="15" fill="rgb(214,33,39)" fg:x="163697" fg:w="33"/><text x="54.0973%" y="591.50"></text></g><g><title>__libc_fork (40 samples, 0.01%)</title><rect x="53.8454%" y="629" width="0.0132%" height="15" fill="rgb(220,19,52)" fg:x="163691" fg:w="40"/><text x="54.0954%" y="639.50"></text></g><g><title>__GI__Fork (40 samples, 0.01%)</title><rect x="53.8454%" y="613" width="0.0132%" height="15" fill="rgb(221,78,38)" fg:x="163691" fg:w="40"/><text x="54.0954%" y="623.50"></text></g><g><title>arch_fork (40 samples, 0.01%)</title><rect x="53.8454%" y="597" width="0.0132%" height="15" fill="rgb(253,30,16)" fg:x="163691" fg:w="40"/><text x="54.0954%" y="607.50"></text></g><g><title>make_child (42 samples, 0.01%)</title><rect x="53.8450%" y="645" width="0.0138%" height="15" fill="rgb(242,65,0)" fg:x="163690" fg:w="42"/><text x="54.0950%" y="655.50"></text></g><g><title>execute_command_internal (50 samples, 0.02%)</title><rect x="53.8595%" y="629" width="0.0164%" height="15" fill="rgb(235,201,12)" fg:x="163734" fg:w="50"/><text x="54.1095%" y="639.50"></text></g><g><title>parse_and_execute (54 samples, 0.02%)</title><rect x="53.8589%" y="645" width="0.0178%" height="15" fill="rgb(233,161,9)" fg:x="163732" fg:w="54"/><text x="54.1089%" y="655.50"></text></g><g><title>expand_word_leave_quoted (113 samples, 0.04%)</title><rect x="53.8421%" y="693" width="0.0372%" height="15" fill="rgb(241,207,41)" fg:x="163681" fg:w="113"/><text x="54.0921%" y="703.50"></text></g><g><title>[bash] (113 samples, 0.04%)</title><rect x="53.8421%" y="677" width="0.0372%" height="15" fill="rgb(212,69,46)" fg:x="163681" fg:w="113"/><text x="54.0921%" y="687.50"></text></g><g><title>command_substitute (113 samples, 0.04%)</title><rect x="53.8421%" y="661" width="0.0372%" height="15" fill="rgb(239,69,45)" fg:x="163681" fg:w="113"/><text x="54.0921%" y="671.50"></text></g><g><title>schedule_tail (35 samples, 0.01%)</title><rect x="53.8822%" y="613" width="0.0115%" height="15" fill="rgb(242,117,48)" fg:x="163803" fg:w="35"/><text x="54.1322%" y="623.50"></text></g><g><title>finish_task_switch.isra.0 (35 samples, 0.01%)</title><rect x="53.8822%" y="597" width="0.0115%" height="15" fill="rgb(228,41,36)" fg:x="163803" fg:w="35"/><text x="54.1322%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.01%)</title><rect x="53.8825%" y="581" width="0.0112%" height="15" fill="rgb(212,3,32)" fg:x="163804" fg:w="34"/><text x="54.1325%" y="591.50"></text></g><g><title>x86_pmu_enable (34 samples, 0.01%)</title><rect x="53.8825%" y="565" width="0.0112%" height="15" fill="rgb(233,41,49)" fg:x="163804" fg:w="34"/><text x="54.1325%" y="575.50"></text></g><g><title>intel_pmu_enable_all (34 samples, 0.01%)</title><rect x="53.8825%" y="549" width="0.0112%" height="15" fill="rgb(252,170,49)" fg:x="163804" fg:w="34"/><text x="54.1325%" y="559.50"></text></g><g><title>native_write_msr (34 samples, 0.01%)</title><rect x="53.8825%" y="533" width="0.0112%" height="15" fill="rgb(229,53,26)" fg:x="163804" fg:w="34"/><text x="54.1325%" y="543.50"></text></g><g><title>__libc_fork (45 samples, 0.01%)</title><rect x="53.8793%" y="677" width="0.0148%" height="15" fill="rgb(217,157,12)" fg:x="163794" fg:w="45"/><text x="54.1293%" y="687.50"></text></g><g><title>__GI__Fork (45 samples, 0.01%)</title><rect x="53.8793%" y="661" width="0.0148%" height="15" fill="rgb(227,17,9)" fg:x="163794" fg:w="45"/><text x="54.1293%" y="671.50"></text></g><g><title>arch_fork (44 samples, 0.01%)</title><rect x="53.8796%" y="645" width="0.0145%" height="15" fill="rgb(218,84,12)" fg:x="163795" fg:w="44"/><text x="54.1296%" y="655.50"></text></g><g><title>ret_from_fork (40 samples, 0.01%)</title><rect x="53.8809%" y="629" width="0.0132%" height="15" fill="rgb(212,79,24)" fg:x="163799" fg:w="40"/><text x="54.1309%" y="639.50"></text></g><g><title>make_child (48 samples, 0.02%)</title><rect x="53.8793%" y="693" width="0.0158%" height="15" fill="rgb(217,222,37)" fg:x="163794" fg:w="48"/><text x="54.1293%" y="703.50"></text></g><g><title>execute_command (227 samples, 0.07%)</title><rect x="53.8237%" y="725" width="0.0747%" height="15" fill="rgb(246,208,8)" fg:x="163625" fg:w="227"/><text x="54.0737%" y="735.50"></text></g><g><title>execute_command_internal (227 samples, 0.07%)</title><rect x="53.8237%" y="709" width="0.0747%" height="15" fill="rgb(244,133,10)" fg:x="163625" fg:w="227"/><text x="54.0737%" y="719.50"></text></g><g><title>execute_command (613 samples, 0.20%)</title><rect x="53.6970%" y="757" width="0.2016%" height="15" fill="rgb(209,219,41)" fg:x="163240" fg:w="613"/><text x="53.9470%" y="767.50"></text></g><g><title>execute_command_internal (610 samples, 0.20%)</title><rect x="53.6980%" y="741" width="0.2007%" height="15" fill="rgb(253,175,45)" fg:x="163243" fg:w="610"/><text x="53.9480%" y="751.50"></text></g><g><title>[bash] (44 samples, 0.01%)</title><rect x="53.9924%" y="677" width="0.0145%" height="15" fill="rgb(235,100,37)" fg:x="164138" fg:w="44"/><text x="54.2424%" y="687.50"></text></g><g><title>[bash] (247 samples, 0.08%)</title><rect x="53.9411%" y="693" width="0.0812%" height="15" fill="rgb(225,87,19)" fg:x="163982" fg:w="247"/><text x="54.1911%" y="703.50"></text></g><g><title>buffered_getchar (43 samples, 0.01%)</title><rect x="54.0082%" y="677" width="0.0141%" height="15" fill="rgb(217,152,17)" fg:x="164186" fg:w="43"/><text x="54.2582%" y="687.50"></text></g><g><title>[bash] (396 samples, 0.13%)</title><rect x="53.9164%" y="709" width="0.1303%" height="15" fill="rgb(235,72,13)" fg:x="163907" fg:w="396"/><text x="54.1664%" y="719.50"></text></g><g><title>reader_loop (1,115 samples, 0.37%)</title><rect x="53.6898%" y="773" width="0.3668%" height="15" fill="rgb(233,140,18)" fg:x="163218" fg:w="1115"/><text x="53.9398%" y="783.50"></text></g><g><title>read_command (480 samples, 0.16%)</title><rect x="53.8987%" y="757" width="0.1579%" height="15" fill="rgb(207,212,28)" fg:x="163853" fg:w="480"/><text x="54.1487%" y="767.50"></text></g><g><title>parse_command (480 samples, 0.16%)</title><rect x="53.8987%" y="741" width="0.1579%" height="15" fill="rgb(220,130,25)" fg:x="163853" fg:w="480"/><text x="54.1487%" y="751.50"></text></g><g><title>yyparse (480 samples, 0.16%)</title><rect x="53.8987%" y="725" width="0.1579%" height="15" fill="rgb(205,55,34)" fg:x="163853" fg:w="480"/><text x="54.1487%" y="735.50"></text></g><g><title>__libc_start_main_impl (1,132 samples, 0.37%)</title><rect x="53.6858%" y="821" width="0.3724%" height="15" fill="rgb(237,54,35)" fg:x="163206" fg:w="1132"/><text x="53.9358%" y="831.50"></text></g><g><title>__libc_start_call_main (1,132 samples, 0.37%)</title><rect x="53.6858%" y="805" width="0.3724%" height="15" fill="rgb(208,67,23)" fg:x="163206" fg:w="1132"/><text x="53.9358%" y="815.50"></text></g><g><title>main (1,132 samples, 0.37%)</title><rect x="53.6858%" y="789" width="0.3724%" height="15" fill="rgb(206,207,50)" fg:x="163206" fg:w="1132"/><text x="53.9358%" y="799.50"></text></g><g><title>_start (1,153 samples, 0.38%)</title><rect x="53.6858%" y="837" width="0.3793%" height="15" fill="rgb(213,211,42)" fg:x="163206" fg:w="1153"/><text x="53.9358%" y="847.50"></text></g><g><title>asm_exc_page_fault (34 samples, 0.01%)</title><rect x="54.0651%" y="837" width="0.0112%" height="15" fill="rgb(252,197,50)" fg:x="164359" fg:w="34"/><text x="54.3151%" y="847.50"></text></g><g><title>exit_mm (53 samples, 0.02%)</title><rect x="54.0816%" y="757" width="0.0174%" height="15" fill="rgb(251,211,41)" fg:x="164409" fg:w="53"/><text x="54.3316%" y="767.50"></text></g><g><title>mmput (53 samples, 0.02%)</title><rect x="54.0816%" y="741" width="0.0174%" height="15" fill="rgb(229,211,5)" fg:x="164409" fg:w="53"/><text x="54.3316%" y="751.50"></text></g><g><title>exit_mmap (53 samples, 0.02%)</title><rect x="54.0816%" y="725" width="0.0174%" height="15" fill="rgb(239,36,31)" fg:x="164409" fg:w="53"/><text x="54.3316%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.02%)</title><rect x="54.0773%" y="837" width="0.0230%" height="15" fill="rgb(248,67,31)" fg:x="164396" fg:w="70"/><text x="54.3273%" y="847.50"></text></g><g><title>do_syscall_64 (70 samples, 0.02%)</title><rect x="54.0773%" y="821" width="0.0230%" height="15" fill="rgb(249,55,44)" fg:x="164396" fg:w="70"/><text x="54.3273%" y="831.50"></text></g><g><title>__x64_sys_exit_group (60 samples, 0.02%)</title><rect x="54.0806%" y="805" width="0.0197%" height="15" fill="rgb(216,82,12)" fg:x="164406" fg:w="60"/><text x="54.3306%" y="815.50"></text></g><g><title>do_group_exit (60 samples, 0.02%)</title><rect x="54.0806%" y="789" width="0.0197%" height="15" fill="rgb(242,174,1)" fg:x="164406" fg:w="60"/><text x="54.3306%" y="799.50"></text></g><g><title>do_exit (60 samples, 0.02%)</title><rect x="54.0806%" y="773" width="0.0197%" height="15" fill="rgb(208,120,29)" fg:x="164406" fg:w="60"/><text x="54.3306%" y="783.50"></text></g><g><title>libtool (1,592 samples, 0.52%)</title><rect x="53.5770%" y="853" width="0.5237%" height="15" fill="rgb(221,105,43)" fg:x="162875" fg:w="1592"/><text x="53.8270%" y="863.50"></text></g><g><title>[[stack]] (31 samples, 0.01%)</title><rect x="54.1059%" y="837" width="0.0102%" height="15" fill="rgb(234,124,22)" fg:x="164483" fg:w="31"/><text x="54.3559%" y="847.50"></text></g><g><title>[unknown] (41 samples, 0.01%)</title><rect x="54.1273%" y="837" width="0.0135%" height="15" fill="rgb(212,23,30)" fg:x="164548" fg:w="41"/><text x="54.3773%" y="847.50"></text></g><g><title>[libstdc++.so.6.0.30] (49 samples, 0.02%)</title><rect x="54.1602%" y="741" width="0.0161%" height="15" fill="rgb(219,122,53)" fg:x="164648" fg:w="49"/><text x="54.4102%" y="751.50"></text></g><g><title>std::locale::_Impl::_Impl (47 samples, 0.02%)</title><rect x="54.1608%" y="725" width="0.0155%" height="15" fill="rgb(248,84,24)" fg:x="164650" fg:w="47"/><text x="54.4108%" y="735.50"></text></g><g><title>std::ios_base::Init::Init (77 samples, 0.03%)</title><rect x="54.1516%" y="773" width="0.0253%" height="15" fill="rgb(245,115,18)" fg:x="164622" fg:w="77"/><text x="54.4016%" y="783.50"></text></g><g><title>std::locale::locale (51 samples, 0.02%)</title><rect x="54.1602%" y="757" width="0.0168%" height="15" fill="rgb(227,176,51)" fg:x="164648" fg:w="51"/><text x="54.4102%" y="767.50"></text></g><g><title>_GLOBAL__sub_I__Z12SwitchToEuidv (78 samples, 0.03%)</title><rect x="54.1516%" y="789" width="0.0257%" height="15" fill="rgb(229,63,42)" fg:x="164622" fg:w="78"/><text x="54.4016%" y="799.50"></text></g><g><title>__libc_csu_init (84 samples, 0.03%)</title><rect x="54.1516%" y="805" width="0.0276%" height="15" fill="rgb(247,202,24)" fg:x="164622" fg:w="84"/><text x="54.4016%" y="815.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (89 samples, 0.03%)</title><rect x="54.2316%" y="389" width="0.0293%" height="15" fill="rgb(244,173,20)" fg:x="164865" fg:w="89"/><text x="54.4816%" y="399.50"></text></g><g><title>_ZdlPv (88 samples, 0.03%)</title><rect x="54.2319%" y="373" width="0.0289%" height="15" fill="rgb(242,81,47)" fg:x="164866" fg:w="88"/><text x="54.4819%" y="383.50"></text></g><g><title>_ZdlPv (85 samples, 0.03%)</title><rect x="54.2329%" y="357" width="0.0280%" height="15" fill="rgb(231,185,54)" fg:x="164869" fg:w="85"/><text x="54.4829%" y="367.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (85 samples, 0.03%)</title><rect x="54.2329%" y="341" width="0.0280%" height="15" fill="rgb(243,55,32)" fg:x="164869" fg:w="85"/><text x="54.4829%" y="351.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (66 samples, 0.02%)</title><rect x="54.2391%" y="325" width="0.0217%" height="15" fill="rgb(208,167,19)" fg:x="164888" fg:w="66"/><text x="54.4891%" y="335.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (125 samples, 0.04%)</title><rect x="54.2296%" y="405" width="0.0411%" height="15" fill="rgb(231,72,35)" fg:x="164859" fg:w="125"/><text x="54.4796%" y="415.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (139 samples, 0.05%)</title><rect x="54.2256%" y="421" width="0.0457%" height="15" fill="rgb(250,173,51)" fg:x="164847" fg:w="139"/><text x="54.4756%" y="431.50"></text></g><g><title>_ZdlPv (57 samples, 0.02%)</title><rect x="54.2783%" y="341" width="0.0187%" height="15" fill="rgb(209,5,22)" fg:x="165007" fg:w="57"/><text x="54.5283%" y="351.50"></text></g><g><title>_ZdlPv (69 samples, 0.02%)</title><rect x="54.2776%" y="357" width="0.0227%" height="15" fill="rgb(250,174,19)" fg:x="165005" fg:w="69"/><text x="54.5276%" y="367.50"></text></g><g><title>_ZdlPv (85 samples, 0.03%)</title><rect x="54.2756%" y="373" width="0.0280%" height="15" fill="rgb(217,3,49)" fg:x="164999" fg:w="85"/><text x="54.5256%" y="383.50"></text></g><g><title>_ZdlPv (97 samples, 0.03%)</title><rect x="54.2730%" y="389" width="0.0319%" height="15" fill="rgb(218,225,5)" fg:x="164991" fg:w="97"/><text x="54.5230%" y="399.50"></text></g><g><title>_ZdlPv (108 samples, 0.04%)</title><rect x="54.2723%" y="405" width="0.0355%" height="15" fill="rgb(236,89,11)" fg:x="164989" fg:w="108"/><text x="54.5223%" y="415.50"></text></g><g><title>_ZdlPv (133 samples, 0.04%)</title><rect x="54.2714%" y="421" width="0.0437%" height="15" fill="rgb(206,33,28)" fg:x="164986" fg:w="133"/><text x="54.5214%" y="431.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (42 samples, 0.01%)</title><rect x="54.3233%" y="373" width="0.0138%" height="15" fill="rgb(241,56,42)" fg:x="165144" fg:w="42"/><text x="54.5733%" y="383.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (33 samples, 0.01%)</title><rect x="54.3263%" y="357" width="0.0109%" height="15" fill="rgb(222,44,11)" fg:x="165153" fg:w="33"/><text x="54.5763%" y="367.50"></text></g><g><title>_ZdlPv (50 samples, 0.02%)</title><rect x="54.3217%" y="389" width="0.0164%" height="15" fill="rgb(234,111,20)" fg:x="165139" fg:w="50"/><text x="54.5717%" y="399.50"></text></g><g><title>_ZdlPv (51 samples, 0.02%)</title><rect x="54.3217%" y="405" width="0.0168%" height="15" fill="rgb(237,77,6)" fg:x="165139" fg:w="51"/><text x="54.5717%" y="415.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (35 samples, 0.01%)</title><rect x="54.4158%" y="197" width="0.0115%" height="15" fill="rgb(235,111,23)" fg:x="165425" fg:w="35"/><text x="54.6658%" y="207.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (35 samples, 0.01%)</title><rect x="54.4158%" y="181" width="0.0115%" height="15" fill="rgb(251,135,29)" fg:x="165425" fg:w="35"/><text x="54.6658%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (69 samples, 0.02%)</title><rect x="54.4125%" y="229" width="0.0227%" height="15" fill="rgb(217,57,1)" fg:x="165415" fg:w="69"/><text x="54.6625%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (63 samples, 0.02%)</title><rect x="54.4144%" y="213" width="0.0207%" height="15" fill="rgb(249,119,31)" fg:x="165421" fg:w="63"/><text x="54.6644%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (120 samples, 0.04%)</title><rect x="54.3960%" y="277" width="0.0395%" height="15" fill="rgb(233,164,33)" fg:x="165365" fg:w="120"/><text x="54.6460%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (118 samples, 0.04%)</title><rect x="54.3967%" y="261" width="0.0388%" height="15" fill="rgb(250,217,43)" fg:x="165367" fg:w="118"/><text x="54.6467%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (95 samples, 0.03%)</title><rect x="54.4042%" y="245" width="0.0312%" height="15" fill="rgb(232,154,50)" fg:x="165390" fg:w="95"/><text x="54.6542%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (174 samples, 0.06%)</title><rect x="54.3792%" y="325" width="0.0572%" height="15" fill="rgb(227,190,8)" fg:x="165314" fg:w="174"/><text x="54.6292%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (154 samples, 0.05%)</title><rect x="54.3858%" y="309" width="0.0507%" height="15" fill="rgb(209,217,32)" fg:x="165334" fg:w="154"/><text x="54.6358%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (136 samples, 0.04%)</title><rect x="54.3917%" y="293" width="0.0447%" height="15" fill="rgb(243,203,50)" fg:x="165352" fg:w="136"/><text x="54.6417%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (191 samples, 0.06%)</title><rect x="54.3750%" y="341" width="0.0628%" height="15" fill="rgb(232,152,27)" fg:x="165301" fg:w="191"/><text x="54.6250%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (238 samples, 0.08%)</title><rect x="54.3612%" y="373" width="0.0783%" height="15" fill="rgb(240,34,29)" fg:x="165259" fg:w="238"/><text x="54.6112%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (206 samples, 0.07%)</title><rect x="54.3717%" y="357" width="0.0678%" height="15" fill="rgb(215,185,52)" fg:x="165291" fg:w="206"/><text x="54.6217%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (277 samples, 0.09%)</title><rect x="54.3496%" y="389" width="0.0911%" height="15" fill="rgb(240,89,49)" fg:x="165224" fg:w="277"/><text x="54.5996%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (319 samples, 0.10%)</title><rect x="54.3388%" y="405" width="0.1049%" height="15" fill="rgb(225,12,52)" fg:x="165191" fg:w="319"/><text x="54.5888%" y="415.50"></text></g><g><title>_ZdlPv (692 samples, 0.23%)</title><rect x="54.2167%" y="437" width="0.2276%" height="15" fill="rgb(239,128,45)" fg:x="164820" fg:w="692"/><text x="54.4667%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (387 samples, 0.13%)</title><rect x="54.3171%" y="421" width="0.1273%" height="15" fill="rgb(211,78,47)" fg:x="165125" fg:w="387"/><text x="54.5671%" y="431.50"></text></g><g><title>_ZdlPv (700 samples, 0.23%)</title><rect x="54.2144%" y="469" width="0.2303%" height="15" fill="rgb(232,31,21)" fg:x="164813" fg:w="700"/><text x="54.4644%" y="479.50"></text></g><g><title>_ZdlPv (700 samples, 0.23%)</title><rect x="54.2144%" y="453" width="0.2303%" height="15" fill="rgb(222,168,14)" fg:x="164813" fg:w="700"/><text x="54.4644%" y="463.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (33 samples, 0.01%)</title><rect x="54.4582%" y="357" width="0.0109%" height="15" fill="rgb(209,128,24)" fg:x="165554" fg:w="33"/><text x="54.7082%" y="367.50"></text></g><g><title>_ZdlPv (33 samples, 0.01%)</title><rect x="54.4582%" y="341" width="0.0109%" height="15" fill="rgb(249,35,13)" fg:x="165554" fg:w="33"/><text x="54.7082%" y="351.50"></text></g><g><title>_ZdlPv (33 samples, 0.01%)</title><rect x="54.4582%" y="325" width="0.0109%" height="15" fill="rgb(218,7,2)" fg:x="165554" fg:w="33"/><text x="54.7082%" y="335.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (33 samples, 0.01%)</title><rect x="54.4582%" y="309" width="0.0109%" height="15" fill="rgb(238,107,27)" fg:x="165554" fg:w="33"/><text x="54.7082%" y="319.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (31 samples, 0.01%)</title><rect x="54.4589%" y="293" width="0.0102%" height="15" fill="rgb(217,88,38)" fg:x="165556" fg:w="31"/><text x="54.7089%" y="303.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (74 samples, 0.02%)</title><rect x="54.4572%" y="373" width="0.0243%" height="15" fill="rgb(230,207,0)" fg:x="165551" fg:w="74"/><text x="54.7072%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (34 samples, 0.01%)</title><rect x="54.4704%" y="357" width="0.0112%" height="15" fill="rgb(249,64,54)" fg:x="165591" fg:w="34"/><text x="54.7204%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (33 samples, 0.01%)</title><rect x="54.4707%" y="341" width="0.0109%" height="15" fill="rgb(231,7,11)" fg:x="165592" fg:w="33"/><text x="54.7207%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (31 samples, 0.01%)</title><rect x="54.4714%" y="325" width="0.0102%" height="15" fill="rgb(205,149,21)" fg:x="165594" fg:w="31"/><text x="54.7214%" y="335.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (82 samples, 0.03%)</title><rect x="54.4556%" y="389" width="0.0270%" height="15" fill="rgb(215,126,34)" fg:x="165546" fg:w="82"/><text x="54.7056%" y="399.50"></text></g><g><title>_ZdlPv (35 samples, 0.01%)</title><rect x="54.4842%" y="357" width="0.0115%" height="15" fill="rgb(241,132,45)" fg:x="165633" fg:w="35"/><text x="54.7342%" y="367.50"></text></g><g><title>_ZdlPv (40 samples, 0.01%)</title><rect x="54.4835%" y="373" width="0.0132%" height="15" fill="rgb(252,69,32)" fg:x="165631" fg:w="40"/><text x="54.7335%" y="383.50"></text></g><g><title>_ZdlPv (48 samples, 0.02%)</title><rect x="54.4825%" y="389" width="0.0158%" height="15" fill="rgb(232,204,19)" fg:x="165628" fg:w="48"/><text x="54.7325%" y="399.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (59 samples, 0.02%)</title><rect x="54.5059%" y="325" width="0.0194%" height="15" fill="rgb(249,15,47)" fg:x="165699" fg:w="59"/><text x="54.7559%" y="335.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (65 samples, 0.02%)</title><rect x="54.5042%" y="341" width="0.0214%" height="15" fill="rgb(209,227,23)" fg:x="165694" fg:w="65"/><text x="54.7542%" y="351.50"></text></g><g><title>_ZdlPv (69 samples, 0.02%)</title><rect x="54.5039%" y="373" width="0.0227%" height="15" fill="rgb(248,92,24)" fg:x="165693" fg:w="69"/><text x="54.7539%" y="383.50"></text></g><g><title>_ZdlPv (69 samples, 0.02%)</title><rect x="54.5039%" y="357" width="0.0227%" height="15" fill="rgb(247,59,2)" fg:x="165693" fg:w="69"/><text x="54.7539%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (37 samples, 0.01%)</title><rect x="54.5654%" y="229" width="0.0122%" height="15" fill="rgb(221,30,5)" fg:x="165880" fg:w="37"/><text x="54.8154%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (42 samples, 0.01%)</title><rect x="54.5641%" y="245" width="0.0138%" height="15" fill="rgb(208,108,53)" fg:x="165876" fg:w="42"/><text x="54.8141%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (61 samples, 0.02%)</title><rect x="54.5585%" y="261" width="0.0201%" height="15" fill="rgb(211,183,26)" fg:x="165859" fg:w="61"/><text x="54.8085%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (77 samples, 0.03%)</title><rect x="54.5539%" y="277" width="0.0253%" height="15" fill="rgb(232,132,4)" fg:x="165845" fg:w="77"/><text x="54.8039%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (96 samples, 0.03%)</title><rect x="54.5493%" y="293" width="0.0316%" height="15" fill="rgb(253,128,37)" fg:x="165831" fg:w="96"/><text x="54.7993%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (147 samples, 0.05%)</title><rect x="54.5335%" y="357" width="0.0484%" height="15" fill="rgb(221,58,24)" fg:x="165783" fg:w="147"/><text x="54.7835%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (125 samples, 0.04%)</title><rect x="54.5408%" y="341" width="0.0411%" height="15" fill="rgb(230,54,45)" fg:x="165805" fg:w="125"/><text x="54.7908%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (110 samples, 0.04%)</title><rect x="54.5457%" y="325" width="0.0362%" height="15" fill="rgb(254,21,18)" fg:x="165820" fg:w="110"/><text x="54.7957%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (105 samples, 0.03%)</title><rect x="54.5473%" y="309" width="0.0345%" height="15" fill="rgb(221,108,0)" fg:x="165825" fg:w="105"/><text x="54.7973%" y="319.50"></text></g><g><title>_ZdlPv (396 samples, 0.13%)</title><rect x="54.4519%" y="405" width="0.1303%" height="15" fill="rgb(206,95,1)" fg:x="165535" fg:w="396"/><text x="54.7019%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (243 samples, 0.08%)</title><rect x="54.5023%" y="389" width="0.0799%" height="15" fill="rgb(237,52,5)" fg:x="165688" fg:w="243"/><text x="54.7523%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (167 samples, 0.05%)</title><rect x="54.5273%" y="373" width="0.0549%" height="15" fill="rgb(218,150,34)" fg:x="165764" fg:w="167"/><text x="54.7773%" y="383.50"></text></g><g><title>_ZdlPv (428 samples, 0.14%)</title><rect x="54.4483%" y="421" width="0.1408%" height="15" fill="rgb(235,194,28)" fg:x="165524" fg:w="428"/><text x="54.6983%" y="431.50"></text></g><g><title>_ZdlPv (429 samples, 0.14%)</title><rect x="54.4483%" y="453" width="0.1411%" height="15" fill="rgb(245,92,18)" fg:x="165524" fg:w="429"/><text x="54.6983%" y="463.50"></text></g><g><title>_ZdlPv (429 samples, 0.14%)</title><rect x="54.4483%" y="437" width="0.1411%" height="15" fill="rgb(253,203,53)" fg:x="165524" fg:w="429"/><text x="54.6983%" y="447.50"></text></g><g><title>cshook_security_sb_free_security (456 samples, 0.15%)</title><rect x="54.4480%" y="469" width="0.1500%" height="15" fill="rgb(249,185,47)" fg:x="165523" fg:w="456"/><text x="54.6980%" y="479.50"></text></g><g><title>cshook_security_file_permission (1,181 samples, 0.39%)</title><rect x="54.2135%" y="517" width="0.3885%" height="15" fill="rgb(252,194,52)" fg:x="164810" fg:w="1181"/><text x="54.4635%" y="527.50"></text></g><g><title>cshook_security_sb_free_security (1,181 samples, 0.39%)</title><rect x="54.2135%" y="501" width="0.3885%" height="15" fill="rgb(210,53,36)" fg:x="164810" fg:w="1181"/><text x="54.4635%" y="511.50"></text></g><g><title>cshook_security_sb_free_security (1,180 samples, 0.39%)</title><rect x="54.2138%" y="485" width="0.3882%" height="15" fill="rgb(237,37,25)" fg:x="164811" fg:w="1180"/><text x="54.4638%" y="495.50"></text></g><g><title>security_bprm_check (1,210 samples, 0.40%)</title><rect x="54.2052%" y="581" width="0.3980%" height="15" fill="rgb(242,116,27)" fg:x="164785" fg:w="1210"/><text x="54.4552%" y="591.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,209 samples, 0.40%)</title><rect x="54.2056%" y="565" width="0.3977%" height="15" fill="rgb(213,185,26)" fg:x="164786" fg:w="1209"/><text x="54.4556%" y="575.50"></text></g><g><title>cshook_security_bprm_check_security (1,208 samples, 0.40%)</title><rect x="54.2059%" y="549" width="0.3974%" height="15" fill="rgb(225,204,8)" fg:x="164787" fg:w="1208"/><text x="54.4559%" y="559.50"></text></g><g><title>cshook_security_file_permission (1,207 samples, 0.40%)</title><rect x="54.2062%" y="533" width="0.3970%" height="15" fill="rgb(254,111,37)" fg:x="164788" fg:w="1207"/><text x="54.4562%" y="543.50"></text></g><g><title>exec_binprm (1,253 samples, 0.41%)</title><rect x="54.1914%" y="613" width="0.4122%" height="15" fill="rgb(242,35,9)" fg:x="164743" fg:w="1253"/><text x="54.4414%" y="623.50"></text></g><g><title>search_binary_handler (1,252 samples, 0.41%)</title><rect x="54.1917%" y="597" width="0.4118%" height="15" fill="rgb(232,138,49)" fg:x="164744" fg:w="1252"/><text x="54.4417%" y="607.50"></text></g><g><title>bprm_execve.part.0 (1,295 samples, 0.43%)</title><rect x="54.1881%" y="629" width="0.4260%" height="15" fill="rgb(247,56,4)" fg:x="164733" fg:w="1295"/><text x="54.4381%" y="639.50"></text></g><g><title>bprm_execve (1,296 samples, 0.43%)</title><rect x="54.1881%" y="645" width="0.4263%" height="15" fill="rgb(226,179,17)" fg:x="164733" fg:w="1296"/><text x="54.4381%" y="655.50"></text></g><g><title>do_execveat_common.isra.0 (1,315 samples, 0.43%)</title><rect x="54.1855%" y="661" width="0.4326%" height="15" fill="rgb(216,163,45)" fg:x="164725" fg:w="1315"/><text x="54.4355%" y="671.50"></text></g><g><title>[libc.so.6] (1,316 samples, 0.43%)</title><rect x="54.1855%" y="741" width="0.4329%" height="15" fill="rgb(211,157,3)" fg:x="164725" fg:w="1316"/><text x="54.4355%" y="751.50"></text></g><g><title>__GI_execve (1,316 samples, 0.43%)</title><rect x="54.1855%" y="725" width="0.4329%" height="15" fill="rgb(234,44,20)" fg:x="164725" fg:w="1316"/><text x="54.4355%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,316 samples, 0.43%)</title><rect x="54.1855%" y="709" width="0.4329%" height="15" fill="rgb(254,138,23)" fg:x="164725" fg:w="1316"/><text x="54.4355%" y="719.50"></text></g><g><title>do_syscall_64 (1,316 samples, 0.43%)</title><rect x="54.1855%" y="693" width="0.4329%" height="15" fill="rgb(206,119,39)" fg:x="164725" fg:w="1316"/><text x="54.4355%" y="703.50"></text></g><g><title>__x64_sys_execve (1,316 samples, 0.43%)</title><rect x="54.1855%" y="677" width="0.4329%" height="15" fill="rgb(231,105,52)" fg:x="164725" fg:w="1316"/><text x="54.4355%" y="687.50"></text></g><g><title>dup_mmap (45 samples, 0.01%)</title><rect x="54.6375%" y="581" width="0.0148%" height="15" fill="rgb(250,20,5)" fg:x="166099" fg:w="45"/><text x="54.8875%" y="591.50"></text></g><g><title>dup_mm (47 samples, 0.02%)</title><rect x="54.6375%" y="597" width="0.0155%" height="15" fill="rgb(215,198,30)" fg:x="166099" fg:w="47"/><text x="54.8875%" y="607.50"></text></g><g><title>copy_process (81 samples, 0.03%)</title><rect x="54.6339%" y="613" width="0.0266%" height="15" fill="rgb(246,142,8)" fg:x="166088" fg:w="81"/><text x="54.8839%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.03%)</title><rect x="54.6335%" y="693" width="0.0286%" height="15" fill="rgb(243,26,38)" fg:x="166087" fg:w="87"/><text x="54.8835%" y="703.50"></text></g><g><title>do_syscall_64 (86 samples, 0.03%)</title><rect x="54.6339%" y="677" width="0.0283%" height="15" fill="rgb(205,133,28)" fg:x="166088" fg:w="86"/><text x="54.8839%" y="687.50"></text></g><g><title>__x64_sys_clone (86 samples, 0.03%)</title><rect x="54.6339%" y="661" width="0.0283%" height="15" fill="rgb(212,34,0)" fg:x="166088" fg:w="86"/><text x="54.8839%" y="671.50"></text></g><g><title>__do_sys_clone (86 samples, 0.03%)</title><rect x="54.6339%" y="645" width="0.0283%" height="15" fill="rgb(251,226,22)" fg:x="166088" fg:w="86"/><text x="54.8839%" y="655.50"></text></g><g><title>kernel_clone (86 samples, 0.03%)</title><rect x="54.6339%" y="629" width="0.0283%" height="15" fill="rgb(252,119,9)" fg:x="166088" fg:w="86"/><text x="54.8839%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (132 samples, 0.04%)</title><rect x="54.6684%" y="645" width="0.0434%" height="15" fill="rgb(213,150,50)" fg:x="166193" fg:w="132"/><text x="54.9184%" y="655.50"></text></g><g><title>x86_pmu_enable (129 samples, 0.04%)</title><rect x="54.6694%" y="629" width="0.0424%" height="15" fill="rgb(212,24,39)" fg:x="166196" fg:w="129"/><text x="54.9194%" y="639.50"></text></g><g><title>intel_pmu_enable_all (129 samples, 0.04%)</title><rect x="54.6694%" y="613" width="0.0424%" height="15" fill="rgb(213,46,39)" fg:x="166196" fg:w="129"/><text x="54.9194%" y="623.50"></text></g><g><title>native_write_msr (128 samples, 0.04%)</title><rect x="54.6697%" y="597" width="0.0421%" height="15" fill="rgb(239,106,12)" fg:x="166197" fg:w="128"/><text x="54.9197%" y="607.50"></text></g><g><title>schedule_tail (136 samples, 0.04%)</title><rect x="54.6677%" y="677" width="0.0447%" height="15" fill="rgb(249,229,21)" fg:x="166191" fg:w="136"/><text x="54.9177%" y="687.50"></text></g><g><title>finish_task_switch.isra.0 (135 samples, 0.04%)</title><rect x="54.6681%" y="661" width="0.0444%" height="15" fill="rgb(212,158,3)" fg:x="166192" fg:w="135"/><text x="54.9181%" y="671.50"></text></g><g><title>ret_from_fork (154 samples, 0.05%)</title><rect x="54.6621%" y="693" width="0.0507%" height="15" fill="rgb(253,26,48)" fg:x="166174" fg:w="154"/><text x="54.9121%" y="703.50"></text></g><g><title>__GI__Fork (247 samples, 0.08%)</title><rect x="54.6319%" y="725" width="0.0812%" height="15" fill="rgb(238,178,20)" fg:x="166082" fg:w="247"/><text x="54.8819%" y="735.50"></text></g><g><title>arch_fork (247 samples, 0.08%)</title><rect x="54.6319%" y="709" width="0.0812%" height="15" fill="rgb(208,86,15)" fg:x="166082" fg:w="247"/><text x="54.8819%" y="719.50"></text></g><g><title>__libc_fork (256 samples, 0.08%)</title><rect x="54.6315%" y="741" width="0.0842%" height="15" fill="rgb(239,42,53)" fg:x="166081" fg:w="256"/><text x="54.8815%" y="751.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (1,635 samples, 0.54%)</title><rect x="54.1796%" y="773" width="0.5378%" height="15" fill="rgb(245,226,8)" fg:x="164707" fg:w="1635"/><text x="54.4296%" y="783.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (1,635 samples, 0.54%)</title><rect x="54.1796%" y="757" width="0.5378%" height="15" fill="rgb(216,176,32)" fg:x="164707" fg:w="1635"/><text x="54.4296%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (98 samples, 0.03%)</title><rect x="54.7230%" y="581" width="0.0322%" height="15" fill="rgb(231,186,21)" fg:x="166359" fg:w="98"/><text x="54.9730%" y="591.50"></text></g><g><title>x86_pmu_enable (96 samples, 0.03%)</title><rect x="54.7237%" y="565" width="0.0316%" height="15" fill="rgb(205,95,49)" fg:x="166361" fg:w="96"/><text x="54.9737%" y="575.50"></text></g><g><title>intel_pmu_enable_all (96 samples, 0.03%)</title><rect x="54.7237%" y="549" width="0.0316%" height="15" fill="rgb(217,145,8)" fg:x="166361" fg:w="96"/><text x="54.9737%" y="559.50"></text></g><g><title>native_write_msr (96 samples, 0.03%)</title><rect x="54.7237%" y="533" width="0.0316%" height="15" fill="rgb(239,144,48)" fg:x="166361" fg:w="96"/><text x="54.9737%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (105 samples, 0.03%)</title><rect x="54.7217%" y="597" width="0.0345%" height="15" fill="rgb(214,189,23)" fg:x="166355" fg:w="105"/><text x="54.9717%" y="607.50"></text></g><g><title>__schedule (107 samples, 0.04%)</title><rect x="54.7214%" y="613" width="0.0352%" height="15" fill="rgb(229,157,17)" fg:x="166354" fg:w="107"/><text x="54.9714%" y="623.50"></text></g><g><title>schedule (108 samples, 0.04%)</title><rect x="54.7214%" y="629" width="0.0355%" height="15" fill="rgb(230,5,48)" fg:x="166354" fg:w="108"/><text x="54.9714%" y="639.50"></text></g><g><title>__do_sys_wait4 (130 samples, 0.04%)</title><rect x="54.7204%" y="677" width="0.0428%" height="15" fill="rgb(224,156,48)" fg:x="166351" fg:w="130"/><text x="54.9704%" y="687.50"></text></g><g><title>kernel_wait4 (130 samples, 0.04%)</title><rect x="54.7204%" y="661" width="0.0428%" height="15" fill="rgb(223,14,29)" fg:x="166351" fg:w="130"/><text x="54.9704%" y="671.50"></text></g><g><title>do_wait (130 samples, 0.04%)</title><rect x="54.7204%" y="645" width="0.0428%" height="15" fill="rgb(229,96,36)" fg:x="166351" fg:w="130"/><text x="54.9704%" y="655.50"></text></g><g><title>__x64_sys_wait4 (131 samples, 0.04%)</title><rect x="54.7204%" y="693" width="0.0431%" height="15" fill="rgb(231,102,53)" fg:x="166351" fg:w="131"/><text x="54.9704%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (134 samples, 0.04%)</title><rect x="54.7200%" y="725" width="0.0441%" height="15" fill="rgb(210,77,38)" fg:x="166350" fg:w="134"/><text x="54.9700%" y="735.50"></text></g><g><title>do_syscall_64 (134 samples, 0.04%)</title><rect x="54.7200%" y="709" width="0.0441%" height="15" fill="rgb(235,131,6)" fg:x="166350" fg:w="134"/><text x="54.9700%" y="719.50"></text></g><g><title>WaitChild (136 samples, 0.04%)</title><rect x="54.7197%" y="757" width="0.0447%" height="15" fill="rgb(252,55,38)" fg:x="166349" fg:w="136"/><text x="54.9697%" y="767.50"></text></g><g><title>__GI___wait4 (135 samples, 0.04%)</title><rect x="54.7200%" y="741" width="0.0444%" height="15" fill="rgb(246,38,14)" fg:x="166350" fg:w="135"/><text x="54.9700%" y="751.50"></text></g><g><title>LegacyProcessWrapper::WaitForChild (198 samples, 0.07%)</title><rect x="54.7174%" y="773" width="0.0651%" height="15" fill="rgb(242,27,5)" fg:x="166342" fg:w="198"/><text x="54.9674%" y="783.50"></text></g><g><title>__GI_exit (55 samples, 0.02%)</title><rect x="54.7644%" y="757" width="0.0181%" height="15" fill="rgb(228,65,35)" fg:x="166485" fg:w="55"/><text x="55.0144%" y="767.50"></text></g><g><title>__run_exit_handlers (55 samples, 0.02%)</title><rect x="54.7644%" y="741" width="0.0181%" height="15" fill="rgb(245,93,11)" fg:x="166485" fg:w="55"/><text x="55.0144%" y="751.50"></text></g><g><title>__libc_start_main_impl (1,931 samples, 0.64%)</title><rect x="54.1516%" y="821" width="0.6352%" height="15" fill="rgb(213,1,31)" fg:x="164622" fg:w="1931"/><text x="54.4016%" y="831.50"></text></g><g><title>__libc_start_call_main (1,847 samples, 0.61%)</title><rect x="54.1792%" y="805" width="0.6076%" height="15" fill="rgb(237,205,14)" fg:x="164706" fg:w="1847"/><text x="54.4292%" y="815.50"></text></g><g><title>main (1,846 samples, 0.61%)</title><rect x="54.1796%" y="789" width="0.6072%" height="15" fill="rgb(232,118,45)" fg:x="164707" fg:w="1846"/><text x="54.4296%" y="799.50"></text></g><g><title>_dl_load_cache_lookup (37 samples, 0.01%)</title><rect x="54.8069%" y="693" width="0.0122%" height="15" fill="rgb(218,5,6)" fg:x="166614" fg:w="37"/><text x="55.0569%" y="703.50"></text></g><g><title>__do_munmap (53 samples, 0.02%)</title><rect x="54.8345%" y="501" width="0.0174%" height="15" fill="rgb(251,87,51)" fg:x="166698" fg:w="53"/><text x="55.0845%" y="511.50"></text></g><g><title>mmap_region (82 samples, 0.03%)</title><rect x="54.8342%" y="517" width="0.0270%" height="15" fill="rgb(207,225,20)" fg:x="166697" fg:w="82"/><text x="55.0842%" y="527.50"></text></g><g><title>do_mmap (84 samples, 0.03%)</title><rect x="54.8338%" y="533" width="0.0276%" height="15" fill="rgb(222,78,54)" fg:x="166696" fg:w="84"/><text x="55.0838%" y="543.50"></text></g><g><title>__x64_sys_mmap (85 samples, 0.03%)</title><rect x="54.8338%" y="581" width="0.0280%" height="15" fill="rgb(232,85,16)" fg:x="166696" fg:w="85"/><text x="55.0838%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (85 samples, 0.03%)</title><rect x="54.8338%" y="565" width="0.0280%" height="15" fill="rgb(244,25,33)" fg:x="166696" fg:w="85"/><text x="55.0838%" y="575.50"></text></g><g><title>vm_mmap_pgoff (85 samples, 0.03%)</title><rect x="54.8338%" y="549" width="0.0280%" height="15" fill="rgb(233,24,36)" fg:x="166696" fg:w="85"/><text x="55.0838%" y="559.50"></text></g><g><title>do_syscall_64 (97 samples, 0.03%)</title><rect x="54.8325%" y="613" width="0.0319%" height="15" fill="rgb(253,49,54)" fg:x="166692" fg:w="97"/><text x="55.0825%" y="623.50"></text></g><g><title>unload_network_ops_symbols (94 samples, 0.03%)</title><rect x="54.8335%" y="597" width="0.0309%" height="15" fill="rgb(245,12,22)" fg:x="166695" fg:w="94"/><text x="55.0835%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (101 samples, 0.03%)</title><rect x="54.8315%" y="629" width="0.0332%" height="15" fill="rgb(253,141,28)" fg:x="166689" fg:w="101"/><text x="55.0815%" y="639.50"></text></g><g><title>__mmap64 (102 samples, 0.03%)</title><rect x="54.8315%" y="661" width="0.0336%" height="15" fill="rgb(225,207,27)" fg:x="166689" fg:w="102"/><text x="55.0815%" y="671.50"></text></g><g><title>__mmap64 (102 samples, 0.03%)</title><rect x="54.8315%" y="645" width="0.0336%" height="15" fill="rgb(220,84,2)" fg:x="166689" fg:w="102"/><text x="55.0815%" y="655.50"></text></g><g><title>_dl_map_segments (147 samples, 0.05%)</title><rect x="54.8256%" y="677" width="0.0484%" height="15" fill="rgb(224,37,37)" fg:x="166671" fg:w="147"/><text x="55.0756%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (210 samples, 0.07%)</title><rect x="54.8190%" y="693" width="0.0691%" height="15" fill="rgb(220,143,18)" fg:x="166651" fg:w="210"/><text x="55.0690%" y="703.50"></text></g><g><title>do_sys_openat2 (33 samples, 0.01%)</title><rect x="54.8908%" y="597" width="0.0109%" height="15" fill="rgb(210,88,33)" fg:x="166869" fg:w="33"/><text x="55.1408%" y="607.50"></text></g><g><title>__x64_sys_openat (37 samples, 0.01%)</title><rect x="54.8901%" y="613" width="0.0122%" height="15" fill="rgb(219,87,51)" fg:x="166867" fg:w="37"/><text x="55.1401%" y="623.50"></text></g><g><title>__GI___open64_nocancel (63 samples, 0.02%)</title><rect x="54.8891%" y="677" width="0.0207%" height="15" fill="rgb(211,7,35)" fg:x="166864" fg:w="63"/><text x="55.1391%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.02%)</title><rect x="54.8891%" y="661" width="0.0207%" height="15" fill="rgb(232,77,2)" fg:x="166864" fg:w="63"/><text x="55.1391%" y="671.50"></text></g><g><title>do_syscall_64 (62 samples, 0.02%)</title><rect x="54.8894%" y="645" width="0.0204%" height="15" fill="rgb(249,94,25)" fg:x="166865" fg:w="62"/><text x="55.1394%" y="655.50"></text></g><g><title>unload_network_ops_symbols (60 samples, 0.02%)</title><rect x="54.8901%" y="629" width="0.0197%" height="15" fill="rgb(215,112,2)" fg:x="166867" fg:w="60"/><text x="55.1401%" y="639.50"></text></g><g><title>open_verify (71 samples, 0.02%)</title><rect x="54.8888%" y="693" width="0.0234%" height="15" fill="rgb(226,115,48)" fg:x="166863" fg:w="71"/><text x="55.1388%" y="703.50"></text></g><g><title>_dl_catch_exception (328 samples, 0.11%)</title><rect x="54.8052%" y="741" width="0.1079%" height="15" fill="rgb(249,196,10)" fg:x="166609" fg:w="328"/><text x="55.0552%" y="751.50"></text></g><g><title>openaux (328 samples, 0.11%)</title><rect x="54.8052%" y="725" width="0.1079%" height="15" fill="rgb(237,109,14)" fg:x="166609" fg:w="328"/><text x="55.0552%" y="735.50"></text></g><g><title>_dl_map_object (328 samples, 0.11%)</title><rect x="54.8052%" y="709" width="0.1079%" height="15" fill="rgb(217,103,53)" fg:x="166609" fg:w="328"/><text x="55.0552%" y="719.50"></text></g><g><title>_dl_map_object_deps (332 samples, 0.11%)</title><rect x="54.8049%" y="757" width="0.1092%" height="15" fill="rgb(244,137,9)" fg:x="166608" fg:w="332"/><text x="55.0549%" y="767.50"></text></g><g><title>_dl_protect_relro (45 samples, 0.01%)</title><rect x="54.9190%" y="741" width="0.0148%" height="15" fill="rgb(227,201,3)" fg:x="166955" fg:w="45"/><text x="55.1690%" y="751.50"></text></g><g><title>__mprotect (44 samples, 0.01%)</title><rect x="54.9194%" y="725" width="0.0145%" height="15" fill="rgb(243,94,6)" fg:x="166956" fg:w="44"/><text x="55.1694%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.01%)</title><rect x="54.9194%" y="709" width="0.0145%" height="15" fill="rgb(235,118,5)" fg:x="166956" fg:w="44"/><text x="55.1694%" y="719.50"></text></g><g><title>do_syscall_64 (44 samples, 0.01%)</title><rect x="54.9194%" y="693" width="0.0145%" height="15" fill="rgb(247,10,30)" fg:x="166956" fg:w="44"/><text x="55.1694%" y="703.50"></text></g><g><title>__x64_sys_mprotect (44 samples, 0.01%)</title><rect x="54.9194%" y="677" width="0.0145%" height="15" fill="rgb(205,26,28)" fg:x="166956" fg:w="44"/><text x="55.1694%" y="687.50"></text></g><g><title>do_mprotect_pkey (44 samples, 0.01%)</title><rect x="54.9194%" y="661" width="0.0145%" height="15" fill="rgb(206,99,35)" fg:x="166956" fg:w="44"/><text x="55.1694%" y="671.50"></text></g><g><title>mprotect_fixup (41 samples, 0.01%)</title><rect x="54.9204%" y="645" width="0.0135%" height="15" fill="rgb(238,130,40)" fg:x="166959" fg:w="41"/><text x="55.1704%" y="655.50"></text></g><g><title>dl_new_hash (130 samples, 0.04%)</title><rect x="54.9868%" y="693" width="0.0428%" height="15" fill="rgb(224,126,31)" fg:x="167161" fg:w="130"/><text x="55.2368%" y="703.50"></text></g><g><title>check_match (45 samples, 0.01%)</title><rect x="55.0875%" y="677" width="0.0148%" height="15" fill="rgb(254,105,17)" fg:x="167467" fg:w="45"/><text x="55.3375%" y="687.50"></text></g><g><title>strcmp (32 samples, 0.01%)</title><rect x="55.0917%" y="661" width="0.0105%" height="15" fill="rgb(216,87,36)" fg:x="167480" fg:w="32"/><text x="55.3417%" y="671.50"></text></g><g><title>_dl_lookup_symbol_x (393 samples, 0.13%)</title><rect x="54.9776%" y="709" width="0.1293%" height="15" fill="rgb(240,21,12)" fg:x="167133" fg:w="393"/><text x="55.2276%" y="719.50"></text></g><g><title>do_lookup_x (235 samples, 0.08%)</title><rect x="55.0296%" y="693" width="0.0773%" height="15" fill="rgb(245,192,34)" fg:x="167291" fg:w="235"/><text x="55.2796%" y="703.50"></text></g><g><title>elf_machine_rela (480 samples, 0.16%)</title><rect x="54.9506%" y="725" width="0.1579%" height="15" fill="rgb(226,100,49)" fg:x="167051" fg:w="480"/><text x="55.2006%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (559 samples, 0.18%)</title><rect x="54.9338%" y="741" width="0.1839%" height="15" fill="rgb(245,188,27)" fg:x="167000" fg:w="559"/><text x="55.1838%" y="751.50"></text></g><g><title>_dl_relocate_object (610 samples, 0.20%)</title><rect x="54.9184%" y="757" width="0.2007%" height="15" fill="rgb(212,170,8)" fg:x="166953" fg:w="610"/><text x="55.1684%" y="767.50"></text></g><g><title>dl_main (1,035 samples, 0.34%)</title><rect x="54.7901%" y="773" width="0.3405%" height="15" fill="rgb(217,113,29)" fg:x="166563" fg:w="1035"/><text x="55.0401%" y="783.50"></text></g><g><title>_dl_start_final (1,056 samples, 0.35%)</title><rect x="54.7875%" y="805" width="0.3474%" height="15" fill="rgb(237,30,3)" fg:x="166555" fg:w="1056"/><text x="55.0375%" y="815.50"></text></g><g><title>_dl_sysdep_start (1,054 samples, 0.35%)</title><rect x="54.7881%" y="789" width="0.3467%" height="15" fill="rgb(227,19,28)" fg:x="166557" fg:w="1054"/><text x="55.0381%" y="799.50"></text></g><g><title>_dl_start (1,062 samples, 0.35%)</title><rect x="54.7868%" y="821" width="0.3493%" height="15" fill="rgb(239,172,45)" fg:x="166553" fg:w="1062"/><text x="55.0368%" y="831.50"></text></g><g><title>_start (3,008 samples, 0.99%)</title><rect x="54.1513%" y="837" width="0.9895%" height="15" fill="rgb(254,55,39)" fg:x="164621" fg:w="3008"/><text x="54.4013%" y="847.50"></text></g><g><title>asm_exc_page_fault (41 samples, 0.01%)</title><rect x="55.1408%" y="837" width="0.0135%" height="15" fill="rgb(249,208,12)" fg:x="167629" fg:w="41"/><text x="55.3908%" y="847.50"></text></g><g><title>exec_mmap (50 samples, 0.02%)</title><rect x="55.1556%" y="677" width="0.0164%" height="15" fill="rgb(240,52,13)" fg:x="167674" fg:w="50"/><text x="55.4056%" y="687.50"></text></g><g><title>mmput (49 samples, 0.02%)</title><rect x="55.1559%" y="661" width="0.0161%" height="15" fill="rgb(252,149,13)" fg:x="167675" fg:w="49"/><text x="55.4059%" y="671.50"></text></g><g><title>exit_mmap (46 samples, 0.02%)</title><rect x="55.1569%" y="645" width="0.0151%" height="15" fill="rgb(232,81,48)" fg:x="167678" fg:w="46"/><text x="55.4069%" y="655.50"></text></g><g><title>begin_new_exec (54 samples, 0.02%)</title><rect x="55.1556%" y="693" width="0.0178%" height="15" fill="rgb(222,144,2)" fg:x="167674" fg:w="54"/><text x="55.4056%" y="703.50"></text></g><g><title>load_elf_binary (92 samples, 0.03%)</title><rect x="55.1549%" y="709" width="0.0303%" height="15" fill="rgb(216,81,32)" fg:x="167672" fg:w="92"/><text x="55.4049%" y="719.50"></text></g><g><title>__x64_sys_execve (93 samples, 0.03%)</title><rect x="55.1549%" y="805" width="0.0306%" height="15" fill="rgb(244,78,51)" fg:x="167672" fg:w="93"/><text x="55.4049%" y="815.50"></text></g><g><title>do_execveat_common.isra.0 (93 samples, 0.03%)</title><rect x="55.1549%" y="789" width="0.0306%" height="15" fill="rgb(217,66,21)" fg:x="167672" fg:w="93"/><text x="55.4049%" y="799.50"></text></g><g><title>bprm_execve (93 samples, 0.03%)</title><rect x="55.1549%" y="773" width="0.0306%" height="15" fill="rgb(247,101,42)" fg:x="167672" fg:w="93"/><text x="55.4049%" y="783.50"></text></g><g><title>bprm_execve.part.0 (93 samples, 0.03%)</title><rect x="55.1549%" y="757" width="0.0306%" height="15" fill="rgb(227,81,39)" fg:x="167672" fg:w="93"/><text x="55.4049%" y="767.50"></text></g><g><title>exec_binprm (93 samples, 0.03%)</title><rect x="55.1549%" y="741" width="0.0306%" height="15" fill="rgb(220,223,44)" fg:x="167672" fg:w="93"/><text x="55.4049%" y="751.50"></text></g><g><title>search_binary_handler (93 samples, 0.03%)</title><rect x="55.1549%" y="725" width="0.0306%" height="15" fill="rgb(205,218,2)" fg:x="167672" fg:w="93"/><text x="55.4049%" y="735.50"></text></g><g><title>unmap_single_vma (88 samples, 0.03%)</title><rect x="55.2065%" y="693" width="0.0289%" height="15" fill="rgb(212,207,28)" fg:x="167829" fg:w="88"/><text x="55.4565%" y="703.50"></text></g><g><title>unmap_page_range (86 samples, 0.03%)</title><rect x="55.2072%" y="677" width="0.0283%" height="15" fill="rgb(224,12,41)" fg:x="167831" fg:w="86"/><text x="55.4572%" y="687.50"></text></g><g><title>zap_pmd_range.isra.0 (86 samples, 0.03%)</title><rect x="55.2072%" y="661" width="0.0283%" height="15" fill="rgb(216,118,12)" fg:x="167831" fg:w="86"/><text x="55.4572%" y="671.50"></text></g><g><title>zap_pte_range (80 samples, 0.03%)</title><rect x="55.2092%" y="645" width="0.0263%" height="15" fill="rgb(252,97,46)" fg:x="167837" fg:w="80"/><text x="55.4592%" y="655.50"></text></g><g><title>exit_mm (143 samples, 0.05%)</title><rect x="55.1888%" y="757" width="0.0470%" height="15" fill="rgb(244,206,19)" fg:x="167775" fg:w="143"/><text x="55.4388%" y="767.50"></text></g><g><title>mmput (143 samples, 0.05%)</title><rect x="55.1888%" y="741" width="0.0470%" height="15" fill="rgb(231,84,31)" fg:x="167775" fg:w="143"/><text x="55.4388%" y="751.50"></text></g><g><title>exit_mmap (143 samples, 0.05%)</title><rect x="55.1888%" y="725" width="0.0470%" height="15" fill="rgb(244,133,0)" fg:x="167775" fg:w="143"/><text x="55.4388%" y="735.50"></text></g><g><title>unmap_vmas (90 samples, 0.03%)</title><rect x="55.2062%" y="709" width="0.0296%" height="15" fill="rgb(223,15,50)" fg:x="167828" fg:w="90"/><text x="55.4562%" y="719.50"></text></g><g><title>__x64_sys_exit_group (177 samples, 0.06%)</title><rect x="55.1855%" y="805" width="0.0582%" height="15" fill="rgb(250,118,49)" fg:x="167765" fg:w="177"/><text x="55.4355%" y="815.50"></text></g><g><title>do_group_exit (177 samples, 0.06%)</title><rect x="55.1855%" y="789" width="0.0582%" height="15" fill="rgb(248,25,38)" fg:x="167765" fg:w="177"/><text x="55.4355%" y="799.50"></text></g><g><title>do_exit (177 samples, 0.06%)</title><rect x="55.1855%" y="773" width="0.0582%" height="15" fill="rgb(215,70,14)" fg:x="167765" fg:w="177"/><text x="55.4355%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (271 samples, 0.09%)</title><rect x="55.1549%" y="837" width="0.0891%" height="15" fill="rgb(215,28,15)" fg:x="167672" fg:w="271"/><text x="55.4049%" y="847.50"></text></g><g><title>do_syscall_64 (271 samples, 0.09%)</title><rect x="55.1549%" y="821" width="0.0891%" height="15" fill="rgb(243,6,28)" fg:x="167672" fg:w="271"/><text x="55.4049%" y="831.50"></text></g><g><title>process-wrapper (3,463 samples, 1.14%)</title><rect x="54.1059%" y="853" width="1.1391%" height="15" fill="rgb(222,130,1)" fg:x="164483" fg:w="3463"/><text x="54.3559%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (112 samples, 0.04%)</title><rect x="55.2858%" y="645" width="0.0368%" height="15" fill="rgb(236,166,44)" fg:x="168070" fg:w="112"/><text x="55.5358%" y="655.50"></text></g><g><title>x86_pmu_enable (112 samples, 0.04%)</title><rect x="55.2858%" y="629" width="0.0368%" height="15" fill="rgb(221,108,14)" fg:x="168070" fg:w="112"/><text x="55.5358%" y="639.50"></text></g><g><title>intel_pmu_enable_all (111 samples, 0.04%)</title><rect x="55.2861%" y="613" width="0.0365%" height="15" fill="rgb(252,3,45)" fg:x="168071" fg:w="111"/><text x="55.5361%" y="623.50"></text></g><g><title>native_write_msr (110 samples, 0.04%)</title><rect x="55.2865%" y="597" width="0.0362%" height="15" fill="rgb(237,68,30)" fg:x="168072" fg:w="110"/><text x="55.5365%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (126 samples, 0.04%)</title><rect x="55.2835%" y="661" width="0.0414%" height="15" fill="rgb(211,79,22)" fg:x="168063" fg:w="126"/><text x="55.5335%" y="671.50"></text></g><g><title>schedule (138 samples, 0.05%)</title><rect x="55.2815%" y="693" width="0.0454%" height="15" fill="rgb(252,185,21)" fg:x="168057" fg:w="138"/><text x="55.5315%" y="703.50"></text></g><g><title>__schedule (138 samples, 0.05%)</title><rect x="55.2815%" y="677" width="0.0454%" height="15" fill="rgb(225,189,26)" fg:x="168057" fg:w="138"/><text x="55.5315%" y="687.50"></text></g><g><title>release_task (37 samples, 0.01%)</title><rect x="55.3283%" y="661" width="0.0122%" height="15" fill="rgb(241,30,40)" fg:x="168199" fg:w="37"/><text x="55.5783%" y="671.50"></text></g><g><title>proc_flush_pid (31 samples, 0.01%)</title><rect x="55.3302%" y="645" width="0.0102%" height="15" fill="rgb(235,215,44)" fg:x="168205" fg:w="31"/><text x="55.5802%" y="655.50"></text></g><g><title>proc_invalidate_siblings_dcache (31 samples, 0.01%)</title><rect x="55.3302%" y="629" width="0.0102%" height="15" fill="rgb(205,8,29)" fg:x="168205" fg:w="31"/><text x="55.5802%" y="639.50"></text></g><g><title>d_invalidate (31 samples, 0.01%)</title><rect x="55.3302%" y="613" width="0.0102%" height="15" fill="rgb(241,137,42)" fg:x="168205" fg:w="31"/><text x="55.5802%" y="623.50"></text></g><g><title>shrink_dcache_parent (31 samples, 0.01%)</title><rect x="55.3302%" y="597" width="0.0102%" height="15" fill="rgb(237,155,2)" fg:x="168205" fg:w="31"/><text x="55.5802%" y="607.50"></text></g><g><title>do_wait (182 samples, 0.06%)</title><rect x="55.2809%" y="709" width="0.0599%" height="15" fill="rgb(245,29,42)" fg:x="168055" fg:w="182"/><text x="55.5309%" y="719.50"></text></g><g><title>wait_consider_task (42 samples, 0.01%)</title><rect x="55.3269%" y="693" width="0.0138%" height="15" fill="rgb(234,101,35)" fg:x="168195" fg:w="42"/><text x="55.5769%" y="703.50"></text></g><g><title>wait_task_zombie (41 samples, 0.01%)</title><rect x="55.3273%" y="677" width="0.0135%" height="15" fill="rgb(228,64,37)" fg:x="168196" fg:w="41"/><text x="55.5773%" y="687.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (186 samples, 0.06%)</title><rect x="55.2802%" y="821" width="0.0612%" height="15" fill="rgb(217,214,36)" fg:x="168053" fg:w="186"/><text x="55.5302%" y="831.50"></text></g><g><title>__GI___wait4 (185 samples, 0.06%)</title><rect x="55.2806%" y="805" width="0.0609%" height="15" fill="rgb(243,70,3)" fg:x="168054" fg:w="185"/><text x="55.5306%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (185 samples, 0.06%)</title><rect x="55.2806%" y="789" width="0.0609%" height="15" fill="rgb(253,158,52)" fg:x="168054" fg:w="185"/><text x="55.5306%" y="799.50"></text></g><g><title>do_syscall_64 (185 samples, 0.06%)</title><rect x="55.2806%" y="773" width="0.0609%" height="15" fill="rgb(234,111,54)" fg:x="168054" fg:w="185"/><text x="55.5306%" y="783.50"></text></g><g><title>__x64_sys_wait4 (185 samples, 0.06%)</title><rect x="55.2806%" y="757" width="0.0609%" height="15" fill="rgb(217,70,32)" fg:x="168054" fg:w="185"/><text x="55.5306%" y="767.50"></text></g><g><title>__do_sys_wait4 (185 samples, 0.06%)</title><rect x="55.2806%" y="741" width="0.0609%" height="15" fill="rgb(234,18,33)" fg:x="168054" fg:w="185"/><text x="55.5306%" y="751.50"></text></g><g><title>kernel_wait4 (185 samples, 0.06%)</title><rect x="55.2806%" y="725" width="0.0609%" height="15" fill="rgb(234,12,49)" fg:x="168054" fg:w="185"/><text x="55.5306%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.01%)</title><rect x="55.3440%" y="565" width="0.0141%" height="15" fill="rgb(236,10,21)" fg:x="168247" fg:w="43"/><text x="55.5940%" y="575.50"></text></g><g><title>x86_pmu_enable (41 samples, 0.01%)</title><rect x="55.3447%" y="549" width="0.0135%" height="15" fill="rgb(248,182,45)" fg:x="168249" fg:w="41"/><text x="55.5947%" y="559.50"></text></g><g><title>intel_pmu_enable_all (41 samples, 0.01%)</title><rect x="55.3447%" y="533" width="0.0135%" height="15" fill="rgb(217,95,36)" fg:x="168249" fg:w="41"/><text x="55.5947%" y="543.50"></text></g><g><title>native_write_msr (41 samples, 0.01%)</title><rect x="55.3447%" y="517" width="0.0135%" height="15" fill="rgb(212,110,31)" fg:x="168249" fg:w="41"/><text x="55.5947%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (47 samples, 0.02%)</title><rect x="55.3434%" y="581" width="0.0155%" height="15" fill="rgb(206,32,53)" fg:x="168245" fg:w="47"/><text x="55.5934%" y="591.50"></text></g><g><title>futex_wait_queue_me (52 samples, 0.02%)</title><rect x="55.3427%" y="629" width="0.0171%" height="15" fill="rgb(246,141,37)" fg:x="168243" fg:w="52"/><text x="55.5927%" y="639.50"></text></g><g><title>schedule (51 samples, 0.02%)</title><rect x="55.3431%" y="613" width="0.0168%" height="15" fill="rgb(219,16,7)" fg:x="168244" fg:w="51"/><text x="55.5931%" y="623.50"></text></g><g><title>__schedule (51 samples, 0.02%)</title><rect x="55.3431%" y="597" width="0.0168%" height="15" fill="rgb(230,205,45)" fg:x="168244" fg:w="51"/><text x="55.5931%" y="607.50"></text></g><g><title>__x64_sys_futex (53 samples, 0.02%)</title><rect x="55.3427%" y="677" width="0.0174%" height="15" fill="rgb(231,43,49)" fg:x="168243" fg:w="53"/><text x="55.5927%" y="687.50"></text></g><g><title>do_futex (53 samples, 0.02%)</title><rect x="55.3427%" y="661" width="0.0174%" height="15" fill="rgb(212,106,34)" fg:x="168243" fg:w="53"/><text x="55.5927%" y="671.50"></text></g><g><title>futex_wait (53 samples, 0.02%)</title><rect x="55.3427%" y="645" width="0.0174%" height="15" fill="rgb(206,83,17)" fg:x="168243" fg:w="53"/><text x="55.5927%" y="655.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (55 samples, 0.02%)</title><rect x="55.3427%" y="757" width="0.0181%" height="15" fill="rgb(244,154,49)" fg:x="168243" fg:w="55"/><text x="55.5927%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (55 samples, 0.02%)</title><rect x="55.3427%" y="741" width="0.0181%" height="15" fill="rgb(244,149,49)" fg:x="168243" fg:w="55"/><text x="55.5927%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (55 samples, 0.02%)</title><rect x="55.3427%" y="725" width="0.0181%" height="15" fill="rgb(227,134,18)" fg:x="168243" fg:w="55"/><text x="55.5927%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.02%)</title><rect x="55.3427%" y="709" width="0.0181%" height="15" fill="rgb(237,116,36)" fg:x="168243" fg:w="55"/><text x="55.5927%" y="719.50"></text></g><g><title>do_syscall_64 (55 samples, 0.02%)</title><rect x="55.3427%" y="693" width="0.0181%" height="15" fill="rgb(205,129,40)" fg:x="168243" fg:w="55"/><text x="55.5927%" y="703.50"></text></g><g><title>___pthread_cond_timedwait64 (56 samples, 0.02%)</title><rect x="55.3427%" y="789" width="0.0184%" height="15" fill="rgb(236,178,4)" fg:x="168243" fg:w="56"/><text x="55.5927%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (56 samples, 0.02%)</title><rect x="55.3427%" y="773" width="0.0184%" height="15" fill="rgb(251,76,53)" fg:x="168243" fg:w="56"/><text x="55.5927%" y="783.50"></text></g><g><title>Unsafe_Park (61 samples, 0.02%)</title><rect x="55.3417%" y="821" width="0.0201%" height="15" fill="rgb(242,92,40)" fg:x="168240" fg:w="61"/><text x="55.5917%" y="831.50"></text></g><g><title>Parker::park (61 samples, 0.02%)</title><rect x="55.3417%" y="805" width="0.0201%" height="15" fill="rgb(209,45,30)" fg:x="168240" fg:w="61"/><text x="55.5917%" y="815.50"></text></g><g><title>[perf-720743.map] (353 samples, 0.12%)</title><rect x="55.2473%" y="837" width="0.1161%" height="15" fill="rgb(218,157,36)" fg:x="167953" fg:w="353"/><text x="55.4973%" y="847.50"></text></g><g><title>process_reaper (362 samples, 0.12%)</title><rect x="55.2450%" y="853" width="0.1191%" height="15" fill="rgb(222,186,16)" fg:x="167946" fg:w="362"/><text x="55.4950%" y="863.50"></text></g><g><title>Java_java_util_zip_Deflater_deflateBytesBytes (42 samples, 0.01%)</title><rect x="55.4582%" y="821" width="0.0138%" height="15" fill="rgb(254,72,35)" fg:x="168594" fg:w="42"/><text x="55.7082%" y="831.50"></text></g><g><title>deflate (42 samples, 0.01%)</title><rect x="55.4582%" y="805" width="0.0138%" height="15" fill="rgb(224,25,35)" fg:x="168594" fg:w="42"/><text x="55.7082%" y="815.50"></text></g><g><title>[libz.so.1.2.11] (42 samples, 0.01%)</title><rect x="55.4582%" y="789" width="0.0138%" height="15" fill="rgb(206,135,52)" fg:x="168594" fg:w="42"/><text x="55.7082%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.02%)</title><rect x="55.4885%" y="565" width="0.0181%" height="15" fill="rgb(229,174,47)" fg:x="168686" fg:w="55"/><text x="55.7385%" y="575.50"></text></g><g><title>x86_pmu_enable (50 samples, 0.02%)</title><rect x="55.4901%" y="549" width="0.0164%" height="15" fill="rgb(242,184,21)" fg:x="168691" fg:w="50"/><text x="55.7401%" y="559.50"></text></g><g><title>intel_pmu_enable_all (49 samples, 0.02%)</title><rect x="55.4904%" y="533" width="0.0161%" height="15" fill="rgb(213,22,45)" fg:x="168692" fg:w="49"/><text x="55.7404%" y="543.50"></text></g><g><title>native_write_msr (49 samples, 0.02%)</title><rect x="55.4904%" y="517" width="0.0161%" height="15" fill="rgb(237,81,54)" fg:x="168692" fg:w="49"/><text x="55.7404%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (57 samples, 0.02%)</title><rect x="55.4881%" y="581" width="0.0187%" height="15" fill="rgb(248,177,18)" fg:x="168685" fg:w="57"/><text x="55.7381%" y="591.50"></text></g><g><title>futex_wait_queue_me (93 samples, 0.03%)</title><rect x="55.4835%" y="629" width="0.0306%" height="15" fill="rgb(254,31,16)" fg:x="168671" fg:w="93"/><text x="55.7335%" y="639.50"></text></g><g><title>schedule (93 samples, 0.03%)</title><rect x="55.4835%" y="613" width="0.0306%" height="15" fill="rgb(235,20,31)" fg:x="168671" fg:w="93"/><text x="55.7335%" y="623.50"></text></g><g><title>__schedule (91 samples, 0.03%)</title><rect x="55.4842%" y="597" width="0.0299%" height="15" fill="rgb(240,56,43)" fg:x="168673" fg:w="91"/><text x="55.7342%" y="607.50"></text></g><g><title>__x64_sys_futex (101 samples, 0.03%)</title><rect x="55.4829%" y="677" width="0.0332%" height="15" fill="rgb(237,197,51)" fg:x="168669" fg:w="101"/><text x="55.7329%" y="687.50"></text></g><g><title>do_futex (101 samples, 0.03%)</title><rect x="55.4829%" y="661" width="0.0332%" height="15" fill="rgb(241,162,44)" fg:x="168669" fg:w="101"/><text x="55.7329%" y="671.50"></text></g><g><title>futex_wait (101 samples, 0.03%)</title><rect x="55.4829%" y="645" width="0.0332%" height="15" fill="rgb(224,23,20)" fg:x="168669" fg:w="101"/><text x="55.7329%" y="655.50"></text></g><g><title>do_syscall_64 (111 samples, 0.04%)</title><rect x="55.4825%" y="693" width="0.0365%" height="15" fill="rgb(250,109,34)" fg:x="168668" fg:w="111"/><text x="55.7325%" y="703.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (119 samples, 0.04%)</title><rect x="55.4802%" y="757" width="0.0391%" height="15" fill="rgb(214,175,50)" fg:x="168661" fg:w="119"/><text x="55.7302%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (118 samples, 0.04%)</title><rect x="55.4806%" y="741" width="0.0388%" height="15" fill="rgb(213,182,5)" fg:x="168662" fg:w="118"/><text x="55.7306%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (117 samples, 0.04%)</title><rect x="55.4809%" y="725" width="0.0385%" height="15" fill="rgb(209,199,19)" fg:x="168663" fg:w="117"/><text x="55.7309%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (114 samples, 0.04%)</title><rect x="55.4819%" y="709" width="0.0375%" height="15" fill="rgb(236,224,42)" fg:x="168666" fg:w="114"/><text x="55.7319%" y="719.50"></text></g><g><title>___pthread_cond_wait (121 samples, 0.04%)</title><rect x="55.4799%" y="789" width="0.0398%" height="15" fill="rgb(246,226,29)" fg:x="168660" fg:w="121"/><text x="55.7299%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (121 samples, 0.04%)</title><rect x="55.4799%" y="773" width="0.0398%" height="15" fill="rgb(227,223,11)" fg:x="168660" fg:w="121"/><text x="55.7299%" y="783.50"></text></g><g><title>Parker::park (133 samples, 0.04%)</title><rect x="55.4779%" y="805" width="0.0437%" height="15" fill="rgb(219,7,51)" fg:x="168654" fg:w="133"/><text x="55.7279%" y="815.50"></text></g><g><title>Unsafe_Park (143 samples, 0.05%)</title><rect x="55.4766%" y="821" width="0.0470%" height="15" fill="rgb(245,167,10)" fg:x="168650" fg:w="143"/><text x="55.7266%" y="831.50"></text></g><g><title>[perf-720743.map] (493 samples, 0.16%)</title><rect x="55.3671%" y="837" width="0.1622%" height="15" fill="rgb(237,224,16)" fg:x="168317" fg:w="493"/><text x="55.6171%" y="847.50"></text></g><g><title>profile-writer- (527 samples, 0.17%)</title><rect x="55.3641%" y="853" width="0.1734%" height="15" fill="rgb(226,132,13)" fg:x="168308" fg:w="527"/><text x="55.6141%" y="863.50"></text></g><g><title>[python3.10] (68 samples, 0.02%)</title><rect x="55.5644%" y="821" width="0.0224%" height="15" fill="rgb(214,140,3)" fg:x="168917" fg:w="68"/><text x="55.8144%" y="831.50"></text></g><g><title>PyImport_ImportModuleLevelObject (35 samples, 0.01%)</title><rect x="55.6204%" y="597" width="0.0115%" height="15" fill="rgb(221,177,4)" fg:x="169087" fg:w="35"/><text x="55.8704%" y="607.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (35 samples, 0.01%)</title><rect x="55.6204%" y="581" width="0.0115%" height="15" fill="rgb(238,139,3)" fg:x="169087" fg:w="35"/><text x="55.8704%" y="591.50"></text></g><g><title>[python3.10] (35 samples, 0.01%)</title><rect x="55.6204%" y="565" width="0.0115%" height="15" fill="rgb(216,17,39)" fg:x="169087" fg:w="35"/><text x="55.8704%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (35 samples, 0.01%)</title><rect x="55.6204%" y="549" width="0.0115%" height="15" fill="rgb(238,120,9)" fg:x="169087" fg:w="35"/><text x="55.8704%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (35 samples, 0.01%)</title><rect x="55.6204%" y="533" width="0.0115%" height="15" fill="rgb(244,92,53)" fg:x="169087" fg:w="35"/><text x="55.8704%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (35 samples, 0.01%)</title><rect x="55.6204%" y="517" width="0.0115%" height="15" fill="rgb(224,148,33)" fg:x="169087" fg:w="35"/><text x="55.8704%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (35 samples, 0.01%)</title><rect x="55.6204%" y="501" width="0.0115%" height="15" fill="rgb(243,6,36)" fg:x="169087" fg:w="35"/><text x="55.8704%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="55.6210%" y="485" width="0.0109%" height="15" fill="rgb(230,102,11)" fg:x="169089" fg:w="33"/><text x="55.8710%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="55.6210%" y="469" width="0.0109%" height="15" fill="rgb(234,148,36)" fg:x="169089" fg:w="33"/><text x="55.8710%" y="479.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.01%)</title><rect x="55.6213%" y="453" width="0.0105%" height="15" fill="rgb(251,153,25)" fg:x="169090" fg:w="32"/><text x="55.8713%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.01%)</title><rect x="55.6213%" y="437" width="0.0105%" height="15" fill="rgb(215,129,8)" fg:x="169090" fg:w="32"/><text x="55.8713%" y="447.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.01%)</title><rect x="55.6213%" y="421" width="0.0105%" height="15" fill="rgb(224,128,35)" fg:x="169090" fg:w="32"/><text x="55.8713%" y="431.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.01%)</title><rect x="55.6213%" y="405" width="0.0105%" height="15" fill="rgb(237,56,52)" fg:x="169090" fg:w="32"/><text x="55.8713%" y="415.50"></text></g><g><title>PyEval_EvalCode (42 samples, 0.01%)</title><rect x="55.6204%" y="645" width="0.0138%" height="15" fill="rgb(234,213,19)" fg:x="169087" fg:w="42"/><text x="55.8704%" y="655.50"></text></g><g><title>[python3.10] (42 samples, 0.01%)</title><rect x="55.6204%" y="629" width="0.0138%" height="15" fill="rgb(252,82,23)" fg:x="169087" fg:w="42"/><text x="55.8704%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (42 samples, 0.01%)</title><rect x="55.6204%" y="613" width="0.0138%" height="15" fill="rgb(254,201,21)" fg:x="169087" fg:w="42"/><text x="55.8704%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (101 samples, 0.03%)</title><rect x="55.6023%" y="805" width="0.0332%" height="15" fill="rgb(250,186,11)" fg:x="169032" fg:w="101"/><text x="55.8523%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (101 samples, 0.03%)</title><rect x="55.6023%" y="789" width="0.0332%" height="15" fill="rgb(211,174,5)" fg:x="169032" fg:w="101"/><text x="55.8523%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (86 samples, 0.03%)</title><rect x="55.6072%" y="773" width="0.0283%" height="15" fill="rgb(214,121,10)" fg:x="169047" fg:w="86"/><text x="55.8572%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (86 samples, 0.03%)</title><rect x="55.6072%" y="757" width="0.0283%" height="15" fill="rgb(241,66,2)" fg:x="169047" fg:w="86"/><text x="55.8572%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (72 samples, 0.02%)</title><rect x="55.6118%" y="741" width="0.0237%" height="15" fill="rgb(220,167,19)" fg:x="169061" fg:w="72"/><text x="55.8618%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (72 samples, 0.02%)</title><rect x="55.6118%" y="725" width="0.0237%" height="15" fill="rgb(231,54,50)" fg:x="169061" fg:w="72"/><text x="55.8618%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (46 samples, 0.02%)</title><rect x="55.6204%" y="709" width="0.0151%" height="15" fill="rgb(239,217,53)" fg:x="169087" fg:w="46"/><text x="55.8704%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (46 samples, 0.02%)</title><rect x="55.6204%" y="693" width="0.0151%" height="15" fill="rgb(248,8,0)" fg:x="169087" fg:w="46"/><text x="55.8704%" y="703.50"></text></g><g><title>[python3.10] (46 samples, 0.02%)</title><rect x="55.6204%" y="677" width="0.0151%" height="15" fill="rgb(229,118,37)" fg:x="169087" fg:w="46"/><text x="55.8704%" y="687.50"></text></g><g><title>[python3.10] (46 samples, 0.02%)</title><rect x="55.6204%" y="661" width="0.0151%" height="15" fill="rgb(253,223,43)" fg:x="169087" fg:w="46"/><text x="55.8704%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (150 samples, 0.05%)</title><rect x="55.5868%" y="821" width="0.0493%" height="15" fill="rgb(211,77,36)" fg:x="168985" fg:w="150"/><text x="55.8368%" y="831.50"></text></g><g><title>PyImport_ImportModuleLevelObject (32 samples, 0.01%)</title><rect x="55.6401%" y="549" width="0.0105%" height="15" fill="rgb(219,3,53)" fg:x="169147" fg:w="32"/><text x="55.8901%" y="559.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (32 samples, 0.01%)</title><rect x="55.6401%" y="533" width="0.0105%" height="15" fill="rgb(244,45,42)" fg:x="169147" fg:w="32"/><text x="55.8901%" y="543.50"></text></g><g><title>[python3.10] (32 samples, 0.01%)</title><rect x="55.6401%" y="517" width="0.0105%" height="15" fill="rgb(225,95,27)" fg:x="169147" fg:w="32"/><text x="55.8901%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.01%)</title><rect x="55.6401%" y="501" width="0.0105%" height="15" fill="rgb(207,74,8)" fg:x="169147" fg:w="32"/><text x="55.8901%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.01%)</title><rect x="55.6401%" y="485" width="0.0105%" height="15" fill="rgb(243,63,36)" fg:x="169147" fg:w="32"/><text x="55.8901%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.01%)</title><rect x="55.6401%" y="469" width="0.0105%" height="15" fill="rgb(211,180,12)" fg:x="169147" fg:w="32"/><text x="55.8901%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.01%)</title><rect x="55.6401%" y="453" width="0.0105%" height="15" fill="rgb(254,166,49)" fg:x="169147" fg:w="32"/><text x="55.8901%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.01%)</title><rect x="55.6401%" y="437" width="0.0105%" height="15" fill="rgb(205,19,0)" fg:x="169147" fg:w="32"/><text x="55.8901%" y="447.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.01%)</title><rect x="55.6401%" y="421" width="0.0105%" height="15" fill="rgb(224,172,32)" fg:x="169147" fg:w="32"/><text x="55.8901%" y="431.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (34 samples, 0.01%)</title><rect x="55.6401%" y="821" width="0.0112%" height="15" fill="rgb(254,136,30)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="831.50"></text></g><g><title>[python3.10] (34 samples, 0.01%)</title><rect x="55.6401%" y="805" width="0.0112%" height="15" fill="rgb(246,19,35)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.01%)</title><rect x="55.6401%" y="789" width="0.0112%" height="15" fill="rgb(219,24,36)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.01%)</title><rect x="55.6401%" y="773" width="0.0112%" height="15" fill="rgb(251,55,1)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.01%)</title><rect x="55.6401%" y="757" width="0.0112%" height="15" fill="rgb(218,117,39)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.01%)</title><rect x="55.6401%" y="741" width="0.0112%" height="15" fill="rgb(248,169,11)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.01%)</title><rect x="55.6401%" y="725" width="0.0112%" height="15" fill="rgb(244,40,44)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.01%)</title><rect x="55.6401%" y="709" width="0.0112%" height="15" fill="rgb(234,62,37)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.01%)</title><rect x="55.6401%" y="693" width="0.0112%" height="15" fill="rgb(207,117,42)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.01%)</title><rect x="55.6401%" y="677" width="0.0112%" height="15" fill="rgb(213,43,2)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.01%)</title><rect x="55.6401%" y="661" width="0.0112%" height="15" fill="rgb(244,202,51)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.01%)</title><rect x="55.6401%" y="645" width="0.0112%" height="15" fill="rgb(253,174,46)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="655.50"></text></g><g><title>[python3.10] (34 samples, 0.01%)</title><rect x="55.6401%" y="629" width="0.0112%" height="15" fill="rgb(251,23,1)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="639.50"></text></g><g><title>[python3.10] (34 samples, 0.01%)</title><rect x="55.6401%" y="613" width="0.0112%" height="15" fill="rgb(253,26,1)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="623.50"></text></g><g><title>PyEval_EvalCode (34 samples, 0.01%)</title><rect x="55.6401%" y="597" width="0.0112%" height="15" fill="rgb(216,89,31)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="607.50"></text></g><g><title>[python3.10] (34 samples, 0.01%)</title><rect x="55.6401%" y="581" width="0.0112%" height="15" fill="rgb(209,109,5)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.01%)</title><rect x="55.6401%" y="565" width="0.0112%" height="15" fill="rgb(229,63,13)" fg:x="169147" fg:w="34"/><text x="55.8901%" y="575.50"></text></g><g><title>[unknown] (320 samples, 0.11%)</title><rect x="55.5483%" y="837" width="0.1053%" height="15" fill="rgb(238,137,54)" fg:x="168868" fg:w="320"/><text x="55.7983%" y="847.50"></text></g><g><title>[python3.10] (40 samples, 0.01%)</title><rect x="55.6704%" y="725" width="0.0132%" height="15" fill="rgb(228,1,9)" fg:x="169239" fg:w="40"/><text x="55.9204%" y="735.50"></text></g><g><title>[python3.10] (38 samples, 0.01%)</title><rect x="55.6710%" y="709" width="0.0125%" height="15" fill="rgb(249,120,48)" fg:x="169241" fg:w="38"/><text x="55.9210%" y="719.50"></text></g><g><title>Py_RunMain (93 samples, 0.03%)</title><rect x="55.6536%" y="773" width="0.0306%" height="15" fill="rgb(209,72,36)" fg:x="169188" fg:w="93"/><text x="55.9036%" y="783.50"></text></g><g><title>Py_FinalizeEx (64 samples, 0.02%)</title><rect x="55.6631%" y="757" width="0.0211%" height="15" fill="rgb(247,98,49)" fg:x="169217" fg:w="64"/><text x="55.9131%" y="767.50"></text></g><g><title>[python3.10] (45 samples, 0.01%)</title><rect x="55.6694%" y="741" width="0.0148%" height="15" fill="rgb(233,75,36)" fg:x="169236" fg:w="45"/><text x="55.9194%" y="751.50"></text></g><g><title>Py_InitializeFromConfig (63 samples, 0.02%)</title><rect x="55.6842%" y="741" width="0.0207%" height="15" fill="rgb(225,14,24)" fg:x="169281" fg:w="63"/><text x="55.9342%" y="751.50"></text></g><g><title>[python3.10] (63 samples, 0.02%)</title><rect x="55.6842%" y="725" width="0.0207%" height="15" fill="rgb(237,193,20)" fg:x="169281" fg:w="63"/><text x="55.9342%" y="735.50"></text></g><g><title>[python3.10] (63 samples, 0.02%)</title><rect x="55.6842%" y="709" width="0.0207%" height="15" fill="rgb(239,122,19)" fg:x="169281" fg:w="63"/><text x="55.9342%" y="719.50"></text></g><g><title>__libc_start_main_impl (157 samples, 0.05%)</title><rect x="55.6536%" y="821" width="0.0516%" height="15" fill="rgb(231,220,10)" fg:x="169188" fg:w="157"/><text x="55.9036%" y="831.50"></text></g><g><title>__libc_start_call_main (157 samples, 0.05%)</title><rect x="55.6536%" y="805" width="0.0516%" height="15" fill="rgb(220,66,15)" fg:x="169188" fg:w="157"/><text x="55.9036%" y="815.50"></text></g><g><title>Py_BytesMain (157 samples, 0.05%)</title><rect x="55.6536%" y="789" width="0.0516%" height="15" fill="rgb(215,171,52)" fg:x="169188" fg:w="157"/><text x="55.9036%" y="799.50"></text></g><g><title>[python3.10] (64 samples, 0.02%)</title><rect x="55.6842%" y="773" width="0.0211%" height="15" fill="rgb(241,169,50)" fg:x="169281" fg:w="64"/><text x="55.9342%" y="783.50"></text></g><g><title>[python3.10] (64 samples, 0.02%)</title><rect x="55.6842%" y="757" width="0.0211%" height="15" fill="rgb(236,189,0)" fg:x="169281" fg:w="64"/><text x="55.9342%" y="767.50"></text></g><g><title>_start (171 samples, 0.06%)</title><rect x="55.6536%" y="837" width="0.0562%" height="15" fill="rgb(217,147,20)" fg:x="169188" fg:w="171"/><text x="55.9036%" y="847.50"></text></g><g><title>python3 (533 samples, 0.18%)</title><rect x="55.5401%" y="853" width="0.1753%" height="15" fill="rgb(206,188,39)" fg:x="168843" fg:w="533"/><text x="55.7901%" y="863.50"></text></g><g><title>dl_main (39 samples, 0.01%)</title><rect x="55.7240%" y="773" width="0.0128%" height="15" fill="rgb(227,118,25)" fg:x="169402" fg:w="39"/><text x="55.9740%" y="783.50"></text></g><g><title>_start (44 samples, 0.01%)</title><rect x="55.7230%" y="837" width="0.0145%" height="15" fill="rgb(248,171,40)" fg:x="169399" fg:w="44"/><text x="55.9730%" y="847.50"></text></g><g><title>_dl_start (44 samples, 0.01%)</title><rect x="55.7230%" y="821" width="0.0145%" height="15" fill="rgb(251,90,54)" fg:x="169399" fg:w="44"/><text x="55.9730%" y="831.50"></text></g><g><title>_dl_start_final (44 samples, 0.01%)</title><rect x="55.7230%" y="805" width="0.0145%" height="15" fill="rgb(234,11,46)" fg:x="169399" fg:w="44"/><text x="55.9730%" y="815.50"></text></g><g><title>_dl_sysdep_start (44 samples, 0.01%)</title><rect x="55.7230%" y="789" width="0.0145%" height="15" fill="rgb(229,134,13)" fg:x="169399" fg:w="44"/><text x="55.9730%" y="799.50"></text></g><g><title>sed (82 samples, 0.03%)</title><rect x="55.7154%" y="853" width="0.0270%" height="15" fill="rgb(223,129,3)" fg:x="169376" fg:w="82"/><text x="55.9654%" y="863.50"></text></g><g><title>[anon] (784 samples, 0.26%)</title><rect x="55.7496%" y="837" width="0.2579%" height="15" fill="rgb(221,124,13)" fg:x="169480" fg:w="784"/><text x="55.9996%" y="847.50"></text></g><g><title>[libstdc++.so.6.0.30] (32 samples, 0.01%)</title><rect x="56.0401%" y="821" width="0.0105%" height="15" fill="rgb(234,3,18)" fg:x="170363" fg:w="32"/><text x="56.2901%" y="831.50"></text></g><g><title>_ZdlPv (55 samples, 0.02%)</title><rect x="56.0523%" y="677" width="0.0181%" height="15" fill="rgb(249,199,20)" fg:x="170400" fg:w="55"/><text x="56.3023%" y="687.50"></text></g><g><title>__GI___close (62 samples, 0.02%)</title><rect x="56.0506%" y="821" width="0.0204%" height="15" fill="rgb(224,134,6)" fg:x="170395" fg:w="62"/><text x="56.3006%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.02%)</title><rect x="56.0506%" y="805" width="0.0204%" height="15" fill="rgb(254,83,26)" fg:x="170395" fg:w="62"/><text x="56.3006%" y="815.50"></text></g><g><title>do_syscall_64 (62 samples, 0.02%)</title><rect x="56.0506%" y="789" width="0.0204%" height="15" fill="rgb(217,88,9)" fg:x="170395" fg:w="62"/><text x="56.3006%" y="799.50"></text></g><g><title>unload_network_ops_symbols (60 samples, 0.02%)</title><rect x="56.0513%" y="773" width="0.0197%" height="15" fill="rgb(225,73,2)" fg:x="170397" fg:w="60"/><text x="56.3013%" y="783.50"></text></g><g><title>cshook_systemcalltable_pre_close (60 samples, 0.02%)</title><rect x="56.0513%" y="757" width="0.0197%" height="15" fill="rgb(226,44,39)" fg:x="170397" fg:w="60"/><text x="56.3013%" y="767.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (60 samples, 0.02%)</title><rect x="56.0513%" y="741" width="0.0197%" height="15" fill="rgb(228,53,17)" fg:x="170397" fg:w="60"/><text x="56.3013%" y="751.50"></text></g><g><title>fshook_syscalltable_pre_lchown (57 samples, 0.02%)</title><rect x="56.0523%" y="725" width="0.0187%" height="15" fill="rgb(212,27,27)" fg:x="170400" fg:w="57"/><text x="56.3023%" y="735.50"></text></g><g><title>_ZdlPv (57 samples, 0.02%)</title><rect x="56.0523%" y="709" width="0.0187%" height="15" fill="rgb(241,50,6)" fg:x="170400" fg:w="57"/><text x="56.3023%" y="719.50"></text></g><g><title>_ZdlPv (57 samples, 0.02%)</title><rect x="56.0523%" y="693" width="0.0187%" height="15" fill="rgb(225,28,51)" fg:x="170400" fg:w="57"/><text x="56.3023%" y="703.50"></text></g><g><title>__GI___close_nocancel (42 samples, 0.01%)</title><rect x="56.0710%" y="821" width="0.0138%" height="15" fill="rgb(215,33,16)" fg:x="170457" fg:w="42"/><text x="56.3210%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.01%)</title><rect x="56.0713%" y="805" width="0.0135%" height="15" fill="rgb(243,40,39)" fg:x="170458" fg:w="41"/><text x="56.3213%" y="815.50"></text></g><g><title>do_syscall_64 (41 samples, 0.01%)</title><rect x="56.0713%" y="789" width="0.0135%" height="15" fill="rgb(225,11,42)" fg:x="170458" fg:w="41"/><text x="56.3213%" y="799.50"></text></g><g><title>btrfs_search_slot (59 samples, 0.02%)</title><rect x="56.1184%" y="709" width="0.0194%" height="15" fill="rgb(241,220,38)" fg:x="170601" fg:w="59"/><text x="56.3684%" y="719.50"></text></g><g><title>btrfs_real_readdir (110 samples, 0.04%)</title><rect x="56.1062%" y="725" width="0.0362%" height="15" fill="rgb(244,52,35)" fg:x="170564" fg:w="110"/><text x="56.3562%" y="735.50"></text></g><g><title>iterate_dir (127 samples, 0.04%)</title><rect x="56.1049%" y="741" width="0.0418%" height="15" fill="rgb(246,42,46)" fg:x="170560" fg:w="127"/><text x="56.3549%" y="751.50"></text></g><g><title>__x64_sys_getdents64 (133 samples, 0.04%)</title><rect x="56.1036%" y="757" width="0.0437%" height="15" fill="rgb(205,184,13)" fg:x="170556" fg:w="133"/><text x="56.3536%" y="767.50"></text></g><g><title>__GI___readdir64 (142 samples, 0.05%)</title><rect x="56.1013%" y="821" width="0.0467%" height="15" fill="rgb(209,48,36)" fg:x="170549" fg:w="142"/><text x="56.3513%" y="831.50"></text></g><g><title>__GI___getdents64 (140 samples, 0.05%)</title><rect x="56.1019%" y="805" width="0.0461%" height="15" fill="rgb(244,34,51)" fg:x="170551" fg:w="140"/><text x="56.3519%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (137 samples, 0.05%)</title><rect x="56.1029%" y="789" width="0.0451%" height="15" fill="rgb(221,107,33)" fg:x="170554" fg:w="137"/><text x="56.3529%" y="799.50"></text></g><g><title>do_syscall_64 (136 samples, 0.04%)</title><rect x="56.1032%" y="773" width="0.0447%" height="15" fill="rgb(224,203,12)" fg:x="170555" fg:w="136"/><text x="56.3532%" y="783.50"></text></g><g><title>btrfs_mkdir (43 samples, 0.01%)</title><rect x="56.1536%" y="709" width="0.0141%" height="15" fill="rgb(230,215,18)" fg:x="170708" fg:w="43"/><text x="56.4036%" y="719.50"></text></g><g><title>__x64_sys_mkdir (61 samples, 0.02%)</title><rect x="56.1483%" y="757" width="0.0201%" height="15" fill="rgb(206,185,35)" fg:x="170692" fg:w="61"/><text x="56.3983%" y="767.50"></text></g><g><title>do_mkdirat (61 samples, 0.02%)</title><rect x="56.1483%" y="741" width="0.0201%" height="15" fill="rgb(228,140,34)" fg:x="170692" fg:w="61"/><text x="56.3983%" y="751.50"></text></g><g><title>vfs_mkdir (46 samples, 0.02%)</title><rect x="56.1532%" y="725" width="0.0151%" height="15" fill="rgb(208,93,13)" fg:x="170707" fg:w="46"/><text x="56.4032%" y="735.50"></text></g><g><title>__GI_mkdir (77 samples, 0.03%)</title><rect x="56.1480%" y="821" width="0.0253%" height="15" fill="rgb(221,193,39)" fg:x="170691" fg:w="77"/><text x="56.3980%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.03%)</title><rect x="56.1480%" y="805" width="0.0253%" height="15" fill="rgb(241,132,34)" fg:x="170691" fg:w="77"/><text x="56.3980%" y="815.50"></text></g><g><title>do_syscall_64 (77 samples, 0.03%)</title><rect x="56.1480%" y="789" width="0.0253%" height="15" fill="rgb(221,141,10)" fg:x="170691" fg:w="77"/><text x="56.3980%" y="799.50"></text></g><g><title>unload_network_ops_symbols (77 samples, 0.03%)</title><rect x="56.1480%" y="773" width="0.0253%" height="15" fill="rgb(226,90,31)" fg:x="170691" fg:w="77"/><text x="56.3980%" y="783.50"></text></g><g><title>do_rmdir (59 samples, 0.02%)</title><rect x="56.1776%" y="709" width="0.0194%" height="15" fill="rgb(243,75,5)" fg:x="170781" fg:w="59"/><text x="56.4276%" y="719.50"></text></g><g><title>vfs_rmdir (58 samples, 0.02%)</title><rect x="56.1779%" y="693" width="0.0191%" height="15" fill="rgb(227,156,21)" fg:x="170782" fg:w="58"/><text x="56.4279%" y="703.50"></text></g><g><title>__GI_remove (61 samples, 0.02%)</title><rect x="56.1773%" y="805" width="0.0201%" height="15" fill="rgb(250,195,8)" fg:x="170780" fg:w="61"/><text x="56.4273%" y="815.50"></text></g><g><title>__GI___rmdir (61 samples, 0.02%)</title><rect x="56.1773%" y="789" width="0.0201%" height="15" fill="rgb(220,134,5)" fg:x="170780" fg:w="61"/><text x="56.4273%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.02%)</title><rect x="56.1776%" y="773" width="0.0197%" height="15" fill="rgb(246,106,34)" fg:x="170781" fg:w="60"/><text x="56.4276%" y="783.50"></text></g><g><title>do_syscall_64 (60 samples, 0.02%)</title><rect x="56.1776%" y="757" width="0.0197%" height="15" fill="rgb(205,1,4)" fg:x="170781" fg:w="60"/><text x="56.4276%" y="767.50"></text></g><g><title>unload_network_ops_symbols (60 samples, 0.02%)</title><rect x="56.1776%" y="741" width="0.0197%" height="15" fill="rgb(224,151,29)" fg:x="170781" fg:w="60"/><text x="56.4276%" y="751.50"></text></g><g><title>__x64_sys_rmdir (60 samples, 0.02%)</title><rect x="56.1776%" y="725" width="0.0197%" height="15" fill="rgb(251,196,0)" fg:x="170781" fg:w="60"/><text x="56.4276%" y="735.50"></text></g><g><title>filename_lookup (34 samples, 0.01%)</title><rect x="56.2075%" y="645" width="0.0112%" height="15" fill="rgb(212,127,0)" fg:x="170872" fg:w="34"/><text x="56.4575%" y="655.50"></text></g><g><title>path_lookupat (34 samples, 0.01%)</title><rect x="56.2075%" y="629" width="0.0112%" height="15" fill="rgb(236,71,53)" fg:x="170872" fg:w="34"/><text x="56.4575%" y="639.50"></text></g><g><title>__GI_remove (128 samples, 0.04%)</title><rect x="56.1773%" y="821" width="0.0421%" height="15" fill="rgb(227,99,0)" fg:x="170780" fg:w="128"/><text x="56.4273%" y="831.50"></text></g><g><title>__unlink (67 samples, 0.02%)</title><rect x="56.1973%" y="805" width="0.0220%" height="15" fill="rgb(239,89,21)" fg:x="170841" fg:w="67"/><text x="56.4473%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.02%)</title><rect x="56.1973%" y="789" width="0.0220%" height="15" fill="rgb(243,122,19)" fg:x="170841" fg:w="67"/><text x="56.4473%" y="799.50"></text></g><g><title>do_syscall_64 (67 samples, 0.02%)</title><rect x="56.1973%" y="773" width="0.0220%" height="15" fill="rgb(229,192,45)" fg:x="170841" fg:w="67"/><text x="56.4473%" y="783.50"></text></g><g><title>unload_network_ops_symbols (66 samples, 0.02%)</title><rect x="56.1977%" y="757" width="0.0217%" height="15" fill="rgb(235,165,35)" fg:x="170842" fg:w="66"/><text x="56.4477%" y="767.50"></text></g><g><title>cshook_systemcalltable_pre_unlink (38 samples, 0.01%)</title><rect x="56.2069%" y="741" width="0.0125%" height="15" fill="rgb(253,202,0)" fg:x="170870" fg:w="38"/><text x="56.4569%" y="751.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (38 samples, 0.01%)</title><rect x="56.2069%" y="725" width="0.0125%" height="15" fill="rgb(235,51,20)" fg:x="170870" fg:w="38"/><text x="56.4569%" y="735.50"></text></g><g><title>fshook_syscalltable_pre_lchown (37 samples, 0.01%)</title><rect x="56.2072%" y="709" width="0.0122%" height="15" fill="rgb(218,95,46)" fg:x="170871" fg:w="37"/><text x="56.4572%" y="719.50"></text></g><g><title>fshook_syscalltable_pre_lchown (37 samples, 0.01%)</title><rect x="56.2072%" y="693" width="0.0122%" height="15" fill="rgb(212,81,10)" fg:x="170871" fg:w="37"/><text x="56.4572%" y="703.50"></text></g><g><title>[[falcon_kal]] (37 samples, 0.01%)</title><rect x="56.2072%" y="677" width="0.0122%" height="15" fill="rgb(240,59,0)" fg:x="170871" fg:w="37"/><text x="56.4572%" y="687.50"></text></g><g><title>user_path_at_empty (36 samples, 0.01%)</title><rect x="56.2075%" y="661" width="0.0118%" height="15" fill="rgb(212,191,42)" fg:x="170872" fg:w="36"/><text x="56.4575%" y="671.50"></text></g><g><title>do_rmdir (38 samples, 0.01%)</title><rect x="56.2220%" y="741" width="0.0125%" height="15" fill="rgb(233,140,3)" fg:x="170916" fg:w="38"/><text x="56.4720%" y="751.50"></text></g><g><title>vfs_rmdir (37 samples, 0.01%)</title><rect x="56.2223%" y="725" width="0.0122%" height="15" fill="rgb(215,69,23)" fg:x="170917" fg:w="37"/><text x="56.4723%" y="735.50"></text></g><g><title>__x64_sys_unlinkat (56 samples, 0.02%)</title><rect x="56.2220%" y="757" width="0.0184%" height="15" fill="rgb(240,202,20)" fg:x="170916" fg:w="56"/><text x="56.4720%" y="767.50"></text></g><g><title>__GI_unlinkat (73 samples, 0.02%)</title><rect x="56.2217%" y="821" width="0.0240%" height="15" fill="rgb(209,146,50)" fg:x="170915" fg:w="73"/><text x="56.4717%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.02%)</title><rect x="56.2217%" y="805" width="0.0240%" height="15" fill="rgb(253,102,54)" fg:x="170915" fg:w="73"/><text x="56.4717%" y="815.50"></text></g><g><title>do_syscall_64 (73 samples, 0.02%)</title><rect x="56.2217%" y="789" width="0.0240%" height="15" fill="rgb(250,173,47)" fg:x="170915" fg:w="73"/><text x="56.4717%" y="799.50"></text></g><g><title>unload_network_ops_symbols (72 samples, 0.02%)</title><rect x="56.2220%" y="773" width="0.0237%" height="15" fill="rgb(232,142,7)" fg:x="170916" fg:w="72"/><text x="56.4720%" y="783.50"></text></g><g><title>inode_permission (51 samples, 0.02%)</title><rect x="56.2763%" y="661" width="0.0168%" height="15" fill="rgb(230,157,47)" fg:x="171081" fg:w="51"/><text x="56.5263%" y="671.50"></text></g><g><title>lookup_fast (78 samples, 0.03%)</title><rect x="56.2963%" y="645" width="0.0257%" height="15" fill="rgb(214,177,35)" fg:x="171142" fg:w="78"/><text x="56.5463%" y="655.50"></text></g><g><title>__d_lookup_rcu (67 samples, 0.02%)</title><rect x="56.3000%" y="629" width="0.0220%" height="15" fill="rgb(234,119,46)" fg:x="171153" fg:w="67"/><text x="56.5500%" y="639.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (173 samples, 0.06%)</title><rect x="56.2674%" y="677" width="0.0569%" height="15" fill="rgb(241,180,50)" fg:x="171054" fg:w="173"/><text x="56.5174%" y="687.50"></text></g><g><title>walk_component (92 samples, 0.03%)</title><rect x="56.2940%" y="661" width="0.0303%" height="15" fill="rgb(221,54,25)" fg:x="171135" fg:w="92"/><text x="56.5440%" y="671.50"></text></g><g><title>path_lookupat (217 samples, 0.07%)</title><rect x="56.2641%" y="693" width="0.0714%" height="15" fill="rgb(209,157,44)" fg:x="171044" fg:w="217"/><text x="56.5141%" y="703.50"></text></g><g><title>filename_lookup (221 samples, 0.07%)</title><rect x="56.2631%" y="709" width="0.0727%" height="15" fill="rgb(246,115,41)" fg:x="171041" fg:w="221"/><text x="56.5131%" y="719.50"></text></g><g><title>getname_flags.part.0 (58 samples, 0.02%)</title><rect x="56.3361%" y="693" width="0.0191%" height="15" fill="rgb(229,86,1)" fg:x="171263" fg:w="58"/><text x="56.5861%" y="703.50"></text></g><g><title>getname_flags (60 samples, 0.02%)</title><rect x="56.3358%" y="709" width="0.0197%" height="15" fill="rgb(240,108,53)" fg:x="171262" fg:w="60"/><text x="56.5858%" y="719.50"></text></g><g><title>user_path_at_empty (290 samples, 0.10%)</title><rect x="56.2631%" y="725" width="0.0954%" height="15" fill="rgb(227,134,2)" fg:x="171041" fg:w="290"/><text x="56.5131%" y="735.50"></text></g><g><title>__do_sys_newlstat (339 samples, 0.11%)</title><rect x="56.2519%" y="757" width="0.1115%" height="15" fill="rgb(213,129,25)" fg:x="171007" fg:w="339"/><text x="56.5019%" y="767.50"></text></g><g><title>vfs_statx (319 samples, 0.10%)</title><rect x="56.2585%" y="741" width="0.1049%" height="15" fill="rgb(226,35,21)" fg:x="171027" fg:w="319"/><text x="56.5085%" y="751.50"></text></g><g><title>__x64_sys_newlstat (342 samples, 0.11%)</title><rect x="56.2519%" y="773" width="0.1125%" height="15" fill="rgb(208,129,26)" fg:x="171007" fg:w="342"/><text x="56.5019%" y="783.50"></text></g><g><title>do_syscall_64 (348 samples, 0.11%)</title><rect x="56.2516%" y="789" width="0.1145%" height="15" fill="rgb(224,83,6)" fg:x="171006" fg:w="348"/><text x="56.5016%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (356 samples, 0.12%)</title><rect x="56.2496%" y="805" width="0.1171%" height="15" fill="rgb(227,52,39)" fg:x="171000" fg:w="356"/><text x="56.4996%" y="815.50"></text></g><g><title>___lxstat64 (370 samples, 0.12%)</title><rect x="56.2457%" y="821" width="0.1217%" height="15" fill="rgb(241,30,17)" fg:x="170988" fg:w="370"/><text x="56.4957%" y="831.50"></text></g><g><title>lookup_fast (34 samples, 0.01%)</title><rect x="56.4039%" y="645" width="0.0112%" height="15" fill="rgb(246,186,42)" fg:x="171469" fg:w="34"/><text x="56.6539%" y="655.50"></text></g><g><title>__d_lookup_rcu (32 samples, 0.01%)</title><rect x="56.4046%" y="629" width="0.0105%" height="15" fill="rgb(221,169,15)" fg:x="171471" fg:w="32"/><text x="56.6546%" y="639.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (110 samples, 0.04%)</title><rect x="56.3838%" y="677" width="0.0362%" height="15" fill="rgb(235,108,21)" fg:x="171408" fg:w="110"/><text x="56.6338%" y="687.50"></text></g><g><title>walk_component (54 samples, 0.02%)</title><rect x="56.4023%" y="661" width="0.0178%" height="15" fill="rgb(219,148,30)" fg:x="171464" fg:w="54"/><text x="56.6523%" y="671.50"></text></g><g><title>filename_lookup (140 samples, 0.05%)</title><rect x="56.3799%" y="709" width="0.0461%" height="15" fill="rgb(220,109,5)" fg:x="171396" fg:w="140"/><text x="56.6299%" y="719.50"></text></g><g><title>path_lookupat (138 samples, 0.05%)</title><rect x="56.3806%" y="693" width="0.0454%" height="15" fill="rgb(213,203,48)" fg:x="171398" fg:w="138"/><text x="56.6306%" y="703.50"></text></g><g><title>getname_flags.part.0 (35 samples, 0.01%)</title><rect x="56.4266%" y="693" width="0.0115%" height="15" fill="rgb(244,71,33)" fg:x="171538" fg:w="35"/><text x="56.6766%" y="703.50"></text></g><g><title>getname_flags (36 samples, 0.01%)</title><rect x="56.4266%" y="709" width="0.0118%" height="15" fill="rgb(209,23,2)" fg:x="171538" fg:w="36"/><text x="56.6766%" y="719.50"></text></g><g><title>user_path_at_empty (189 samples, 0.06%)</title><rect x="56.3799%" y="725" width="0.0622%" height="15" fill="rgb(219,97,7)" fg:x="171396" fg:w="189"/><text x="56.6299%" y="735.50"></text></g><g><title>__do_sys_newstat (229 samples, 0.08%)</title><rect x="56.3694%" y="757" width="0.0753%" height="15" fill="rgb(216,161,23)" fg:x="171364" fg:w="229"/><text x="56.6194%" y="767.50"></text></g><g><title>vfs_statx (213 samples, 0.07%)</title><rect x="56.3746%" y="741" width="0.0701%" height="15" fill="rgb(207,45,42)" fg:x="171380" fg:w="213"/><text x="56.6246%" y="751.50"></text></g><g><title>__x64_sys_newstat (231 samples, 0.08%)</title><rect x="56.3694%" y="773" width="0.0760%" height="15" fill="rgb(241,61,4)" fg:x="171364" fg:w="231"/><text x="56.6194%" y="783.50"></text></g><g><title>___xstat64 (238 samples, 0.08%)</title><rect x="56.3674%" y="821" width="0.0783%" height="15" fill="rgb(236,170,1)" fg:x="171358" fg:w="238"/><text x="56.6174%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (236 samples, 0.08%)</title><rect x="56.3681%" y="805" width="0.0776%" height="15" fill="rgb(239,72,5)" fg:x="171360" fg:w="236"/><text x="56.6181%" y="815.50"></text></g><g><title>do_syscall_64 (235 samples, 0.08%)</title><rect x="56.3684%" y="789" width="0.0773%" height="15" fill="rgb(214,13,50)" fg:x="171361" fg:w="235"/><text x="56.6184%" y="799.50"></text></g><g><title>do_syscall_64 (42 samples, 0.01%)</title><rect x="56.4460%" y="789" width="0.0138%" height="15" fill="rgb(224,88,9)" fg:x="171597" fg:w="42"/><text x="56.6960%" y="799.50"></text></g><g><title>unload_network_ops_symbols (40 samples, 0.01%)</title><rect x="56.4467%" y="773" width="0.0132%" height="15" fill="rgb(238,192,34)" fg:x="171599" fg:w="40"/><text x="56.6967%" y="783.50"></text></g><g><title>__chmod (44 samples, 0.01%)</title><rect x="56.4457%" y="821" width="0.0145%" height="15" fill="rgb(217,203,50)" fg:x="171596" fg:w="44"/><text x="56.6957%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.01%)</title><rect x="56.4457%" y="805" width="0.0145%" height="15" fill="rgb(241,123,32)" fg:x="171596" fg:w="44"/><text x="56.6957%" y="815.50"></text></g><g><title>btrfs_create (31 samples, 0.01%)</title><rect x="56.4671%" y="661" width="0.0102%" height="15" fill="rgb(248,151,39)" fg:x="171661" fg:w="31"/><text x="56.7171%" y="671.50"></text></g><g><title>do_filp_open (39 samples, 0.01%)</title><rect x="56.4648%" y="725" width="0.0128%" height="15" fill="rgb(208,89,6)" fg:x="171654" fg:w="39"/><text x="56.7148%" y="735.50"></text></g><g><title>path_openat (38 samples, 0.01%)</title><rect x="56.4651%" y="709" width="0.0125%" height="15" fill="rgb(254,43,26)" fg:x="171655" fg:w="38"/><text x="56.7151%" y="719.50"></text></g><g><title>open_last_lookups (33 samples, 0.01%)</title><rect x="56.4667%" y="693" width="0.0109%" height="15" fill="rgb(216,158,13)" fg:x="171660" fg:w="33"/><text x="56.7167%" y="703.50"></text></g><g><title>lookup_open.isra.0 (33 samples, 0.01%)</title><rect x="56.4667%" y="677" width="0.0109%" height="15" fill="rgb(212,47,37)" fg:x="171660" fg:w="33"/><text x="56.7167%" y="687.50"></text></g><g><title>__x64_sys_openat (40 samples, 0.01%)</title><rect x="56.4648%" y="757" width="0.0132%" height="15" fill="rgb(254,16,10)" fg:x="171654" fg:w="40"/><text x="56.7148%" y="767.50"></text></g><g><title>do_sys_openat2 (40 samples, 0.01%)</title><rect x="56.4648%" y="741" width="0.0132%" height="15" fill="rgb(223,228,16)" fg:x="171654" fg:w="40"/><text x="56.7148%" y="751.50"></text></g><g><title>__libc_open64 (58 samples, 0.02%)</title><rect x="56.4644%" y="821" width="0.0191%" height="15" fill="rgb(249,108,50)" fg:x="171653" fg:w="58"/><text x="56.7144%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.02%)</title><rect x="56.4644%" y="805" width="0.0191%" height="15" fill="rgb(208,220,5)" fg:x="171653" fg:w="58"/><text x="56.7144%" y="815.50"></text></g><g><title>do_syscall_64 (57 samples, 0.02%)</title><rect x="56.4648%" y="789" width="0.0187%" height="15" fill="rgb(217,89,48)" fg:x="171654" fg:w="57"/><text x="56.7148%" y="799.50"></text></g><g><title>unload_network_ops_symbols (57 samples, 0.02%)</title><rect x="56.4648%" y="773" width="0.0187%" height="15" fill="rgb(212,113,41)" fg:x="171654" fg:w="57"/><text x="56.7148%" y="783.50"></text></g><g><title>do_filp_open (49 samples, 0.02%)</title><rect x="56.4963%" y="709" width="0.0161%" height="15" fill="rgb(231,127,5)" fg:x="171750" fg:w="49"/><text x="56.7463%" y="719.50"></text></g><g><title>path_openat (48 samples, 0.02%)</title><rect x="56.4967%" y="693" width="0.0158%" height="15" fill="rgb(217,141,17)" fg:x="171751" fg:w="48"/><text x="56.7467%" y="703.50"></text></g><g><title>do_sys_openat2 (52 samples, 0.02%)</title><rect x="56.4960%" y="725" width="0.0171%" height="15" fill="rgb(245,125,54)" fg:x="171749" fg:w="52"/><text x="56.7460%" y="735.50"></text></g><g><title>__x64_sys_openat (54 samples, 0.02%)</title><rect x="56.4960%" y="741" width="0.0178%" height="15" fill="rgb(248,125,3)" fg:x="171749" fg:w="54"/><text x="56.7460%" y="751.50"></text></g><g><title>cshook_systemcalltable_post_openat (48 samples, 0.02%)</title><rect x="56.5141%" y="741" width="0.0158%" height="15" fill="rgb(236,119,51)" fg:x="171804" fg:w="48"/><text x="56.7641%" y="751.50"></text></g><g><title>fshook_syscalltable_pre_lchown (34 samples, 0.01%)</title><rect x="56.5187%" y="725" width="0.0112%" height="15" fill="rgb(239,99,8)" fg:x="171818" fg:w="34"/><text x="56.7687%" y="735.50"></text></g><g><title>__GI___open64_nocancel (113 samples, 0.04%)</title><rect x="56.4934%" y="805" width="0.0372%" height="15" fill="rgb(224,228,4)" fg:x="171741" fg:w="113"/><text x="56.7434%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (111 samples, 0.04%)</title><rect x="56.4940%" y="789" width="0.0365%" height="15" fill="rgb(220,131,45)" fg:x="171743" fg:w="111"/><text x="56.7440%" y="799.50"></text></g><g><title>do_syscall_64 (111 samples, 0.04%)</title><rect x="56.4940%" y="773" width="0.0365%" height="15" fill="rgb(215,62,5)" fg:x="171743" fg:w="111"/><text x="56.7440%" y="783.50"></text></g><g><title>unload_network_ops_symbols (105 samples, 0.03%)</title><rect x="56.4960%" y="757" width="0.0345%" height="15" fill="rgb(253,12,24)" fg:x="171749" fg:w="105"/><text x="56.7460%" y="767.50"></text></g><g><title>__opendir (138 samples, 0.05%)</title><rect x="56.4934%" y="821" width="0.0454%" height="15" fill="rgb(248,120,50)" fg:x="171741" fg:w="138"/><text x="56.7434%" y="831.50"></text></g><g><title>jni_GetByteArrayRegion (36 samples, 0.01%)</title><rect x="56.5388%" y="821" width="0.0118%" height="15" fill="rgb(245,194,10)" fg:x="171879" fg:w="36"/><text x="56.7888%" y="831.50"></text></g><g><title>jni_GetObjectField (31 samples, 0.01%)</title><rect x="56.5516%" y="821" width="0.0102%" height="15" fill="rgb(241,149,38)" fg:x="171918" fg:w="31"/><text x="56.8016%" y="831.50"></text></g><g><title>InstanceKlass::allocate_instance (37 samples, 0.01%)</title><rect x="56.5838%" y="805" width="0.0122%" height="15" fill="rgb(219,215,7)" fg:x="172016" fg:w="37"/><text x="56.8338%" y="815.50"></text></g><g><title>JavaCalls::call_helper (61 samples, 0.02%)</title><rect x="56.6167%" y="789" width="0.0201%" height="15" fill="rgb(208,120,31)" fg:x="172116" fg:w="61"/><text x="56.8667%" y="799.50"></text></g><g><title>jni_invoke_nonstatic (108 samples, 0.04%)</title><rect x="56.6046%" y="805" width="0.0355%" height="15" fill="rgb(244,30,8)" fg:x="172079" fg:w="108"/><text x="56.8546%" y="815.50"></text></g><g><title>jni_NewObjectV (204 samples, 0.07%)</title><rect x="56.5733%" y="821" width="0.0671%" height="15" fill="rgb(238,35,44)" fg:x="171984" fg:w="204"/><text x="56.8233%" y="831.50"></text></g><g><title>[libunix_jni.so] (2,014 samples, 0.66%)</title><rect x="56.0079%" y="837" width="0.6625%" height="15" fill="rgb(243,218,37)" fg:x="170265" fg:w="2014"/><text x="56.2579%" y="847.50"></text></g><g><title>ConstantPool::klass_at_impl (40 samples, 0.01%)</title><rect x="94.8839%" y="805" width="0.0132%" height="15" fill="rgb(218,169,10)" fg:x="288449" fg:w="40"/><text x="95.1339%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (39 samples, 0.01%)</title><rect x="94.8842%" y="789" width="0.0128%" height="15" fill="rgb(221,144,10)" fg:x="288450" fg:w="39"/><text x="95.1342%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (39 samples, 0.01%)</title><rect x="94.8842%" y="773" width="0.0128%" height="15" fill="rgb(226,41,38)" fg:x="288450" fg:w="39"/><text x="95.1342%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (76 samples, 0.02%)</title><rect x="94.8990%" y="789" width="0.0250%" height="15" fill="rgb(228,3,1)" fg:x="288495" fg:w="76"/><text x="95.1490%" y="799.50"></text></g><g><title>InterpreterRuntime::_new (127 samples, 0.04%)</title><rect x="94.8839%" y="821" width="0.0418%" height="15" fill="rgb(209,129,12)" fg:x="288449" fg:w="127"/><text x="95.1339%" y="831.50"></text></g><g><title>InstanceKlass::initialize_impl (82 samples, 0.03%)</title><rect x="94.8987%" y="805" width="0.0270%" height="15" fill="rgb(213,136,33)" fg:x="288494" fg:w="82"/><text x="95.1487%" y="815.50"></text></g><g><title>CollectedHeap::array_allocate (76 samples, 0.02%)</title><rect x="94.9530%" y="789" width="0.0250%" height="15" fill="rgb(209,181,29)" fg:x="288659" fg:w="76"/><text x="95.2030%" y="799.50"></text></g><g><title>MemAllocator::allocate (74 samples, 0.02%)</title><rect x="94.9537%" y="773" width="0.0243%" height="15" fill="rgb(234,173,18)" fg:x="288661" fg:w="74"/><text x="95.2037%" y="783.50"></text></g><g><title>InstanceKlass::allocate_objArray (139 samples, 0.05%)</title><rect x="94.9415%" y="805" width="0.0457%" height="15" fill="rgb(227,73,47)" fg:x="288624" fg:w="139"/><text x="95.1915%" y="815.50"></text></g><g><title>InterpreterRuntime::anewarray (207 samples, 0.07%)</title><rect x="94.9257%" y="821" width="0.0681%" height="15" fill="rgb(234,9,34)" fg:x="288576" fg:w="207"/><text x="95.1757%" y="831.50"></text></g><g><title>InterpreterRuntime::build_method_counters (32 samples, 0.01%)</title><rect x="94.9967%" y="821" width="0.0105%" height="15" fill="rgb(235,172,15)" fg:x="288792" fg:w="32"/><text x="95.2467%" y="831.50"></text></g><g><title>TieredThresholdPolicy::method_back_branch_event (34 samples, 0.01%)</title><rect x="95.0267%" y="773" width="0.0112%" height="15" fill="rgb(245,61,2)" fg:x="288883" fg:w="34"/><text x="95.2767%" y="783.50"></text></g><g><title>Method::build_interpreter_method_data (33 samples, 0.01%)</title><rect x="95.0431%" y="757" width="0.0109%" height="15" fill="rgb(238,39,47)" fg:x="288933" fg:w="33"/><text x="95.2931%" y="767.50"></text></g><g><title>TieredThresholdPolicy::call_event (69 samples, 0.02%)</title><rect x="95.0540%" y="757" width="0.0227%" height="15" fill="rgb(234,37,24)" fg:x="288966" fg:w="69"/><text x="95.3040%" y="767.50"></text></g><g><title>TieredThresholdPolicy::loop_predicate (31 samples, 0.01%)</title><rect x="95.0665%" y="741" width="0.0102%" height="15" fill="rgb(248,223,24)" fg:x="289004" fg:w="31"/><text x="95.3165%" y="751.50"></text></g><g><title>futex_wait (34 samples, 0.01%)</title><rect x="95.0856%" y="501" width="0.0112%" height="15" fill="rgb(223,12,15)" fg:x="289062" fg:w="34"/><text x="95.3356%" y="511.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.01%)</title><rect x="95.0856%" y="485" width="0.0112%" height="15" fill="rgb(249,6,3)" fg:x="289062" fg:w="34"/><text x="95.3356%" y="495.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="95.0859%" y="469" width="0.0109%" height="15" fill="rgb(237,105,33)" fg:x="289063" fg:w="33"/><text x="95.3359%" y="479.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="95.0862%" y="453" width="0.0105%" height="15" fill="rgb(252,208,35)" fg:x="289064" fg:w="32"/><text x="95.3362%" y="463.50"></text></g><g><title>Monitor::ILock (39 samples, 0.01%)</title><rect x="95.0842%" y="677" width="0.0128%" height="15" fill="rgb(215,181,35)" fg:x="289058" fg:w="39"/><text x="95.3342%" y="687.50"></text></g><g><title>os::PlatformEvent::park (35 samples, 0.01%)</title><rect x="95.0856%" y="661" width="0.0115%" height="15" fill="rgb(246,212,3)" fg:x="289062" fg:w="35"/><text x="95.3356%" y="671.50"></text></g><g><title>___pthread_cond_wait (35 samples, 0.01%)</title><rect x="95.0856%" y="645" width="0.0115%" height="15" fill="rgb(247,156,24)" fg:x="289062" fg:w="35"/><text x="95.3356%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (35 samples, 0.01%)</title><rect x="95.0856%" y="629" width="0.0115%" height="15" fill="rgb(248,9,31)" fg:x="289062" fg:w="35"/><text x="95.3356%" y="639.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (35 samples, 0.01%)</title><rect x="95.0856%" y="613" width="0.0115%" height="15" fill="rgb(234,26,45)" fg:x="289062" fg:w="35"/><text x="95.3356%" y="623.50"></text></g><g><title>__futex_abstimed_wait_common (35 samples, 0.01%)</title><rect x="95.0856%" y="597" width="0.0115%" height="15" fill="rgb(249,11,32)" fg:x="289062" fg:w="35"/><text x="95.3356%" y="607.50"></text></g><g><title>__futex_abstimed_wait_common64 (35 samples, 0.01%)</title><rect x="95.0856%" y="581" width="0.0115%" height="15" fill="rgb(249,162,33)" fg:x="289062" fg:w="35"/><text x="95.3356%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.01%)</title><rect x="95.0856%" y="565" width="0.0115%" height="15" fill="rgb(232,4,32)" fg:x="289062" fg:w="35"/><text x="95.3356%" y="575.50"></text></g><g><title>do_syscall_64 (35 samples, 0.01%)</title><rect x="95.0856%" y="549" width="0.0115%" height="15" fill="rgb(212,5,45)" fg:x="289062" fg:w="35"/><text x="95.3356%" y="559.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.01%)</title><rect x="95.0856%" y="533" width="0.0115%" height="15" fill="rgb(227,95,13)" fg:x="289062" fg:w="35"/><text x="95.3356%" y="543.50"></text></g><g><title>do_futex (35 samples, 0.01%)</title><rect x="95.0856%" y="517" width="0.0115%" height="15" fill="rgb(223,205,10)" fg:x="289062" fg:w="35"/><text x="95.3356%" y="527.50"></text></g><g><title>Monitor::lock (40 samples, 0.01%)</title><rect x="95.0842%" y="693" width="0.0132%" height="15" fill="rgb(222,178,8)" fg:x="289058" fg:w="40"/><text x="95.3342%" y="703.50"></text></g><g><title>CompileBroker::compile_method_base (64 samples, 0.02%)</title><rect x="95.0806%" y="709" width="0.0211%" height="15" fill="rgb(216,13,22)" fg:x="289047" fg:w="64"/><text x="95.3306%" y="719.50"></text></g><g><title>CompileBroker::compile_method (85 samples, 0.03%)</title><rect x="95.0773%" y="725" width="0.0280%" height="15" fill="rgb(240,167,12)" fg:x="289037" fg:w="85"/><text x="95.3273%" y="735.50"></text></g><g><title>TieredThresholdPolicy::event (246 samples, 0.08%)</title><rect x="95.0257%" y="789" width="0.0809%" height="15" fill="rgb(235,68,35)" fg:x="288880" fg:w="246"/><text x="95.2757%" y="799.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (209 samples, 0.07%)</title><rect x="95.0379%" y="773" width="0.0687%" height="15" fill="rgb(253,40,27)" fg:x="288917" fg:w="209"/><text x="95.2879%" y="783.50"></text></g><g><title>TieredThresholdPolicy::compile (91 samples, 0.03%)</title><rect x="95.0767%" y="757" width="0.0299%" height="15" fill="rgb(214,19,28)" fg:x="289035" fg:w="91"/><text x="95.3267%" y="767.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (90 samples, 0.03%)</title><rect x="95.0770%" y="741" width="0.0296%" height="15" fill="rgb(210,167,45)" fg:x="289036" fg:w="90"/><text x="95.3270%" y="751.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (304 samples, 0.10%)</title><rect x="95.0073%" y="821" width="0.1000%" height="15" fill="rgb(232,97,40)" fg:x="288824" fg:w="304"/><text x="95.2573%" y="831.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (302 samples, 0.10%)</title><rect x="95.0079%" y="805" width="0.0993%" height="15" fill="rgb(250,35,23)" fg:x="288826" fg:w="302"/><text x="95.2579%" y="815.50"></text></g><g><title>JavaThread::pd_last_frame (54 samples, 0.02%)</title><rect x="95.1237%" y="805" width="0.0178%" height="15" fill="rgb(248,47,53)" fg:x="289178" fg:w="54"/><text x="95.3737%" y="815.50"></text></g><g><title>CodeCache::find_blob (44 samples, 0.01%)</title><rect x="95.1270%" y="789" width="0.0145%" height="15" fill="rgb(226,58,50)" fg:x="289188" fg:w="44"/><text x="95.3770%" y="799.50"></text></g><g><title>InterpreterRuntime::ldc (123 samples, 0.04%)</title><rect x="95.1073%" y="821" width="0.0405%" height="15" fill="rgb(217,105,26)" fg:x="289128" fg:w="123"/><text x="95.3573%" y="831.50"></text></g><g><title>__x64_sys_futex (33 samples, 0.01%)</title><rect x="95.1494%" y="661" width="0.0109%" height="15" fill="rgb(208,64,1)" fg:x="289256" fg:w="33"/><text x="95.3994%" y="671.50"></text></g><g><title>do_futex (33 samples, 0.01%)</title><rect x="95.1494%" y="645" width="0.0109%" height="15" fill="rgb(214,80,1)" fg:x="289256" fg:w="33"/><text x="95.3994%" y="655.50"></text></g><g><title>futex_wait (32 samples, 0.01%)</title><rect x="95.1497%" y="629" width="0.0105%" height="15" fill="rgb(206,175,26)" fg:x="289257" fg:w="32"/><text x="95.3997%" y="639.50"></text></g><g><title>futex_wait_queue_me (32 samples, 0.01%)</title><rect x="95.1497%" y="613" width="0.0105%" height="15" fill="rgb(235,156,37)" fg:x="289257" fg:w="32"/><text x="95.3997%" y="623.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="95.1497%" y="597" width="0.0105%" height="15" fill="rgb(213,100,9)" fg:x="289257" fg:w="32"/><text x="95.3997%" y="607.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="95.1497%" y="581" width="0.0105%" height="15" fill="rgb(241,15,13)" fg:x="289257" fg:w="32"/><text x="95.3997%" y="591.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (34 samples, 0.01%)</title><rect x="95.1494%" y="741" width="0.0112%" height="15" fill="rgb(205,97,43)" fg:x="289256" fg:w="34"/><text x="95.3994%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common (34 samples, 0.01%)</title><rect x="95.1494%" y="725" width="0.0112%" height="15" fill="rgb(216,106,32)" fg:x="289256" fg:w="34"/><text x="95.3994%" y="735.50"></text></g><g><title>__futex_abstimed_wait_common64 (34 samples, 0.01%)</title><rect x="95.1494%" y="709" width="0.0112%" height="15" fill="rgb(226,200,8)" fg:x="289256" fg:w="34"/><text x="95.3994%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.01%)</title><rect x="95.1494%" y="693" width="0.0112%" height="15" fill="rgb(244,54,29)" fg:x="289256" fg:w="34"/><text x="95.3994%" y="703.50"></text></g><g><title>do_syscall_64 (34 samples, 0.01%)</title><rect x="95.1494%" y="677" width="0.0112%" height="15" fill="rgb(252,169,12)" fg:x="289256" fg:w="34"/><text x="95.3994%" y="687.50"></text></g><g><title>___pthread_cond_timedwait64 (37 samples, 0.01%)</title><rect x="95.1490%" y="773" width="0.0122%" height="15" fill="rgb(231,199,11)" fg:x="289255" fg:w="37"/><text x="95.3990%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (37 samples, 0.01%)</title><rect x="95.1490%" y="757" width="0.0122%" height="15" fill="rgb(233,191,18)" fg:x="289255" fg:w="37"/><text x="95.3990%" y="767.50"></text></g><g><title>ObjectMonitor::enter (58 samples, 0.02%)</title><rect x="95.1481%" y="805" width="0.0191%" height="15" fill="rgb(215,83,47)" fg:x="289252" fg:w="58"/><text x="95.3981%" y="815.50"></text></g><g><title>os::PlatformEvent::park (55 samples, 0.02%)</title><rect x="95.1490%" y="789" width="0.0181%" height="15" fill="rgb(251,67,19)" fg:x="289255" fg:w="55"/><text x="95.3990%" y="799.50"></text></g><g><title>InterpreterRuntime::monitorenter (80 samples, 0.03%)</title><rect x="95.1477%" y="821" width="0.0263%" height="15" fill="rgb(240,7,20)" fg:x="289251" fg:w="80"/><text x="95.3977%" y="831.50"></text></g><g><title>LinkResolver::resolve_field_access (34 samples, 0.01%)</title><rect x="95.1977%" y="789" width="0.0112%" height="15" fill="rgb(210,150,26)" fg:x="289403" fg:w="34"/><text x="95.4477%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (44 samples, 0.01%)</title><rect x="95.1951%" y="805" width="0.0145%" height="15" fill="rgb(228,75,42)" fg:x="289395" fg:w="44"/><text x="95.4451%" y="815.50"></text></g><g><title>ConstantPool::klass_ref_at (35 samples, 0.01%)</title><rect x="95.2286%" y="773" width="0.0115%" height="15" fill="rgb(237,134,48)" fg:x="289497" fg:w="35"/><text x="95.4786%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (52 samples, 0.02%)</title><rect x="95.2471%" y="773" width="0.0171%" height="15" fill="rgb(205,80,50)" fg:x="289553" fg:w="52"/><text x="95.4971%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (43 samples, 0.01%)</title><rect x="95.2642%" y="773" width="0.0141%" height="15" fill="rgb(217,74,48)" fg:x="289605" fg:w="43"/><text x="95.5142%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (49 samples, 0.02%)</title><rect x="95.2790%" y="741" width="0.0161%" height="15" fill="rgb(205,82,50)" fg:x="289650" fg:w="49"/><text x="95.5290%" y="751.50"></text></g><g><title>InstanceKlass::initialize_impl (52 samples, 0.02%)</title><rect x="95.2786%" y="757" width="0.0171%" height="15" fill="rgb(228,1,33)" fg:x="289649" fg:w="52"/><text x="95.5286%" y="767.50"></text></g><g><title>LinkResolver::resolve_static_call (74 samples, 0.02%)</title><rect x="95.2783%" y="773" width="0.0243%" height="15" fill="rgb(214,50,23)" fg:x="289648" fg:w="74"/><text x="95.5283%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (241 samples, 0.08%)</title><rect x="95.2254%" y="789" width="0.0793%" height="15" fill="rgb(210,62,9)" fg:x="289487" fg:w="241"/><text x="95.4754%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (306 samples, 0.10%)</title><rect x="95.2096%" y="805" width="0.1007%" height="15" fill="rgb(210,104,37)" fg:x="289439" fg:w="306"/><text x="95.4596%" y="815.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (38 samples, 0.01%)</title><rect x="95.3119%" y="741" width="0.0125%" height="15" fill="rgb(232,104,43)" fg:x="289750" fg:w="38"/><text x="95.5619%" y="751.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (37 samples, 0.01%)</title><rect x="95.3122%" y="725" width="0.0122%" height="15" fill="rgb(244,52,6)" fg:x="289751" fg:w="37"/><text x="95.5622%" y="735.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (57 samples, 0.02%)</title><rect x="95.3119%" y="757" width="0.0187%" height="15" fill="rgb(211,174,52)" fg:x="289750" fg:w="57"/><text x="95.5619%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (85 samples, 0.03%)</title><rect x="95.3102%" y="805" width="0.0280%" height="15" fill="rgb(229,48,4)" fg:x="289745" fg:w="85"/><text x="95.5602%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (81 samples, 0.03%)</title><rect x="95.3115%" y="789" width="0.0266%" height="15" fill="rgb(205,155,16)" fg:x="289749" fg:w="81"/><text x="95.5615%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (81 samples, 0.03%)</title><rect x="95.3115%" y="773" width="0.0266%" height="15" fill="rgb(211,141,53)" fg:x="289749" fg:w="81"/><text x="95.5615%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (461 samples, 0.15%)</title><rect x="95.1902%" y="821" width="0.1516%" height="15" fill="rgb(240,148,11)" fg:x="289380" fg:w="461"/><text x="95.4402%" y="831.50"></text></g><g><title>JVM_Clone (143 samples, 0.05%)</title><rect x="95.3540%" y="821" width="0.0470%" height="15" fill="rgb(214,45,23)" fg:x="289878" fg:w="143"/><text x="95.6040%" y="831.50"></text></g><g><title>JVM_FindLoadedClass (31 samples, 0.01%)</title><rect x="95.4086%" y="821" width="0.0102%" height="15" fill="rgb(248,74,26)" fg:x="290044" fg:w="31"/><text x="95.6586%" y="831.50"></text></g><g><title>JVM_GetClassDeclaredMethods (43 samples, 0.01%)</title><rect x="95.4333%" y="821" width="0.0141%" height="15" fill="rgb(218,121,16)" fg:x="290119" fg:w="43"/><text x="95.6833%" y="831.50"></text></g><g><title>get_class_declared_methods_helper (43 samples, 0.01%)</title><rect x="95.4333%" y="805" width="0.0141%" height="15" fill="rgb(218,10,47)" fg:x="290119" fg:w="43"/><text x="95.6833%" y="815.50"></text></g><g><title>Reflection::new_method (37 samples, 0.01%)</title><rect x="95.4352%" y="789" width="0.0122%" height="15" fill="rgb(227,99,14)" fg:x="290125" fg:w="37"/><text x="95.6852%" y="799.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (32 samples, 0.01%)</title><rect x="95.4494%" y="805" width="0.0105%" height="15" fill="rgb(229,83,46)" fg:x="290168" fg:w="32"/><text x="95.6994%" y="815.50"></text></g><g><title>JVM_IHashCode (38 samples, 0.01%)</title><rect x="95.4484%" y="821" width="0.0125%" height="15" fill="rgb(228,25,1)" fg:x="290165" fg:w="38"/><text x="95.6984%" y="831.50"></text></g><g><title>java_lang_StackTraceElement::fill_in (75 samples, 0.02%)</title><rect x="95.4714%" y="789" width="0.0247%" height="15" fill="rgb(252,190,15)" fg:x="290235" fg:w="75"/><text x="95.7214%" y="799.50"></text></g><g><title>StringTable::intern (40 samples, 0.01%)</title><rect x="95.4829%" y="773" width="0.0132%" height="15" fill="rgb(213,103,51)" fg:x="290270" fg:w="40"/><text x="95.7329%" y="783.50"></text></g><g><title>JVM_InitStackTraceElementArray (95 samples, 0.03%)</title><rect x="95.4652%" y="821" width="0.0312%" height="15" fill="rgb(220,38,44)" fg:x="290216" fg:w="95"/><text x="95.7152%" y="831.50"></text></g><g><title>java_lang_Throwable::get_stack_trace_elements (94 samples, 0.03%)</title><rect x="95.4655%" y="805" width="0.0309%" height="15" fill="rgb(210,45,26)" fg:x="290217" fg:w="94"/><text x="95.7155%" y="815.50"></text></g><g><title>JVM_IsInterrupted (64 samples, 0.02%)</title><rect x="95.5073%" y="821" width="0.0211%" height="15" fill="rgb(205,95,48)" fg:x="290344" fg:w="64"/><text x="95.7573%" y="831.50"></text></g><g><title>finish_task_switch.isra.0 (41 samples, 0.01%)</title><rect x="95.5319%" y="549" width="0.0135%" height="15" fill="rgb(225,179,37)" fg:x="290419" fg:w="41"/><text x="95.7819%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.01%)</title><rect x="95.5326%" y="533" width="0.0128%" height="15" fill="rgb(230,209,3)" fg:x="290421" fg:w="39"/><text x="95.7826%" y="543.50"></text></g><g><title>x86_pmu_enable (37 samples, 0.01%)</title><rect x="95.5333%" y="517" width="0.0122%" height="15" fill="rgb(248,12,46)" fg:x="290423" fg:w="37"/><text x="95.7833%" y="527.50"></text></g><g><title>intel_pmu_enable_all (36 samples, 0.01%)</title><rect x="95.5336%" y="501" width="0.0118%" height="15" fill="rgb(234,18,0)" fg:x="290424" fg:w="36"/><text x="95.7836%" y="511.50"></text></g><g><title>native_write_msr (36 samples, 0.01%)</title><rect x="95.5336%" y="485" width="0.0118%" height="15" fill="rgb(238,197,14)" fg:x="290424" fg:w="36"/><text x="95.7836%" y="495.50"></text></g><g><title>__x64_sys_futex (45 samples, 0.01%)</title><rect x="95.5310%" y="645" width="0.0148%" height="15" fill="rgb(251,162,48)" fg:x="290416" fg:w="45"/><text x="95.7810%" y="655.50"></text></g><g><title>do_futex (45 samples, 0.01%)</title><rect x="95.5310%" y="629" width="0.0148%" height="15" fill="rgb(237,73,42)" fg:x="290416" fg:w="45"/><text x="95.7810%" y="639.50"></text></g><g><title>futex_wait (44 samples, 0.01%)</title><rect x="95.5313%" y="613" width="0.0145%" height="15" fill="rgb(211,108,8)" fg:x="290417" fg:w="44"/><text x="95.7813%" y="623.50"></text></g><g><title>futex_wait_queue_me (44 samples, 0.01%)</title><rect x="95.5313%" y="597" width="0.0145%" height="15" fill="rgb(213,45,22)" fg:x="290417" fg:w="44"/><text x="95.7813%" y="607.50"></text></g><g><title>schedule (43 samples, 0.01%)</title><rect x="95.5316%" y="581" width="0.0141%" height="15" fill="rgb(252,154,5)" fg:x="290418" fg:w="43"/><text x="95.7816%" y="591.50"></text></g><g><title>__schedule (43 samples, 0.01%)</title><rect x="95.5316%" y="565" width="0.0141%" height="15" fill="rgb(221,79,52)" fg:x="290418" fg:w="43"/><text x="95.7816%" y="575.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (49 samples, 0.02%)</title><rect x="95.5303%" y="725" width="0.0161%" height="15" fill="rgb(229,220,36)" fg:x="290414" fg:w="49"/><text x="95.7803%" y="735.50"></text></g><g><title>__futex_abstimed_wait_common (49 samples, 0.02%)</title><rect x="95.5303%" y="709" width="0.0161%" height="15" fill="rgb(211,17,16)" fg:x="290414" fg:w="49"/><text x="95.7803%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common64 (49 samples, 0.02%)</title><rect x="95.5303%" y="693" width="0.0161%" height="15" fill="rgb(222,55,31)" fg:x="290414" fg:w="49"/><text x="95.7803%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.02%)</title><rect x="95.5310%" y="677" width="0.0155%" height="15" fill="rgb(221,221,31)" fg:x="290416" fg:w="47"/><text x="95.7810%" y="687.50"></text></g><g><title>do_syscall_64 (47 samples, 0.02%)</title><rect x="95.5310%" y="661" width="0.0155%" height="15" fill="rgb(227,168,26)" fg:x="290416" fg:w="47"/><text x="95.7810%" y="671.50"></text></g><g><title>___pthread_cond_wait (50 samples, 0.02%)</title><rect x="95.5303%" y="757" width="0.0164%" height="15" fill="rgb(224,139,9)" fg:x="290414" fg:w="50"/><text x="95.7803%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (50 samples, 0.02%)</title><rect x="95.5303%" y="741" width="0.0164%" height="15" fill="rgb(254,172,0)" fg:x="290414" fg:w="50"/><text x="95.7803%" y="751.50"></text></g><g><title>ObjectMonitor::wait (57 samples, 0.02%)</title><rect x="95.5286%" y="789" width="0.0187%" height="15" fill="rgb(235,203,1)" fg:x="290409" fg:w="57"/><text x="95.7786%" y="799.50"></text></g><g><title>os::PlatformEvent::park (54 samples, 0.02%)</title><rect x="95.5296%" y="773" width="0.0178%" height="15" fill="rgb(216,205,24)" fg:x="290412" fg:w="54"/><text x="95.7796%" y="783.50"></text></g><g><title>ObjectSynchronizer::wait (60 samples, 0.02%)</title><rect x="95.5286%" y="805" width="0.0197%" height="15" fill="rgb(233,24,6)" fg:x="290409" fg:w="60"/><text x="95.7786%" y="815.50"></text></g><g><title>JVM_MonitorWait (62 samples, 0.02%)</title><rect x="95.5283%" y="821" width="0.0204%" height="15" fill="rgb(244,110,9)" fg:x="290408" fg:w="62"/><text x="95.7783%" y="831.50"></text></g><g><title>SymbolTable::lookup_only (296 samples, 0.10%)</title><rect x="95.6043%" y="677" width="0.0974%" height="15" fill="rgb(239,222,42)" fg:x="290639" fg:w="296"/><text x="95.8543%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (345 samples, 0.11%)</title><rect x="95.5892%" y="693" width="0.1135%" height="15" fill="rgb(218,145,13)" fg:x="290593" fg:w="345"/><text x="95.8392%" y="703.50"></text></g><g><title>ClassFileParser::parse_constant_pool (356 samples, 0.12%)</title><rect x="95.5869%" y="709" width="0.1171%" height="15" fill="rgb(207,69,11)" fg:x="290586" fg:w="356"/><text x="95.8369%" y="719.50"></text></g><g><title>ClassFileParser::parse_method (93 samples, 0.03%)</title><rect x="95.7079%" y="693" width="0.0306%" height="15" fill="rgb(220,223,22)" fg:x="290954" fg:w="93"/><text x="95.9579%" y="703.50"></text></g><g><title>ClassFileParser::parse_methods (94 samples, 0.03%)</title><rect x="95.7079%" y="709" width="0.0309%" height="15" fill="rgb(245,102,5)" fg:x="290954" fg:w="94"/><text x="95.9579%" y="719.50"></text></g><g><title>ClassFileParser::ClassFileParser (482 samples, 0.16%)</title><rect x="95.5842%" y="741" width="0.1586%" height="15" fill="rgb(211,148,2)" fg:x="290578" fg:w="482"/><text x="95.8342%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (481 samples, 0.16%)</title><rect x="95.5846%" y="725" width="0.1582%" height="15" fill="rgb(241,13,44)" fg:x="290579" fg:w="481"/><text x="95.8346%" y="735.50"></text></g><g><title>DefaultMethods::generate_default_methods (41 samples, 0.01%)</title><rect x="95.7444%" y="709" width="0.0135%" height="15" fill="rgb(219,137,21)" fg:x="291065" fg:w="41"/><text x="95.9944%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (66 samples, 0.02%)</title><rect x="95.7428%" y="725" width="0.0217%" height="15" fill="rgb(242,206,5)" fg:x="291060" fg:w="66"/><text x="95.9928%" y="735.50"></text></g><g><title>ClassFileParser::create_instance_klass (70 samples, 0.02%)</title><rect x="95.7428%" y="741" width="0.0230%" height="15" fill="rgb(217,114,22)" fg:x="291060" fg:w="70"/><text x="95.9928%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (581 samples, 0.19%)</title><rect x="95.5842%" y="757" width="0.1911%" height="15" fill="rgb(253,206,42)" fg:x="290578" fg:w="581"/><text x="95.8342%" y="767.50"></text></g><g><title>SystemDictionary::resolve_from_stream (607 samples, 0.20%)</title><rect x="95.5842%" y="773" width="0.1997%" height="15" fill="rgb(236,102,18)" fg:x="290578" fg:w="607"/><text x="95.8342%" y="783.50"></text></g><g><title>JVM_DefineClassWithSource (618 samples, 0.20%)</title><rect x="95.5810%" y="805" width="0.2033%" height="15" fill="rgb(208,59,49)" fg:x="290568" fg:w="618"/><text x="95.8310%" y="815.50"></text></g><g><title>jvm_define_class_common (618 samples, 0.20%)</title><rect x="95.5810%" y="789" width="0.2033%" height="15" fill="rgb(215,194,28)" fg:x="290568" fg:w="618"/><text x="95.8310%" y="799.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (646 samples, 0.21%)</title><rect x="95.5810%" y="821" width="0.2125%" height="15" fill="rgb(243,207,11)" fg:x="290568" fg:w="646"/><text x="95.8310%" y="831.50"></text></g><g><title>SystemDictionary::resolve_or_null (32 samples, 0.01%)</title><rect x="95.7938%" y="789" width="0.0105%" height="15" fill="rgb(254,179,35)" fg:x="291215" fg:w="32"/><text x="96.0438%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (32 samples, 0.01%)</title><rect x="95.7938%" y="773" width="0.0105%" height="15" fill="rgb(235,97,3)" fg:x="291215" fg:w="32"/><text x="96.0438%" y="783.50"></text></g><g><title>JVM_FindClassFromBootLoader (33 samples, 0.01%)</title><rect x="95.7938%" y="805" width="0.0109%" height="15" fill="rgb(215,155,33)" fg:x="291215" fg:w="33"/><text x="96.0438%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (46 samples, 0.02%)</title><rect x="95.7934%" y="821" width="0.0151%" height="15" fill="rgb(223,128,12)" fg:x="291214" fg:w="46"/><text x="96.0434%" y="831.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (59 samples, 0.02%)</title><rect x="95.8171%" y="821" width="0.0194%" height="15" fill="rgb(208,157,18)" fg:x="291286" fg:w="59"/><text x="96.0671%" y="831.50"></text></g><g><title>os_getParentPidAndTimings (59 samples, 0.02%)</title><rect x="95.8171%" y="805" width="0.0194%" height="15" fill="rgb(249,70,54)" fg:x="291286" fg:w="59"/><text x="96.0671%" y="815.50"></text></g><g><title>copy_process (58 samples, 0.02%)</title><rect x="95.8563%" y="709" width="0.0191%" height="15" fill="rgb(244,118,24)" fg:x="291405" fg:w="58"/><text x="96.1063%" y="719.50"></text></g><g><title>wait_for_completion_killable (58 samples, 0.02%)</title><rect x="95.8757%" y="709" width="0.0191%" height="15" fill="rgb(211,54,0)" fg:x="291464" fg:w="58"/><text x="96.1257%" y="719.50"></text></g><g><title>__wait_for_common (58 samples, 0.02%)</title><rect x="95.8757%" y="693" width="0.0191%" height="15" fill="rgb(245,137,45)" fg:x="291464" fg:w="58"/><text x="96.1257%" y="703.50"></text></g><g><title>schedule_timeout (58 samples, 0.02%)</title><rect x="95.8757%" y="677" width="0.0191%" height="15" fill="rgb(232,154,31)" fg:x="291464" fg:w="58"/><text x="96.1257%" y="687.50"></text></g><g><title>schedule (58 samples, 0.02%)</title><rect x="95.8757%" y="661" width="0.0191%" height="15" fill="rgb(253,6,39)" fg:x="291464" fg:w="58"/><text x="96.1257%" y="671.50"></text></g><g><title>__schedule (58 samples, 0.02%)</title><rect x="95.8757%" y="645" width="0.0191%" height="15" fill="rgb(234,183,24)" fg:x="291464" fg:w="58"/><text x="96.1257%" y="655.50"></text></g><g><title>finish_task_switch.isra.0 (56 samples, 0.02%)</title><rect x="95.8763%" y="629" width="0.0184%" height="15" fill="rgb(252,84,40)" fg:x="291466" fg:w="56"/><text x="96.1263%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.02%)</title><rect x="95.8767%" y="613" width="0.0181%" height="15" fill="rgb(224,65,2)" fg:x="291467" fg:w="55"/><text x="96.1267%" y="623.50"></text></g><g><title>x86_pmu_enable (50 samples, 0.02%)</title><rect x="95.8783%" y="597" width="0.0164%" height="15" fill="rgb(229,38,24)" fg:x="291472" fg:w="50"/><text x="96.1283%" y="607.50"></text></g><g><title>intel_pmu_enable_all (49 samples, 0.02%)</title><rect x="95.8786%" y="581" width="0.0161%" height="15" fill="rgb(218,131,50)" fg:x="291473" fg:w="49"/><text x="96.1286%" y="591.50"></text></g><g><title>native_write_msr (48 samples, 0.02%)</title><rect x="95.8790%" y="565" width="0.0158%" height="15" fill="rgb(233,106,18)" fg:x="291474" fg:w="48"/><text x="96.1290%" y="575.50"></text></g><g><title>__x64_sys_vfork (127 samples, 0.04%)</title><rect x="95.8550%" y="741" width="0.0418%" height="15" fill="rgb(220,216,11)" fg:x="291401" fg:w="127"/><text x="96.1050%" y="751.50"></text></g><g><title>kernel_clone (126 samples, 0.04%)</title><rect x="95.8553%" y="725" width="0.0414%" height="15" fill="rgb(251,100,45)" fg:x="291402" fg:w="126"/><text x="96.1053%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (133 samples, 0.04%)</title><rect x="95.8546%" y="773" width="0.0437%" height="15" fill="rgb(235,143,32)" fg:x="291400" fg:w="133"/><text x="96.1046%" y="783.50"></text></g><g><title>do_syscall_64 (132 samples, 0.04%)</title><rect x="95.8550%" y="757" width="0.0434%" height="15" fill="rgb(248,124,34)" fg:x="291401" fg:w="132"/><text x="96.1050%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (167 samples, 0.05%)</title><rect x="95.9043%" y="725" width="0.0549%" height="15" fill="rgb(225,221,4)" fg:x="291551" fg:w="167"/><text x="96.1543%" y="735.50"></text></g><g><title>x86_pmu_enable (162 samples, 0.05%)</title><rect x="95.9059%" y="709" width="0.0533%" height="15" fill="rgb(242,27,43)" fg:x="291556" fg:w="162"/><text x="96.1559%" y="719.50"></text></g><g><title>intel_pmu_enable_all (162 samples, 0.05%)</title><rect x="95.9059%" y="693" width="0.0533%" height="15" fill="rgb(227,54,8)" fg:x="291556" fg:w="162"/><text x="96.1559%" y="703.50"></text></g><g><title>native_write_msr (161 samples, 0.05%)</title><rect x="95.9063%" y="677" width="0.0530%" height="15" fill="rgb(253,139,49)" fg:x="291557" fg:w="161"/><text x="96.1563%" y="687.50"></text></g><g><title>finish_task_switch.isra.0 (181 samples, 0.06%)</title><rect x="95.9017%" y="741" width="0.0595%" height="15" fill="rgb(231,26,43)" fg:x="291543" fg:w="181"/><text x="96.1517%" y="751.50"></text></g><g><title>schedule_tail (192 samples, 0.06%)</title><rect x="95.8990%" y="757" width="0.0632%" height="15" fill="rgb(207,121,39)" fg:x="291535" fg:w="192"/><text x="96.1490%" y="767.50"></text></g><g><title>__libc_vfork (331 samples, 0.11%)</title><rect x="95.8536%" y="789" width="0.1089%" height="15" fill="rgb(223,101,35)" fg:x="291397" fg:w="331"/><text x="96.1036%" y="799.50"></text></g><g><title>ret_from_fork (195 samples, 0.06%)</title><rect x="95.8984%" y="773" width="0.0641%" height="15" fill="rgb(232,87,23)" fg:x="291533" fg:w="195"/><text x="96.1484%" y="783.50"></text></g><g><title>load_elf_binary (42 samples, 0.01%)</title><rect x="95.9763%" y="613" width="0.0138%" height="15" fill="rgb(225,180,29)" fg:x="291770" fg:w="42"/><text x="96.2263%" y="623.50"></text></g><g><title>_ZdlPv (279 samples, 0.09%)</title><rect x="96.0221%" y="405" width="0.0918%" height="15" fill="rgb(225,25,17)" fg:x="291909" fg:w="279"/><text x="96.2721%" y="415.50"></text></g><g><title>_ZdlPv (276 samples, 0.09%)</title><rect x="96.0231%" y="389" width="0.0908%" height="15" fill="rgb(223,8,52)" fg:x="291912" fg:w="276"/><text x="96.2731%" y="399.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (274 samples, 0.09%)</title><rect x="96.0237%" y="373" width="0.0901%" height="15" fill="rgb(246,42,21)" fg:x="291914" fg:w="274"/><text x="96.2737%" y="383.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (242 samples, 0.08%)</title><rect x="96.0342%" y="357" width="0.0796%" height="15" fill="rgb(205,64,43)" fg:x="291946" fg:w="242"/><text x="96.2842%" y="367.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (64 samples, 0.02%)</title><rect x="96.0928%" y="341" width="0.0211%" height="15" fill="rgb(221,160,13)" fg:x="292124" fg:w="64"/><text x="96.3428%" y="351.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (282 samples, 0.09%)</title><rect x="96.0214%" y="421" width="0.0928%" height="15" fill="rgb(239,58,35)" fg:x="291907" fg:w="282"/><text x="96.2714%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (37 samples, 0.01%)</title><rect x="96.1194%" y="357" width="0.0122%" height="15" fill="rgb(251,26,40)" fg:x="292205" fg:w="37"/><text x="96.3694%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (45 samples, 0.01%)</title><rect x="96.1175%" y="373" width="0.0148%" height="15" fill="rgb(247,0,4)" fg:x="292199" fg:w="45"/><text x="96.3675%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (49 samples, 0.02%)</title><rect x="96.1165%" y="389" width="0.0161%" height="15" fill="rgb(218,130,10)" fg:x="292196" fg:w="49"/><text x="96.3665%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (53 samples, 0.02%)</title><rect x="96.1158%" y="421" width="0.0174%" height="15" fill="rgb(239,32,7)" fg:x="292194" fg:w="53"/><text x="96.3658%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (53 samples, 0.02%)</title><rect x="96.1158%" y="405" width="0.0174%" height="15" fill="rgb(210,192,24)" fg:x="292194" fg:w="53"/><text x="96.3658%" y="415.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (351 samples, 0.12%)</title><rect x="96.0184%" y="437" width="0.1155%" height="15" fill="rgb(226,212,17)" fg:x="291898" fg:w="351"/><text x="96.2684%" y="447.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (370 samples, 0.12%)</title><rect x="96.0132%" y="453" width="0.1217%" height="15" fill="rgb(219,201,28)" fg:x="291882" fg:w="370"/><text x="96.2632%" y="463.50"></text></g><g><title>_ZdlPv (32 samples, 0.01%)</title><rect x="96.1500%" y="341" width="0.0105%" height="15" fill="rgb(235,207,41)" fg:x="292298" fg:w="32"/><text x="96.4000%" y="351.50"></text></g><g><title>_ZdlPv (43 samples, 0.01%)</title><rect x="96.1477%" y="357" width="0.0141%" height="15" fill="rgb(241,95,54)" fg:x="292291" fg:w="43"/><text x="96.3977%" y="367.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (39 samples, 0.01%)</title><rect x="96.1619%" y="357" width="0.0128%" height="15" fill="rgb(248,12,23)" fg:x="292334" fg:w="39"/><text x="96.4119%" y="367.50"></text></g><g><title>_ZdlPv (91 samples, 0.03%)</title><rect x="96.1451%" y="373" width="0.0299%" height="15" fill="rgb(228,173,4)" fg:x="292283" fg:w="91"/><text x="96.3951%" y="383.50"></text></g><g><title>_ZdlPv (107 samples, 0.04%)</title><rect x="96.1444%" y="389" width="0.0352%" height="15" fill="rgb(254,99,5)" fg:x="292281" fg:w="107"/><text x="96.3944%" y="399.50"></text></g><g><title>_ZdlPv (135 samples, 0.04%)</title><rect x="96.1425%" y="405" width="0.0444%" height="15" fill="rgb(212,184,17)" fg:x="292275" fg:w="135"/><text x="96.3925%" y="415.50"></text></g><g><title>_ZdlPv (152 samples, 0.05%)</title><rect x="96.1392%" y="421" width="0.0500%" height="15" fill="rgb(252,174,1)" fg:x="292265" fg:w="152"/><text x="96.3892%" y="431.50"></text></g><g><title>_ZdlPv (167 samples, 0.05%)</title><rect x="96.1359%" y="437" width="0.0549%" height="15" fill="rgb(241,118,51)" fg:x="292255" fg:w="167"/><text x="96.3859%" y="447.50"></text></g><g><title>_ZdlPv (190 samples, 0.06%)</title><rect x="96.1349%" y="453" width="0.0625%" height="15" fill="rgb(227,94,47)" fg:x="292252" fg:w="190"/><text x="96.3849%" y="463.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (68 samples, 0.02%)</title><rect x="96.2050%" y="405" width="0.0224%" height="15" fill="rgb(229,104,2)" fg:x="292465" fg:w="68"/><text x="96.4550%" y="415.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (55 samples, 0.02%)</title><rect x="96.2092%" y="389" width="0.0181%" height="15" fill="rgb(219,28,31)" fg:x="292478" fg:w="55"/><text x="96.4592%" y="399.50"></text></g><g><title>_ZdlPv (76 samples, 0.02%)</title><rect x="96.2030%" y="421" width="0.0250%" height="15" fill="rgb(233,109,36)" fg:x="292459" fg:w="76"/><text x="96.4530%" y="431.50"></text></g><g><title>_ZdlPv (78 samples, 0.03%)</title><rect x="96.2030%" y="437" width="0.0257%" height="15" fill="rgb(246,88,11)" fg:x="292459" fg:w="78"/><text x="96.4530%" y="447.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (39 samples, 0.01%)</title><rect x="96.3444%" y="261" width="0.0128%" height="15" fill="rgb(209,212,17)" fg:x="292889" fg:w="39"/><text x="96.5944%" y="271.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (38 samples, 0.01%)</title><rect x="96.3448%" y="245" width="0.0125%" height="15" fill="rgb(243,59,29)" fg:x="292890" fg:w="38"/><text x="96.5948%" y="255.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (44 samples, 0.01%)</title><rect x="96.3619%" y="229" width="0.0145%" height="15" fill="rgb(244,205,48)" fg:x="292942" fg:w="44"/><text x="96.6119%" y="239.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (41 samples, 0.01%)</title><rect x="96.3629%" y="213" width="0.0135%" height="15" fill="rgb(227,30,6)" fg:x="292945" fg:w="41"/><text x="96.6129%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (79 samples, 0.03%)</title><rect x="96.3573%" y="261" width="0.0260%" height="15" fill="rgb(220,205,48)" fg:x="292928" fg:w="79"/><text x="96.6073%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (70 samples, 0.02%)</title><rect x="96.3602%" y="245" width="0.0230%" height="15" fill="rgb(250,94,14)" fg:x="292937" fg:w="70"/><text x="96.6102%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (156 samples, 0.05%)</title><rect x="96.3329%" y="293" width="0.0513%" height="15" fill="rgb(216,119,42)" fg:x="292854" fg:w="156"/><text x="96.5829%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (121 samples, 0.04%)</title><rect x="96.3444%" y="277" width="0.0398%" height="15" fill="rgb(232,155,0)" fg:x="292889" fg:w="121"/><text x="96.5944%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (168 samples, 0.06%)</title><rect x="96.3303%" y="309" width="0.0553%" height="15" fill="rgb(212,24,32)" fg:x="292846" fg:w="168"/><text x="96.5803%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (189 samples, 0.06%)</title><rect x="96.3247%" y="325" width="0.0622%" height="15" fill="rgb(216,69,20)" fg:x="292829" fg:w="189"/><text x="96.5747%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (232 samples, 0.08%)</title><rect x="96.3112%" y="341" width="0.0763%" height="15" fill="rgb(229,73,31)" fg:x="292788" fg:w="232"/><text x="96.5612%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (268 samples, 0.09%)</title><rect x="96.3000%" y="357" width="0.0882%" height="15" fill="rgb(224,219,20)" fg:x="292754" fg:w="268"/><text x="96.5500%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (301 samples, 0.10%)</title><rect x="96.2908%" y="373" width="0.0990%" height="15" fill="rgb(215,146,41)" fg:x="292726" fg:w="301"/><text x="96.5408%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (358 samples, 0.12%)</title><rect x="96.2734%" y="405" width="0.1178%" height="15" fill="rgb(244,71,31)" fg:x="292673" fg:w="358"/><text x="96.5234%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (314 samples, 0.10%)</title><rect x="96.2879%" y="389" width="0.1033%" height="15" fill="rgb(224,24,11)" fg:x="292717" fg:w="314"/><text x="96.5379%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (446 samples, 0.15%)</title><rect x="96.2477%" y="421" width="0.1467%" height="15" fill="rgb(229,76,15)" fg:x="292595" fg:w="446"/><text x="96.4977%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (605 samples, 0.20%)</title><rect x="96.2004%" y="453" width="0.1990%" height="15" fill="rgb(209,93,2)" fg:x="292451" fg:w="605"/><text x="96.4504%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (516 samples, 0.17%)</title><rect x="96.2296%" y="437" width="0.1697%" height="15" fill="rgb(216,200,50)" fg:x="292540" fg:w="516"/><text x="96.4796%" y="447.50"></text></g><g><title>_ZdlPv (1,203 samples, 0.40%)</title><rect x="96.0040%" y="469" width="0.3957%" height="15" fill="rgb(211,67,34)" fg:x="291854" fg:w="1203"/><text x="96.2540%" y="479.50"></text></g><g><title>_ZdlPv (1,219 samples, 0.40%)</title><rect x="95.9994%" y="501" width="0.4010%" height="15" fill="rgb(225,87,47)" fg:x="291840" fg:w="1219"/><text x="96.2494%" y="511.50"></text></g><g><title>_ZdlPv (1,218 samples, 0.40%)</title><rect x="95.9997%" y="485" width="0.4007%" height="15" fill="rgb(217,185,16)" fg:x="291841" fg:w="1218"/><text x="96.2497%" y="495.50"></text></g><g><title>_ZdlPv (70 samples, 0.02%)</title><rect x="96.4145%" y="357" width="0.0230%" height="15" fill="rgb(205,0,0)" fg:x="293102" fg:w="70"/><text x="96.6645%" y="367.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (69 samples, 0.02%)</title><rect x="96.4148%" y="341" width="0.0227%" height="15" fill="rgb(207,116,45)" fg:x="293103" fg:w="69"/><text x="96.6648%" y="351.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (57 samples, 0.02%)</title><rect x="96.4188%" y="325" width="0.0187%" height="15" fill="rgb(221,156,26)" fg:x="293115" fg:w="57"/><text x="96.6688%" y="335.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (71 samples, 0.02%)</title><rect x="96.4145%" y="389" width="0.0234%" height="15" fill="rgb(213,140,4)" fg:x="293102" fg:w="71"/><text x="96.6645%" y="399.50"></text></g><g><title>_ZdlPv (71 samples, 0.02%)</title><rect x="96.4145%" y="373" width="0.0234%" height="15" fill="rgb(231,224,15)" fg:x="293102" fg:w="71"/><text x="96.6645%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (49 samples, 0.02%)</title><rect x="96.4421%" y="325" width="0.0161%" height="15" fill="rgb(244,76,20)" fg:x="293186" fg:w="49"/><text x="96.6921%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (35 samples, 0.01%)</title><rect x="96.4467%" y="309" width="0.0115%" height="15" fill="rgb(238,117,7)" fg:x="293200" fg:w="35"/><text x="96.6967%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (51 samples, 0.02%)</title><rect x="96.4418%" y="341" width="0.0168%" height="15" fill="rgb(235,1,10)" fg:x="293185" fg:w="51"/><text x="96.6918%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (55 samples, 0.02%)</title><rect x="96.4411%" y="357" width="0.0181%" height="15" fill="rgb(216,165,6)" fg:x="293183" fg:w="55"/><text x="96.6911%" y="367.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (151 samples, 0.05%)</title><rect x="96.4099%" y="421" width="0.0497%" height="15" fill="rgb(246,91,35)" fg:x="293088" fg:w="151"/><text x="96.6599%" y="431.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (139 samples, 0.05%)</title><rect x="96.4138%" y="405" width="0.0457%" height="15" fill="rgb(228,96,24)" fg:x="293100" fg:w="139"/><text x="96.6638%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (60 samples, 0.02%)</title><rect x="96.4398%" y="389" width="0.0197%" height="15" fill="rgb(254,217,53)" fg:x="293179" fg:w="60"/><text x="96.6898%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (59 samples, 0.02%)</title><rect x="96.4402%" y="373" width="0.0194%" height="15" fill="rgb(209,60,0)" fg:x="293180" fg:w="59"/><text x="96.6902%" y="383.50"></text></g><g><title>_ZdlPv (40 samples, 0.01%)</title><rect x="96.4629%" y="373" width="0.0132%" height="15" fill="rgb(250,93,26)" fg:x="293249" fg:w="40"/><text x="96.7129%" y="383.50"></text></g><g><title>_ZdlPv (49 samples, 0.02%)</title><rect x="96.4605%" y="389" width="0.0161%" height="15" fill="rgb(211,9,40)" fg:x="293242" fg:w="49"/><text x="96.7105%" y="399.50"></text></g><g><title>_ZdlPv (55 samples, 0.02%)</title><rect x="96.4596%" y="405" width="0.0181%" height="15" fill="rgb(242,57,20)" fg:x="293239" fg:w="55"/><text x="96.7096%" y="415.50"></text></g><g><title>_ZdlPv (70 samples, 0.02%)</title><rect x="96.4596%" y="421" width="0.0230%" height="15" fill="rgb(248,85,48)" fg:x="293239" fg:w="70"/><text x="96.7096%" y="431.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (103 samples, 0.03%)</title><rect x="96.4921%" y="357" width="0.0339%" height="15" fill="rgb(212,117,2)" fg:x="293338" fg:w="103"/><text x="96.7421%" y="367.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (116 samples, 0.04%)</title><rect x="96.4892%" y="373" width="0.0382%" height="15" fill="rgb(243,19,3)" fg:x="293329" fg:w="116"/><text x="96.7392%" y="383.50"></text></g><g><title>_ZdlPv (119 samples, 0.04%)</title><rect x="96.4885%" y="389" width="0.0391%" height="15" fill="rgb(232,217,24)" fg:x="293327" fg:w="119"/><text x="96.7385%" y="399.50"></text></g><g><title>_ZdlPv (122 samples, 0.04%)</title><rect x="96.4879%" y="405" width="0.0401%" height="15" fill="rgb(224,175,40)" fg:x="293325" fg:w="122"/><text x="96.7379%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (54 samples, 0.02%)</title><rect x="96.5921%" y="261" width="0.0178%" height="15" fill="rgb(212,162,32)" fg:x="293642" fg:w="54"/><text x="96.8421%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (32 samples, 0.01%)</title><rect x="96.5994%" y="245" width="0.0105%" height="15" fill="rgb(215,9,4)" fg:x="293664" fg:w="32"/><text x="96.8494%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (65 samples, 0.02%)</title><rect x="96.5895%" y="277" width="0.0214%" height="15" fill="rgb(242,42,7)" fg:x="293634" fg:w="65"/><text x="96.8395%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (87 samples, 0.03%)</title><rect x="96.5826%" y="293" width="0.0286%" height="15" fill="rgb(242,184,45)" fg:x="293613" fg:w="87"/><text x="96.8326%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (118 samples, 0.04%)</title><rect x="96.5730%" y="309" width="0.0388%" height="15" fill="rgb(228,111,51)" fg:x="293584" fg:w="118"/><text x="96.8230%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (141 samples, 0.05%)</title><rect x="96.5661%" y="325" width="0.0464%" height="15" fill="rgb(236,147,17)" fg:x="293563" fg:w="141"/><text x="96.8161%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (158 samples, 0.05%)</title><rect x="96.5629%" y="341" width="0.0520%" height="15" fill="rgb(210,75,22)" fg:x="293553" fg:w="158"/><text x="96.8129%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (234 samples, 0.08%)</title><rect x="96.5392%" y="389" width="0.0770%" height="15" fill="rgb(217,159,45)" fg:x="293481" fg:w="234"/><text x="96.7892%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (207 samples, 0.07%)</title><rect x="96.5480%" y="373" width="0.0681%" height="15" fill="rgb(245,165,53)" fg:x="293508" fg:w="207"/><text x="96.7980%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (174 samples, 0.06%)</title><rect x="96.5589%" y="357" width="0.0572%" height="15" fill="rgb(251,190,50)" fg:x="293541" fg:w="174"/><text x="96.8089%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (270 samples, 0.09%)</title><rect x="96.5283%" y="405" width="0.0888%" height="15" fill="rgb(208,203,29)" fg:x="293448" fg:w="270"/><text x="96.7783%" y="415.50"></text></g><g><title>_ZdlPv (645 samples, 0.21%)</title><rect x="96.4053%" y="437" width="0.2122%" height="15" fill="rgb(207,209,35)" fg:x="293074" fg:w="645"/><text x="96.6553%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (402 samples, 0.13%)</title><rect x="96.4852%" y="421" width="0.1322%" height="15" fill="rgb(230,144,49)" fg:x="293317" fg:w="402"/><text x="96.7352%" y="431.50"></text></g><g><title>_ZdlPv (653 samples, 0.21%)</title><rect x="96.4043%" y="453" width="0.2148%" height="15" fill="rgb(229,31,6)" fg:x="293071" fg:w="653"/><text x="96.6543%" y="463.50"></text></g><g><title>_ZdlPv (657 samples, 0.22%)</title><rect x="96.4040%" y="485" width="0.2161%" height="15" fill="rgb(251,129,24)" fg:x="293070" fg:w="657"/><text x="96.6540%" y="495.50"></text></g><g><title>_ZdlPv (656 samples, 0.22%)</title><rect x="96.4043%" y="469" width="0.2158%" height="15" fill="rgb(235,105,15)" fg:x="293071" fg:w="656"/><text x="96.6543%" y="479.50"></text></g><g><title>cshook_security_sb_free_security (690 samples, 0.23%)</title><rect x="96.4033%" y="501" width="0.2270%" height="15" fill="rgb(216,52,43)" fg:x="293068" fg:w="690"/><text x="96.6533%" y="511.50"></text></g><g><title>cshook_security_file_permission (1,939 samples, 0.64%)</title><rect x="95.9974%" y="549" width="0.6378%" height="15" fill="rgb(238,144,41)" fg:x="291834" fg:w="1939"/><text x="96.2474%" y="559.50"></text></g><g><title>cshook_security_sb_free_security (1,936 samples, 0.64%)</title><rect x="95.9984%" y="533" width="0.6368%" height="15" fill="rgb(243,63,9)" fg:x="291837" fg:w="1936"/><text x="96.2484%" y="543.50"></text></g><g><title>cshook_security_sb_free_security (1,934 samples, 0.64%)</title><rect x="95.9990%" y="517" width="0.6362%" height="15" fill="rgb(246,208,1)" fg:x="291839" fg:w="1934"/><text x="96.2490%" y="527.50"></text></g><g><title>search_binary_handler (2,021 samples, 0.66%)</title><rect x="95.9708%" y="629" width="0.6648%" height="15" fill="rgb(233,182,18)" fg:x="291753" fg:w="2021"/><text x="96.2208%" y="639.50"></text></g><g><title>security_bprm_check (1,959 samples, 0.64%)</title><rect x="95.9911%" y="613" width="0.6444%" height="15" fill="rgb(242,224,8)" fg:x="291815" fg:w="1959"/><text x="96.2411%" y="623.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,957 samples, 0.64%)</title><rect x="95.9918%" y="597" width="0.6437%" height="15" fill="rgb(243,54,37)" fg:x="291817" fg:w="1957"/><text x="96.2418%" y="607.50"></text></g><g><title>cshook_security_bprm_check_security (1,956 samples, 0.64%)</title><rect x="95.9921%" y="581" width="0.6434%" height="15" fill="rgb(233,192,12)" fg:x="291818" fg:w="1956"/><text x="96.2421%" y="591.50"></text></g><g><title>cshook_security_file_permission (1,956 samples, 0.64%)</title><rect x="95.9921%" y="565" width="0.6434%" height="15" fill="rgb(251,192,53)" fg:x="291818" fg:w="1956"/><text x="96.2421%" y="575.50"></text></g><g><title>exec_binprm (2,022 samples, 0.67%)</title><rect x="95.9708%" y="645" width="0.6651%" height="15" fill="rgb(246,141,26)" fg:x="291753" fg:w="2022"/><text x="96.2208%" y="655.50"></text></g><g><title>finish_task_switch.isra.0 (35 samples, 0.01%)</title><rect x="96.6372%" y="581" width="0.0115%" height="15" fill="rgb(239,195,19)" fg:x="293779" fg:w="35"/><text x="96.8872%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.01%)</title><rect x="96.6372%" y="565" width="0.0115%" height="15" fill="rgb(241,16,39)" fg:x="293779" fg:w="35"/><text x="96.8872%" y="575.50"></text></g><g><title>x86_pmu_enable (34 samples, 0.01%)</title><rect x="96.6375%" y="549" width="0.0112%" height="15" fill="rgb(223,13,53)" fg:x="293780" fg:w="34"/><text x="96.8875%" y="559.50"></text></g><g><title>intel_pmu_enable_all (33 samples, 0.01%)</title><rect x="96.6379%" y="533" width="0.0109%" height="15" fill="rgb(214,227,0)" fg:x="293781" fg:w="33"/><text x="96.8879%" y="543.50"></text></g><g><title>native_write_msr (33 samples, 0.01%)</title><rect x="96.6379%" y="517" width="0.0109%" height="15" fill="rgb(228,103,26)" fg:x="293781" fg:w="33"/><text x="96.8879%" y="527.50"></text></g><g><title>__cond_resched (37 samples, 0.01%)</title><rect x="96.6372%" y="613" width="0.0122%" height="15" fill="rgb(254,177,53)" fg:x="293779" fg:w="37"/><text x="96.8872%" y="623.50"></text></g><g><title>__schedule (37 samples, 0.01%)</title><rect x="96.6372%" y="597" width="0.0122%" height="15" fill="rgb(208,201,34)" fg:x="293779" fg:w="37"/><text x="96.8872%" y="607.50"></text></g><g><title>sched_exec (42 samples, 0.01%)</title><rect x="96.6359%" y="645" width="0.0138%" height="15" fill="rgb(212,39,5)" fg:x="293775" fg:w="42"/><text x="96.8859%" y="655.50"></text></g><g><title>stop_one_cpu (38 samples, 0.01%)</title><rect x="96.6372%" y="629" width="0.0125%" height="15" fill="rgb(246,117,3)" fg:x="293779" fg:w="38"/><text x="96.8872%" y="639.50"></text></g><g><title>bprm_execve.part.0 (2,089 samples, 0.69%)</title><rect x="95.9678%" y="661" width="0.6872%" height="15" fill="rgb(244,118,39)" fg:x="291744" fg:w="2089"/><text x="96.2178%" y="671.50"></text></g><g><title>bprm_execve (2,095 samples, 0.69%)</title><rect x="95.9678%" y="677" width="0.6891%" height="15" fill="rgb(241,64,10)" fg:x="291744" fg:w="2095"/><text x="96.2178%" y="687.50"></text></g><g><title>JDK_execvpe (2,133 samples, 0.70%)</title><rect x="95.9629%" y="773" width="0.7016%" height="15" fill="rgb(229,39,44)" fg:x="291729" fg:w="2133"/><text x="96.2129%" y="783.50"></text></g><g><title>__GI_execve (2,133 samples, 0.70%)</title><rect x="95.9629%" y="757" width="0.7016%" height="15" fill="rgb(230,226,3)" fg:x="291729" fg:w="2133"/><text x="96.2129%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,133 samples, 0.70%)</title><rect x="95.9629%" y="741" width="0.7016%" height="15" fill="rgb(222,13,42)" fg:x="291729" fg:w="2133"/><text x="96.2129%" y="751.50"></text></g><g><title>do_syscall_64 (2,133 samples, 0.70%)</title><rect x="95.9629%" y="725" width="0.7016%" height="15" fill="rgb(247,180,54)" fg:x="291729" fg:w="2133"/><text x="96.2129%" y="735.50"></text></g><g><title>__x64_sys_execve (2,133 samples, 0.70%)</title><rect x="95.9629%" y="709" width="0.7016%" height="15" fill="rgb(205,96,16)" fg:x="291729" fg:w="2133"/><text x="96.2129%" y="719.50"></text></g><g><title>do_execveat_common.isra.0 (2,132 samples, 0.70%)</title><rect x="95.9632%" y="693" width="0.7013%" height="15" fill="rgb(205,100,21)" fg:x="291730" fg:w="2132"/><text x="96.2132%" y="703.50"></text></g><g><title>__opendir (31 samples, 0.01%)</title><rect x="96.6892%" y="757" width="0.0102%" height="15" fill="rgb(248,51,4)" fg:x="293937" fg:w="31"/><text x="96.9392%" y="767.50"></text></g><g><title>closeDescriptors (88 samples, 0.03%)</title><rect x="96.6714%" y="773" width="0.0289%" height="15" fill="rgb(217,197,30)" fg:x="293883" fg:w="88"/><text x="96.9214%" y="783.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (2,635 samples, 0.87%)</title><rect x="95.8365%" y="821" width="0.8668%" height="15" fill="rgb(240,179,40)" fg:x="291345" fg:w="2635"/><text x="96.0865%" y="831.50"></text></g><g><title>vforkChild (2,583 samples, 0.85%)</title><rect x="95.8536%" y="805" width="0.8497%" height="15" fill="rgb(212,185,35)" fg:x="291397" fg:w="2583"/><text x="96.1036%" y="815.50"></text></g><g><title>childProcess (2,252 samples, 0.74%)</title><rect x="95.9625%" y="789" width="0.7408%" height="15" fill="rgb(251,222,31)" fg:x="291728" fg:w="2252"/><text x="96.2125%" y="799.50"></text></g><g><title>JVM_FillInStackTrace (45 samples, 0.01%)</title><rect x="96.7033%" y="805" width="0.0148%" height="15" fill="rgb(208,140,36)" fg:x="293980" fg:w="45"/><text x="96.9533%" y="815.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (43 samples, 0.01%)</title><rect x="96.7040%" y="789" width="0.0141%" height="15" fill="rgb(220,148,1)" fg:x="293982" fg:w="43"/><text x="96.9540%" y="799.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (42 samples, 0.01%)</title><rect x="96.7043%" y="773" width="0.0138%" height="15" fill="rgb(254,4,28)" fg:x="293983" fg:w="42"/><text x="96.9543%" y="783.50"></text></g><g><title>Java_java_lang_Throwable_fillInStackTrace (47 samples, 0.02%)</title><rect x="96.7033%" y="821" width="0.0155%" height="15" fill="rgb(222,185,44)" fg:x="293980" fg:w="47"/><text x="96.9533%" y="831.50"></text></g><g><title>do_mkdirat (43 samples, 0.01%)</title><rect x="96.7191%" y="725" width="0.0141%" height="15" fill="rgb(215,74,39)" fg:x="294028" fg:w="43"/><text x="96.9691%" y="735.50"></text></g><g><title>__x64_sys_mkdir (45 samples, 0.01%)</title><rect x="96.7191%" y="741" width="0.0148%" height="15" fill="rgb(247,86,4)" fg:x="294028" fg:w="45"/><text x="96.9691%" y="751.50"></text></g><g><title>Java_sun_nio_fs_UnixNativeDispatcher_mkdir0 (52 samples, 0.02%)</title><rect x="96.7191%" y="821" width="0.0171%" height="15" fill="rgb(231,105,32)" fg:x="294028" fg:w="52"/><text x="96.9691%" y="831.50"></text></g><g><title>__GI_mkdir (52 samples, 0.02%)</title><rect x="96.7191%" y="805" width="0.0171%" height="15" fill="rgb(222,65,35)" fg:x="294028" fg:w="52"/><text x="96.9691%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.02%)</title><rect x="96.7191%" y="789" width="0.0171%" height="15" fill="rgb(218,145,35)" fg:x="294028" fg:w="52"/><text x="96.9691%" y="799.50"></text></g><g><title>do_syscall_64 (52 samples, 0.02%)</title><rect x="96.7191%" y="773" width="0.0171%" height="15" fill="rgb(208,7,15)" fg:x="294028" fg:w="52"/><text x="96.9691%" y="783.50"></text></g><g><title>unload_network_ops_symbols (52 samples, 0.02%)</title><rect x="96.7191%" y="757" width="0.0171%" height="15" fill="rgb(209,83,13)" fg:x="294028" fg:w="52"/><text x="96.9691%" y="767.50"></text></g><g><title>[libc.so.6] (32 samples, 0.01%)</title><rect x="96.7517%" y="741" width="0.0105%" height="15" fill="rgb(218,3,10)" fg:x="294127" fg:w="32"/><text x="97.0017%" y="751.50"></text></g><g><title>InstanceKlass::allocate_objArray (55 samples, 0.02%)</title><rect x="96.7461%" y="805" width="0.0181%" height="15" fill="rgb(211,219,4)" fg:x="294110" fg:w="55"/><text x="96.9961%" y="815.50"></text></g><g><title>CollectedHeap::array_allocate (53 samples, 0.02%)</title><rect x="96.7467%" y="789" width="0.0174%" height="15" fill="rgb(228,194,12)" fg:x="294112" fg:w="53"/><text x="96.9967%" y="799.50"></text></g><g><title>MemAllocator::allocate (53 samples, 0.02%)</title><rect x="96.7467%" y="773" width="0.0174%" height="15" fill="rgb(210,175,7)" fg:x="294112" fg:w="53"/><text x="96.9967%" y="783.50"></text></g><g><title>ObjArrayAllocator::initialize (38 samples, 0.01%)</title><rect x="96.7517%" y="757" width="0.0125%" height="15" fill="rgb(243,132,6)" fg:x="294127" fg:w="38"/><text x="97.0017%" y="767.50"></text></g><g><title>OptoRuntime::new_array_C (80 samples, 0.03%)</title><rect x="96.7448%" y="821" width="0.0263%" height="15" fill="rgb(207,72,18)" fg:x="294106" fg:w="80"/><text x="96.9948%" y="831.50"></text></g><g><title>OptoRuntime::new_instance_C (41 samples, 0.01%)</title><rect x="96.7747%" y="821" width="0.0135%" height="15" fill="rgb(236,1,18)" fg:x="294197" fg:w="41"/><text x="97.0247%" y="831.50"></text></g><g><title>JavaThread::pd_last_frame (38 samples, 0.01%)</title><rect x="96.8043%" y="805" width="0.0125%" height="15" fill="rgb(227,0,18)" fg:x="294287" fg:w="38"/><text x="97.0543%" y="815.50"></text></g><g><title>CodeCache::find_blob (36 samples, 0.01%)</title><rect x="96.8050%" y="789" width="0.0118%" height="15" fill="rgb(247,37,5)" fg:x="294289" fg:w="36"/><text x="97.0550%" y="799.50"></text></g><g><title>TieredThresholdPolicy::call_event (54 samples, 0.02%)</title><rect x="96.8342%" y="773" width="0.0178%" height="15" fill="rgb(237,179,24)" fg:x="294378" fg:w="54"/><text x="97.0842%" y="783.50"></text></g><g><title>CompileBroker::compile_method (43 samples, 0.01%)</title><rect x="96.8527%" y="741" width="0.0141%" height="15" fill="rgb(226,53,20)" fg:x="294434" fg:w="43"/><text x="97.1027%" y="751.50"></text></g><g><title>TieredThresholdPolicy::event (156 samples, 0.05%)</title><rect x="96.8168%" y="805" width="0.0513%" height="15" fill="rgb(247,75,7)" fg:x="294325" fg:w="156"/><text x="97.0668%" y="815.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (113 samples, 0.04%)</title><rect x="96.8309%" y="789" width="0.0372%" height="15" fill="rgb(233,96,12)" fg:x="294368" fg:w="113"/><text x="97.0809%" y="799.50"></text></g><g><title>TieredThresholdPolicy::compile (49 samples, 0.02%)</title><rect x="96.8520%" y="773" width="0.0161%" height="15" fill="rgb(224,125,0)" fg:x="294432" fg:w="49"/><text x="97.1020%" y="783.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (48 samples, 0.02%)</title><rect x="96.8523%" y="757" width="0.0158%" height="15" fill="rgb(224,92,25)" fg:x="294433" fg:w="48"/><text x="97.1023%" y="767.50"></text></g><g><title>frame::sender (61 samples, 0.02%)</title><rect x="96.8681%" y="805" width="0.0201%" height="15" fill="rgb(224,42,24)" fg:x="294481" fg:w="61"/><text x="97.1181%" y="815.50"></text></g><g><title>CodeCache::find_blob (41 samples, 0.01%)</title><rect x="96.8747%" y="789" width="0.0135%" height="15" fill="rgb(234,132,49)" fg:x="294501" fg:w="41"/><text x="97.1247%" y="799.50"></text></g><g><title>Runtime1::counter_overflow (305 samples, 0.10%)</title><rect x="96.7882%" y="821" width="0.1003%" height="15" fill="rgb(248,100,35)" fg:x="294238" fg:w="305"/><text x="97.0382%" y="831.50"></text></g><g><title>ObjectMonitor::enter (40 samples, 0.01%)</title><rect x="96.8957%" y="805" width="0.0132%" height="15" fill="rgb(239,94,40)" fg:x="294565" fg:w="40"/><text x="97.1457%" y="815.50"></text></g><g><title>Runtime1::monitorenter (85 samples, 0.03%)</title><rect x="96.8905%" y="821" width="0.0280%" height="15" fill="rgb(235,139,28)" fg:x="294549" fg:w="85"/><text x="97.1405%" y="831.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.01%)</title><rect x="96.9385%" y="661" width="0.0105%" height="15" fill="rgb(217,144,7)" fg:x="294695" fg:w="32"/><text x="97.1885%" y="671.50"></text></g><g><title>do_futex (32 samples, 0.01%)</title><rect x="96.9385%" y="645" width="0.0105%" height="15" fill="rgb(227,55,4)" fg:x="294695" fg:w="32"/><text x="97.1885%" y="655.50"></text></g><g><title>futex_wait (32 samples, 0.01%)</title><rect x="96.9385%" y="629" width="0.0105%" height="15" fill="rgb(252,82,54)" fg:x="294695" fg:w="32"/><text x="97.1885%" y="639.50"></text></g><g><title>___pthread_cond_timedwait64 (33 samples, 0.01%)</title><rect x="96.9385%" y="773" width="0.0109%" height="15" fill="rgb(245,172,4)" fg:x="294695" fg:w="33"/><text x="97.1885%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (33 samples, 0.01%)</title><rect x="96.9385%" y="757" width="0.0109%" height="15" fill="rgb(207,26,27)" fg:x="294695" fg:w="33"/><text x="97.1885%" y="767.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (33 samples, 0.01%)</title><rect x="96.9385%" y="741" width="0.0109%" height="15" fill="rgb(252,98,18)" fg:x="294695" fg:w="33"/><text x="97.1885%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common (33 samples, 0.01%)</title><rect x="96.9385%" y="725" width="0.0109%" height="15" fill="rgb(244,8,26)" fg:x="294695" fg:w="33"/><text x="97.1885%" y="735.50"></text></g><g><title>__futex_abstimed_wait_common64 (33 samples, 0.01%)</title><rect x="96.9385%" y="709" width="0.0109%" height="15" fill="rgb(237,173,45)" fg:x="294695" fg:w="33"/><text x="97.1885%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.01%)</title><rect x="96.9385%" y="693" width="0.0109%" height="15" fill="rgb(208,213,49)" fg:x="294695" fg:w="33"/><text x="97.1885%" y="703.50"></text></g><g><title>do_syscall_64 (33 samples, 0.01%)</title><rect x="96.9385%" y="677" width="0.0109%" height="15" fill="rgb(212,122,37)" fg:x="294695" fg:w="33"/><text x="97.1885%" y="687.50"></text></g><g><title>__x64_sys_futex (34 samples, 0.01%)</title><rect x="96.9497%" y="661" width="0.0112%" height="15" fill="rgb(213,80,17)" fg:x="294729" fg:w="34"/><text x="97.1997%" y="671.50"></text></g><g><title>do_futex (34 samples, 0.01%)</title><rect x="96.9497%" y="645" width="0.0112%" height="15" fill="rgb(206,210,43)" fg:x="294729" fg:w="34"/><text x="97.1997%" y="655.50"></text></g><g><title>futex_wait (34 samples, 0.01%)</title><rect x="96.9497%" y="629" width="0.0112%" height="15" fill="rgb(229,214,3)" fg:x="294729" fg:w="34"/><text x="97.1997%" y="639.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.01%)</title><rect x="96.9497%" y="613" width="0.0112%" height="15" fill="rgb(235,213,29)" fg:x="294729" fg:w="34"/><text x="97.1997%" y="623.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="96.9500%" y="597" width="0.0109%" height="15" fill="rgb(248,135,26)" fg:x="294730" fg:w="33"/><text x="97.2000%" y="607.50"></text></g><g><title>__schedule (33 samples, 0.01%)</title><rect x="96.9500%" y="581" width="0.0109%" height="15" fill="rgb(242,188,12)" fg:x="294730" fg:w="33"/><text x="97.2000%" y="591.50"></text></g><g><title>___pthread_cond_wait (37 samples, 0.01%)</title><rect x="96.9494%" y="773" width="0.0122%" height="15" fill="rgb(245,38,12)" fg:x="294728" fg:w="37"/><text x="97.1994%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (37 samples, 0.01%)</title><rect x="96.9494%" y="757" width="0.0122%" height="15" fill="rgb(218,42,13)" fg:x="294728" fg:w="37"/><text x="97.1994%" y="767.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (37 samples, 0.01%)</title><rect x="96.9494%" y="741" width="0.0122%" height="15" fill="rgb(238,132,49)" fg:x="294728" fg:w="37"/><text x="97.1994%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common (37 samples, 0.01%)</title><rect x="96.9494%" y="725" width="0.0122%" height="15" fill="rgb(209,196,19)" fg:x="294728" fg:w="37"/><text x="97.1994%" y="735.50"></text></g><g><title>__futex_abstimed_wait_common64 (37 samples, 0.01%)</title><rect x="96.9494%" y="709" width="0.0122%" height="15" fill="rgb(244,131,22)" fg:x="294728" fg:w="37"/><text x="97.1994%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.01%)</title><rect x="96.9497%" y="693" width="0.0118%" height="15" fill="rgb(223,18,34)" fg:x="294729" fg:w="36"/><text x="97.1997%" y="703.50"></text></g><g><title>do_syscall_64 (36 samples, 0.01%)</title><rect x="96.9497%" y="677" width="0.0118%" height="15" fill="rgb(252,124,54)" fg:x="294729" fg:w="36"/><text x="97.1997%" y="687.50"></text></g><g><title>ObjectMonitor::enter (78 samples, 0.03%)</title><rect x="96.9369%" y="805" width="0.0257%" height="15" fill="rgb(229,106,42)" fg:x="294690" fg:w="78"/><text x="97.1869%" y="815.50"></text></g><g><title>os::PlatformEvent::park (74 samples, 0.02%)</title><rect x="96.9382%" y="789" width="0.0243%" height="15" fill="rgb(221,129,1)" fg:x="294694" fg:w="74"/><text x="97.1882%" y="799.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (108 samples, 0.04%)</title><rect x="96.9365%" y="821" width="0.0355%" height="15" fill="rgb(229,74,15)" fg:x="294689" fg:w="108"/><text x="97.1865%" y="831.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (31 samples, 0.01%)</title><rect x="96.9809%" y="805" width="0.0102%" height="15" fill="rgb(210,206,50)" fg:x="294824" fg:w="31"/><text x="97.2309%" y="815.50"></text></g><g><title>SharedRuntime::handle_wrong_method_ic_miss (33 samples, 0.01%)</title><rect x="96.9806%" y="821" width="0.0109%" height="15" fill="rgb(251,114,31)" fg:x="294823" fg:w="33"/><text x="97.2306%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (31 samples, 0.01%)</title><rect x="97.0148%" y="773" width="0.0102%" height="15" fill="rgb(215,225,28)" fg:x="294927" fg:w="31"/><text x="97.2648%" y="783.50"></text></g><g><title>ClassFileParser::parse_stream (31 samples, 0.01%)</title><rect x="97.0148%" y="757" width="0.0102%" height="15" fill="rgb(237,109,14)" fg:x="294927" fg:w="31"/><text x="97.2648%" y="767.50"></text></g><g><title>KlassFactory::create_from_stream (50 samples, 0.02%)</title><rect x="97.0142%" y="789" width="0.0164%" height="15" fill="rgb(230,13,37)" fg:x="294925" fg:w="50"/><text x="97.2642%" y="799.50"></text></g><g><title>SystemDictionary::parse_stream (84 samples, 0.03%)</title><rect x="97.0033%" y="805" width="0.0276%" height="15" fill="rgb(231,40,28)" fg:x="294892" fg:w="84"/><text x="97.2533%" y="815.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (95 samples, 0.03%)</title><rect x="97.0023%" y="821" width="0.0312%" height="15" fill="rgb(231,202,18)" fg:x="294889" fg:w="95"/><text x="97.2523%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (217 samples, 0.07%)</title><rect x="97.0744%" y="565" width="0.0714%" height="15" fill="rgb(225,33,18)" fg:x="295108" fg:w="217"/><text x="97.3244%" y="575.50"></text></g><g><title>x86_pmu_enable (210 samples, 0.07%)</title><rect x="97.0767%" y="549" width="0.0691%" height="15" fill="rgb(223,64,47)" fg:x="295115" fg:w="210"/><text x="97.3267%" y="559.50"></text></g><g><title>intel_pmu_enable_all (210 samples, 0.07%)</title><rect x="97.0767%" y="533" width="0.0691%" height="15" fill="rgb(234,114,13)" fg:x="295115" fg:w="210"/><text x="97.3267%" y="543.50"></text></g><g><title>native_write_msr (208 samples, 0.07%)</title><rect x="97.0773%" y="517" width="0.0684%" height="15" fill="rgb(248,56,40)" fg:x="295117" fg:w="208"/><text x="97.3273%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (228 samples, 0.07%)</title><rect x="97.0727%" y="581" width="0.0750%" height="15" fill="rgb(221,194,21)" fg:x="295103" fg:w="228"/><text x="97.3227%" y="591.50"></text></g><g><title>__schedule (281 samples, 0.09%)</title><rect x="97.0671%" y="597" width="0.0924%" height="15" fill="rgb(242,108,46)" fg:x="295086" fg:w="281"/><text x="97.3171%" y="607.50"></text></g><g><title>futex_wait_queue_me (283 samples, 0.09%)</title><rect x="97.0668%" y="629" width="0.0931%" height="15" fill="rgb(220,106,10)" fg:x="295085" fg:w="283"/><text x="97.3168%" y="639.50"></text></g><g><title>schedule (282 samples, 0.09%)</title><rect x="97.0671%" y="613" width="0.0928%" height="15" fill="rgb(211,88,4)" fg:x="295086" fg:w="282"/><text x="97.3171%" y="623.50"></text></g><g><title>__x64_sys_futex (290 samples, 0.10%)</title><rect x="97.0655%" y="677" width="0.0954%" height="15" fill="rgb(214,95,34)" fg:x="295081" fg:w="290"/><text x="97.3155%" y="687.50"></text></g><g><title>do_futex (290 samples, 0.10%)</title><rect x="97.0655%" y="661" width="0.0954%" height="15" fill="rgb(250,160,33)" fg:x="295081" fg:w="290"/><text x="97.3155%" y="671.50"></text></g><g><title>futex_wait (288 samples, 0.09%)</title><rect x="97.0661%" y="645" width="0.0947%" height="15" fill="rgb(225,29,10)" fg:x="295083" fg:w="288"/><text x="97.3161%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (307 samples, 0.10%)</title><rect x="97.0655%" y="709" width="0.1010%" height="15" fill="rgb(224,28,30)" fg:x="295081" fg:w="307"/><text x="97.3155%" y="719.50"></text></g><g><title>do_syscall_64 (307 samples, 0.10%)</title><rect x="97.0655%" y="693" width="0.1010%" height="15" fill="rgb(231,77,4)" fg:x="295081" fg:w="307"/><text x="97.3155%" y="703.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (311 samples, 0.10%)</title><rect x="97.0645%" y="757" width="0.1023%" height="15" fill="rgb(209,63,21)" fg:x="295078" fg:w="311"/><text x="97.3145%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (311 samples, 0.10%)</title><rect x="97.0645%" y="741" width="0.1023%" height="15" fill="rgb(226,22,11)" fg:x="295078" fg:w="311"/><text x="97.3145%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (311 samples, 0.10%)</title><rect x="97.0645%" y="725" width="0.1023%" height="15" fill="rgb(216,82,30)" fg:x="295078" fg:w="311"/><text x="97.3145%" y="735.50"></text></g><g><title>___pthread_cond_wait (317 samples, 0.10%)</title><rect x="97.0638%" y="789" width="0.1043%" height="15" fill="rgb(246,227,38)" fg:x="295076" fg:w="317"/><text x="97.3138%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (317 samples, 0.10%)</title><rect x="97.0638%" y="773" width="0.1043%" height="15" fill="rgb(251,203,53)" fg:x="295076" fg:w="317"/><text x="97.3138%" y="783.50"></text></g><g><title>Parker::park (382 samples, 0.13%)</title><rect x="97.0464%" y="805" width="0.1257%" height="15" fill="rgb(254,101,1)" fg:x="295023" fg:w="382"/><text x="97.2964%" y="815.50"></text></g><g><title>Unsafe_Park (392 samples, 0.13%)</title><rect x="97.0438%" y="821" width="0.1289%" height="15" fill="rgb(241,180,5)" fg:x="295015" fg:w="392"/><text x="97.2938%" y="831.50"></text></g><g><title>select_task_rq_fair (39 samples, 0.01%)</title><rect x="97.2214%" y="661" width="0.0128%" height="15" fill="rgb(218,168,4)" fg:x="295555" fg:w="39"/><text x="97.4714%" y="671.50"></text></g><g><title>enqueue_task_fair (47 samples, 0.02%)</title><rect x="97.2352%" y="629" width="0.0155%" height="15" fill="rgb(224,223,32)" fg:x="295597" fg:w="47"/><text x="97.4852%" y="639.50"></text></g><g><title>psi_group_change (34 samples, 0.01%)</title><rect x="97.2530%" y="613" width="0.0112%" height="15" fill="rgb(236,106,22)" fg:x="295651" fg:w="34"/><text x="97.5030%" y="623.50"></text></g><g><title>psi_task_change (43 samples, 0.01%)</title><rect x="97.2510%" y="629" width="0.0141%" height="15" fill="rgb(206,121,5)" fg:x="295645" fg:w="43"/><text x="97.5010%" y="639.50"></text></g><g><title>enqueue_task (95 samples, 0.03%)</title><rect x="97.2346%" y="645" width="0.0312%" height="15" fill="rgb(233,87,28)" fg:x="295595" fg:w="95"/><text x="97.4846%" y="655.50"></text></g><g><title>ttwu_do_activate (118 samples, 0.04%)</title><rect x="97.2346%" y="661" width="0.0388%" height="15" fill="rgb(236,137,17)" fg:x="295595" fg:w="118"/><text x="97.4846%" y="671.50"></text></g><g><title>try_to_wake_up (197 samples, 0.06%)</title><rect x="97.2122%" y="677" width="0.0648%" height="15" fill="rgb(209,183,38)" fg:x="295527" fg:w="197"/><text x="97.4622%" y="687.50"></text></g><g><title>futex_wake (228 samples, 0.07%)</title><rect x="97.2023%" y="709" width="0.0750%" height="15" fill="rgb(206,162,44)" fg:x="295497" fg:w="228"/><text x="97.4523%" y="719.50"></text></g><g><title>wake_up_q (204 samples, 0.07%)</title><rect x="97.2102%" y="693" width="0.0671%" height="15" fill="rgb(237,70,39)" fg:x="295521" fg:w="204"/><text x="97.4602%" y="703.50"></text></g><g><title>do_futex (236 samples, 0.08%)</title><rect x="97.2013%" y="725" width="0.0776%" height="15" fill="rgb(212,176,5)" fg:x="295494" fg:w="236"/><text x="97.4513%" y="735.50"></text></g><g><title>__x64_sys_futex (238 samples, 0.08%)</title><rect x="97.2010%" y="741" width="0.0783%" height="15" fill="rgb(232,95,16)" fg:x="295493" fg:w="238"/><text x="97.4510%" y="751.50"></text></g><g><title>__schedule (49 samples, 0.02%)</title><rect x="97.2826%" y="677" width="0.0161%" height="15" fill="rgb(219,115,35)" fg:x="295741" fg:w="49"/><text x="97.5326%" y="687.50"></text></g><g><title>exit_to_user_mode_loop (57 samples, 0.02%)</title><rect x="97.2806%" y="709" width="0.0187%" height="15" fill="rgb(251,67,27)" fg:x="295735" fg:w="57"/><text x="97.5306%" y="719.50"></text></g><g><title>schedule (52 samples, 0.02%)</title><rect x="97.2823%" y="693" width="0.0171%" height="15" fill="rgb(222,95,40)" fg:x="295740" fg:w="52"/><text x="97.5323%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (61 samples, 0.02%)</title><rect x="97.2800%" y="725" width="0.0201%" height="15" fill="rgb(250,35,16)" fg:x="295733" fg:w="61"/><text x="97.5300%" y="735.50"></text></g><g><title>do_syscall_64 (303 samples, 0.10%)</title><rect x="97.2007%" y="757" width="0.0997%" height="15" fill="rgb(224,86,44)" fg:x="295492" fg:w="303"/><text x="97.4507%" y="767.50"></text></g><g><title>syscall_exit_to_user_mode (63 samples, 0.02%)</title><rect x="97.2796%" y="741" width="0.0207%" height="15" fill="rgb(237,53,53)" fg:x="295732" fg:w="63"/><text x="97.5296%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (305 samples, 0.10%)</title><rect x="97.2003%" y="773" width="0.1003%" height="15" fill="rgb(208,171,33)" fg:x="295491" fg:w="305"/><text x="97.4503%" y="783.50"></text></g><g><title>___pthread_cond_signal (327 samples, 0.11%)</title><rect x="97.1951%" y="805" width="0.1076%" height="15" fill="rgb(222,64,27)" fg:x="295475" fg:w="327"/><text x="97.4451%" y="815.50"></text></g><g><title>futex_wake (317 samples, 0.10%)</title><rect x="97.1984%" y="789" width="0.1043%" height="15" fill="rgb(221,121,35)" fg:x="295485" fg:w="317"/><text x="97.4484%" y="799.50"></text></g><g><title>Unsafe_Unpark (398 samples, 0.13%)</title><rect x="97.1737%" y="821" width="0.1309%" height="15" fill="rgb(228,137,42)" fg:x="295410" fg:w="398"/><text x="97.4237%" y="831.50"></text></g><g><title>end_bio_extent_buffer_writepage (36 samples, 0.01%)</title><rect x="97.3224%" y="437" width="0.0118%" height="15" fill="rgb(227,54,21)" fg:x="295862" fg:w="36"/><text x="97.5724%" y="447.50"></text></g><g><title>end_page_writeback (33 samples, 0.01%)</title><rect x="97.3234%" y="421" width="0.0109%" height="15" fill="rgb(240,168,33)" fg:x="295865" fg:w="33"/><text x="97.5734%" y="431.50"></text></g><g><title>bio_endio (64 samples, 0.02%)</title><rect x="97.3224%" y="533" width="0.0211%" height="15" fill="rgb(243,159,6)" fg:x="295862" fg:w="64"/><text x="97.5724%" y="543.50"></text></g><g><title>clone_endio (64 samples, 0.02%)</title><rect x="97.3224%" y="517" width="0.0211%" height="15" fill="rgb(205,211,41)" fg:x="295862" fg:w="64"/><text x="97.5724%" y="527.50"></text></g><g><title>dm_io_dec_pending (64 samples, 0.02%)</title><rect x="97.3224%" y="501" width="0.0211%" height="15" fill="rgb(253,30,1)" fg:x="295862" fg:w="64"/><text x="97.5724%" y="511.50"></text></g><g><title>bio_endio (64 samples, 0.02%)</title><rect x="97.3224%" y="485" width="0.0211%" height="15" fill="rgb(226,80,18)" fg:x="295862" fg:w="64"/><text x="97.5724%" y="495.50"></text></g><g><title>btrfs_end_bio (64 samples, 0.02%)</title><rect x="97.3224%" y="469" width="0.0211%" height="15" fill="rgb(253,156,46)" fg:x="295862" fg:w="64"/><text x="97.5724%" y="479.50"></text></g><g><title>bio_endio (64 samples, 0.02%)</title><rect x="97.3224%" y="453" width="0.0211%" height="15" fill="rgb(248,87,27)" fg:x="295862" fg:w="64"/><text x="97.5724%" y="463.50"></text></g><g><title>bio_endio (67 samples, 0.02%)</title><rect x="97.3221%" y="581" width="0.0220%" height="15" fill="rgb(227,122,2)" fg:x="295861" fg:w="67"/><text x="97.5721%" y="591.50"></text></g><g><title>clone_endio (67 samples, 0.02%)</title><rect x="97.3221%" y="565" width="0.0220%" height="15" fill="rgb(229,94,39)" fg:x="295861" fg:w="67"/><text x="97.5721%" y="575.50"></text></g><g><title>dm_io_dec_pending (67 samples, 0.02%)</title><rect x="97.3221%" y="549" width="0.0220%" height="15" fill="rgb(225,173,31)" fg:x="295861" fg:w="67"/><text x="97.5721%" y="559.50"></text></g><g><title>crypt_dec_pending (68 samples, 0.02%)</title><rect x="97.3221%" y="597" width="0.0224%" height="15" fill="rgb(239,176,30)" fg:x="295861" fg:w="68"/><text x="97.5721%" y="607.50"></text></g><g><title>nvme_complete_rq (117 samples, 0.04%)</title><rect x="97.3171%" y="677" width="0.0385%" height="15" fill="rgb(212,104,21)" fg:x="295846" fg:w="117"/><text x="97.5671%" y="687.50"></text></g><g><title>blk_mq_end_request (117 samples, 0.04%)</title><rect x="97.3171%" y="661" width="0.0385%" height="15" fill="rgb(240,209,40)" fg:x="295846" fg:w="117"/><text x="97.5671%" y="671.50"></text></g><g><title>blk_update_request (112 samples, 0.04%)</title><rect x="97.3188%" y="645" width="0.0368%" height="15" fill="rgb(234,195,5)" fg:x="295851" fg:w="112"/><text x="97.5688%" y="655.50"></text></g><g><title>bio_endio (108 samples, 0.04%)</title><rect x="97.3201%" y="629" width="0.0355%" height="15" fill="rgb(238,213,1)" fg:x="295855" fg:w="108"/><text x="97.5701%" y="639.50"></text></g><g><title>crypt_endio (105 samples, 0.03%)</title><rect x="97.3211%" y="613" width="0.0345%" height="15" fill="rgb(235,182,54)" fg:x="295858" fg:w="105"/><text x="97.5711%" y="623.50"></text></g><g><title>__handle_irq_event_percpu (124 samples, 0.04%)</title><rect x="97.3155%" y="741" width="0.0408%" height="15" fill="rgb(229,50,46)" fg:x="295841" fg:w="124"/><text x="97.5655%" y="751.50"></text></g><g><title>nvme_irq (119 samples, 0.04%)</title><rect x="97.3171%" y="725" width="0.0391%" height="15" fill="rgb(219,145,13)" fg:x="295846" fg:w="119"/><text x="97.5671%" y="735.50"></text></g><g><title>nvme_process_cq (119 samples, 0.04%)</title><rect x="97.3171%" y="709" width="0.0391%" height="15" fill="rgb(220,226,10)" fg:x="295846" fg:w="119"/><text x="97.5671%" y="719.50"></text></g><g><title>nvme_pci_complete_rq (119 samples, 0.04%)</title><rect x="97.3171%" y="693" width="0.0391%" height="15" fill="rgb(248,47,30)" fg:x="295846" fg:w="119"/><text x="97.5671%" y="703.50"></text></g><g><title>handle_edge_irq (127 samples, 0.04%)</title><rect x="97.3148%" y="773" width="0.0418%" height="15" fill="rgb(231,209,44)" fg:x="295839" fg:w="127"/><text x="97.5648%" y="783.50"></text></g><g><title>handle_irq_event (125 samples, 0.04%)</title><rect x="97.3155%" y="757" width="0.0411%" height="15" fill="rgb(209,80,30)" fg:x="295841" fg:w="125"/><text x="97.5655%" y="767.50"></text></g><g><title>__common_interrupt (144 samples, 0.05%)</title><rect x="97.3145%" y="789" width="0.0474%" height="15" fill="rgb(232,9,14)" fg:x="295838" fg:w="144"/><text x="97.5645%" y="799.50"></text></g><g><title>asm_common_interrupt (174 samples, 0.06%)</title><rect x="97.3138%" y="821" width="0.0572%" height="15" fill="rgb(243,91,43)" fg:x="295836" fg:w="174"/><text x="97.5638%" y="831.50"></text></g><g><title>common_interrupt (173 samples, 0.06%)</title><rect x="97.3142%" y="805" width="0.0569%" height="15" fill="rgb(231,90,52)" fg:x="295837" fg:w="173"/><text x="97.5642%" y="815.50"></text></g><g><title>__count_memcg_events (37 samples, 0.01%)</title><rect x="97.4207%" y="757" width="0.0122%" height="15" fill="rgb(253,192,44)" fg:x="296161" fg:w="37"/><text x="97.6707%" y="767.50"></text></g><g><title>__cgroup_throttle_swaprate (39 samples, 0.01%)</title><rect x="97.4721%" y="709" width="0.0128%" height="15" fill="rgb(241,66,31)" fg:x="296317" fg:w="39"/><text x="97.7221%" y="719.50"></text></g><g><title>charge_memcg (65 samples, 0.02%)</title><rect x="97.4862%" y="693" width="0.0214%" height="15" fill="rgb(235,81,37)" fg:x="296360" fg:w="65"/><text x="97.7362%" y="703.50"></text></g><g><title>try_charge_memcg (34 samples, 0.01%)</title><rect x="97.4964%" y="677" width="0.0112%" height="15" fill="rgb(223,221,9)" fg:x="296391" fg:w="34"/><text x="97.7464%" y="687.50"></text></g><g><title>__mem_cgroup_charge (98 samples, 0.03%)</title><rect x="97.4859%" y="709" width="0.0322%" height="15" fill="rgb(242,180,7)" fg:x="296359" fg:w="98"/><text x="97.7359%" y="719.50"></text></g><g><title>clear_page_erms (124 samples, 0.04%)</title><rect x="97.5467%" y="661" width="0.0408%" height="15" fill="rgb(243,78,19)" fg:x="296544" fg:w="124"/><text x="97.7967%" y="671.50"></text></g><g><title>rmqueue_bulk (43 samples, 0.01%)</title><rect x="97.6030%" y="645" width="0.0141%" height="15" fill="rgb(233,23,17)" fg:x="296715" fg:w="43"/><text x="97.8530%" y="655.50"></text></g><g><title>get_page_from_freelist (242 samples, 0.08%)</title><rect x="97.5378%" y="677" width="0.0796%" height="15" fill="rgb(252,122,45)" fg:x="296517" fg:w="242"/><text x="97.7878%" y="687.50"></text></g><g><title>rmqueue (89 samples, 0.03%)</title><rect x="97.5882%" y="661" width="0.0293%" height="15" fill="rgb(247,108,20)" fg:x="296670" fg:w="89"/><text x="97.8382%" y="671.50"></text></g><g><title>__alloc_pages (287 samples, 0.09%)</title><rect x="97.5244%" y="693" width="0.0944%" height="15" fill="rgb(235,84,21)" fg:x="296476" fg:w="287"/><text x="97.7744%" y="703.50"></text></g><g><title>alloc_pages_vma (313 samples, 0.10%)</title><rect x="97.5207%" y="709" width="0.1030%" height="15" fill="rgb(247,129,10)" fg:x="296465" fg:w="313"/><text x="97.7707%" y="719.50"></text></g><g><title>__pagevec_lru_add_fn (49 samples, 0.02%)</title><rect x="97.6362%" y="661" width="0.0161%" height="15" fill="rgb(208,173,14)" fg:x="296816" fg:w="49"/><text x="97.8862%" y="671.50"></text></g><g><title>__pagevec_lru_add (72 samples, 0.02%)</title><rect x="97.6342%" y="677" width="0.0237%" height="15" fill="rgb(236,31,38)" fg:x="296810" fg:w="72"/><text x="97.8842%" y="687.50"></text></g><g><title>lru_cache_add_inactive_or_unevictable (94 samples, 0.03%)</title><rect x="97.6276%" y="709" width="0.0309%" height="15" fill="rgb(232,65,17)" fg:x="296790" fg:w="94"/><text x="97.8776%" y="719.50"></text></g><g><title>lru_cache_add (89 samples, 0.03%)</title><rect x="97.6293%" y="693" width="0.0293%" height="15" fill="rgb(224,45,49)" fg:x="296795" fg:w="89"/><text x="97.8793%" y="703.50"></text></g><g><title>__mod_lruvec_page_state (57 samples, 0.02%)</title><rect x="97.6602%" y="693" width="0.0187%" height="15" fill="rgb(225,2,53)" fg:x="296889" fg:w="57"/><text x="97.9102%" y="703.50"></text></g><g><title>page_add_new_anon_rmap (64 samples, 0.02%)</title><rect x="97.6596%" y="709" width="0.0211%" height="15" fill="rgb(248,210,53)" fg:x="296887" fg:w="64"/><text x="97.9096%" y="719.50"></text></g><g><title>do_anonymous_page (660 samples, 0.22%)</title><rect x="97.4655%" y="725" width="0.2171%" height="15" fill="rgb(211,1,30)" fg:x="296297" fg:w="660"/><text x="97.7155%" y="735.50"></text></g><g><title>handle_pte_fault (731 samples, 0.24%)</title><rect x="97.4536%" y="741" width="0.2405%" height="15" fill="rgb(224,96,15)" fg:x="296261" fg:w="731"/><text x="97.7036%" y="751.50"></text></g><g><title>__handle_mm_fault (802 samples, 0.26%)</title><rect x="97.4329%" y="757" width="0.2638%" height="15" fill="rgb(252,45,11)" fg:x="296198" fg:w="802"/><text x="97.6829%" y="767.50"></text></g><g><title>handle_mm_fault (901 samples, 0.30%)</title><rect x="97.4096%" y="773" width="0.2964%" height="15" fill="rgb(220,125,38)" fg:x="296127" fg:w="901"/><text x="97.6596%" y="783.50"></text></g><g><title>do_user_addr_fault (1,013 samples, 0.33%)</title><rect x="97.3773%" y="789" width="0.3332%" height="15" fill="rgb(243,161,33)" fg:x="296029" fg:w="1013"/><text x="97.6273%" y="799.50"></text></g><g><title>exc_page_fault (1,062 samples, 0.35%)</title><rect x="97.3744%" y="805" width="0.3493%" height="15" fill="rgb(248,197,34)" fg:x="296020" fg:w="1062"/><text x="97.6244%" y="815.50"></text></g><g><title>asm_exc_page_fault (1,073 samples, 0.35%)</title><rect x="97.3711%" y="821" width="0.3530%" height="15" fill="rgb(228,165,23)" fg:x="296010" fg:w="1073"/><text x="97.6211%" y="831.50"></text></g><g><title>task_tick_fair (37 samples, 0.01%)</title><rect x="97.7790%" y="677" width="0.0122%" height="15" fill="rgb(236,94,38)" fg:x="297250" fg:w="37"/><text x="98.0290%" y="687.50"></text></g><g><title>scheduler_tick (56 samples, 0.02%)</title><rect x="97.7737%" y="693" width="0.0184%" height="15" fill="rgb(220,13,23)" fg:x="297234" fg:w="56"/><text x="98.0237%" y="703.50"></text></g><g><title>tick_sched_handle (94 samples, 0.03%)</title><rect x="97.7619%" y="725" width="0.0309%" height="15" fill="rgb(234,26,39)" fg:x="297198" fg:w="94"/><text x="98.0119%" y="735.50"></text></g><g><title>update_process_times (88 samples, 0.03%)</title><rect x="97.7638%" y="709" width="0.0289%" height="15" fill="rgb(205,117,44)" fg:x="297204" fg:w="88"/><text x="98.0138%" y="719.50"></text></g><g><title>__hrtimer_run_queues (193 samples, 0.06%)</title><rect x="97.7309%" y="757" width="0.0635%" height="15" fill="rgb(250,42,2)" fg:x="297104" fg:w="193"/><text x="97.9809%" y="767.50"></text></g><g><title>tick_sched_timer (114 samples, 0.04%)</title><rect x="97.7569%" y="741" width="0.0375%" height="15" fill="rgb(223,83,14)" fg:x="297183" fg:w="114"/><text x="98.0069%" y="751.50"></text></g><g><title>hrtimer_interrupt (227 samples, 0.07%)</title><rect x="97.7270%" y="773" width="0.0747%" height="15" fill="rgb(241,147,50)" fg:x="297092" fg:w="227"/><text x="97.9770%" y="783.50"></text></g><g><title>__sysvec_apic_timer_interrupt (232 samples, 0.08%)</title><rect x="97.7260%" y="789" width="0.0763%" height="15" fill="rgb(218,90,6)" fg:x="297089" fg:w="232"/><text x="97.9760%" y="799.50"></text></g><g><title>rcu_do_batch (55 samples, 0.02%)</title><rect x="97.8073%" y="725" width="0.0181%" height="15" fill="rgb(210,191,5)" fg:x="297336" fg:w="55"/><text x="98.0573%" y="735.50"></text></g><g><title>rcu_core_si (65 samples, 0.02%)</title><rect x="97.8059%" y="757" width="0.0214%" height="15" fill="rgb(225,139,19)" fg:x="297332" fg:w="65"/><text x="98.0559%" y="767.50"></text></g><g><title>rcu_core (65 samples, 0.02%)</title><rect x="97.8059%" y="741" width="0.0214%" height="15" fill="rgb(210,1,33)" fg:x="297332" fg:w="65"/><text x="98.0559%" y="751.50"></text></g><g><title>irq_exit_rcu (106 samples, 0.03%)</title><rect x="97.8030%" y="789" width="0.0349%" height="15" fill="rgb(213,50,3)" fg:x="297323" fg:w="106"/><text x="98.0530%" y="799.50"></text></g><g><title>__softirqentry_text_start (99 samples, 0.03%)</title><rect x="97.8053%" y="773" width="0.0326%" height="15" fill="rgb(234,227,4)" fg:x="297330" fg:w="99"/><text x="98.0553%" y="783.50"></text></g><g><title>exit_to_user_mode_loop (38 samples, 0.01%)</title><rect x="97.8388%" y="741" width="0.0125%" height="15" fill="rgb(246,63,5)" fg:x="297432" fg:w="38"/><text x="98.0888%" y="751.50"></text></g><g><title>schedule (35 samples, 0.01%)</title><rect x="97.8398%" y="725" width="0.0115%" height="15" fill="rgb(245,136,27)" fg:x="297435" fg:w="35"/><text x="98.0898%" y="735.50"></text></g><g><title>__schedule (35 samples, 0.01%)</title><rect x="97.8398%" y="709" width="0.0115%" height="15" fill="rgb(247,199,27)" fg:x="297435" fg:w="35"/><text x="98.0898%" y="719.50"></text></g><g><title>exit_to_user_mode_prepare (43 samples, 0.01%)</title><rect x="97.8378%" y="757" width="0.0141%" height="15" fill="rgb(252,158,49)" fg:x="297429" fg:w="43"/><text x="98.0878%" y="767.50"></text></g><g><title>irqentry_exit (44 samples, 0.01%)</title><rect x="97.8378%" y="789" width="0.0145%" height="15" fill="rgb(254,73,1)" fg:x="297429" fg:w="44"/><text x="98.0878%" y="799.50"></text></g><g><title>irqentry_exit_to_user_mode (44 samples, 0.01%)</title><rect x="97.8378%" y="773" width="0.0145%" height="15" fill="rgb(248,93,19)" fg:x="297429" fg:w="44"/><text x="98.0878%" y="783.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (391 samples, 0.13%)</title><rect x="97.7240%" y="821" width="0.1286%" height="15" fill="rgb(206,67,5)" fg:x="297083" fg:w="391"/><text x="97.9740%" y="831.50"></text></g><g><title>sysvec_apic_timer_interrupt (386 samples, 0.13%)</title><rect x="97.7257%" y="805" width="0.1270%" height="15" fill="rgb(209,210,4)" fg:x="297088" fg:w="386"/><text x="97.9757%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (102 samples, 0.03%)</title><rect x="97.8842%" y="677" width="0.0336%" height="15" fill="rgb(214,185,36)" fg:x="297570" fg:w="102"/><text x="98.1342%" y="687.50"></text></g><g><title>x86_pmu_enable (95 samples, 0.03%)</title><rect x="97.8865%" y="661" width="0.0312%" height="15" fill="rgb(233,191,26)" fg:x="297577" fg:w="95"/><text x="98.1365%" y="671.50"></text></g><g><title>intel_pmu_enable_all (92 samples, 0.03%)</title><rect x="97.8875%" y="645" width="0.0303%" height="15" fill="rgb(248,94,17)" fg:x="297580" fg:w="92"/><text x="98.1375%" y="655.50"></text></g><g><title>native_write_msr (92 samples, 0.03%)</title><rect x="97.8875%" y="629" width="0.0303%" height="15" fill="rgb(250,64,4)" fg:x="297580" fg:w="92"/><text x="98.1375%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (114 samples, 0.04%)</title><rect x="97.8816%" y="693" width="0.0375%" height="15" fill="rgb(218,41,53)" fg:x="297562" fg:w="114"/><text x="98.1316%" y="703.50"></text></g><g><title>pick_next_task_fair (48 samples, 0.02%)</title><rect x="97.9207%" y="677" width="0.0158%" height="15" fill="rgb(251,176,28)" fg:x="297681" fg:w="48"/><text x="98.1707%" y="687.50"></text></g><g><title>pick_next_task (54 samples, 0.02%)</title><rect x="97.9191%" y="693" width="0.0178%" height="15" fill="rgb(247,22,9)" fg:x="297676" fg:w="54"/><text x="98.1691%" y="703.50"></text></g><g><title>__schedule (247 samples, 0.08%)</title><rect x="97.8747%" y="709" width="0.0812%" height="15" fill="rgb(218,201,14)" fg:x="297541" fg:w="247"/><text x="98.1247%" y="719.50"></text></g><g><title>exit_to_user_mode_loop (272 samples, 0.09%)</title><rect x="97.8671%" y="741" width="0.0895%" height="15" fill="rgb(218,94,10)" fg:x="297518" fg:w="272"/><text x="98.1171%" y="751.50"></text></g><g><title>schedule (251 samples, 0.08%)</title><rect x="97.8740%" y="725" width="0.0826%" height="15" fill="rgb(222,183,52)" fg:x="297539" fg:w="251"/><text x="98.1240%" y="735.50"></text></g><g><title>exit_to_user_mode_prepare (284 samples, 0.09%)</title><rect x="97.8665%" y="757" width="0.0934%" height="15" fill="rgb(242,140,25)" fg:x="297516" fg:w="284"/><text x="98.1165%" y="767.50"></text></g><g><title>asm_sysvec_reschedule_ipi (298 samples, 0.10%)</title><rect x="97.8622%" y="821" width="0.0980%" height="15" fill="rgb(235,197,38)" fg:x="297503" fg:w="298"/><text x="98.1122%" y="831.50"></text></g><g><title>sysvec_reschedule_ipi (292 samples, 0.10%)</title><rect x="97.8642%" y="805" width="0.0961%" height="15" fill="rgb(237,136,15)" fg:x="297509" fg:w="292"/><text x="98.1142%" y="815.50"></text></g><g><title>irqentry_exit (287 samples, 0.09%)</title><rect x="97.8658%" y="789" width="0.0944%" height="15" fill="rgb(223,44,49)" fg:x="297514" fg:w="287"/><text x="98.1158%" y="799.50"></text></g><g><title>irqentry_exit_to_user_mode (287 samples, 0.09%)</title><rect x="97.8658%" y="773" width="0.0944%" height="15" fill="rgb(227,71,15)" fg:x="297514" fg:w="287"/><text x="98.1158%" y="783.50"></text></g><g><title>__fput (62 samples, 0.02%)</title><rect x="97.9744%" y="677" width="0.0204%" height="15" fill="rgb(225,153,20)" fg:x="297844" fg:w="62"/><text x="98.2244%" y="687.50"></text></g><g><title>security_file_free (32 samples, 0.01%)</title><rect x="97.9842%" y="661" width="0.0105%" height="15" fill="rgb(210,190,26)" fg:x="297874" fg:w="32"/><text x="98.2342%" y="671.50"></text></g><g><title>____fput (69 samples, 0.02%)</title><rect x="97.9744%" y="693" width="0.0227%" height="15" fill="rgb(223,147,5)" fg:x="297844" fg:w="69"/><text x="98.2244%" y="703.50"></text></g><g><title>exit_to_user_mode_loop (87 samples, 0.03%)</title><rect x="97.9691%" y="725" width="0.0286%" height="15" fill="rgb(207,14,23)" fg:x="297828" fg:w="87"/><text x="98.2191%" y="735.50"></text></g><g><title>task_work_run (71 samples, 0.02%)</title><rect x="97.9744%" y="709" width="0.0234%" height="15" fill="rgb(211,195,53)" fg:x="297844" fg:w="71"/><text x="98.2244%" y="719.50"></text></g><g><title>syscall_exit_to_user_mode (89 samples, 0.03%)</title><rect x="97.9688%" y="757" width="0.0293%" height="15" fill="rgb(237,75,46)" fg:x="297827" fg:w="89"/><text x="98.2188%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (88 samples, 0.03%)</title><rect x="97.9691%" y="741" width="0.0289%" height="15" fill="rgb(254,55,14)" fg:x="297828" fg:w="88"/><text x="98.2191%" y="751.50"></text></g><g><title>cshook_security_file_free_security (34 samples, 0.01%)</title><rect x="98.0109%" y="709" width="0.0112%" height="15" fill="rgb(230,185,30)" fg:x="297955" fg:w="34"/><text x="98.2609%" y="719.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (84 samples, 0.03%)</title><rect x="98.0092%" y="725" width="0.0276%" height="15" fill="rgb(220,14,11)" fg:x="297950" fg:w="84"/><text x="98.2592%" y="735.50"></text></g><g><title>fshook_syscalltable_pre_lchown (45 samples, 0.01%)</title><rect x="98.0221%" y="709" width="0.0148%" height="15" fill="rgb(215,169,44)" fg:x="297989" fg:w="45"/><text x="98.2721%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (217 samples, 0.07%)</title><rect x="97.9658%" y="789" width="0.0714%" height="15" fill="rgb(253,203,20)" fg:x="297818" fg:w="217"/><text x="98.2158%" y="799.50"></text></g><g><title>do_syscall_64 (216 samples, 0.07%)</title><rect x="97.9661%" y="773" width="0.0711%" height="15" fill="rgb(229,225,17)" fg:x="297819" fg:w="216"/><text x="98.2161%" y="783.50"></text></g><g><title>unload_network_ops_symbols (119 samples, 0.04%)</title><rect x="97.9980%" y="757" width="0.0391%" height="15" fill="rgb(236,76,26)" fg:x="297916" fg:w="119"/><text x="98.2480%" y="767.50"></text></g><g><title>cshook_systemcalltable_pre_close (85 samples, 0.03%)</title><rect x="98.0092%" y="741" width="0.0280%" height="15" fill="rgb(234,15,30)" fg:x="297950" fg:w="85"/><text x="98.2592%" y="751.50"></text></g><g><title>__GI___close (224 samples, 0.07%)</title><rect x="97.9638%" y="805" width="0.0737%" height="15" fill="rgb(211,113,48)" fg:x="297812" fg:w="224"/><text x="98.2138%" y="815.50"></text></g><g><title>fileDescriptorClose (244 samples, 0.08%)</title><rect x="97.9632%" y="821" width="0.0803%" height="15" fill="rgb(221,31,36)" fg:x="297810" fg:w="244"/><text x="98.2132%" y="831.50"></text></g><g><title>JNU_GetStringPlatformChars (64 samples, 0.02%)</title><rect x="98.0447%" y="805" width="0.0211%" height="15" fill="rgb(215,118,52)" fg:x="298058" fg:w="64"/><text x="98.2947%" y="815.50"></text></g><g><title>___fxstat64 (32 samples, 0.01%)</title><rect x="98.0721%" y="805" width="0.0105%" height="15" fill="rgb(241,151,27)" fg:x="298141" fg:w="32"/><text x="98.3221%" y="815.50"></text></g><g><title>__alloc_file (42 samples, 0.01%)</title><rect x="98.1069%" y="661" width="0.0138%" height="15" fill="rgb(253,51,3)" fg:x="298247" fg:w="42"/><text x="98.3569%" y="671.50"></text></g><g><title>alloc_empty_file (46 samples, 0.02%)</title><rect x="98.1059%" y="677" width="0.0151%" height="15" fill="rgb(216,201,24)" fg:x="298244" fg:w="46"/><text x="98.3559%" y="687.50"></text></g><g><title>do_dentry_open (39 samples, 0.01%)</title><rect x="98.1253%" y="645" width="0.0128%" height="15" fill="rgb(231,107,4)" fg:x="298303" fg:w="39"/><text x="98.3753%" y="655.50"></text></g><g><title>do_open (51 samples, 0.02%)</title><rect x="98.1221%" y="677" width="0.0168%" height="15" fill="rgb(243,97,54)" fg:x="298293" fg:w="51"/><text x="98.3721%" y="687.50"></text></g><g><title>vfs_open (45 samples, 0.01%)</title><rect x="98.1240%" y="661" width="0.0148%" height="15" fill="rgb(221,32,51)" fg:x="298299" fg:w="45"/><text x="98.3740%" y="671.50"></text></g><g><title>lookup_fast (34 samples, 0.01%)</title><rect x="98.1510%" y="645" width="0.0112%" height="15" fill="rgb(218,171,35)" fg:x="298381" fg:w="34"/><text x="98.4010%" y="655.50"></text></g><g><title>__d_lookup_rcu (34 samples, 0.01%)</title><rect x="98.1510%" y="629" width="0.0112%" height="15" fill="rgb(214,20,53)" fg:x="298381" fg:w="34"/><text x="98.4010%" y="639.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (86 samples, 0.03%)</title><rect x="98.1395%" y="677" width="0.0283%" height="15" fill="rgb(239,9,52)" fg:x="298346" fg:w="86"/><text x="98.3895%" y="687.50"></text></g><g><title>walk_component (56 samples, 0.02%)</title><rect x="98.1494%" y="661" width="0.0184%" height="15" fill="rgb(215,114,45)" fg:x="298376" fg:w="56"/><text x="98.3994%" y="671.50"></text></g><g><title>btrfs_create (38 samples, 0.01%)</title><rect x="98.1707%" y="645" width="0.0125%" height="15" fill="rgb(208,118,9)" fg:x="298441" fg:w="38"/><text x="98.4207%" y="655.50"></text></g><g><title>lookup_open.isra.0 (41 samples, 0.01%)</title><rect x="98.1707%" y="661" width="0.0135%" height="15" fill="rgb(235,7,39)" fg:x="298441" fg:w="41"/><text x="98.4207%" y="671.50"></text></g><g><title>open_last_lookups (50 samples, 0.02%)</title><rect x="98.1681%" y="677" width="0.0164%" height="15" fill="rgb(243,225,15)" fg:x="298433" fg:w="50"/><text x="98.4181%" y="687.50"></text></g><g><title>path_openat (252 samples, 0.08%)</title><rect x="98.1053%" y="693" width="0.0829%" height="15" fill="rgb(225,216,18)" fg:x="298242" fg:w="252"/><text x="98.3553%" y="703.50"></text></g><g><title>do_filp_open (262 samples, 0.09%)</title><rect x="98.1030%" y="709" width="0.0862%" height="15" fill="rgb(233,36,38)" fg:x="298235" fg:w="262"/><text x="98.3530%" y="719.50"></text></g><g><title>do_sys_openat2 (305 samples, 0.10%)</title><rect x="98.1017%" y="725" width="0.1003%" height="15" fill="rgb(239,88,23)" fg:x="298231" fg:w="305"/><text x="98.3517%" y="735.50"></text></g><g><title>__x64_sys_openat (317 samples, 0.10%)</title><rect x="98.0987%" y="741" width="0.1043%" height="15" fill="rgb(219,181,35)" fg:x="298222" fg:w="317"/><text x="98.3487%" y="751.50"></text></g><g><title>[[falcon_kal]] (31 samples, 0.01%)</title><rect x="98.2191%" y="645" width="0.0102%" height="15" fill="rgb(215,18,46)" fg:x="298588" fg:w="31"/><text x="98.4691%" y="655.50"></text></g><g><title>down_read (31 samples, 0.01%)</title><rect x="98.2191%" y="629" width="0.0102%" height="15" fill="rgb(241,38,11)" fg:x="298588" fg:w="31"/><text x="98.4691%" y="639.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (49 samples, 0.02%)</title><rect x="98.2145%" y="677" width="0.0161%" height="15" fill="rgb(248,169,45)" fg:x="298574" fg:w="49"/><text x="98.4645%" y="687.50"></text></g><g><title>cshook_security_inode_free_security (40 samples, 0.01%)</title><rect x="98.2174%" y="661" width="0.0132%" height="15" fill="rgb(239,50,49)" fg:x="298583" fg:w="40"/><text x="98.4674%" y="671.50"></text></g><g><title>cshook_security_file_free_security (53 samples, 0.02%)</title><rect x="98.2145%" y="693" width="0.0174%" height="15" fill="rgb(231,96,31)" fg:x="298574" fg:w="53"/><text x="98.4645%" y="703.50"></text></g><g><title>cshook_security_file_free_security (74 samples, 0.02%)</title><rect x="98.2079%" y="725" width="0.0243%" height="15" fill="rgb(224,193,37)" fg:x="298554" fg:w="74"/><text x="98.4579%" y="735.50"></text></g><g><title>cshook_security_file_free_security (70 samples, 0.02%)</title><rect x="98.2092%" y="709" width="0.0230%" height="15" fill="rgb(227,153,50)" fg:x="298558" fg:w="70"/><text x="98.4592%" y="719.50"></text></g><g><title>enqueue_task (36 samples, 0.01%)</title><rect x="98.2615%" y="565" width="0.0118%" height="15" fill="rgb(249,228,3)" fg:x="298717" fg:w="36"/><text x="98.5115%" y="575.50"></text></g><g><title>ttwu_do_activate (49 samples, 0.02%)</title><rect x="98.2615%" y="581" width="0.0161%" height="15" fill="rgb(219,164,43)" fg:x="298717" fg:w="49"/><text x="98.5115%" y="591.50"></text></g><g><title>complete (99 samples, 0.03%)</title><rect x="98.2467%" y="645" width="0.0326%" height="15" fill="rgb(216,45,41)" fg:x="298672" fg:w="99"/><text x="98.4967%" y="655.50"></text></g><g><title>swake_up_locked (97 samples, 0.03%)</title><rect x="98.2474%" y="629" width="0.0319%" height="15" fill="rgb(210,226,51)" fg:x="298674" fg:w="97"/><text x="98.4974%" y="639.50"></text></g><g><title>wake_up_process (92 samples, 0.03%)</title><rect x="98.2490%" y="613" width="0.0303%" height="15" fill="rgb(209,117,49)" fg:x="298679" fg:w="92"/><text x="98.4990%" y="623.50"></text></g><g><title>try_to_wake_up (90 samples, 0.03%)</title><rect x="98.2497%" y="597" width="0.0296%" height="15" fill="rgb(206,196,24)" fg:x="298681" fg:w="90"/><text x="98.4997%" y="607.50"></text></g><g><title>[[falcon_kal]] (101 samples, 0.03%)</title><rect x="98.2464%" y="661" width="0.0332%" height="15" fill="rgb(253,218,3)" fg:x="298671" fg:w="101"/><text x="98.4964%" y="671.50"></text></g><g><title>_ZdlPv (118 samples, 0.04%)</title><rect x="98.2438%" y="693" width="0.0388%" height="15" fill="rgb(252,166,2)" fg:x="298663" fg:w="118"/><text x="98.4938%" y="703.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (112 samples, 0.04%)</title><rect x="98.2457%" y="677" width="0.0368%" height="15" fill="rgb(236,218,26)" fg:x="298669" fg:w="112"/><text x="98.4957%" y="687.50"></text></g><g><title>_ZdlPv (137 samples, 0.05%)</title><rect x="98.2405%" y="709" width="0.0451%" height="15" fill="rgb(254,84,19)" fg:x="298653" fg:w="137"/><text x="98.4905%" y="719.50"></text></g><g><title>prepend_path (32 samples, 0.01%)</title><rect x="98.2931%" y="661" width="0.0105%" height="15" fill="rgb(219,137,29)" fg:x="298813" fg:w="32"/><text x="98.5431%" y="671.50"></text></g><g><title>d_path (35 samples, 0.01%)</title><rect x="98.2924%" y="677" width="0.0115%" height="15" fill="rgb(227,47,52)" fg:x="298811" fg:w="35"/><text x="98.5424%" y="687.50"></text></g><g><title>[[falcon_kal]] (51 samples, 0.02%)</title><rect x="98.2888%" y="693" width="0.0168%" height="15" fill="rgb(229,167,24)" fg:x="298800" fg:w="51"/><text x="98.5388%" y="703.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (83 samples, 0.03%)</title><rect x="98.2862%" y="709" width="0.0273%" height="15" fill="rgb(233,164,1)" fg:x="298792" fg:w="83"/><text x="98.5362%" y="719.50"></text></g><g><title>cshook_systemcalltable_post_openat (351 samples, 0.12%)</title><rect x="98.2043%" y="741" width="0.1155%" height="15" fill="rgb(218,88,48)" fg:x="298543" fg:w="351"/><text x="98.4543%" y="751.50"></text></g><g><title>fshook_syscalltable_pre_lchown (262 samples, 0.09%)</title><rect x="98.2336%" y="725" width="0.0862%" height="15" fill="rgb(226,214,24)" fg:x="298632" fg:w="262"/><text x="98.4836%" y="735.50"></text></g><g><title>do_syscall_64 (719 samples, 0.24%)</title><rect x="98.0885%" y="773" width="0.2365%" height="15" fill="rgb(233,29,12)" fg:x="298191" fg:w="719"/><text x="98.3385%" y="783.50"></text></g><g><title>unload_network_ops_symbols (692 samples, 0.23%)</title><rect x="98.0974%" y="757" width="0.2276%" height="15" fill="rgb(219,120,34)" fg:x="298218" fg:w="692"/><text x="98.3474%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (721 samples, 0.24%)</title><rect x="98.0882%" y="789" width="0.2372%" height="15" fill="rgb(226,78,44)" fg:x="298190" fg:w="721"/><text x="98.3382%" y="799.50"></text></g><g><title>__libc_open64 (737 samples, 0.24%)</title><rect x="98.0832%" y="805" width="0.2424%" height="15" fill="rgb(240,15,48)" fg:x="298175" fg:w="737"/><text x="98.3332%" y="815.50"></text></g><g><title>fileOpen (879 samples, 0.29%)</title><rect x="98.0434%" y="821" width="0.2891%" height="15" fill="rgb(253,176,7)" fg:x="298054" fg:w="879"/><text x="98.2934%" y="831.50"></text></g><g><title>jni_IsAssignableFrom (59 samples, 0.02%)</title><rect x="98.3388%" y="821" width="0.0194%" height="15" fill="rgb(206,166,28)" fg:x="298952" fg:w="59"/><text x="98.5888%" y="831.50"></text></g><g><title>os::javaTimeNanos (90 samples, 0.03%)</title><rect x="98.3609%" y="821" width="0.0296%" height="15" fill="rgb(241,53,51)" fg:x="299019" fg:w="90"/><text x="98.6109%" y="831.50"></text></g><g><title>__GI___clock_gettime (84 samples, 0.03%)</title><rect x="98.3628%" y="805" width="0.0276%" height="15" fill="rgb(249,112,30)" fg:x="299025" fg:w="84"/><text x="98.6128%" y="815.50"></text></g><g><title>sync_regs (111 samples, 0.04%)</title><rect x="98.3924%" y="821" width="0.0365%" height="15" fill="rgb(217,85,30)" fg:x="299115" fg:w="111"/><text x="98.6424%" y="831.50"></text></g><g><title>[perf-720743.map] (126,949 samples, 41.76%)</title><rect x="56.6704%" y="837" width="41.7593%" height="15" fill="rgb(233,49,7)" fg:x="172279" fg:w="126949"/><text x="56.9204%" y="847.50">[perf-720743.map]</text></g><g><title>Deoptimization::create_vframeArray (54 samples, 0.02%)</title><rect x="98.4349%" y="805" width="0.0178%" height="15" fill="rgb(234,109,9)" fg:x="299244" fg:w="54"/><text x="98.6849%" y="815.50"></text></g><g><title>vframeArray::allocate (44 samples, 0.01%)</title><rect x="98.4382%" y="789" width="0.0145%" height="15" fill="rgb(253,95,22)" fg:x="299254" fg:w="44"/><text x="98.6882%" y="799.50"></text></g><g><title>Deoptimization::fetch_unroll_info_helper (81 samples, 0.03%)</title><rect x="98.4309%" y="821" width="0.0266%" height="15" fill="rgb(233,176,25)" fg:x="299232" fg:w="81"/><text x="98.6809%" y="831.50"></text></g><g><title>Runtime1::counter_overflow (31 samples, 0.01%)</title><rect x="98.4642%" y="821" width="0.0102%" height="15" fill="rgb(236,33,39)" fg:x="299333" fg:w="31"/><text x="98.7142%" y="831.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (45 samples, 0.01%)</title><rect x="98.4836%" y="821" width="0.0148%" height="15" fill="rgb(223,226,42)" fg:x="299392" fg:w="45"/><text x="98.7336%" y="831.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (45 samples, 0.01%)</title><rect x="98.4836%" y="805" width="0.0148%" height="15" fill="rgb(216,99,33)" fg:x="299392" fg:w="45"/><text x="98.7336%" y="815.50"></text></g><g><title>LinkResolver::resolve_method_statically (58 samples, 0.02%)</title><rect x="98.5408%" y="773" width="0.0191%" height="15" fill="rgb(235,84,23)" fg:x="299566" fg:w="58"/><text x="98.7908%" y="783.50"></text></g><g><title>Bytecode_invoke::static_target (62 samples, 0.02%)</title><rect x="98.5401%" y="789" width="0.0204%" height="15" fill="rgb(232,2,27)" fg:x="299564" fg:w="62"/><text x="98.7901%" y="799.50"></text></g><g><title>LinkResolver::resolve_invoke (47 samples, 0.02%)</title><rect x="98.5619%" y="789" width="0.0155%" height="15" fill="rgb(241,23,22)" fg:x="299630" fg:w="47"/><text x="98.8119%" y="799.50"></text></g><g><title>OopMapStream::find_next (36 samples, 0.01%)</title><rect x="98.5990%" y="757" width="0.0118%" height="15" fill="rgb(211,73,27)" fg:x="299743" fg:w="36"/><text x="98.8490%" y="767.50"></text></g><g><title>frame::sender (77 samples, 0.03%)</title><rect x="98.5859%" y="789" width="0.0253%" height="15" fill="rgb(235,109,49)" fg:x="299703" fg:w="77"/><text x="98.8359%" y="799.50"></text></g><g><title>OopMapSet::update_register_map (72 samples, 0.02%)</title><rect x="98.5875%" y="773" width="0.0237%" height="15" fill="rgb(230,99,29)" fg:x="299708" fg:w="72"/><text x="98.8375%" y="783.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (222 samples, 0.07%)</title><rect x="98.5388%" y="805" width="0.0730%" height="15" fill="rgb(245,199,7)" fg:x="299560" fg:w="222"/><text x="98.7888%" y="815.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (358 samples, 0.12%)</title><rect x="98.5063%" y="821" width="0.1178%" height="15" fill="rgb(217,179,10)" fg:x="299461" fg:w="358"/><text x="98.7563%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (161 samples, 0.05%)</title><rect x="98.6355%" y="517" width="0.0530%" height="15" fill="rgb(254,99,47)" fg:x="299854" fg:w="161"/><text x="98.8855%" y="527.50"></text></g><g><title>x86_pmu_enable (155 samples, 0.05%)</title><rect x="98.6375%" y="501" width="0.0510%" height="15" fill="rgb(251,121,7)" fg:x="299860" fg:w="155"/><text x="98.8875%" y="511.50"></text></g><g><title>intel_pmu_enable_all (154 samples, 0.05%)</title><rect x="98.6378%" y="485" width="0.0507%" height="15" fill="rgb(250,177,26)" fg:x="299861" fg:w="154"/><text x="98.8878%" y="495.50"></text></g><g><title>native_write_msr (152 samples, 0.05%)</title><rect x="98.6385%" y="469" width="0.0500%" height="15" fill="rgb(232,88,15)" fg:x="299863" fg:w="152"/><text x="98.8885%" y="479.50"></text></g><g><title>finish_task_switch.isra.0 (171 samples, 0.06%)</title><rect x="98.6336%" y="533" width="0.0562%" height="15" fill="rgb(251,54,54)" fg:x="299848" fg:w="171"/><text x="98.8836%" y="543.50"></text></g><g><title>__x64_sys_futex (186 samples, 0.06%)</title><rect x="98.6309%" y="629" width="0.0612%" height="15" fill="rgb(208,177,15)" fg:x="299840" fg:w="186"/><text x="98.8809%" y="639.50"></text></g><g><title>do_futex (186 samples, 0.06%)</title><rect x="98.6309%" y="613" width="0.0612%" height="15" fill="rgb(205,97,32)" fg:x="299840" fg:w="186"/><text x="98.8809%" y="623.50"></text></g><g><title>futex_wait (186 samples, 0.06%)</title><rect x="98.6309%" y="597" width="0.0612%" height="15" fill="rgb(217,192,13)" fg:x="299840" fg:w="186"/><text x="98.8809%" y="607.50"></text></g><g><title>futex_wait_queue_me (184 samples, 0.06%)</title><rect x="98.6316%" y="581" width="0.0605%" height="15" fill="rgb(215,163,41)" fg:x="299842" fg:w="184"/><text x="98.8816%" y="591.50"></text></g><g><title>schedule (183 samples, 0.06%)</title><rect x="98.6319%" y="565" width="0.0602%" height="15" fill="rgb(246,83,29)" fg:x="299843" fg:w="183"/><text x="98.8819%" y="575.50"></text></g><g><title>__schedule (183 samples, 0.06%)</title><rect x="98.6319%" y="549" width="0.0602%" height="15" fill="rgb(219,2,45)" fg:x="299843" fg:w="183"/><text x="98.8819%" y="559.50"></text></g><g><title>do_syscall_64 (194 samples, 0.06%)</title><rect x="98.6309%" y="645" width="0.0638%" height="15" fill="rgb(242,215,33)" fg:x="299840" fg:w="194"/><text x="98.8809%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (196 samples, 0.06%)</title><rect x="98.6306%" y="661" width="0.0645%" height="15" fill="rgb(217,1,6)" fg:x="299839" fg:w="196"/><text x="98.8806%" y="671.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (198 samples, 0.07%)</title><rect x="98.6303%" y="709" width="0.0651%" height="15" fill="rgb(207,85,52)" fg:x="299838" fg:w="198"/><text x="98.8803%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common (198 samples, 0.07%)</title><rect x="98.6303%" y="693" width="0.0651%" height="15" fill="rgb(231,171,19)" fg:x="299838" fg:w="198"/><text x="98.8803%" y="703.50"></text></g><g><title>__futex_abstimed_wait_common64 (198 samples, 0.07%)</title><rect x="98.6303%" y="677" width="0.0651%" height="15" fill="rgb(207,128,4)" fg:x="299838" fg:w="198"/><text x="98.8803%" y="687.50"></text></g><g><title>___pthread_cond_wait (203 samples, 0.07%)</title><rect x="98.6296%" y="741" width="0.0668%" height="15" fill="rgb(219,208,4)" fg:x="299836" fg:w="203"/><text x="98.8796%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (203 samples, 0.07%)</title><rect x="98.6296%" y="725" width="0.0668%" height="15" fill="rgb(235,161,42)" fg:x="299836" fg:w="203"/><text x="98.8796%" y="735.50"></text></g><g><title>Monitor::lock_without_safepoint_check (217 samples, 0.07%)</title><rect x="98.6263%" y="789" width="0.0714%" height="15" fill="rgb(247,218,18)" fg:x="299826" fg:w="217"/><text x="98.8763%" y="799.50"></text></g><g><title>Monitor::ILock (217 samples, 0.07%)</title><rect x="98.6263%" y="773" width="0.0714%" height="15" fill="rgb(232,114,51)" fg:x="299826" fg:w="217"/><text x="98.8763%" y="783.50"></text></g><g><title>os::PlatformEvent::park (209 samples, 0.07%)</title><rect x="98.6290%" y="757" width="0.0687%" height="15" fill="rgb(222,95,3)" fg:x="299834" fg:w="209"/><text x="98.8790%" y="767.50"></text></g><g><title>SafepointSynchronize::block (238 samples, 0.08%)</title><rect x="98.6257%" y="805" width="0.0783%" height="15" fill="rgb(240,65,29)" fg:x="299824" fg:w="238"/><text x="98.8757%" y="815.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (249 samples, 0.08%)</title><rect x="98.6240%" y="821" width="0.0819%" height="15" fill="rgb(249,209,20)" fg:x="299819" fg:w="249"/><text x="98.8740%" y="831.50"></text></g><g><title>__fget_light (56 samples, 0.02%)</title><rect x="98.8118%" y="661" width="0.0184%" height="15" fill="rgb(241,48,37)" fg:x="300390" fg:w="56"/><text x="99.0618%" y="671.50"></text></g><g><title>__fget_files (55 samples, 0.02%)</title><rect x="98.8122%" y="645" width="0.0181%" height="15" fill="rgb(230,140,42)" fg:x="300391" fg:w="55"/><text x="99.0622%" y="655.50"></text></g><g><title>__fdget_pos (81 samples, 0.03%)</title><rect x="98.8089%" y="677" width="0.0266%" height="15" fill="rgb(230,176,45)" fg:x="300381" fg:w="81"/><text x="99.0589%" y="687.50"></text></g><g><title>copy_page_to_iter (67 samples, 0.02%)</title><rect x="98.9372%" y="613" width="0.0220%" height="15" fill="rgb(245,112,21)" fg:x="300771" fg:w="67"/><text x="99.1872%" y="623.50"></text></g><g><title>copy_user_enhanced_fast_string (808 samples, 0.27%)</title><rect x="98.9592%" y="613" width="0.2658%" height="15" fill="rgb(207,183,35)" fg:x="300838" fg:w="808"/><text x="99.2092%" y="623.50"></text></g><g><title>xas_load (81 samples, 0.03%)</title><rect x="99.2701%" y="581" width="0.0266%" height="15" fill="rgb(227,44,33)" fg:x="301783" fg:w="81"/><text x="99.5201%" y="591.50"></text></g><g><title>filemap_get_read_batch (188 samples, 0.06%)</title><rect x="99.2365%" y="597" width="0.0618%" height="15" fill="rgb(246,120,21)" fg:x="301681" fg:w="188"/><text x="99.4865%" y="607.50"></text></g><g><title>__page_cache_alloc (32 samples, 0.01%)</title><rect x="99.3033%" y="549" width="0.0105%" height="15" fill="rgb(235,57,52)" fg:x="301884" fg:w="32"/><text x="99.5533%" y="559.50"></text></g><g><title>alloc_pages (32 samples, 0.01%)</title><rect x="99.3033%" y="533" width="0.0105%" height="15" fill="rgb(238,84,10)" fg:x="301884" fg:w="32"/><text x="99.5533%" y="543.50"></text></g><g><title>__add_to_page_cache_locked (44 samples, 0.01%)</title><rect x="99.3138%" y="533" width="0.0145%" height="15" fill="rgb(251,200,32)" fg:x="301916" fg:w="44"/><text x="99.5638%" y="543.50"></text></g><g><title>add_to_page_cache_lru (90 samples, 0.03%)</title><rect x="99.3138%" y="549" width="0.0296%" height="15" fill="rgb(247,159,13)" fg:x="301916" fg:w="90"/><text x="99.5638%" y="559.50"></text></g><g><title>read_pages (40 samples, 0.01%)</title><rect x="99.3434%" y="549" width="0.0132%" height="15" fill="rgb(238,64,4)" fg:x="302006" fg:w="40"/><text x="99.5934%" y="559.50"></text></g><g><title>btrfs_readahead (36 samples, 0.01%)</title><rect x="99.3447%" y="533" width="0.0118%" height="15" fill="rgb(221,131,51)" fg:x="302010" fg:w="36"/><text x="99.5947%" y="543.50"></text></g><g><title>extent_readahead (36 samples, 0.01%)</title><rect x="99.3447%" y="517" width="0.0118%" height="15" fill="rgb(242,5,29)" fg:x="302010" fg:w="36"/><text x="99.5947%" y="527.50"></text></g><g><title>page_cache_async_ra (175 samples, 0.06%)</title><rect x="99.3023%" y="597" width="0.0576%" height="15" fill="rgb(214,130,32)" fg:x="301881" fg:w="175"/><text x="99.5523%" y="607.50"></text></g><g><title>ondemand_readahead (175 samples, 0.06%)</title><rect x="99.3023%" y="581" width="0.0576%" height="15" fill="rgb(244,210,16)" fg:x="301881" fg:w="175"/><text x="99.5523%" y="591.50"></text></g><g><title>page_cache_ra_unbounded (174 samples, 0.06%)</title><rect x="99.3026%" y="565" width="0.0572%" height="15" fill="rgb(234,48,26)" fg:x="301882" fg:w="174"/><text x="99.5526%" y="575.50"></text></g><g><title>page_cache_sync_ra (32 samples, 0.01%)</title><rect x="99.3599%" y="597" width="0.0105%" height="15" fill="rgb(231,82,38)" fg:x="302056" fg:w="32"/><text x="99.6099%" y="607.50"></text></g><g><title>ondemand_readahead (32 samples, 0.01%)</title><rect x="99.3599%" y="581" width="0.0105%" height="15" fill="rgb(254,128,41)" fg:x="302056" fg:w="32"/><text x="99.6099%" y="591.50"></text></g><g><title>page_cache_ra_unbounded (31 samples, 0.01%)</title><rect x="99.3602%" y="565" width="0.0102%" height="15" fill="rgb(212,73,49)" fg:x="302057" fg:w="31"/><text x="99.6102%" y="575.50"></text></g><g><title>filemap_get_pages (444 samples, 0.15%)</title><rect x="99.2260%" y="613" width="0.1461%" height="15" fill="rgb(205,62,54)" fg:x="301649" fg:w="444"/><text x="99.4760%" y="623.50"></text></g><g><title>__mod_lruvec_state (36 samples, 0.01%)</title><rect x="99.4053%" y="549" width="0.0118%" height="15" fill="rgb(228,0,8)" fg:x="302194" fg:w="36"/><text x="99.6553%" y="559.50"></text></g><g><title>__activate_page.part.0 (91 samples, 0.03%)</title><rect x="99.3938%" y="565" width="0.0299%" height="15" fill="rgb(251,28,17)" fg:x="302159" fg:w="91"/><text x="99.6438%" y="575.50"></text></g><g><title>__activate_page (97 samples, 0.03%)</title><rect x="99.3938%" y="581" width="0.0319%" height="15" fill="rgb(238,105,27)" fg:x="302159" fg:w="97"/><text x="99.6438%" y="591.50"></text></g><g><title>pagevec_lru_move_fn (137 samples, 0.05%)</title><rect x="99.3852%" y="597" width="0.0451%" height="15" fill="rgb(237,216,33)" fg:x="302133" fg:w="137"/><text x="99.6352%" y="607.50"></text></g><g><title>mark_page_accessed (262 samples, 0.09%)</title><rect x="99.3734%" y="613" width="0.0862%" height="15" fill="rgb(229,228,25)" fg:x="302097" fg:w="262"/><text x="99.6234%" y="623.50"></text></g><g><title>workingset_activation (88 samples, 0.03%)</title><rect x="99.4306%" y="597" width="0.0289%" height="15" fill="rgb(233,75,23)" fg:x="302271" fg:w="88"/><text x="99.6806%" y="607.50"></text></g><g><title>workingset_age_nonresident (67 samples, 0.02%)</title><rect x="99.4375%" y="581" width="0.0220%" height="15" fill="rgb(231,207,16)" fg:x="302292" fg:w="67"/><text x="99.6875%" y="591.50"></text></g><g><title>atime_needs_update (47 samples, 0.02%)</title><rect x="99.4605%" y="597" width="0.0155%" height="15" fill="rgb(231,191,45)" fg:x="302362" fg:w="47"/><text x="99.7105%" y="607.50"></text></g><g><title>touch_atime (65 samples, 0.02%)</title><rect x="99.4599%" y="613" width="0.0214%" height="15" fill="rgb(224,133,17)" fg:x="302360" fg:w="65"/><text x="99.7099%" y="623.50"></text></g><g><title>filemap_read (1,770 samples, 0.58%)</title><rect x="98.8993%" y="629" width="0.5822%" height="15" fill="rgb(209,178,27)" fg:x="300656" fg:w="1770"/><text x="99.1493%" y="639.50"></text></g><g><title>btrfs_file_read_iter (1,799 samples, 0.59%)</title><rect x="98.8918%" y="645" width="0.5918%" height="15" fill="rgb(218,37,11)" fg:x="300633" fg:w="1799"/><text x="99.1418%" y="655.50"></text></g><g><title>new_sync_read (1,847 samples, 0.61%)</title><rect x="98.8767%" y="661" width="0.6076%" height="15" fill="rgb(251,226,25)" fg:x="300587" fg:w="1847"/><text x="99.1267%" y="671.50"></text></g><g><title>apparmor_file_permission (53 samples, 0.02%)</title><rect x="99.4977%" y="629" width="0.0174%" height="15" fill="rgb(209,222,27)" fg:x="302475" fg:w="53"/><text x="99.7477%" y="639.50"></text></g><g><title>fsnotify_perm.part.0 (41 samples, 0.01%)</title><rect x="99.5151%" y="629" width="0.0135%" height="15" fill="rgb(238,22,21)" fg:x="302528" fg:w="41"/><text x="99.7651%" y="639.50"></text></g><g><title>pinnedhook_security_file_permission (59 samples, 0.02%)</title><rect x="99.5286%" y="629" width="0.0194%" height="15" fill="rgb(233,161,25)" fg:x="302569" fg:w="59"/><text x="99.7786%" y="639.50"></text></g><g><title>cshook_security_file_permission (42 samples, 0.01%)</title><rect x="99.5342%" y="613" width="0.0138%" height="15" fill="rgb(226,122,53)" fg:x="302586" fg:w="42"/><text x="99.7842%" y="623.50"></text></g><g><title>rw_verify_area (199 samples, 0.07%)</title><rect x="99.4842%" y="661" width="0.0655%" height="15" fill="rgb(220,123,17)" fg:x="302434" fg:w="199"/><text x="99.7342%" y="671.50"></text></g><g><title>security_file_permission (187 samples, 0.06%)</title><rect x="99.4882%" y="645" width="0.0615%" height="15" fill="rgb(230,224,35)" fg:x="302446" fg:w="187"/><text x="99.7382%" y="655.50"></text></g><g><title>ksys_read (2,259 samples, 0.74%)</title><rect x="98.8076%" y="693" width="0.7431%" height="15" fill="rgb(246,83,8)" fg:x="300377" fg:w="2259"/><text x="99.0576%" y="703.50"></text></g><g><title>vfs_read (2,107 samples, 0.69%)</title><rect x="98.8576%" y="677" width="0.6931%" height="15" fill="rgb(230,214,17)" fg:x="300529" fg:w="2107"/><text x="99.1076%" y="687.50"></text></g><g><title>__x64_sys_read (2,267 samples, 0.75%)</title><rect x="98.8056%" y="709" width="0.7457%" height="15" fill="rgb(222,97,18)" fg:x="300371" fg:w="2267"/><text x="99.0556%" y="719.50"></text></g><g><title>do_syscall_64 (2,435 samples, 0.80%)</title><rect x="98.7622%" y="741" width="0.8010%" height="15" fill="rgb(206,79,1)" fg:x="300239" fg:w="2435"/><text x="99.0122%" y="751.50"></text></g><g><title>unload_network_ops_symbols (2,334 samples, 0.77%)</title><rect x="98.7954%" y="725" width="0.7678%" height="15" fill="rgb(214,121,34)" fg:x="300340" fg:w="2334"/><text x="99.0454%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,452 samples, 0.81%)</title><rect x="98.7592%" y="757" width="0.8066%" height="15" fill="rgb(249,199,46)" fg:x="300230" fg:w="2452"/><text x="99.0092%" y="767.50"></text></g><g><title>__GI___libc_read (2,556 samples, 0.84%)</title><rect x="98.7309%" y="789" width="0.8408%" height="15" fill="rgb(214,222,46)" fg:x="300144" fg:w="2556"/><text x="98.9809%" y="799.50"></text></g><g><title>__GI___libc_read (2,545 samples, 0.84%)</title><rect x="98.7345%" y="773" width="0.8372%" height="15" fill="rgb(248,168,30)" fg:x="300155" fg:w="2545"/><text x="98.9845%" y="783.50"></text></g><g><title>handleRead (2,579 samples, 0.85%)</title><rect x="98.7267%" y="805" width="0.8483%" height="15" fill="rgb(226,14,28)" fg:x="300131" fg:w="2579"/><text x="98.9767%" y="815.50"></text></g><g><title>jni_GetArrayLength (78 samples, 0.03%)</title><rect x="99.5750%" y="805" width="0.0257%" height="15" fill="rgb(253,123,1)" fg:x="302710" fg:w="78"/><text x="99.8250%" y="815.50"></text></g><g><title>ThreadStateTransition::transition_from_native (39 samples, 0.01%)</title><rect x="99.5878%" y="789" width="0.0128%" height="15" fill="rgb(225,24,42)" fg:x="302749" fg:w="39"/><text x="99.8378%" y="799.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (40 samples, 0.01%)</title><rect x="99.6184%" y="789" width="0.0132%" height="15" fill="rgb(216,161,37)" fg:x="302842" fg:w="40"/><text x="99.8684%" y="799.50"></text></g><g><title>JNIHandles::make_local (44 samples, 0.01%)</title><rect x="99.6401%" y="789" width="0.0145%" height="15" fill="rgb(251,164,26)" fg:x="302908" fg:w="44"/><text x="99.8901%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (42 samples, 0.01%)</title><rect x="99.6549%" y="789" width="0.0138%" height="15" fill="rgb(219,177,3)" fg:x="302953" fg:w="42"/><text x="99.9049%" y="799.50"></text></g><g><title>jni_GetObjectField (231 samples, 0.08%)</title><rect x="99.6007%" y="805" width="0.0760%" height="15" fill="rgb(222,65,0)" fg:x="302788" fg:w="231"/><text x="99.8507%" y="815.50"></text></g><g><title>[libc.so.6] (307 samples, 0.10%)</title><rect x="99.7016%" y="789" width="0.1010%" height="15" fill="rgb(223,69,54)" fg:x="303095" fg:w="307"/><text x="99.9516%" y="799.50"></text></g><g><title>check_bounds (39 samples, 0.01%)</title><rect x="99.8026%" y="789" width="0.0128%" height="15" fill="rgb(235,30,27)" fg:x="303402" fg:w="39"/><text x="100.0526%" y="799.50"></text></g><g><title>readBytes (3,365 samples, 1.11%)</title><rect x="98.7102%" y="821" width="1.1069%" height="15" fill="rgb(220,183,50)" fg:x="300081" fg:w="3365"/><text x="98.9602%" y="831.50"></text></g><g><title>jni_SetByteArrayRegion (427 samples, 0.14%)</title><rect x="99.6766%" y="805" width="0.1405%" height="15" fill="rgb(248,198,15)" fg:x="303019" fg:w="427"/><text x="99.9266%" y="815.50"></text></g><g><title>[unknown] (4,236 samples, 1.39%)</title><rect x="98.4296%" y="837" width="1.3934%" height="15" fill="rgb(222,211,4)" fg:x="299228" fg:w="4236"/><text x="98.6796%" y="847.50"></text></g><g><title>__clone3 (71 samples, 0.02%)</title><rect x="99.8230%" y="837" width="0.0234%" height="15" fill="rgb(214,102,34)" fg:x="303464" fg:w="71"/><text x="100.0730%" y="847.50"></text></g><g><title>start_thread (60 samples, 0.02%)</title><rect x="99.8266%" y="821" width="0.0197%" height="15" fill="rgb(245,92,5)" fg:x="303475" fg:w="60"/><text x="100.0766%" y="831.50"></text></g><g><title>thread_native_entry (43 samples, 0.01%)</title><rect x="99.8322%" y="805" width="0.0141%" height="15" fill="rgb(252,72,51)" fg:x="303492" fg:w="43"/><text x="100.0822%" y="815.50"></text></g><g><title>asm_exc_page_fault (237 samples, 0.08%)</title><rect x="99.8474%" y="837" width="0.0780%" height="15" fill="rgb(252,208,19)" fg:x="303538" fg:w="237"/><text x="100.0974%" y="847.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (33 samples, 0.01%)</title><rect x="99.9438%" y="837" width="0.0109%" height="15" fill="rgb(211,69,7)" fg:x="303831" fg:w="33"/><text x="100.1938%" y="847.50"></text></g><g><title>skyframe-evalua (134,445 samples, 44.23%)</title><rect x="55.7424%" y="853" width="44.2250%" height="15" fill="rgb(211,27,16)" fg:x="169458" fg:w="134445"/><text x="55.9924%" y="863.50">skyframe-evalua</text></g><g><title>[perf-720743.map] (91 samples, 0.03%)</title><rect x="99.9684%" y="837" width="0.0299%" height="15" fill="rgb(219,216,14)" fg:x="303906" fg:w="91"/><text x="100.2184%" y="847.50"></text></g><g><title>skyframe-invali (98 samples, 0.03%)</title><rect x="99.9674%" y="853" width="0.0322%" height="15" fill="rgb(219,71,8)" fg:x="303903" fg:w="98"/><text x="100.2174%" y="863.50"></text></g><g><title>all (304,002 samples, 100%)</title><rect x="0.0000%" y="869" width="100.0000%" height="15" fill="rgb(223,170,53)" fg:x="0" fg:w="304002"/><text x="0.2500%" y="879.50"></text></g></svg></svg>