491 lines
1.1 MiB
491 lines
1.1 MiB
<?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="1078" onload="init(evt)" viewBox="0 0 1200 1078" 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:monospace; font-size:12px }
|
|
#title { text-anchor:middle; font-size:17px; }
|
|
#matched { text-anchor:end; }
|
|
#search { text-anchor:end; 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, known_font_width;
|
|
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");
|
|
known_font_width = get_monospace_width(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);
|
|
if (!isEdge) {
|
|
svg.removeAttribute("viewBox");
|
|
}
|
|
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.
|
|
update_text_for_elements(frames.children);
|
|
|
|
// Keep search elements at a fixed distance from right edge.
|
|
var svgWidth = svg.width.baseVal.value;
|
|
searchbtn.attributes.x.value = svgWidth - xpad;
|
|
matchedtxt.attributes.x.value = svgWidth - xpad;
|
|
};
|
|
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();
|
|
}, 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 get_monospace_width(frames) {
|
|
// Given the id="frames" element, return the width of text characters if
|
|
// this is a monospace font, otherwise return 0.
|
|
text = find_child(frames.children[0], "text");
|
|
originalContent = text.textContent;
|
|
text.textContent = "!";
|
|
bangWidth = text.getComputedTextLength();
|
|
text.textContent = "W";
|
|
wWidth = text.getComputedTextLength();
|
|
text.textContent = originalContent;
|
|
if (bangWidth === wWidth) {
|
|
return bangWidth;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
function update_text_for_elements(elements) {
|
|
// In order to render quickly in the browser, you want to do one pass of
|
|
// reading attributes, and one pass of mutating attributes. See
|
|
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
|
|
|
|
// Fall back to inefficient calculation, if we're variable-width font.
|
|
// TODO This should be optimized somehow too.
|
|
if (known_font_width === 0) {
|
|
for (var i = 0; i < elements.length; i++) {
|
|
update_text(elements[i]);
|
|
}
|
|
return;
|
|
}
|
|
|
|
var textElemNewAttributes = [];
|
|
for (var i = 0; i < elements.length; i++) {
|
|
var e = elements[i];
|
|
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(/\([^(]*\)$/,"");
|
|
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
|
|
|
|
// Smaller than this size won't fit anything
|
|
if (w < 2 * known_font_width) {
|
|
textElemNewAttributes.push([newX, ""]);
|
|
continue;
|
|
}
|
|
|
|
// Fit in full text width
|
|
if (txt.length * known_font_width < w) {
|
|
textElemNewAttributes.push([newX, txt]);
|
|
continue;
|
|
}
|
|
|
|
var substringLength = Math.floor(w / known_font_width) - 2;
|
|
if (truncate_text_right) {
|
|
// Truncate the right side of the text.
|
|
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
|
|
continue;
|
|
} else {
|
|
// Truncate the left side of the text.
|
|
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
|
|
continue;
|
|
}
|
|
}
|
|
|
|
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
|
|
|
|
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
|
|
for (var i = 0; i < elements.length; i++) {
|
|
var e = elements[i];
|
|
var values = textElemNewAttributes[i];
|
|
var t = find_child(e, "text");
|
|
t.attributes.x.value = values[0];
|
|
t.textContent = values[1];
|
|
}
|
|
}
|
|
|
|
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 (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;
|
|
var to_update_text = [];
|
|
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);
|
|
to_update_text.push(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);
|
|
to_update_text.push(e);
|
|
}
|
|
}
|
|
}
|
|
update_text_for_elements(to_update_text);
|
|
}
|
|
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_for_elements(el);
|
|
}
|
|
// 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="1078" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="1061.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="1061.00"> </text><svg id="frames" x="10" width="1180" total_samples="150258"><g><title>[perf-943567.map] (25 samples, 0.02%)</title><rect x="0.0007%" y="997" width="0.0166%" height="15" fill="rgb(227,0,7)" fg:x="1" fg:w="25"/><text x="0.2507%" y="1007.50"></text></g><g><title>ActionLookupVal (49 samples, 0.03%)</title><rect x="0.0000%" y="1013" width="0.0326%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="49"/><text x="0.2500%" y="1023.50"></text></g><g><title>__GI___clone (23 samples, 0.02%)</title><rect x="0.0173%" y="997" width="0.0153%" height="15" fill="rgb(221,193,54)" fg:x="26" fg:w="23"/><text x="0.2673%" y="1007.50"></text></g><g><title>start_thread (23 samples, 0.02%)</title><rect x="0.0173%" y="981" width="0.0153%" height="15" fill="rgb(248,212,6)" fg:x="26" fg:w="23"/><text x="0.2673%" y="991.50"></text></g><g><title>thread_native_entry (20 samples, 0.01%)</title><rect x="0.0193%" y="965" width="0.0133%" height="15" fill="rgb(208,68,35)" fg:x="29" fg:w="20"/><text x="0.2693%" y="975.50"></text></g><g><title>Thread::call_run (20 samples, 0.01%)</title><rect x="0.0193%" y="949" width="0.0133%" height="15" fill="rgb(232,128,0)" fg:x="29" fg:w="20"/><text x="0.2693%" y="959.50"></text></g><g><title>JavaThread::thread_main_inner (20 samples, 0.01%)</title><rect x="0.0193%" y="933" width="0.0133%" height="15" fill="rgb(207,160,47)" fg:x="29" fg:w="20"/><text x="0.2693%" y="943.50"></text></g><g><title>ThreadsSMRSupport::smr_delete (16 samples, 0.01%)</title><rect x="0.0220%" y="917" width="0.0106%" height="15" fill="rgb(228,23,34)" fg:x="33" fg:w="16"/><text x="0.2720%" y="927.50"></text></g><g><title>_dl_update_slotinfo (110 samples, 0.07%)</title><rect x="0.5890%" y="981" width="0.0732%" height="15" fill="rgb(218,30,26)" fg:x="885" fg:w="110"/><text x="0.8390%" y="991.50"></text></g><g><title>resource_allocate_bytes (19 samples, 0.01%)</title><rect x="0.7374%" y="981" width="0.0126%" height="15" fill="rgb(220,122,19)" fg:x="1108" fg:w="19"/><text x="0.9874%" y="991.50"></text></g><g><title>update_get_addr (30 samples, 0.02%)</title><rect x="0.7607%" y="981" width="0.0200%" height="15" fill="rgb(250,228,42)" fg:x="1143" fg:w="30"/><text x="1.0107%" y="991.50"></text></g><g><title>[anon] (1,081 samples, 0.72%)</title><rect x="0.0632%" y="997" width="0.7194%" height="15" fill="rgb(240,193,28)" fg:x="95" fg:w="1081"/><text x="0.3132%" y="1007.50"></text></g><g><title>[perf-943567.map] (137 samples, 0.09%)</title><rect x="0.7873%" y="997" width="0.0912%" height="15" fill="rgb(216,20,37)" fg:x="1183" fg:w="137"/><text x="1.0373%" y="1007.50"></text></g><g><title>_dl_update_slotinfo (21 samples, 0.01%)</title><rect x="0.9151%" y="981" width="0.0140%" height="15" fill="rgb(206,188,39)" fg:x="1375" fg:w="21"/><text x="1.1651%" y="991.50"></text></g><g><title>[unknown] (91 samples, 0.06%)</title><rect x="0.8785%" y="997" width="0.0606%" height="15" fill="rgb(217,207,13)" fg:x="1320" fg:w="91"/><text x="1.1285%" y="1007.50"></text></g><g><title>CompileBroker::collect_statistics (17 samples, 0.01%)</title><rect x="0.9710%" y="885" width="0.0113%" height="15" fill="rgb(231,73,38)" fg:x="1459" fg:w="17"/><text x="1.2210%" y="895.50"></text></g><g><title>jio_vsnprintf (39 samples, 0.03%)</title><rect x="0.9870%" y="853" width="0.0260%" height="15" fill="rgb(225,20,46)" fg:x="1483" fg:w="39"/><text x="1.2370%" y="863.50"></text></g><g><title>os::vsnprintf (38 samples, 0.03%)</title><rect x="0.9876%" y="837" width="0.0253%" height="15" fill="rgb(210,31,41)" fg:x="1484" fg:w="38"/><text x="1.2376%" y="847.50"></text></g><g><title>__vsnprintf_internal (37 samples, 0.02%)</title><rect x="0.9883%" y="821" width="0.0246%" height="15" fill="rgb(221,200,47)" fg:x="1485" fg:w="37"/><text x="1.2383%" y="831.50"></text></g><g><title>__vfprintf_internal (35 samples, 0.02%)</title><rect x="0.9896%" y="805" width="0.0233%" height="15" fill="rgb(226,26,5)" fg:x="1487" fg:w="35"/><text x="1.2396%" y="815.50"></text></g><g><title>CompileBroker::post_compile (48 samples, 0.03%)</title><rect x="0.9823%" y="885" width="0.0319%" height="15" fill="rgb(249,33,26)" fg:x="1476" fg:w="48"/><text x="1.2323%" y="895.50"></text></g><g><title>StringEventLog::log (46 samples, 0.03%)</title><rect x="0.9836%" y="869" width="0.0306%" height="15" fill="rgb(235,183,28)" fg:x="1478" fg:w="46"/><text x="1.2336%" y="879.50"></text></g><g><title>CompileBroker::set_last_compile (17 samples, 0.01%)</title><rect x="1.0143%" y="885" width="0.0113%" height="15" fill="rgb(221,5,38)" fg:x="1524" fg:w="17"/><text x="1.2643%" y="895.50"></text></g><g><title>Symbol::print_symbol_on (30 samples, 0.02%)</title><rect x="1.0342%" y="853" width="0.0200%" height="15" fill="rgb(247,18,42)" fg:x="1554" fg:w="30"/><text x="1.2842%" y="863.50"></text></g><g><title>Method::print_short_name (55 samples, 0.04%)</title><rect x="1.0276%" y="869" width="0.0366%" height="15" fill="rgb(241,131,45)" fg:x="1544" fg:w="55"/><text x="1.2776%" y="879.50"></text></g><g><title>os::vsnprintf (22 samples, 0.01%)</title><rect x="1.0722%" y="837" width="0.0146%" height="15" fill="rgb(249,31,29)" fg:x="1611" fg:w="22"/><text x="1.3222%" y="847.50"></text></g><g><title>__vsnprintf_internal (22 samples, 0.01%)</title><rect x="1.0722%" y="821" width="0.0146%" height="15" fill="rgb(225,111,53)" fg:x="1611" fg:w="22"/><text x="1.3222%" y="831.50"></text></g><g><title>__vfprintf_internal (21 samples, 0.01%)</title><rect x="1.0728%" y="805" width="0.0140%" height="15" fill="rgb(238,160,17)" fg:x="1612" fg:w="21"/><text x="1.3228%" y="815.50"></text></g><g><title>CompileTask::print (100 samples, 0.07%)</title><rect x="1.0256%" y="885" width="0.0666%" height="15" fill="rgb(214,148,48)" fg:x="1541" fg:w="100"/><text x="1.2756%" y="895.50"></text></g><g><title>outputStream::print (42 samples, 0.03%)</title><rect x="1.0642%" y="869" width="0.0280%" height="15" fill="rgb(232,36,49)" fg:x="1599" fg:w="42"/><text x="1.3142%" y="879.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (42 samples, 0.03%)</title><rect x="1.0642%" y="853" width="0.0280%" height="15" fill="rgb(209,103,24)" fg:x="1599" fg:w="42"/><text x="1.3142%" y="863.50"></text></g><g><title>BlockBegin::iterate_preorder (21 samples, 0.01%)</title><rect x="1.1680%" y="709" width="0.0140%" height="15" fill="rgb(229,88,8)" fg:x="1755" fg:w="21"/><text x="1.4180%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (31 samples, 0.02%)</title><rect x="1.1660%" y="725" width="0.0206%" height="15" fill="rgb(213,181,19)" fg:x="1752" fg:w="31"/><text x="1.4160%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (60 samples, 0.04%)</title><rect x="1.1647%" y="741" width="0.0399%" height="15" fill="rgb(254,191,54)" fg:x="1750" fg:w="60"/><text x="1.4147%" y="751.50"></text></g><g><title>SubstitutionResolver::block_do (27 samples, 0.02%)</title><rect x="1.1866%" y="725" width="0.0180%" height="15" fill="rgb(241,83,37)" fg:x="1783" fg:w="27"/><text x="1.4366%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (104 samples, 0.07%)</title><rect x="1.1607%" y="757" width="0.0692%" height="15" fill="rgb(233,36,39)" fg:x="1744" fg:w="104"/><text x="1.4107%" y="767.50"></text></g><g><title>SubstitutionResolver::block_do (38 samples, 0.03%)</title><rect x="1.2046%" y="741" width="0.0253%" height="15" fill="rgb(226,3,54)" fg:x="1810" fg:w="38"/><text x="1.4546%" y="751.50"></text></g><g><title>BlockBegin::iterate_preorder (158 samples, 0.11%)</title><rect x="1.1560%" y="773" width="0.1052%" height="15" fill="rgb(245,192,40)" fg:x="1737" fg:w="158"/><text x="1.4060%" y="783.50"></text></g><g><title>SubstitutionResolver::block_do (47 samples, 0.03%)</title><rect x="1.2299%" y="757" width="0.0313%" height="15" fill="rgb(238,167,29)" fg:x="1848" fg:w="47"/><text x="1.4799%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (165 samples, 0.11%)</title><rect x="1.1527%" y="789" width="0.1098%" height="15" fill="rgb(232,182,51)" fg:x="1732" fg:w="165"/><text x="1.4027%" y="799.50"></text></g><g><title>ValueMap::ValueMap (23 samples, 0.02%)</title><rect x="1.2645%" y="789" width="0.0153%" height="15" fill="rgb(231,60,39)" fg:x="1900" fg:w="23"/><text x="1.5145%" y="799.50"></text></g><g><title>ValueMap::find_insert (38 samples, 0.03%)</title><rect x="1.2798%" y="789" width="0.0253%" height="15" fill="rgb(208,69,12)" fg:x="1923" fg:w="38"/><text x="1.5298%" y="799.50"></text></g><g><title>ValueMap::kill_memory (22 samples, 0.01%)</title><rect x="1.3104%" y="789" width="0.0146%" height="15" fill="rgb(235,93,37)" fg:x="1969" fg:w="22"/><text x="1.5604%" y="799.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (319 samples, 0.21%)</title><rect x="1.1167%" y="805" width="0.2123%" height="15" fill="rgb(213,116,39)" fg:x="1678" fg:w="319"/><text x="1.3667%" y="815.50"></text></g><g><title>BlockBegin::iterate_preorder (23 samples, 0.02%)</title><rect x="1.3450%" y="693" width="0.0153%" height="15" fill="rgb(222,207,29)" fg:x="2021" fg:w="23"/><text x="1.5950%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (32 samples, 0.02%)</title><rect x="1.3444%" y="709" width="0.0213%" height="15" fill="rgb(206,96,30)" fg:x="2020" fg:w="32"/><text x="1.5944%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (48 samples, 0.03%)</title><rect x="1.3424%" y="725" width="0.0319%" height="15" fill="rgb(218,138,4)" fg:x="2017" fg:w="48"/><text x="1.5924%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (66 samples, 0.04%)</title><rect x="1.3397%" y="741" width="0.0439%" height="15" fill="rgb(250,191,14)" fg:x="2013" fg:w="66"/><text x="1.5897%" y="751.50"></text></g><g><title>BlockBegin::iterate_preorder (82 samples, 0.05%)</title><rect x="1.3344%" y="757" width="0.0546%" height="15" fill="rgb(239,60,40)" fg:x="2005" fg:w="82"/><text x="1.5844%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (87 samples, 0.06%)</title><rect x="1.3330%" y="773" width="0.0579%" height="15" fill="rgb(206,27,48)" fg:x="2003" fg:w="87"/><text x="1.5830%" y="783.50"></text></g><g><title>BlockListBuilder::make_block_at (17 samples, 0.01%)</title><rect x="1.4182%" y="741" width="0.0113%" height="15" fill="rgb(225,35,8)" fg:x="2131" fg:w="17"/><text x="1.6682%" y="751.50"></text></g><g><title>ciMethod::get_method_blocks (23 samples, 0.02%)</title><rect x="1.4728%" y="693" width="0.0153%" height="15" fill="rgb(250,213,24)" fg:x="2213" fg:w="23"/><text x="1.7228%" y="703.50"></text></g><g><title>ciMethodBlocks::ciMethodBlocks (23 samples, 0.02%)</title><rect x="1.4728%" y="677" width="0.0153%" height="15" fill="rgb(247,123,22)" fg:x="2213" fg:w="23"/><text x="1.7228%" y="687.50"></text></g><g><title>ciMethodBlocks::do_analysis (19 samples, 0.01%)</title><rect x="1.4755%" y="661" width="0.0126%" height="15" fill="rgb(231,138,38)" fg:x="2217" fg:w="19"/><text x="1.7255%" y="671.50"></text></g><g><title>MethodLiveness::init_basic_blocks (52 samples, 0.03%)</title><rect x="1.4542%" y="709" width="0.0346%" height="15" fill="rgb(231,145,46)" fg:x="2185" fg:w="52"/><text x="1.7042%" y="719.50"></text></g><g><title>BlockListBuilder::set_leaders (126 samples, 0.08%)</title><rect x="1.4062%" y="757" width="0.0839%" height="15" fill="rgb(251,118,11)" fg:x="2113" fg:w="126"/><text x="1.6562%" y="767.50"></text></g><g><title>ciMethod::bci_block_start (90 samples, 0.06%)</title><rect x="1.4302%" y="741" width="0.0599%" height="15" fill="rgb(217,147,25)" fg:x="2149" fg:w="90"/><text x="1.6802%" y="751.50"></text></g><g><title>MethodLiveness::compute_liveness (88 samples, 0.06%)</title><rect x="1.4315%" y="725" width="0.0586%" height="15" fill="rgb(247,81,37)" fg:x="2151" fg:w="88"/><text x="1.6815%" y="735.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (141 samples, 0.09%)</title><rect x="1.3976%" y="773" width="0.0938%" height="15" fill="rgb(209,12,38)" fg:x="2100" fg:w="141"/><text x="1.6476%" y="783.50"></text></g><g><title>ValueStack::ValueStack (19 samples, 0.01%)</title><rect x="1.5034%" y="741" width="0.0126%" height="15" fill="rgb(227,1,9)" fg:x="2259" fg:w="19"/><text x="1.7534%" y="751.50"></text></g><g><title>GraphBuilder::connect_to_end (26 samples, 0.02%)</title><rect x="1.4994%" y="757" width="0.0173%" height="15" fill="rgb(248,47,43)" fg:x="2253" fg:w="26"/><text x="1.7494%" y="767.50"></text></g><g><title>ValueStack::ValueStack (19 samples, 0.01%)</title><rect x="1.5433%" y="725" width="0.0126%" height="15" fill="rgb(221,10,30)" fg:x="2319" fg:w="19"/><text x="1.7933%" y="735.50"></text></g><g><title>BlockBegin::try_merge (41 samples, 0.03%)</title><rect x="1.5374%" y="741" width="0.0273%" height="15" fill="rgb(210,229,1)" fg:x="2310" fg:w="41"/><text x="1.7874%" y="751.50"></text></g><g><title>SymbolTable::lookup (20 samples, 0.01%)</title><rect x="1.6292%" y="645" width="0.0133%" height="15" fill="rgb(222,148,37)" fg:x="2448" fg:w="20"/><text x="1.8792%" y="655.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (20 samples, 0.01%)</title><rect x="1.6445%" y="645" width="0.0133%" height="15" fill="rgb(234,67,33)" fg:x="2471" fg:w="20"/><text x="1.8945%" y="655.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (57 samples, 0.04%)</title><rect x="1.6265%" y="661" width="0.0379%" height="15" fill="rgb(247,98,35)" fg:x="2444" fg:w="57"/><text x="1.8765%" y="671.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (65 samples, 0.04%)</title><rect x="1.6252%" y="677" width="0.0433%" height="15" fill="rgb(247,138,52)" fg:x="2442" fg:w="65"/><text x="1.8752%" y="687.50"></text></g><g><title>ciField::ciField (110 samples, 0.07%)</title><rect x="1.6079%" y="693" width="0.0732%" height="15" fill="rgb(213,79,30)" fg:x="2416" fg:w="110"/><text x="1.8579%" y="703.50"></text></g><g><title>ciEnv::get_field_by_index (120 samples, 0.08%)</title><rect x="1.6032%" y="709" width="0.0799%" height="15" fill="rgb(246,177,23)" fg:x="2409" fg:w="120"/><text x="1.8532%" y="719.50"></text></g><g><title>ciBytecodeStream::get_field (138 samples, 0.09%)</title><rect x="1.6032%" y="725" width="0.0918%" height="15" fill="rgb(230,62,27)" fg:x="2409" fg:w="138"/><text x="1.8532%" y="735.50"></text></g><g><title>ciField::will_link (18 samples, 0.01%)</title><rect x="1.6831%" y="709" width="0.0120%" height="15" fill="rgb(216,154,8)" fg:x="2529" fg:w="18"/><text x="1.9331%" y="719.50"></text></g><g><title>GraphBuilder::access_field (196 samples, 0.13%)</title><rect x="1.5720%" y="741" width="0.1304%" height="15" fill="rgb(244,35,45)" fg:x="2362" fg:w="196"/><text x="1.8220%" y="751.50"></text></g><g><title>GraphBuilder::if_node (23 samples, 0.02%)</title><rect x="1.7210%" y="741" width="0.0153%" height="15" fill="rgb(251,115,12)" fg:x="2586" fg:w="23"/><text x="1.9710%" y="751.50"></text></g><g><title>GraphBuilder::append_with_bci (20 samples, 0.01%)</title><rect x="1.7656%" y="725" width="0.0133%" height="15" fill="rgb(240,54,50)" fg:x="2653" fg:w="20"/><text x="2.0156%" y="735.50"></text></g><g><title>GraphBuilder::args_list_for_profiling (18 samples, 0.01%)</title><rect x="1.8222%" y="693" width="0.0120%" height="15" fill="rgb(233,84,52)" fg:x="2738" fg:w="18"/><text x="2.0722%" y="703.50"></text></g><g><title>ValueStack::ValueStack (18 samples, 0.01%)</title><rect x="1.8635%" y="645" width="0.0120%" height="15" fill="rgb(207,117,47)" fg:x="2800" fg:w="18"/><text x="2.1135%" y="655.50"></text></g><g><title>BlockBegin::try_merge (47 samples, 0.03%)</title><rect x="1.8575%" y="661" width="0.0313%" height="15" fill="rgb(249,43,39)" fg:x="2791" fg:w="47"/><text x="2.1075%" y="671.50"></text></g><g><title>ciMethod::liveness_at_bci (19 samples, 0.01%)</title><rect x="1.8761%" y="645" width="0.0126%" height="15" fill="rgb(209,38,44)" fg:x="2819" fg:w="19"/><text x="2.1261%" y="655.50"></text></g><g><title>MethodLiveness::get_liveness_at (18 samples, 0.01%)</title><rect x="1.8768%" y="629" width="0.0120%" height="15" fill="rgb(236,212,23)" fg:x="2820" fg:w="18"/><text x="2.1268%" y="639.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (36 samples, 0.02%)</title><rect x="1.9280%" y="581" width="0.0240%" height="15" fill="rgb(242,79,21)" fg:x="2897" fg:w="36"/><text x="2.1780%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (48 samples, 0.03%)</title><rect x="1.9227%" y="597" width="0.0319%" height="15" fill="rgb(211,96,35)" fg:x="2889" fg:w="48"/><text x="2.1727%" y="607.50"></text></g><g><title>ciField::ciField (74 samples, 0.05%)</title><rect x="1.9140%" y="613" width="0.0492%" height="15" fill="rgb(253,215,40)" fg:x="2876" fg:w="74"/><text x="2.1640%" y="623.50"></text></g><g><title>ciEnv::get_field_by_index (83 samples, 0.06%)</title><rect x="1.9107%" y="629" width="0.0552%" height="15" fill="rgb(211,81,21)" fg:x="2871" fg:w="83"/><text x="2.1607%" y="639.50"></text></g><g><title>ciBytecodeStream::get_field (100 samples, 0.07%)</title><rect x="1.9094%" y="645" width="0.0666%" height="15" fill="rgb(208,190,38)" fg:x="2869" fg:w="100"/><text x="2.1594%" y="655.50"></text></g><g><title>GraphBuilder::access_field (131 samples, 0.09%)</title><rect x="1.8941%" y="661" width="0.0872%" height="15" fill="rgb(235,213,38)" fg:x="2846" fg:w="131"/><text x="2.1441%" y="671.50"></text></g><g><title>BlockBegin::try_merge (22 samples, 0.01%)</title><rect x="2.0578%" y="581" width="0.0146%" height="15" fill="rgb(237,122,38)" fg:x="3092" fg:w="22"/><text x="2.3078%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (17 samples, 0.01%)</title><rect x="2.0897%" y="501" width="0.0113%" height="15" fill="rgb(244,218,35)" fg:x="3140" fg:w="17"/><text x="2.3397%" y="511.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (20 samples, 0.01%)</title><rect x="2.0884%" y="517" width="0.0133%" height="15" fill="rgb(240,68,47)" fg:x="3138" fg:w="20"/><text x="2.3384%" y="527.50"></text></g><g><title>ciField::ciField (35 samples, 0.02%)</title><rect x="2.0844%" y="533" width="0.0233%" height="15" fill="rgb(210,16,53)" fg:x="3132" fg:w="35"/><text x="2.3344%" y="543.50"></text></g><g><title>ciEnv::get_field_by_index (37 samples, 0.02%)</title><rect x="2.0837%" y="549" width="0.0246%" height="15" fill="rgb(235,124,12)" fg:x="3131" fg:w="37"/><text x="2.3337%" y="559.50"></text></g><g><title>ciBytecodeStream::get_field (49 samples, 0.03%)</title><rect x="2.0837%" y="565" width="0.0326%" height="15" fill="rgb(224,169,11)" fg:x="3131" fg:w="49"/><text x="2.3337%" y="575.50"></text></g><g><title>GraphBuilder::access_field (68 samples, 0.05%)</title><rect x="2.0751%" y="581" width="0.0453%" height="15" fill="rgb(250,166,2)" fg:x="3118" fg:w="68"/><text x="2.3251%" y="591.50"></text></g><g><title>GraphBuilder::access_field (32 samples, 0.02%)</title><rect x="2.1689%" y="501" width="0.0213%" height="15" fill="rgb(242,216,29)" fg:x="3259" fg:w="32"/><text x="2.4189%" y="511.50"></text></g><g><title>GraphBuilder::invoke (18 samples, 0.01%)</title><rect x="2.2302%" y="341" width="0.0120%" height="15" fill="rgb(230,116,27)" fg:x="3351" fg:w="18"/><text x="2.4802%" y="351.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (22 samples, 0.01%)</title><rect x="2.2288%" y="373" width="0.0146%" height="15" fill="rgb(228,99,48)" fg:x="3349" fg:w="22"/><text x="2.4788%" y="383.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (22 samples, 0.01%)</title><rect x="2.2288%" y="357" width="0.0146%" height="15" fill="rgb(253,11,6)" fg:x="3349" fg:w="22"/><text x="2.4788%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (33 samples, 0.02%)</title><rect x="2.2268%" y="405" width="0.0220%" height="15" fill="rgb(247,143,39)" fg:x="3346" fg:w="33"/><text x="2.4768%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (33 samples, 0.02%)</title><rect x="2.2268%" y="389" width="0.0220%" height="15" fill="rgb(236,97,10)" fg:x="3346" fg:w="33"/><text x="2.4768%" y="399.50"></text></g><g><title>GraphBuilder::invoke (52 samples, 0.03%)</title><rect x="2.2248%" y="421" width="0.0346%" height="15" fill="rgb(233,208,19)" fg:x="3343" fg:w="52"/><text x="2.4748%" y="431.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (88 samples, 0.06%)</title><rect x="2.2075%" y="453" width="0.0586%" height="15" fill="rgb(216,164,2)" fg:x="3317" fg:w="88"/><text x="2.4575%" y="463.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (85 samples, 0.06%)</title><rect x="2.2095%" y="437" width="0.0566%" height="15" fill="rgb(220,129,5)" fg:x="3320" fg:w="85"/><text x="2.4595%" y="447.50"></text></g><g><title>GraphBuilder::push_scope (17 samples, 0.01%)</title><rect x="2.2661%" y="453" width="0.0113%" height="15" fill="rgb(242,17,10)" fg:x="3405" fg:w="17"/><text x="2.5161%" y="463.50"></text></g><g><title>GraphBuilder::try_inline_full (123 samples, 0.08%)</title><rect x="2.2042%" y="469" width="0.0819%" height="15" fill="rgb(242,107,0)" fg:x="3312" fg:w="123"/><text x="2.4542%" y="479.50"></text></g><g><title>GraphBuilder::try_inline (133 samples, 0.09%)</title><rect x="2.2029%" y="485" width="0.0885%" height="15" fill="rgb(251,28,31)" fg:x="3310" fg:w="133"/><text x="2.4529%" y="495.50"></text></g><g><title>ciBytecodeStream::get_method (25 samples, 0.02%)</title><rect x="2.2947%" y="485" width="0.0166%" height="15" fill="rgb(233,223,10)" fg:x="3448" fg:w="25"/><text x="2.5447%" y="495.50"></text></g><g><title>ciEnv::get_method_by_index_impl (22 samples, 0.01%)</title><rect x="2.2967%" y="469" width="0.0146%" height="15" fill="rgb(215,21,27)" fg:x="3451" fg:w="22"/><text x="2.5467%" y="479.50"></text></g><g><title>GraphBuilder::invoke (180 samples, 0.12%)</title><rect x="2.1969%" y="501" width="0.1198%" height="15" fill="rgb(232,23,21)" fg:x="3301" fg:w="180"/><text x="2.4469%" y="511.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (261 samples, 0.17%)</title><rect x="2.1550%" y="533" width="0.1737%" height="15" fill="rgb(244,5,23)" fg:x="3238" fg:w="261"/><text x="2.4050%" y="543.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (258 samples, 0.17%)</title><rect x="2.1570%" y="517" width="0.1717%" height="15" fill="rgb(226,81,46)" fg:x="3241" fg:w="258"/><text x="2.4070%" y="527.50"></text></g><g><title>BlockListBuilder::set_leaders (17 samples, 0.01%)</title><rect x="2.3313%" y="501" width="0.0113%" height="15" fill="rgb(247,70,30)" fg:x="3503" fg:w="17"/><text x="2.5813%" y="511.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (22 samples, 0.01%)</title><rect x="2.3300%" y="517" width="0.0146%" height="15" fill="rgb(212,68,19)" fg:x="3501" fg:w="22"/><text x="2.5800%" y="527.50"></text></g><g><title>GraphBuilder::push_scope (37 samples, 0.02%)</title><rect x="2.3300%" y="533" width="0.0246%" height="15" fill="rgb(240,187,13)" fg:x="3501" fg:w="37"/><text x="2.5800%" y="543.50"></text></g><g><title>ciMethod::ensure_method_data (20 samples, 0.01%)</title><rect x="2.3579%" y="517" width="0.0133%" height="15" fill="rgb(223,113,26)" fg:x="3543" fg:w="20"/><text x="2.6079%" y="527.50"></text></g><g><title>ciMethod::ensure_method_data (23 samples, 0.02%)</title><rect x="2.3566%" y="533" width="0.0153%" height="15" fill="rgb(206,192,2)" fg:x="3541" fg:w="23"/><text x="2.6066%" y="543.50"></text></g><g><title>GraphBuilder::try_inline_full (333 samples, 0.22%)</title><rect x="2.1510%" y="549" width="0.2216%" height="15" fill="rgb(241,108,4)" fg:x="3232" fg:w="333"/><text x="2.4010%" y="559.50"></text></g><g><title>GraphBuilder::try_inline_full (16 samples, 0.01%)</title><rect x="2.3779%" y="437" width="0.0106%" height="15" fill="rgb(247,173,49)" fg:x="3573" fg:w="16"/><text x="2.6279%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (18 samples, 0.01%)</title><rect x="2.3779%" y="453" width="0.0120%" height="15" fill="rgb(224,114,35)" fg:x="3573" fg:w="18"/><text x="2.6279%" y="463.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (26 samples, 0.02%)</title><rect x="2.3746%" y="501" width="0.0173%" height="15" fill="rgb(245,159,27)" fg:x="3568" fg:w="26"/><text x="2.6246%" y="511.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (25 samples, 0.02%)</title><rect x="2.3752%" y="485" width="0.0166%" height="15" fill="rgb(245,172,44)" fg:x="3569" fg:w="25"/><text x="2.6252%" y="495.50"></text></g><g><title>GraphBuilder::invoke (21 samples, 0.01%)</title><rect x="2.3779%" y="469" width="0.0140%" height="15" fill="rgb(236,23,11)" fg:x="3573" fg:w="21"/><text x="2.6279%" y="479.50"></text></g><g><title>GraphBuilder::try_inline (27 samples, 0.02%)</title><rect x="2.3746%" y="533" width="0.0180%" height="15" fill="rgb(205,117,38)" fg:x="3568" fg:w="27"/><text x="2.6246%" y="543.50"></text></g><g><title>GraphBuilder::try_inline_full (27 samples, 0.02%)</title><rect x="2.3746%" y="517" width="0.0180%" height="15" fill="rgb(237,72,25)" fg:x="3568" fg:w="27"/><text x="2.6246%" y="527.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (28 samples, 0.02%)</title><rect x="2.3746%" y="549" width="0.0186%" height="15" fill="rgb(244,70,9)" fg:x="3568" fg:w="28"/><text x="2.6246%" y="559.50"></text></g><g><title>GraphBuilder::try_inline (368 samples, 0.24%)</title><rect x="2.1490%" y="565" width="0.2449%" height="15" fill="rgb(217,125,39)" fg:x="3229" fg:w="368"/><text x="2.3990%" y="575.50"></text></g><g><title>ciEnv::lookup_method (19 samples, 0.01%)</title><rect x="2.4105%" y="533" width="0.0126%" height="15" fill="rgb(235,36,10)" fg:x="3622" fg:w="19"/><text x="2.6605%" y="543.50"></text></g><g><title>ciEnv::get_method_by_index_impl (73 samples, 0.05%)</title><rect x="2.4032%" y="549" width="0.0486%" height="15" fill="rgb(251,123,47)" fg:x="3611" fg:w="73"/><text x="2.6532%" y="559.50"></text></g><g><title>ciObjectFactory::get_metadata (43 samples, 0.03%)</title><rect x="2.4232%" y="533" width="0.0286%" height="15" fill="rgb(221,13,13)" fg:x="3641" fg:w="43"/><text x="2.6732%" y="543.50"></text></g><g><title>ciObjectFactory::create_new_metadata (37 samples, 0.02%)</title><rect x="2.4272%" y="517" width="0.0246%" height="15" fill="rgb(238,131,9)" fg:x="3647" fg:w="37"/><text x="2.6772%" y="527.50"></text></g><g><title>ciMethod::ciMethod (37 samples, 0.02%)</title><rect x="2.4272%" y="501" width="0.0246%" height="15" fill="rgb(211,50,8)" fg:x="3647" fg:w="37"/><text x="2.6772%" y="511.50"></text></g><g><title>ciSignature::ciSignature (26 samples, 0.02%)</title><rect x="2.4345%" y="485" width="0.0173%" height="15" fill="rgb(245,182,24)" fg:x="3658" fg:w="26"/><text x="2.6845%" y="495.50"></text></g><g><title>ciBytecodeStream::get_method (80 samples, 0.05%)</title><rect x="2.3992%" y="565" width="0.0532%" height="15" fill="rgb(242,14,37)" fg:x="3605" fg:w="80"/><text x="2.6492%" y="575.50"></text></g><g><title>GraphBuilder::invoke (485 samples, 0.32%)</title><rect x="2.1403%" y="581" width="0.3228%" height="15" fill="rgb(246,228,12)" fg:x="3216" fg:w="485"/><text x="2.3903%" y="591.50"></text></g><g><title>GraphBuilder::method_return (16 samples, 0.01%)</title><rect x="2.4651%" y="581" width="0.0106%" height="15" fill="rgb(213,55,15)" fg:x="3704" fg:w="16"/><text x="2.7151%" y="591.50"></text></g><g><title>GraphBuilder::new_instance (16 samples, 0.01%)</title><rect x="2.4757%" y="581" width="0.0106%" height="15" fill="rgb(209,9,3)" fg:x="3720" fg:w="16"/><text x="2.7257%" y="591.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (664 samples, 0.44%)</title><rect x="2.0478%" y="597" width="0.4419%" height="15" fill="rgb(230,59,30)" fg:x="3077" fg:w="664"/><text x="2.2978%" y="607.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (668 samples, 0.44%)</title><rect x="2.0458%" y="613" width="0.4446%" height="15" fill="rgb(209,121,21)" fg:x="3074" fg:w="668"/><text x="2.2958%" y="623.50"></text></g><g><title>MethodLiveness::compute_liveness (29 samples, 0.02%)</title><rect x="2.5057%" y="549" width="0.0193%" height="15" fill="rgb(220,109,13)" fg:x="3765" fg:w="29"/><text x="2.7557%" y="559.50"></text></g><g><title>MethodLiveness::init_basic_blocks (20 samples, 0.01%)</title><rect x="2.5117%" y="533" width="0.0133%" height="15" fill="rgb(232,18,1)" fg:x="3774" fg:w="20"/><text x="2.7617%" y="543.50"></text></g><g><title>BlockListBuilder::set_leaders (39 samples, 0.03%)</title><rect x="2.4997%" y="581" width="0.0260%" height="15" fill="rgb(215,41,42)" fg:x="3756" fg:w="39"/><text x="2.7497%" y="591.50"></text></g><g><title>ciMethod::bci_block_start (30 samples, 0.02%)</title><rect x="2.5057%" y="565" width="0.0200%" height="15" fill="rgb(224,123,36)" fg:x="3765" fg:w="30"/><text x="2.7557%" y="575.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (51 samples, 0.03%)</title><rect x="2.4937%" y="597" width="0.0339%" height="15" fill="rgb(240,125,3)" fg:x="3747" fg:w="51"/><text x="2.7437%" y="607.50"></text></g><g><title>GraphBuilder::push_scope (70 samples, 0.05%)</title><rect x="2.4917%" y="613" width="0.0466%" height="15" fill="rgb(205,98,50)" fg:x="3744" fg:w="70"/><text x="2.7417%" y="623.50"></text></g><g><title>Method::build_interpreter_method_data (17 samples, 0.01%)</title><rect x="2.5483%" y="581" width="0.0113%" height="15" fill="rgb(205,185,37)" fg:x="3829" fg:w="17"/><text x="2.7983%" y="591.50"></text></g><g><title>MethodData::allocate (16 samples, 0.01%)</title><rect x="2.5489%" y="565" width="0.0106%" height="15" fill="rgb(238,207,15)" fg:x="3830" fg:w="16"/><text x="2.7989%" y="575.50"></text></g><g><title>ciMethodData::load_data (33 samples, 0.02%)</title><rect x="2.5596%" y="581" width="0.0220%" height="15" fill="rgb(213,199,42)" fg:x="3846" fg:w="33"/><text x="2.8096%" y="591.50"></text></g><g><title>ciMethod::ensure_method_data (68 samples, 0.05%)</title><rect x="2.5456%" y="613" width="0.0453%" height="15" fill="rgb(235,201,11)" fg:x="3825" fg:w="68"/><text x="2.7956%" y="623.50"></text></g><g><title>ciMethod::ensure_method_data (66 samples, 0.04%)</title><rect x="2.5470%" y="597" width="0.0439%" height="15" fill="rgb(207,46,11)" fg:x="3827" fg:w="66"/><text x="2.7970%" y="607.50"></text></g><g><title>GraphBuilder::try_inline_full (843 samples, 0.56%)</title><rect x="2.0325%" y="629" width="0.5610%" height="15" fill="rgb(241,35,35)" fg:x="3054" fg:w="843"/><text x="2.2825%" y="639.50"></text></g><g><title>GraphBuilder::try_inline (21 samples, 0.01%)</title><rect x="2.5995%" y="533" width="0.0140%" height="15" fill="rgb(243,32,47)" fg:x="3906" fg:w="21"/><text x="2.8495%" y="543.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (26 samples, 0.02%)</title><rect x="2.5969%" y="581" width="0.0173%" height="15" fill="rgb(247,202,23)" fg:x="3902" fg:w="26"/><text x="2.8469%" y="591.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (26 samples, 0.02%)</title><rect x="2.5969%" y="565" width="0.0173%" height="15" fill="rgb(219,102,11)" fg:x="3902" fg:w="26"/><text x="2.8469%" y="575.50"></text></g><g><title>GraphBuilder::invoke (22 samples, 0.01%)</title><rect x="2.5995%" y="549" width="0.0146%" height="15" fill="rgb(243,110,44)" fg:x="3906" fg:w="22"/><text x="2.8495%" y="559.50"></text></g><g><title>GraphBuilder::try_inline (28 samples, 0.02%)</title><rect x="2.5969%" y="613" width="0.0186%" height="15" fill="rgb(222,74,54)" fg:x="3902" fg:w="28"/><text x="2.8469%" y="623.50"></text></g><g><title>GraphBuilder::try_inline_full (28 samples, 0.02%)</title><rect x="2.5969%" y="597" width="0.0186%" height="15" fill="rgb(216,99,12)" fg:x="3902" fg:w="28"/><text x="2.8469%" y="607.50"></text></g><g><title>GraphBuilder::try_inline (889 samples, 0.59%)</title><rect x="2.0272%" y="645" width="0.5916%" height="15" fill="rgb(226,22,26)" fg:x="3046" fg:w="889"/><text x="2.2772%" y="655.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (33 samples, 0.02%)</title><rect x="2.5969%" y="629" width="0.0220%" height="15" fill="rgb(217,163,10)" fg:x="3902" fg:w="33"/><text x="2.8469%" y="639.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (17 samples, 0.01%)</title><rect x="2.6474%" y="597" width="0.0113%" height="15" fill="rgb(213,25,53)" fg:x="3978" fg:w="17"/><text x="2.8974%" y="607.50"></text></g><g><title>LinkResolver::resolve_method (17 samples, 0.01%)</title><rect x="2.6474%" y="581" width="0.0113%" height="15" fill="rgb(252,105,26)" fg:x="3978" fg:w="17"/><text x="2.8974%" y="591.50"></text></g><g><title>ciEnv::lookup_method (43 samples, 0.03%)</title><rect x="2.6474%" y="613" width="0.0286%" height="15" fill="rgb(220,39,43)" fg:x="3978" fg:w="43"/><text x="2.8974%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (23 samples, 0.02%)</title><rect x="2.7093%" y="549" width="0.0153%" height="15" fill="rgb(229,68,48)" fg:x="4071" fg:w="23"/><text x="2.9593%" y="559.50"></text></g><g><title>ciMethod::ciMethod (58 samples, 0.04%)</title><rect x="2.6894%" y="581" width="0.0386%" height="15" fill="rgb(252,8,32)" fg:x="4041" fg:w="58"/><text x="2.9394%" y="591.50"></text></g><g><title>ciSignature::ciSignature (49 samples, 0.03%)</title><rect x="2.6954%" y="565" width="0.0326%" height="15" fill="rgb(223,20,43)" fg:x="4050" fg:w="49"/><text x="2.9454%" y="575.50"></text></g><g><title>ciObjectFactory::get_metadata (81 samples, 0.05%)</title><rect x="2.6761%" y="613" width="0.0539%" height="15" fill="rgb(229,81,49)" fg:x="4021" fg:w="81"/><text x="2.9261%" y="623.50"></text></g><g><title>ciObjectFactory::create_new_metadata (69 samples, 0.05%)</title><rect x="2.6841%" y="597" width="0.0459%" height="15" fill="rgb(236,28,36)" fg:x="4033" fg:w="69"/><text x="2.9341%" y="607.50"></text></g><g><title>ciEnv::get_method_by_index_impl (142 samples, 0.09%)</title><rect x="2.6375%" y="629" width="0.0945%" height="15" fill="rgb(249,185,26)" fg:x="3963" fg:w="142"/><text x="2.8875%" y="639.50"></text></g><g><title>ciBytecodeStream::get_method (150 samples, 0.10%)</title><rect x="2.6328%" y="645" width="0.0998%" height="15" fill="rgb(249,174,33)" fg:x="3956" fg:w="150"/><text x="2.8828%" y="655.50"></text></g><g><title>ciMethod::find_monomorphic_target (16 samples, 0.01%)</title><rect x="2.7400%" y="645" width="0.0106%" height="15" fill="rgb(233,201,37)" fg:x="4117" fg:w="16"/><text x="2.9900%" y="655.50"></text></g><g><title>GraphBuilder::invoke (1,121 samples, 0.75%)</title><rect x="2.0065%" y="661" width="0.7461%" height="15" fill="rgb(221,78,26)" fg:x="3015" fg:w="1121"/><text x="2.2565%" y="671.50"></text></g><g><title>GraphBuilder::method_return (38 samples, 0.03%)</title><rect x="2.7539%" y="661" width="0.0253%" height="15" fill="rgb(250,127,30)" fg:x="4138" fg:w="38"/><text x="3.0039%" y="671.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,434 samples, 0.95%)</title><rect x="1.8348%" y="693" width="0.9544%" height="15" fill="rgb(230,49,44)" fg:x="2757" fg:w="1434"/><text x="2.0848%" y="703.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,427 samples, 0.95%)</title><rect x="1.8395%" y="677" width="0.9497%" height="15" fill="rgb(229,67,23)" fg:x="2764" fg:w="1427"/><text x="2.0895%" y="687.50"></text></g><g><title>MethodLiveness::init_basic_blocks (25 samples, 0.02%)</title><rect x="2.8298%" y="613" width="0.0166%" height="15" fill="rgb(249,83,47)" fg:x="4252" fg:w="25"/><text x="3.0798%" y="623.50"></text></g><g><title>MethodLiveness::compute_liveness (37 samples, 0.02%)</title><rect x="2.8225%" y="629" width="0.0246%" height="15" fill="rgb(215,43,3)" fg:x="4241" fg:w="37"/><text x="3.0725%" y="639.50"></text></g><g><title>BlockListBuilder::set_leaders (61 samples, 0.04%)</title><rect x="2.8072%" y="661" width="0.0406%" height="15" fill="rgb(238,154,13)" fg:x="4218" fg:w="61"/><text x="3.0572%" y="671.50"></text></g><g><title>ciMethod::bci_block_start (39 samples, 0.03%)</title><rect x="2.8218%" y="645" width="0.0260%" height="15" fill="rgb(219,56,2)" fg:x="4240" fg:w="39"/><text x="3.0718%" y="655.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (75 samples, 0.05%)</title><rect x="2.8012%" y="677" width="0.0499%" height="15" fill="rgb(233,0,4)" fg:x="4209" fg:w="75"/><text x="3.0512%" y="687.50"></text></g><g><title>BlockListBuilder::mark_loops (19 samples, 0.01%)</title><rect x="2.8511%" y="677" width="0.0126%" height="15" fill="rgb(235,30,7)" fg:x="4284" fg:w="19"/><text x="3.1011%" y="687.50"></text></g><g><title>GraphBuilder::push_scope (133 samples, 0.09%)</title><rect x="2.7959%" y="693" width="0.0885%" height="15" fill="rgb(250,79,13)" fg:x="4201" fg:w="133"/><text x="3.0459%" y="703.50"></text></g><g><title>MethodData::initialize (27 samples, 0.02%)</title><rect x="2.9143%" y="629" width="0.0180%" height="15" fill="rgb(211,146,34)" fg:x="4379" fg:w="27"/><text x="3.1643%" y="639.50"></text></g><g><title>Method::build_interpreter_method_data (49 samples, 0.03%)</title><rect x="2.9003%" y="661" width="0.0326%" height="15" fill="rgb(228,22,38)" fg:x="4358" fg:w="49"/><text x="3.1503%" y="671.50"></text></g><g><title>MethodData::allocate (49 samples, 0.03%)</title><rect x="2.9003%" y="645" width="0.0326%" height="15" fill="rgb(235,168,5)" fg:x="4358" fg:w="49"/><text x="3.1503%" y="655.50"></text></g><g><title>ciMethodData::load_data (50 samples, 0.03%)</title><rect x="2.9336%" y="661" width="0.0333%" height="15" fill="rgb(221,155,16)" fg:x="4408" fg:w="50"/><text x="3.1836%" y="671.50"></text></g><g><title>ciMethod::ensure_method_data (113 samples, 0.08%)</title><rect x="2.8997%" y="677" width="0.0752%" height="15" fill="rgb(215,215,53)" fg:x="4357" fg:w="113"/><text x="3.1497%" y="687.50"></text></g><g><title>ciMethod::ensure_method_data (120 samples, 0.08%)</title><rect x="2.8957%" y="693" width="0.0799%" height="15" fill="rgb(223,4,10)" fg:x="4351" fg:w="120"/><text x="3.1457%" y="703.50"></text></g><g><title>GraphBuilder::try_inline_full (1,779 samples, 1.18%)</title><rect x="1.7962%" y="709" width="1.1840%" height="15" fill="rgb(234,103,6)" fg:x="2699" fg:w="1779"/><text x="2.0462%" y="719.50"></text></g><g><title>GraphBuilder::try_inline (1,801 samples, 1.20%)</title><rect x="1.7903%" y="725" width="1.1986%" height="15" fill="rgb(227,97,0)" fg:x="2690" fg:w="1801"/><text x="2.0403%" y="735.50"></text></g><g><title>ciBytecodeStream::get_declared_method_holder (33 samples, 0.02%)</title><rect x="3.0015%" y="725" width="0.0220%" height="15" fill="rgb(234,150,53)" fg:x="4510" fg:w="33"/><text x="3.2515%" y="735.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (19 samples, 0.01%)</title><rect x="3.0394%" y="693" width="0.0126%" height="15" fill="rgb(228,201,54)" fg:x="4567" fg:w="19"/><text x="3.2894%" y="703.50"></text></g><g><title>LinkResolver::resolve_interface_method (16 samples, 0.01%)</title><rect x="3.0534%" y="661" width="0.0106%" height="15" fill="rgb(222,22,37)" fg:x="4588" fg:w="16"/><text x="3.3034%" y="671.50"></text></g><g><title>LinkResolver::linktime_resolve_interface_method_or_null (19 samples, 0.01%)</title><rect x="3.0521%" y="677" width="0.0126%" height="15" fill="rgb(237,53,32)" fg:x="4586" fg:w="19"/><text x="3.3021%" y="687.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (23 samples, 0.02%)</title><rect x="3.0727%" y="645" width="0.0153%" height="15" fill="rgb(233,25,53)" fg:x="4617" fg:w="23"/><text x="3.3227%" y="655.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (20 samples, 0.01%)</title><rect x="3.0747%" y="629" width="0.0133%" height="15" fill="rgb(210,40,34)" fg:x="4620" fg:w="20"/><text x="3.3247%" y="639.50"></text></g><g><title>InstanceKlass::find_method_index (19 samples, 0.01%)</title><rect x="3.0754%" y="613" width="0.0126%" height="15" fill="rgb(241,220,44)" fg:x="4621" fg:w="19"/><text x="3.3254%" y="623.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (38 samples, 0.03%)</title><rect x="3.0647%" y="677" width="0.0253%" height="15" fill="rgb(235,28,35)" fg:x="4605" fg:w="38"/><text x="3.3147%" y="687.50"></text></g><g><title>LinkResolver::resolve_method (36 samples, 0.02%)</title><rect x="3.0661%" y="661" width="0.0240%" height="15" fill="rgb(210,56,17)" fg:x="4607" fg:w="36"/><text x="3.3161%" y="671.50"></text></g><g><title>LinkResolver::resolve_static_call_or_null (24 samples, 0.02%)</title><rect x="3.0967%" y="677" width="0.0160%" height="15" fill="rgb(224,130,29)" fg:x="4653" fg:w="24"/><text x="3.3467%" y="687.50"></text></g><g><title>LinkResolver::resolve_static_call (23 samples, 0.02%)</title><rect x="3.0973%" y="661" width="0.0153%" height="15" fill="rgb(235,212,8)" fg:x="4654" fg:w="23"/><text x="3.3473%" y="671.50"></text></g><g><title>LinkResolver::resolve_method (19 samples, 0.01%)</title><rect x="3.1000%" y="645" width="0.0126%" height="15" fill="rgb(223,33,50)" fg:x="4658" fg:w="19"/><text x="3.3500%" y="655.50"></text></g><g><title>ciEnv::lookup_method (93 samples, 0.06%)</title><rect x="3.0521%" y="693" width="0.0619%" height="15" fill="rgb(219,149,13)" fg:x="4586" fg:w="93"/><text x="3.3021%" y="703.50"></text></g><g><title>SignatureStream::as_symbol (28 samples, 0.02%)</title><rect x="3.1566%" y="629" width="0.0186%" height="15" fill="rgb(250,156,29)" fg:x="4743" fg:w="28"/><text x="3.4066%" y="639.50"></text></g><g><title>SymbolTable::lookup (27 samples, 0.02%)</title><rect x="3.1572%" y="613" width="0.0180%" height="15" fill="rgb(216,193,19)" fg:x="4744" fg:w="27"/><text x="3.4072%" y="623.50"></text></g><g><title>Dictionary::find (18 samples, 0.01%)</title><rect x="3.1872%" y="597" width="0.0120%" height="15" fill="rgb(216,135,14)" fg:x="4789" fg:w="18"/><text x="3.4372%" y="607.50"></text></g><g><title>SystemDictionary::find_constrained_instance_or_array_klass (24 samples, 0.02%)</title><rect x="3.1859%" y="613" width="0.0160%" height="15" fill="rgb(241,47,5)" fg:x="4787" fg:w="24"/><text x="3.4359%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (46 samples, 0.03%)</title><rect x="3.1799%" y="629" width="0.0306%" height="15" fill="rgb(233,42,35)" fg:x="4778" fg:w="46"/><text x="3.4299%" y="639.50"></text></g><g><title>ciMethod::ciMethod (131 samples, 0.09%)</title><rect x="3.1306%" y="661" width="0.0872%" height="15" fill="rgb(231,13,6)" fg:x="4704" fg:w="131"/><text x="3.3806%" y="671.50"></text></g><g><title>ciSignature::ciSignature (108 samples, 0.07%)</title><rect x="3.1459%" y="645" width="0.0719%" height="15" fill="rgb(207,181,40)" fg:x="4727" fg:w="108"/><text x="3.3959%" y="655.50"></text></g><g><title>ciObjectFactory::get_metadata (157 samples, 0.10%)</title><rect x="3.1140%" y="693" width="0.1045%" height="15" fill="rgb(254,173,49)" fg:x="4679" fg:w="157"/><text x="3.3640%" y="703.50"></text></g><g><title>ciObjectFactory::create_new_metadata (138 samples, 0.09%)</title><rect x="3.1266%" y="677" width="0.0918%" height="15" fill="rgb(221,1,38)" fg:x="4698" fg:w="138"/><text x="3.3766%" y="687.50"></text></g><g><title>ciEnv::get_method_by_index_impl (286 samples, 0.19%)</title><rect x="3.0328%" y="709" width="0.1903%" height="15" fill="rgb(206,124,46)" fg:x="4557" fg:w="286"/><text x="3.2828%" y="719.50"></text></g><g><title>ciBytecodeStream::get_method (301 samples, 0.20%)</title><rect x="3.0235%" y="725" width="0.2003%" height="15" fill="rgb(249,21,11)" fg:x="4543" fg:w="301"/><text x="3.2735%" y="735.50"></text></g><g><title>InstanceKlass::find_instance_method (19 samples, 0.01%)</title><rect x="3.2384%" y="661" width="0.0126%" height="15" fill="rgb(222,201,40)" fg:x="4866" fg:w="19"/><text x="3.4884%" y="671.50"></text></g><g><title>InstanceKlass::find_method_index (19 samples, 0.01%)</title><rect x="3.2384%" y="645" width="0.0126%" height="15" fill="rgb(235,61,29)" fg:x="4866" fg:w="19"/><text x="3.4884%" y="655.50"></text></g><g><title>Dependencies::find_unique_concrete_method (24 samples, 0.02%)</title><rect x="3.2358%" y="709" width="0.0160%" height="15" fill="rgb(219,207,3)" fg:x="4862" fg:w="24"/><text x="3.4858%" y="719.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (23 samples, 0.02%)</title><rect x="3.2364%" y="693" width="0.0153%" height="15" fill="rgb(222,56,46)" fg:x="4863" fg:w="23"/><text x="3.4864%" y="703.50"></text></g><g><title>ClassHierarchyWalker::is_witness (23 samples, 0.02%)</title><rect x="3.2364%" y="677" width="0.0153%" height="15" fill="rgb(239,76,54)" fg:x="4863" fg:w="23"/><text x="3.4864%" y="687.50"></text></g><g><title>ciMethod::find_monomorphic_target (35 samples, 0.02%)</title><rect x="3.2358%" y="725" width="0.0233%" height="15" fill="rgb(231,124,27)" fg:x="4862" fg:w="35"/><text x="3.4858%" y="735.50"></text></g><g><title>GraphBuilder::invoke (2,280 samples, 1.52%)</title><rect x="1.7457%" y="741" width="1.5174%" height="15" fill="rgb(249,195,6)" fg:x="2623" fg:w="2280"/><text x="1.9957%" y="751.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,681 samples, 1.78%)</title><rect x="1.5167%" y="757" width="1.7843%" height="15" fill="rgb(237,174,47)" fg:x="2279" fg:w="2681"/><text x="1.7667%" y="767.50">G..</text></g><g><title>GraphBuilder::iterate_all_blocks (2,717 samples, 1.81%)</title><rect x="1.4961%" y="773" width="1.8082%" height="15" fill="rgb(206,201,31)" fg:x="2248" fg:w="2717"/><text x="1.7461%" y="783.50">G..</text></g><g><title>GraphBuilder::setup_start_block (33 samples, 0.02%)</title><rect x="3.3056%" y="773" width="0.0220%" height="15" fill="rgb(231,57,52)" fg:x="4967" fg:w="33"/><text x="3.5556%" y="783.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,017 samples, 2.01%)</title><rect x="1.3317%" y="789" width="2.0079%" height="15" fill="rgb(248,177,22)" fg:x="2001" fg:w="3017"/><text x="1.5817%" y="799.50">G..</text></g><g><title>IR::IR (3,030 samples, 2.02%)</title><rect x="1.3290%" y="805" width="2.0165%" height="15" fill="rgb(215,211,37)" fg:x="1997" fg:w="3030"/><text x="1.5790%" y="815.50">I..</text></g><g><title>ComputeLinearScanOrder::sort_into_work_list (16 samples, 0.01%)</title><rect x="3.3649%" y="757" width="0.0106%" height="15" fill="rgb(241,128,51)" fg:x="5056" fg:w="16"/><text x="3.6149%" y="767.50"></text></g><g><title>ComputeLinearScanOrder::compute_order (40 samples, 0.03%)</title><rect x="3.3509%" y="773" width="0.0266%" height="15" fill="rgb(227,165,31)" fg:x="5035" fg:w="40"/><text x="3.6009%" y="783.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (64 samples, 0.04%)</title><rect x="3.3456%" y="789" width="0.0426%" height="15" fill="rgb(228,167,24)" fg:x="5027" fg:w="64"/><text x="3.5956%" y="799.50"></text></g><g><title>IR::compute_code (72 samples, 0.05%)</title><rect x="3.3456%" y="805" width="0.0479%" height="15" fill="rgb(228,143,12)" fg:x="5027" fg:w="72"/><text x="3.5956%" y="815.50"></text></g><g><title>BlockList::iterate_backward (81 samples, 0.05%)</title><rect x="3.3968%" y="789" width="0.0539%" height="15" fill="rgb(249,149,8)" fg:x="5104" fg:w="81"/><text x="3.6468%" y="799.50"></text></g><g><title>UseCountComputer::block_do (77 samples, 0.05%)</title><rect x="3.3995%" y="773" width="0.0512%" height="15" fill="rgb(243,35,44)" fg:x="5108" fg:w="77"/><text x="3.6495%" y="783.50"></text></g><g><title>ValueStack::values_do (37 samples, 0.02%)</title><rect x="3.4261%" y="757" width="0.0246%" height="15" fill="rgb(246,89,9)" fg:x="5148" fg:w="37"/><text x="3.6761%" y="767.50"></text></g><g><title>ValueStack::pin_stack_for_linear_scan (24 samples, 0.02%)</title><rect x="3.4507%" y="789" width="0.0160%" height="15" fill="rgb(233,213,13)" fg:x="5185" fg:w="24"/><text x="3.7007%" y="799.50"></text></g><g><title>IR::compute_use_counts (112 samples, 0.07%)</title><rect x="3.3935%" y="805" width="0.0745%" height="15" fill="rgb(233,141,41)" fg:x="5099" fg:w="112"/><text x="3.6435%" y="815.50"></text></g><g><title>NullCheckEliminator::iterate_one (134 samples, 0.09%)</title><rect x="3.4807%" y="773" width="0.0892%" height="15" fill="rgb(239,167,4)" fg:x="5230" fg:w="134"/><text x="3.7307%" y="783.50"></text></g><g><title>IR::eliminate_null_checks (163 samples, 0.11%)</title><rect x="3.4680%" y="805" width="0.1085%" height="15" fill="rgb(209,217,16)" fg:x="5211" fg:w="163"/><text x="3.7180%" y="815.50"></text></g><g><title>Optimizer::eliminate_null_checks (163 samples, 0.11%)</title><rect x="3.4680%" y="789" width="0.1085%" height="15" fill="rgb(219,88,35)" fg:x="5211" fg:w="163"/><text x="3.7180%" y="799.50"></text></g><g><title>BlockBegin::iterate_preorder (19 samples, 0.01%)</title><rect x="3.5865%" y="725" width="0.0126%" height="15" fill="rgb(220,193,23)" fg:x="5389" fg:w="19"/><text x="3.8365%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (27 samples, 0.02%)</title><rect x="3.5865%" y="741" width="0.0180%" height="15" fill="rgb(230,90,52)" fg:x="5389" fg:w="27"/><text x="3.8365%" y="751.50"></text></g><g><title>IR::optimize_blocks (50 samples, 0.03%)</title><rect x="3.5765%" y="805" width="0.0333%" height="15" fill="rgb(252,106,19)" fg:x="5374" fg:w="50"/><text x="3.8265%" y="815.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (39 samples, 0.03%)</title><rect x="3.5838%" y="789" width="0.0260%" height="15" fill="rgb(206,74,20)" fg:x="5385" fg:w="39"/><text x="3.8338%" y="799.50"></text></g><g><title>BlockBegin::iterate_preorder (39 samples, 0.03%)</title><rect x="3.5838%" y="773" width="0.0260%" height="15" fill="rgb(230,138,44)" fg:x="5385" fg:w="39"/><text x="3.8338%" y="783.50"></text></g><g><title>BlockBegin::iterate_preorder (39 samples, 0.03%)</title><rect x="3.5838%" y="757" width="0.0260%" height="15" fill="rgb(235,182,43)" fg:x="5385" fg:w="39"/><text x="3.8338%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (17 samples, 0.01%)</title><rect x="3.6178%" y="789" width="0.0113%" height="15" fill="rgb(242,16,51)" fg:x="5436" fg:w="17"/><text x="3.8678%" y="799.50"></text></g><g><title>BlockBegin::iterate_preorder (17 samples, 0.01%)</title><rect x="3.6178%" y="773" width="0.0113%" height="15" fill="rgb(248,9,4)" fg:x="5436" fg:w="17"/><text x="3.8678%" y="783.50"></text></g><g><title>IR::split_critical_edges (32 samples, 0.02%)</title><rect x="3.6098%" y="805" width="0.0213%" height="15" fill="rgb(210,31,22)" fg:x="5424" fg:w="32"/><text x="3.8598%" y="815.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (18 samples, 0.01%)</title><rect x="3.6391%" y="741" width="0.0120%" height="15" fill="rgb(239,54,39)" fg:x="5468" fg:w="18"/><text x="3.8891%" y="751.50"></text></g><g><title>RangeCheckElimination::eliminate (30 samples, 0.02%)</title><rect x="3.6324%" y="805" width="0.0200%" height="15" fill="rgb(230,99,41)" fg:x="5458" fg:w="30"/><text x="3.8824%" y="815.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (20 samples, 0.01%)</title><rect x="3.6391%" y="789" width="0.0133%" height="15" fill="rgb(253,106,12)" fg:x="5468" fg:w="20"/><text x="3.8891%" y="799.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (20 samples, 0.01%)</title><rect x="3.6391%" y="773" width="0.0133%" height="15" fill="rgb(213,46,41)" fg:x="5468" fg:w="20"/><text x="3.8891%" y="783.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (20 samples, 0.01%)</title><rect x="3.6391%" y="757" width="0.0133%" height="15" fill="rgb(215,133,35)" fg:x="5468" fg:w="20"/><text x="3.8891%" y="767.50"></text></g><g><title>Compilation::build_hir (3,818 samples, 2.54%)</title><rect x="1.1141%" y="821" width="2.5410%" height="15" fill="rgb(213,28,5)" fg:x="1674" fg:w="3818"/><text x="1.3641%" y="831.50">Co..</text></g><g><title>LIR_Assembler::add_call_info (24 samples, 0.02%)</title><rect x="3.7223%" y="773" width="0.0160%" height="15" fill="rgb(215,77,49)" fg:x="5593" fg:w="24"/><text x="3.9723%" y="783.50"></text></g><g><title>CodeEmitInfo::record_debug_info (24 samples, 0.02%)</title><rect x="3.7223%" y="757" width="0.0160%" height="15" fill="rgb(248,100,22)" fg:x="5593" fg:w="24"/><text x="3.9723%" y="767.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (26 samples, 0.02%)</title><rect x="3.7476%" y="725" width="0.0173%" height="15" fill="rgb(208,67,9)" fg:x="5631" fg:w="26"/><text x="3.9976%" y="735.50"></text></g><g><title>DebugInformationRecorder::describe_scope (18 samples, 0.01%)</title><rect x="3.7649%" y="725" width="0.0120%" height="15" fill="rgb(219,133,21)" fg:x="5657" fg:w="18"/><text x="4.0149%" y="735.50"></text></g><g><title>CodeEmitInfo::record_debug_info (61 samples, 0.04%)</title><rect x="3.7436%" y="741" width="0.0406%" height="15" fill="rgb(246,46,29)" fg:x="5625" fg:w="61"/><text x="3.9936%" y="751.50"></text></g><g><title>LIR_Assembler::add_call_info (63 samples, 0.04%)</title><rect x="3.7436%" y="757" width="0.0419%" height="15" fill="rgb(246,185,52)" fg:x="5625" fg:w="63"/><text x="3.9936%" y="767.50"></text></g><g><title>LIR_Assembler::call (79 samples, 0.05%)</title><rect x="3.7389%" y="773" width="0.0526%" height="15" fill="rgb(252,136,11)" fg:x="5618" fg:w="79"/><text x="3.9889%" y="783.50"></text></g><g><title>LIR_Assembler::emit_static_call_stub (21 samples, 0.01%)</title><rect x="3.7915%" y="773" width="0.0140%" height="15" fill="rgb(219,138,53)" fg:x="5697" fg:w="21"/><text x="4.0415%" y="783.50"></text></g><g><title>LIR_Assembler::emit_call (135 samples, 0.09%)</title><rect x="3.7196%" y="789" width="0.0898%" height="15" fill="rgb(211,51,23)" fg:x="5589" fg:w="135"/><text x="3.9696%" y="799.50"></text></g><g><title>C1_MacroAssembler::inline_cache_check (17 samples, 0.01%)</title><rect x="3.8148%" y="757" width="0.0113%" height="15" fill="rgb(247,221,28)" fg:x="5732" fg:w="17"/><text x="4.0648%" y="767.50"></text></g><g><title>LIR_Assembler::check_icache (19 samples, 0.01%)</title><rect x="3.8141%" y="773" width="0.0126%" height="15" fill="rgb(251,222,45)" fg:x="5731" fg:w="19"/><text x="4.0641%" y="783.50"></text></g><g><title>LIR_Assembler::emit_op0 (27 samples, 0.02%)</title><rect x="3.8094%" y="789" width="0.0180%" height="15" fill="rgb(217,162,53)" fg:x="5724" fg:w="27"/><text x="4.0594%" y="799.50"></text></g><g><title>LIR_Assembler::mem2reg (28 samples, 0.02%)</title><rect x="3.8594%" y="773" width="0.0186%" height="15" fill="rgb(229,93,14)" fg:x="5799" fg:w="28"/><text x="4.1094%" y="783.50"></text></g><g><title>LIR_Assembler::move_op (16 samples, 0.01%)</title><rect x="3.8780%" y="773" width="0.0106%" height="15" fill="rgb(209,67,49)" fg:x="5827" fg:w="16"/><text x="4.1280%" y="783.50"></text></g><g><title>LIR_Assembler::emit_op1 (139 samples, 0.09%)</title><rect x="3.8274%" y="789" width="0.0925%" height="15" fill="rgb(213,87,29)" fg:x="5751" fg:w="139"/><text x="4.0774%" y="799.50"></text></g><g><title>LIR_Assembler::emit_op2 (17 samples, 0.01%)</title><rect x="3.9199%" y="789" width="0.0113%" height="15" fill="rgb(205,151,52)" fg:x="5890" fg:w="17"/><text x="4.1699%" y="799.50"></text></g><g><title>LIR_Assembler::type_profile_helper (19 samples, 0.01%)</title><rect x="3.9412%" y="773" width="0.0126%" height="15" fill="rgb(253,215,39)" fg:x="5922" fg:w="19"/><text x="4.1912%" y="783.50"></text></g><g><title>LIR_Assembler::emit_profile_call (57 samples, 0.04%)</title><rect x="3.9319%" y="789" width="0.0379%" height="15" fill="rgb(221,220,41)" fg:x="5908" fg:w="57"/><text x="4.1819%" y="799.50"></text></g><g><title>LIR_OpAllocObj::emit_code (17 samples, 0.01%)</title><rect x="3.9938%" y="789" width="0.0113%" height="15" fill="rgb(218,133,21)" fg:x="6001" fg:w="17"/><text x="4.2438%" y="799.50"></text></g><g><title>LIR_Assembler::emit_alloc_obj (17 samples, 0.01%)</title><rect x="3.9938%" y="773" width="0.0113%" height="15" fill="rgb(221,193,43)" fg:x="6001" fg:w="17"/><text x="4.2438%" y="783.50"></text></g><g><title>LIR_Assembler::emit_typecheck_helper (24 samples, 0.02%)</title><rect x="4.0144%" y="757" width="0.0160%" height="15" fill="rgb(240,128,52)" fg:x="6032" fg:w="24"/><text x="4.2644%" y="767.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (38 samples, 0.03%)</title><rect x="4.0138%" y="789" width="0.0253%" height="15" fill="rgb(253,114,12)" fg:x="6031" fg:w="38"/><text x="4.2638%" y="799.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (38 samples, 0.03%)</title><rect x="4.0138%" y="773" width="0.0253%" height="15" fill="rgb(215,223,47)" fg:x="6031" fg:w="38"/><text x="4.2638%" y="783.50"></text></g><g><title>LIR_Assembler::emit_code (569 samples, 0.38%)</title><rect x="3.6664%" y="805" width="0.3787%" height="15" fill="rgb(248,225,23)" fg:x="5509" fg:w="569"/><text x="3.9164%" y="815.50"></text></g><g><title>MacroAssembler::stop (24 samples, 0.02%)</title><rect x="4.0630%" y="789" width="0.0160%" height="15" fill="rgb(250,108,0)" fg:x="6105" fg:w="24"/><text x="4.3130%" y="799.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (33 samples, 0.02%)</title><rect x="4.0577%" y="805" width="0.0220%" height="15" fill="rgb(228,208,7)" fg:x="6097" fg:w="33"/><text x="4.3077%" y="815.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (26 samples, 0.02%)</title><rect x="4.1116%" y="725" width="0.0173%" height="15" fill="rgb(244,45,10)" fg:x="6178" fg:w="26"/><text x="4.3616%" y="735.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (49 samples, 0.03%)</title><rect x="4.1003%" y="741" width="0.0326%" height="15" fill="rgb(207,125,25)" fg:x="6161" fg:w="49"/><text x="4.3503%" y="751.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (18 samples, 0.01%)</title><rect x="4.1409%" y="725" width="0.0120%" height="15" fill="rgb(210,195,18)" fg:x="6222" fg:w="18"/><text x="4.3909%" y="735.50"></text></g><g><title>DebugInformationRecorder::describe_scope (41 samples, 0.03%)</title><rect x="4.1329%" y="741" width="0.0273%" height="15" fill="rgb(249,80,12)" fg:x="6210" fg:w="41"/><text x="4.3829%" y="751.50"></text></g><g><title>LIR_Assembler::add_call_info (112 samples, 0.07%)</title><rect x="4.0936%" y="773" width="0.0745%" height="15" fill="rgb(221,65,9)" fg:x="6151" fg:w="112"/><text x="4.3436%" y="783.50"></text></g><g><title>CodeEmitInfo::record_debug_info (111 samples, 0.07%)</title><rect x="4.0943%" y="757" width="0.0739%" height="15" fill="rgb(235,49,36)" fg:x="6152" fg:w="111"/><text x="4.3443%" y="767.50"></text></g><g><title>CounterOverflowStub::emit_code (139 samples, 0.09%)</title><rect x="4.0890%" y="789" width="0.0925%" height="15" fill="rgb(225,32,20)" fg:x="6144" fg:w="139"/><text x="4.3390%" y="799.50"></text></g><g><title>CodeEmitInfo::record_debug_info (41 samples, 0.03%)</title><rect x="4.1915%" y="757" width="0.0273%" height="15" fill="rgb(215,141,46)" fg:x="6298" fg:w="41"/><text x="4.4415%" y="767.50"></text></g><g><title>LIR_Assembler::add_call_info (42 samples, 0.03%)</title><rect x="4.1915%" y="773" width="0.0280%" height="15" fill="rgb(250,160,47)" fg:x="6298" fg:w="42"/><text x="4.4415%" y="783.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (51 samples, 0.03%)</title><rect x="4.1875%" y="789" width="0.0339%" height="15" fill="rgb(216,222,40)" fg:x="6292" fg:w="51"/><text x="4.4375%" y="799.50"></text></g><g><title>LIR_Assembler::add_call_info (19 samples, 0.01%)</title><rect x="4.2254%" y="773" width="0.0126%" height="15" fill="rgb(234,217,39)" fg:x="6349" fg:w="19"/><text x="4.4754%" y="783.50"></text></g><g><title>CodeEmitInfo::record_debug_info (19 samples, 0.01%)</title><rect x="4.2254%" y="757" width="0.0126%" height="15" fill="rgb(207,178,40)" fg:x="6349" fg:w="19"/><text x="4.4754%" y="767.50"></text></g><g><title>NewInstanceStub::emit_code (23 samples, 0.02%)</title><rect x="4.2254%" y="789" width="0.0153%" height="15" fill="rgb(221,136,13)" fg:x="6349" fg:w="23"/><text x="4.4754%" y="799.50"></text></g><g><title>LIR_Assembler::add_call_info (16 samples, 0.01%)</title><rect x="4.2434%" y="773" width="0.0106%" height="15" fill="rgb(249,199,10)" fg:x="6376" fg:w="16"/><text x="4.4934%" y="783.50"></text></g><g><title>CodeEmitInfo::record_debug_info (16 samples, 0.01%)</title><rect x="4.2434%" y="757" width="0.0106%" height="15" fill="rgb(249,222,13)" fg:x="6376" fg:w="16"/><text x="4.4934%" y="767.50"></text></g><g><title>PatchingStub::emit_code (25 samples, 0.02%)</title><rect x="4.2420%" y="789" width="0.0166%" height="15" fill="rgb(244,185,38)" fg:x="6374" fg:w="25"/><text x="4.4920%" y="799.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (290 samples, 0.19%)</title><rect x="4.0796%" y="805" width="0.1930%" height="15" fill="rgb(236,202,9)" fg:x="6130" fg:w="290"/><text x="4.3296%" y="815.50"></text></g><g><title>SimpleExceptionStub::emit_code (18 samples, 0.01%)</title><rect x="4.2607%" y="789" width="0.0120%" height="15" fill="rgb(250,229,37)" fg:x="6402" fg:w="18"/><text x="4.5107%" y="799.50"></text></g><g><title>Compilation::emit_code_body (936 samples, 0.62%)</title><rect x="3.6550%" y="821" width="0.6229%" height="15" fill="rgb(206,174,23)" fg:x="5492" fg:w="936"/><text x="3.9050%" y="831.50"></text></g><g><title>LIRGenerator::block_do_prolog (16 samples, 0.01%)</title><rect x="4.2966%" y="773" width="0.0106%" height="15" fill="rgb(211,33,43)" fg:x="6456" fg:w="16"/><text x="4.5466%" y="783.50"></text></g><g><title>GrowableArray<Instruction*>::grow (26 samples, 0.02%)</title><rect x="4.3246%" y="757" width="0.0173%" height="15" fill="rgb(245,58,50)" fg:x="6498" fg:w="26"/><text x="4.5746%" y="767.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (19 samples, 0.01%)</title><rect x="4.3419%" y="741" width="0.0126%" height="15" fill="rgb(244,68,36)" fg:x="6524" fg:w="19"/><text x="4.5919%" y="751.50"></text></g><g><title>LIRGenerator::increment_event_counter (23 samples, 0.02%)</title><rect x="4.3419%" y="757" width="0.0153%" height="15" fill="rgb(232,229,15)" fg:x="6524" fg:w="23"/><text x="4.5919%" y="767.50"></text></g><g><title>LIRGenerator::do_Base (85 samples, 0.06%)</title><rect x="4.3119%" y="773" width="0.0566%" height="15" fill="rgb(254,30,23)" fg:x="6479" fg:w="85"/><text x="4.5619%" y="783.50"></text></g><g><title>LIRGenerator::move_to_phi (46 samples, 0.03%)</title><rect x="4.3938%" y="741" width="0.0306%" height="15" fill="rgb(235,160,14)" fg:x="6602" fg:w="46"/><text x="4.6438%" y="751.50"></text></g><g><title>PhiResolver::create_node (40 samples, 0.03%)</title><rect x="4.3978%" y="725" width="0.0266%" height="15" fill="rgb(212,155,44)" fg:x="6608" fg:w="40"/><text x="4.6478%" y="735.50"></text></g><g><title>GrowableArray<ResolveNode*>::grow (34 samples, 0.02%)</title><rect x="4.4949%" y="725" width="0.0226%" height="15" fill="rgb(226,2,50)" fg:x="6754" fg:w="34"/><text x="4.7449%" y="735.50"></text></g><g><title>PhiResolverState::reset (133 samples, 0.09%)</title><rect x="4.4297%" y="741" width="0.0885%" height="15" fill="rgb(234,177,6)" fg:x="6656" fg:w="133"/><text x="4.6797%" y="751.50"></text></g><g><title>LIRGenerator::move_to_phi (201 samples, 0.13%)</title><rect x="4.3851%" y="757" width="0.1338%" height="15" fill="rgb(217,24,9)" fg:x="6589" fg:w="201"/><text x="4.6351%" y="767.50"></text></g><g><title>LIRGenerator::do_Goto (231 samples, 0.15%)</title><rect x="4.3745%" y="773" width="0.1537%" height="15" fill="rgb(220,13,46)" fg:x="6573" fg:w="231"/><text x="4.6245%" y="783.50"></text></g><g><title>LIRGenerator::profile_branch (26 samples, 0.02%)</title><rect x="4.5409%" y="757" width="0.0173%" height="15" fill="rgb(239,221,27)" fg:x="6823" fg:w="26"/><text x="4.7909%" y="767.50"></text></g><g><title>LIRGenerator::do_If (53 samples, 0.04%)</title><rect x="4.5282%" y="773" width="0.0353%" height="15" fill="rgb(222,198,25)" fg:x="6804" fg:w="53"/><text x="4.7782%" y="783.50"></text></g><g><title>FrameMap::java_calling_convention (18 samples, 0.01%)</title><rect x="4.5721%" y="757" width="0.0120%" height="15" fill="rgb(211,99,13)" fg:x="6870" fg:w="18"/><text x="4.8221%" y="767.50"></text></g><g><title>LIRGenerator::invoke_load_arguments (18 samples, 0.01%)</title><rect x="4.5841%" y="757" width="0.0120%" height="15" fill="rgb(232,111,31)" fg:x="6888" fg:w="18"/><text x="4.8341%" y="767.50"></text></g><g><title>LIRItem::load_item_force (16 samples, 0.01%)</title><rect x="4.5854%" y="741" width="0.0106%" height="15" fill="rgb(245,82,37)" fg:x="6890" fg:w="16"/><text x="4.8354%" y="751.50"></text></g><g><title>LIRGenerator::invoke_visit_arguments (18 samples, 0.01%)</title><rect x="4.5961%" y="757" width="0.0120%" height="15" fill="rgb(227,149,46)" fg:x="6906" fg:w="18"/><text x="4.8461%" y="767.50"></text></g><g><title>MethodLiveness::get_liveness_at (37 samples, 0.02%)</title><rect x="4.6214%" y="725" width="0.0246%" height="15" fill="rgb(218,36,50)" fg:x="6944" fg:w="37"/><text x="4.8714%" y="735.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (29 samples, 0.02%)</title><rect x="4.6267%" y="709" width="0.0193%" height="15" fill="rgb(226,80,48)" fg:x="6952" fg:w="29"/><text x="4.8767%" y="719.50"></text></g><g><title>LIRGenerator::state_for (54 samples, 0.04%)</title><rect x="4.6107%" y="757" width="0.0359%" height="15" fill="rgb(238,224,15)" fg:x="6928" fg:w="54"/><text x="4.8607%" y="767.50"></text></g><g><title>ciMethod::liveness_at_bci (41 samples, 0.03%)</title><rect x="4.6194%" y="741" width="0.0273%" height="15" fill="rgb(241,136,10)" fg:x="6941" fg:w="41"/><text x="4.8694%" y="751.50"></text></g><g><title>LIRGenerator::do_Invoke (125 samples, 0.08%)</title><rect x="4.5655%" y="773" width="0.0832%" height="15" fill="rgb(208,32,45)" fg:x="6860" fg:w="125"/><text x="4.8155%" y="783.50"></text></g><g><title>LIRGenerator::do_LoadField (20 samples, 0.01%)</title><rect x="4.6487%" y="773" width="0.0133%" height="15" fill="rgb(207,135,9)" fg:x="6985" fg:w="20"/><text x="4.8987%" y="783.50"></text></g><g><title>LIRGenerator::do_NewInstance (35 samples, 0.02%)</title><rect x="4.6653%" y="773" width="0.0233%" height="15" fill="rgb(206,86,44)" fg:x="7010" fg:w="35"/><text x="4.9153%" y="783.50"></text></g><g><title>LIRGenerator::state_for (16 samples, 0.01%)</title><rect x="4.6780%" y="757" width="0.0106%" height="15" fill="rgb(245,177,15)" fg:x="7029" fg:w="16"/><text x="4.9280%" y="767.50"></text></g><g><title>LIRGenerator::do_ProfileCall (23 samples, 0.02%)</title><rect x="4.7019%" y="773" width="0.0153%" height="15" fill="rgb(206,64,50)" fg:x="7065" fg:w="23"/><text x="4.9519%" y="783.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (24 samples, 0.02%)</title><rect x="4.7192%" y="757" width="0.0160%" height="15" fill="rgb(234,36,40)" fg:x="7091" fg:w="24"/><text x="4.9692%" y="767.50"></text></g><g><title>MethodLiveness::get_liveness_at (21 samples, 0.01%)</title><rect x="4.7445%" y="725" width="0.0140%" height="15" fill="rgb(213,64,8)" fg:x="7129" fg:w="21"/><text x="4.9945%" y="735.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (17 samples, 0.01%)</title><rect x="4.7472%" y="709" width="0.0113%" height="15" fill="rgb(210,75,36)" fg:x="7133" fg:w="17"/><text x="4.9972%" y="719.50"></text></g><g><title>LIRGenerator::state_for (36 samples, 0.02%)</title><rect x="4.7352%" y="757" width="0.0240%" height="15" fill="rgb(229,88,21)" fg:x="7115" fg:w="36"/><text x="4.9852%" y="767.50"></text></g><g><title>ciMethod::liveness_at_bci (24 samples, 0.02%)</title><rect x="4.7432%" y="741" width="0.0160%" height="15" fill="rgb(252,204,47)" fg:x="7127" fg:w="24"/><text x="4.9932%" y="751.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (66 samples, 0.04%)</title><rect x="4.7172%" y="773" width="0.0439%" height="15" fill="rgb(208,77,27)" fg:x="7088" fg:w="66"/><text x="4.9672%" y="783.50"></text></g><g><title>LIRGenerator::access_store_at (22 samples, 0.01%)</title><rect x="4.7718%" y="757" width="0.0146%" height="15" fill="rgb(221,76,26)" fg:x="7170" fg:w="22"/><text x="5.0218%" y="767.50"></text></g><g><title>LIRGenerator::do_StoreField (27 samples, 0.02%)</title><rect x="4.7698%" y="773" width="0.0180%" height="15" fill="rgb(225,139,18)" fg:x="7167" fg:w="27"/><text x="5.0198%" y="783.50"></text></g><g><title>LIRGenerator::block_do (785 samples, 0.52%)</title><rect x="4.2826%" y="789" width="0.5224%" height="15" fill="rgb(230,137,11)" fg:x="6435" fg:w="785"/><text x="4.5326%" y="799.50"></text></g><g><title>BlockList::iterate_forward (790 samples, 0.53%)</title><rect x="4.2813%" y="805" width="0.5258%" height="15" fill="rgb(212,28,1)" fg:x="6433" fg:w="790"/><text x="4.5313%" y="815.50"></text></g><g><title>ControlFlowOptimizer::delete_empty_blocks (17 samples, 0.01%)</title><rect x="4.8091%" y="789" width="0.0113%" height="15" fill="rgb(248,164,17)" fg:x="7226" fg:w="17"/><text x="5.0591%" y="799.50"></text></g><g><title>ControlFlowOptimizer::optimize (29 samples, 0.02%)</title><rect x="4.8071%" y="805" width="0.0193%" height="15" fill="rgb(222,171,42)" fg:x="7223" fg:w="29"/><text x="5.0571%" y="815.50"></text></g><g><title>IntervalWalker::walk_to (88 samples, 0.06%)</title><rect x="4.8789%" y="757" width="0.0586%" height="15" fill="rgb(243,84,45)" fg:x="7331" fg:w="88"/><text x="5.1289%" y="767.50"></text></g><g><title>IntervalWalker::append_to_unhandled (28 samples, 0.02%)</title><rect x="4.9927%" y="725" width="0.0186%" height="15" fill="rgb(252,49,23)" fg:x="7502" fg:w="28"/><text x="5.2427%" y="735.50"></text></g><g><title>LinearScanWalker::find_free_reg (99 samples, 0.07%)</title><rect x="5.0114%" y="725" width="0.0659%" height="15" fill="rgb(215,19,7)" fg:x="7530" fg:w="99"/><text x="5.2614%" y="735.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_any (20 samples, 0.01%)</title><rect x="5.0773%" y="725" width="0.0133%" height="15" fill="rgb(238,81,41)" fg:x="7629" fg:w="20"/><text x="5.3273%" y="735.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (123 samples, 0.08%)</title><rect x="5.0906%" y="725" width="0.0819%" height="15" fill="rgb(210,199,37)" fg:x="7649" fg:w="123"/><text x="5.3406%" y="735.50"></text></g><g><title>Interval::new_split_child (21 samples, 0.01%)</title><rect x="5.1891%" y="693" width="0.0140%" height="15" fill="rgb(244,192,49)" fg:x="7797" fg:w="21"/><text x="5.4391%" y="703.50"></text></g><g><title>Interval::split (38 samples, 0.03%)</title><rect x="5.1784%" y="709" width="0.0253%" height="15" fill="rgb(226,211,11)" fg:x="7781" fg:w="38"/><text x="5.4284%" y="719.50"></text></g><g><title>LinearScanWalker::split_before_usage (54 samples, 0.04%)</title><rect x="5.1724%" y="725" width="0.0359%" height="15" fill="rgb(236,162,54)" fg:x="7772" fg:w="54"/><text x="5.4224%" y="735.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (385 samples, 0.26%)</title><rect x="4.9555%" y="741" width="0.2562%" height="15" fill="rgb(220,229,9)" fg:x="7446" fg:w="385"/><text x="5.2055%" y="751.50"></text></g><g><title>IntervalWalker::append_to_unhandled (21 samples, 0.01%)</title><rect x="5.2383%" y="709" width="0.0140%" height="15" fill="rgb(250,87,22)" fg:x="7871" fg:w="21"/><text x="5.4883%" y="719.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (51 samples, 0.03%)</title><rect x="5.2357%" y="725" width="0.0339%" height="15" fill="rgb(239,43,17)" fg:x="7867" fg:w="51"/><text x="5.4857%" y="735.50"></text></g><g><title>LinearScanWalker::split_before_usage (26 samples, 0.02%)</title><rect x="5.2523%" y="709" width="0.0173%" height="15" fill="rgb(231,177,25)" fg:x="7892" fg:w="26"/><text x="5.5023%" y="719.50"></text></g><g><title>Interval::split_child_before_op_id (18 samples, 0.01%)</title><rect x="5.2709%" y="709" width="0.0120%" height="15" fill="rgb(219,179,1)" fg:x="7920" fg:w="18"/><text x="5.5209%" y="719.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (109 samples, 0.07%)</title><rect x="5.2117%" y="741" width="0.0725%" height="15" fill="rgb(238,219,53)" fg:x="7831" fg:w="109"/><text x="5.4617%" y="751.50"></text></g><g><title>LinearScanWalker::split_for_spilling (22 samples, 0.01%)</title><rect x="5.2696%" y="725" width="0.0146%" height="15" fill="rgb(232,167,36)" fg:x="7918" fg:w="22"/><text x="5.5196%" y="735.50"></text></g><g><title>LinearScanWalker::insert_move (30 samples, 0.02%)</title><rect x="5.3009%" y="741" width="0.0200%" height="15" fill="rgb(244,19,51)" fg:x="7965" fg:w="30"/><text x="5.5509%" y="751.50"></text></g><g><title>LinearScanWalker::activate_current (582 samples, 0.39%)</title><rect x="4.9375%" y="757" width="0.3873%" height="15" fill="rgb(224,6,22)" fg:x="7419" fg:w="582"/><text x="5.1875%" y="767.50"></text></g><g><title>IntervalWalker::walk_to (723 samples, 0.48%)</title><rect x="4.8450%" y="773" width="0.4812%" height="15" fill="rgb(224,145,5)" fg:x="7280" fg:w="723"/><text x="5.0950%" y="783.50"></text></g><g><title>__tls_get_addr (17 samples, 0.01%)</title><rect x="5.3521%" y="741" width="0.0113%" height="15" fill="rgb(234,130,49)" fg:x="8042" fg:w="17"/><text x="5.6021%" y="751.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (54 samples, 0.04%)</title><rect x="5.3282%" y="773" width="0.0359%" height="15" fill="rgb(254,6,2)" fg:x="8006" fg:w="54"/><text x="5.5782%" y="783.50"></text></g><g><title>resource_allocate_bytes (33 samples, 0.02%)</title><rect x="5.3421%" y="757" width="0.0220%" height="15" fill="rgb(208,96,46)" fg:x="8027" fg:w="33"/><text x="5.5921%" y="767.50"></text></g><g><title>LinearScan::allocate_registers (793 samples, 0.53%)</title><rect x="4.8390%" y="789" width="0.5278%" height="15" fill="rgb(239,3,39)" fg:x="7271" fg:w="793"/><text x="5.0890%" y="799.50"></text></g><g><title>LIR_OpVisitState::visit (65 samples, 0.04%)</title><rect x="5.4653%" y="757" width="0.0433%" height="15" fill="rgb(233,210,1)" fg:x="8212" fg:w="65"/><text x="5.7153%" y="767.50"></text></g><g><title>LIR_OpVisitState::append (24 samples, 0.02%)</title><rect x="5.4926%" y="741" width="0.0160%" height="15" fill="rgb(244,137,37)" fg:x="8253" fg:w="24"/><text x="5.7426%" y="751.50"></text></g><g><title>Interval::split_child_at_op_id (28 samples, 0.02%)</title><rect x="5.5258%" y="741" width="0.0186%" height="15" fill="rgb(240,136,2)" fg:x="8303" fg:w="28"/><text x="5.7758%" y="751.50"></text></g><g><title>LinearScan::color_lir_opr (63 samples, 0.04%)</title><rect x="5.5085%" y="757" width="0.0419%" height="15" fill="rgb(239,18,37)" fg:x="8277" fg:w="63"/><text x="5.7585%" y="767.50"></text></g><g><title>LinearScan::append_scope_value (19 samples, 0.01%)</title><rect x="5.5664%" y="741" width="0.0126%" height="15" fill="rgb(218,185,22)" fg:x="8364" fg:w="19"/><text x="5.8164%" y="751.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (31 samples, 0.02%)</title><rect x="5.6010%" y="725" width="0.0206%" height="15" fill="rgb(225,218,4)" fg:x="8416" fg:w="31"/><text x="5.8510%" y="735.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (69 samples, 0.05%)</title><rect x="5.5837%" y="741" width="0.0459%" height="15" fill="rgb(230,182,32)" fg:x="8390" fg:w="69"/><text x="5.8337%" y="751.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (139 samples, 0.09%)</title><rect x="5.5505%" y="757" width="0.0925%" height="15" fill="rgb(242,56,43)" fg:x="8340" fg:w="139"/><text x="5.8005%" y="767.50"></text></g><g><title>IntervalWalker::walk_to (65 samples, 0.04%)</title><rect x="5.6809%" y="725" width="0.0433%" height="15" fill="rgb(233,99,24)" fg:x="8536" fg:w="65"/><text x="5.9309%" y="735.50"></text></g><g><title>LinearScan::compute_oop_map (144 samples, 0.10%)</title><rect x="5.6563%" y="741" width="0.0958%" height="15" fill="rgb(234,209,42)" fg:x="8499" fg:w="144"/><text x="5.9063%" y="751.50"></text></g><g><title>LinearScan::compute_oop_map (165 samples, 0.11%)</title><rect x="5.6430%" y="757" width="0.1098%" height="15" fill="rgb(227,7,12)" fg:x="8479" fg:w="165"/><text x="5.8930%" y="767.50"></text></g><g><title>LinearScan::assign_reg_num (569 samples, 0.38%)</title><rect x="5.3748%" y="773" width="0.3787%" height="15" fill="rgb(245,203,43)" fg:x="8076" fg:w="569"/><text x="5.6248%" y="783.50"></text></g><g><title>LinearScan::assign_reg_num (602 samples, 0.40%)</title><rect x="5.3668%" y="789" width="0.4006%" height="15" fill="rgb(238,205,33)" fg:x="8064" fg:w="602"/><text x="5.6168%" y="799.50"></text></g><g><title>LinearScan::init_compute_oop_maps (18 samples, 0.01%)</title><rect x="5.7554%" y="773" width="0.0120%" height="15" fill="rgb(231,56,7)" fg:x="8648" fg:w="18"/><text x="6.0054%" y="783.50"></text></g><g><title>BitMap::get_next_one_offset (32 samples, 0.02%)</title><rect x="5.8872%" y="773" width="0.0213%" height="15" fill="rgb(244,186,29)" fg:x="8846" fg:w="32"/><text x="6.1372%" y="783.50"></text></g><g><title>Interval::add_use_pos (16 samples, 0.01%)</title><rect x="5.9158%" y="773" width="0.0106%" height="15" fill="rgb(234,111,31)" fg:x="8889" fg:w="16"/><text x="6.1658%" y="783.50"></text></g><g><title>LIR_OpVisitState::visit (74 samples, 0.05%)</title><rect x="5.9351%" y="773" width="0.0492%" height="15" fill="rgb(241,149,10)" fg:x="8918" fg:w="74"/><text x="6.1851%" y="783.50"></text></g><g><title>LIR_OpVisitState::append (25 samples, 0.02%)</title><rect x="5.9677%" y="757" width="0.0166%" height="15" fill="rgb(249,206,44)" fg:x="8967" fg:w="25"/><text x="6.2177%" y="767.50"></text></g><g><title>LinearScan::add_def (57 samples, 0.04%)</title><rect x="5.9844%" y="773" width="0.0379%" height="15" fill="rgb(251,153,30)" fg:x="8992" fg:w="57"/><text x="6.2344%" y="783.50"></text></g><g><title>LinearScan::add_register_hints (24 samples, 0.02%)</title><rect x="6.0223%" y="773" width="0.0160%" height="15" fill="rgb(239,152,38)" fg:x="9049" fg:w="24"/><text x="6.2723%" y="783.50"></text></g><g><title>Interval::add_range (27 samples, 0.02%)</title><rect x="6.0436%" y="757" width="0.0180%" height="15" fill="rgb(249,139,47)" fg:x="9081" fg:w="27"/><text x="6.2936%" y="767.50"></text></g><g><title>Interval::Interval (20 samples, 0.01%)</title><rect x="6.0662%" y="741" width="0.0133%" height="15" fill="rgb(244,64,35)" fg:x="9115" fg:w="20"/><text x="6.3162%" y="751.50"></text></g><g><title>LinearScan::add_temp (69 samples, 0.05%)</title><rect x="6.0383%" y="773" width="0.0459%" height="15" fill="rgb(216,46,15)" fg:x="9073" fg:w="69"/><text x="6.2883%" y="783.50"></text></g><g><title>LinearScan::create_interval (34 samples, 0.02%)</title><rect x="6.0616%" y="757" width="0.0226%" height="15" fill="rgb(250,74,19)" fg:x="9108" fg:w="34"/><text x="6.3116%" y="767.50"></text></g><g><title>Interval::add_range (44 samples, 0.03%)</title><rect x="6.1175%" y="757" width="0.0293%" height="15" fill="rgb(249,42,33)" fg:x="9192" fg:w="44"/><text x="6.3675%" y="767.50"></text></g><g><title>Interval::Interval (47 samples, 0.03%)</title><rect x="6.1521%" y="741" width="0.0313%" height="15" fill="rgb(242,149,17)" fg:x="9244" fg:w="47"/><text x="6.4021%" y="751.50"></text></g><g><title>resource_allocate_bytes (22 samples, 0.01%)</title><rect x="6.1687%" y="725" width="0.0146%" height="15" fill="rgb(244,29,21)" fg:x="9269" fg:w="22"/><text x="6.4187%" y="735.50"></text></g><g><title>LinearScan::add_use (155 samples, 0.10%)</title><rect x="6.0842%" y="773" width="0.1032%" height="15" fill="rgb(220,130,37)" fg:x="9142" fg:w="155"/><text x="6.3342%" y="783.50"></text></g><g><title>LinearScan::create_interval (61 samples, 0.04%)</title><rect x="6.1468%" y="757" width="0.0406%" height="15" fill="rgb(211,67,2)" fg:x="9236" fg:w="61"/><text x="6.3968%" y="767.50"></text></g><g><title>LinearScan::use_kind_of_input_operand (24 samples, 0.02%)</title><rect x="6.1940%" y="773" width="0.0160%" height="15" fill="rgb(235,68,52)" fg:x="9307" fg:w="24"/><text x="6.4440%" y="783.50"></text></g><g><title>LinearScan::use_kind_of_output_operand (20 samples, 0.01%)</title><rect x="6.2100%" y="773" width="0.0133%" height="15" fill="rgb(246,142,3)" fg:x="9331" fg:w="20"/><text x="6.4600%" y="783.50"></text></g><g><title>LinearScan::build_intervals (691 samples, 0.46%)</title><rect x="5.7674%" y="789" width="0.4599%" height="15" fill="rgb(241,25,7)" fg:x="8666" fg:w="691"/><text x="6.0174%" y="799.50"></text></g><g><title>LinearScan::compute_global_live_sets (54 samples, 0.04%)</title><rect x="6.2273%" y="789" width="0.0359%" height="15" fill="rgb(242,119,39)" fg:x="9357" fg:w="54"/><text x="6.4773%" y="799.50"></text></g><g><title>LIR_OpVisitState::visit (90 samples, 0.06%)</title><rect x="6.3424%" y="773" width="0.0599%" height="15" fill="rgb(241,98,45)" fg:x="9530" fg:w="90"/><text x="6.5924%" y="783.50"></text></g><g><title>LIR_OpVisitState::append (24 samples, 0.02%)</title><rect x="6.3863%" y="757" width="0.0160%" height="15" fill="rgb(254,28,30)" fg:x="9596" fg:w="24"/><text x="6.6363%" y="767.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (33 samples, 0.02%)</title><rect x="6.4090%" y="773" width="0.0220%" height="15" fill="rgb(241,142,54)" fg:x="9630" fg:w="33"/><text x="6.6590%" y="783.50"></text></g><g><title>resource_allocate_bytes (19 samples, 0.01%)</title><rect x="6.4183%" y="757" width="0.0126%" height="15" fill="rgb(222,85,15)" fg:x="9644" fg:w="19"/><text x="6.6683%" y="767.50"></text></g><g><title>LinearScan::compute_local_live_sets (253 samples, 0.17%)</title><rect x="6.2632%" y="789" width="0.1684%" height="15" fill="rgb(210,85,47)" fg:x="9411" fg:w="253"/><text x="6.5132%" y="799.50"></text></g><g><title>LinearScan::eliminate_spill_moves (50 samples, 0.03%)</title><rect x="6.4316%" y="789" width="0.0333%" height="15" fill="rgb(224,206,25)" fg:x="9664" fg:w="50"/><text x="6.6816%" y="799.50"></text></g><g><title>LinearScan::number_instructions (45 samples, 0.03%)</title><rect x="6.4649%" y="789" width="0.0299%" height="15" fill="rgb(243,201,19)" fg:x="9714" fg:w="45"/><text x="6.7149%" y="799.50"></text></g><g><title>BitMap::get_next_one_offset (19 samples, 0.01%)</title><rect x="6.5368%" y="757" width="0.0126%" height="15" fill="rgb(236,59,4)" fg:x="9822" fg:w="19"/><text x="6.7868%" y="767.50"></text></g><g><title>Interval::split_child_at_op_id (23 samples, 0.02%)</title><rect x="6.5494%" y="757" width="0.0153%" height="15" fill="rgb(254,179,45)" fg:x="9841" fg:w="23"/><text x="6.7994%" y="767.50"></text></g><g><title>LinearScan::resolve_collect_mappings (77 samples, 0.05%)</title><rect x="6.5141%" y="773" width="0.0512%" height="15" fill="rgb(226,14,10)" fg:x="9788" fg:w="77"/><text x="6.7641%" y="783.50"></text></g><g><title>LinearScan::resolve_data_flow (119 samples, 0.08%)</title><rect x="6.4962%" y="789" width="0.0792%" height="15" fill="rgb(244,27,41)" fg:x="9761" fg:w="119"/><text x="6.7462%" y="799.50"></text></g><g><title>LinearScan::resolve_exception_handlers (33 samples, 0.02%)</title><rect x="6.5754%" y="789" width="0.0220%" height="15" fill="rgb(235,35,32)" fg:x="9880" fg:w="33"/><text x="6.8254%" y="799.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (43 samples, 0.03%)</title><rect x="6.5980%" y="789" width="0.0286%" height="15" fill="rgb(218,68,31)" fg:x="9914" fg:w="43"/><text x="6.8480%" y="799.50"></text></g><g><title>__GI___qsort_r (25 samples, 0.02%)</title><rect x="6.6100%" y="773" width="0.0166%" height="15" fill="rgb(207,120,37)" fg:x="9932" fg:w="25"/><text x="6.8600%" y="783.50"></text></g><g><title>msort_with_tmp (22 samples, 0.01%)</title><rect x="6.6120%" y="757" width="0.0146%" height="15" fill="rgb(227,98,0)" fg:x="9935" fg:w="22"/><text x="6.8620%" y="767.50"></text></g><g><title>msort_with_tmp (22 samples, 0.01%)</title><rect x="6.6120%" y="741" width="0.0146%" height="15" fill="rgb(207,7,3)" fg:x="9935" fg:w="22"/><text x="6.8620%" y="751.50"></text></g><g><title>msort_with_tmp (19 samples, 0.01%)</title><rect x="6.6140%" y="725" width="0.0126%" height="15" fill="rgb(206,98,19)" fg:x="9938" fg:w="19"/><text x="6.8640%" y="735.50"></text></g><g><title>msort_with_tmp (19 samples, 0.01%)</title><rect x="6.6140%" y="709" width="0.0126%" height="15" fill="rgb(217,5,26)" fg:x="9938" fg:w="19"/><text x="6.8640%" y="719.50"></text></g><g><title>msort_with_tmp (17 samples, 0.01%)</title><rect x="6.6153%" y="693" width="0.0113%" height="15" fill="rgb(235,190,38)" fg:x="9940" fg:w="17"/><text x="6.8653%" y="703.50"></text></g><g><title>msort_with_tmp (16 samples, 0.01%)</title><rect x="6.6160%" y="677" width="0.0106%" height="15" fill="rgb(247,86,24)" fg:x="9941" fg:w="16"/><text x="6.8660%" y="687.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (34 samples, 0.02%)</title><rect x="6.6266%" y="789" width="0.0226%" height="15" fill="rgb(205,101,16)" fg:x="9957" fg:w="34"/><text x="6.8766%" y="799.50"></text></g><g><title>LinearScan::do_linear_scan (2,737 samples, 1.82%)</title><rect x="4.8290%" y="805" width="1.8215%" height="15" fill="rgb(246,168,33)" fg:x="7256" fg:w="2737"/><text x="5.0790%" y="815.50">L..</text></g><g><title>Compilation::emit_lir (3,567 samples, 2.37%)</title><rect x="4.2780%" y="821" width="2.3739%" height="15" fill="rgb(231,114,1)" fg:x="6428" fg:w="3567"/><text x="4.5280%" y="831.50">Co..</text></g><g><title>MethodData::compute_allocation_size_in_bytes (16 samples, 0.01%)</title><rect x="6.6699%" y="757" width="0.0106%" height="15" fill="rgb(207,184,53)" fg:x="10022" fg:w="16"/><text x="6.9199%" y="767.50"></text></g><g><title>MethodData::post_initialize (18 samples, 0.01%)</title><rect x="6.6872%" y="741" width="0.0120%" height="15" fill="rgb(224,95,51)" fg:x="10048" fg:w="18"/><text x="6.9372%" y="751.50"></text></g><g><title>MethodData::initialize (32 samples, 0.02%)</title><rect x="6.6805%" y="757" width="0.0213%" height="15" fill="rgb(212,188,45)" fg:x="10038" fg:w="32"/><text x="6.9305%" y="767.50"></text></g><g><title>MethodData::allocate (61 samples, 0.04%)</title><rect x="6.6619%" y="773" width="0.0406%" height="15" fill="rgb(223,154,38)" fg:x="10010" fg:w="61"/><text x="6.9119%" y="783.50"></text></g><g><title>Method::build_interpreter_method_data (62 samples, 0.04%)</title><rect x="6.6619%" y="789" width="0.0413%" height="15" fill="rgb(251,22,52)" fg:x="10010" fg:w="62"/><text x="6.9119%" y="799.50"></text></g><g><title>ciMethodData::load_data (36 samples, 0.02%)</title><rect x="6.7031%" y="789" width="0.0240%" height="15" fill="rgb(229,209,22)" fg:x="10072" fg:w="36"/><text x="6.9531%" y="799.50"></text></g><g><title>Compilation::compile_java_method (8,445 samples, 5.62%)</title><rect x="1.1094%" y="837" width="5.6203%" height="15" fill="rgb(234,138,34)" fg:x="1667" fg:w="8445"/><text x="1.3594%" y="847.50">Compila..</text></g><g><title>ciMethod::ensure_method_data (103 samples, 0.07%)</title><rect x="6.6612%" y="821" width="0.0685%" height="15" fill="rgb(212,95,11)" fg:x="10009" fg:w="103"/><text x="6.9112%" y="831.50"></text></g><g><title>ciMethod::ensure_method_data (102 samples, 0.07%)</title><rect x="6.6619%" y="805" width="0.0679%" height="15" fill="rgb(240,179,47)" fg:x="10010" fg:w="102"/><text x="6.9119%" y="815.50"></text></g><g><title>Dependencies::initialize (20 samples, 0.01%)</title><rect x="6.7391%" y="821" width="0.0133%" height="15" fill="rgb(240,163,11)" fg:x="10126" fg:w="20"/><text x="6.9891%" y="831.50"></text></g><g><title>Compilation::initialize (35 samples, 0.02%)</title><rect x="6.7298%" y="837" width="0.0233%" height="15" fill="rgb(236,37,12)" fg:x="10112" fg:w="35"/><text x="6.9798%" y="847.50"></text></g><g><title>CodeBuffer::finalize_oop_references (71 samples, 0.05%)</title><rect x="6.7877%" y="805" width="0.0473%" height="15" fill="rgb(232,164,16)" fg:x="10199" fg:w="71"/><text x="7.0377%" y="815.50"></text></g><g><title>CodeHeap::allocate (21 samples, 0.01%)</title><rect x="6.8356%" y="789" width="0.0140%" height="15" fill="rgb(244,205,15)" fg:x="10271" fg:w="21"/><text x="7.0856%" y="799.50"></text></g><g><title>CodeHeap::expand_by (19 samples, 0.01%)</title><rect x="6.8496%" y="789" width="0.0126%" height="15" fill="rgb(223,117,47)" fg:x="10292" fg:w="19"/><text x="7.0996%" y="799.50"></text></g><g><title>VirtualSpace::expand_by (19 samples, 0.01%)</title><rect x="6.8496%" y="773" width="0.0126%" height="15" fill="rgb(244,107,35)" fg:x="10292" fg:w="19"/><text x="7.0996%" y="783.50"></text></g><g><title>os::commit_memory (18 samples, 0.01%)</title><rect x="6.8502%" y="757" width="0.0120%" height="15" fill="rgb(205,140,8)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="767.50"></text></g><g><title>os::pd_commit_memory (18 samples, 0.01%)</title><rect x="6.8502%" y="741" width="0.0120%" height="15" fill="rgb(228,84,46)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="751.50"></text></g><g><title>__GI___mmap64 (18 samples, 0.01%)</title><rect x="6.8502%" y="725" width="0.0120%" height="15" fill="rgb(254,188,9)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="735.50"></text></g><g><title>__GI___mmap64 (18 samples, 0.01%)</title><rect x="6.8502%" y="709" width="0.0120%" height="15" fill="rgb(206,112,54)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="6.8502%" y="693" width="0.0120%" height="15" fill="rgb(216,84,49)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="703.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="6.8502%" y="677" width="0.0120%" height="15" fill="rgb(214,194,35)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="687.50"></text></g><g><title>vm_mmap_pgoff (18 samples, 0.01%)</title><rect x="6.8502%" y="661" width="0.0120%" height="15" fill="rgb(249,28,3)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="671.50"></text></g><g><title>do_mmap (18 samples, 0.01%)</title><rect x="6.8502%" y="645" width="0.0120%" height="15" fill="rgb(222,56,52)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="655.50"></text></g><g><title>mmap_region (17 samples, 0.01%)</title><rect x="6.8509%" y="629" width="0.0113%" height="15" fill="rgb(245,217,50)" fg:x="10294" fg:w="17"/><text x="7.1009%" y="639.50"></text></g><g><title>CodeCache::allocate (46 samples, 0.03%)</title><rect x="6.8349%" y="805" width="0.0306%" height="15" fill="rgb(213,201,24)" fg:x="10270" fg:w="46"/><text x="7.0849%" y="815.50"></text></g><g><title>__pthread_cond_signal (16 samples, 0.01%)</title><rect x="6.8802%" y="805" width="0.0106%" height="15" fill="rgb(248,116,28)" fg:x="10338" fg:w="16"/><text x="7.1302%" y="815.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (28 samples, 0.02%)</title><rect x="6.9015%" y="757" width="0.0186%" height="15" fill="rgb(219,72,43)" fg:x="10370" fg:w="28"/><text x="7.1515%" y="767.50"></text></g><g><title>Relocation::pd_call_destination (23 samples, 0.02%)</title><rect x="6.9048%" y="741" width="0.0153%" height="15" fill="rgb(209,138,14)" fg:x="10375" fg:w="23"/><text x="7.1548%" y="751.50"></text></g><g><title>asm_exc_page_fault (19 samples, 0.01%)</title><rect x="6.9441%" y="741" width="0.0126%" height="15" fill="rgb(222,18,33)" fg:x="10434" fg:w="19"/><text x="7.1941%" y="751.50"></text></g><g><title>exc_page_fault (19 samples, 0.01%)</title><rect x="6.9441%" y="725" width="0.0126%" height="15" fill="rgb(213,199,7)" fg:x="10434" fg:w="19"/><text x="7.1941%" y="735.50"></text></g><g><title>do_user_addr_fault (19 samples, 0.01%)</title><rect x="6.9441%" y="709" width="0.0126%" height="15" fill="rgb(250,110,10)" fg:x="10434" fg:w="19"/><text x="7.1941%" y="719.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (35 samples, 0.02%)</title><rect x="6.9361%" y="757" width="0.0233%" height="15" fill="rgb(248,123,6)" fg:x="10422" fg:w="35"/><text x="7.1861%" y="767.50"></text></g><g><title>CodeBuffer::relocate_code_to (103 samples, 0.07%)</title><rect x="6.8935%" y="773" width="0.0685%" height="15" fill="rgb(206,91,31)" fg:x="10358" fg:w="103"/><text x="7.1435%" y="783.50"></text></g><g><title>CodeBuffer::copy_code_to (114 samples, 0.08%)</title><rect x="6.8915%" y="789" width="0.0759%" height="15" fill="rgb(211,154,13)" fg:x="10355" fg:w="114"/><text x="7.1415%" y="799.50"></text></g><g><title>CodeBlob::CodeBlob (31 samples, 0.02%)</title><rect x="6.9727%" y="773" width="0.0206%" height="15" fill="rgb(225,148,7)" fg:x="10477" fg:w="31"/><text x="7.2227%" y="783.50"></text></g><g><title>ImmutableOopMapSet::build_from (30 samples, 0.02%)</title><rect x="6.9733%" y="757" width="0.0200%" height="15" fill="rgb(220,160,43)" fg:x="10478" fg:w="30"/><text x="7.2233%" y="767.50"></text></g><g><title>CompiledMethod::CompiledMethod (38 samples, 0.03%)</title><rect x="6.9727%" y="789" width="0.0253%" height="15" fill="rgb(213,52,39)" fg:x="10477" fg:w="38"/><text x="7.2227%" y="799.50"></text></g><g><title>G1CodeRootSet::add (35 samples, 0.02%)</title><rect x="7.0086%" y="757" width="0.0233%" height="15" fill="rgb(243,137,7)" fg:x="10531" fg:w="35"/><text x="7.2586%" y="767.50"></text></g><g><title>G1CollectedHeap::register_nmethod (51 samples, 0.03%)</title><rect x="7.0040%" y="789" width="0.0339%" height="15" fill="rgb(230,79,13)" fg:x="10524" fg:w="51"/><text x="7.2540%" y="799.50"></text></g><g><title>nmethod::oops_do (51 samples, 0.03%)</title><rect x="7.0040%" y="773" width="0.0339%" height="15" fill="rgb(247,105,23)" fg:x="10524" fg:w="51"/><text x="7.2540%" y="783.50"></text></g><g><title>nmethod::nmethod (262 samples, 0.17%)</title><rect x="6.8908%" y="805" width="0.1744%" height="15" fill="rgb(223,179,41)" fg:x="10354" fg:w="262"/><text x="7.1408%" y="815.50"></text></g><g><title>nmethod::fix_oop_relocations (23 samples, 0.02%)</title><rect x="7.0499%" y="789" width="0.0153%" height="15" fill="rgb(218,9,34)" fg:x="10593" fg:w="23"/><text x="7.2999%" y="799.50"></text></g><g><title>nmethod::new_nmethod (424 samples, 0.28%)</title><rect x="6.7843%" y="821" width="0.2822%" height="15" fill="rgb(222,106,8)" fg:x="10194" fg:w="424"/><text x="7.0343%" y="831.50"></text></g><g><title>ciEnv::register_method (470 samples, 0.31%)</title><rect x="6.7544%" y="837" width="0.3128%" height="15" fill="rgb(211,220,0)" fg:x="10149" fg:w="470"/><text x="7.0044%" y="847.50"></text></g><g><title>Compilation::compile_method (8,959 samples, 5.96%)</title><rect x="1.1061%" y="853" width="5.9624%" height="15" fill="rgb(229,52,16)" fg:x="1662" fg:w="8959"/><text x="1.3561%" y="863.50">Compilat..</text></g><g><title>Compilation::Compilation (8,969 samples, 5.97%)</title><rect x="1.1041%" y="869" width="5.9691%" height="15" fill="rgb(212,155,18)" fg:x="1659" fg:w="8969"/><text x="1.3541%" y="879.50">Compilat..</text></g><g><title>Compiler::compile_method (8,989 samples, 5.98%)</title><rect x="1.0928%" y="885" width="5.9824%" height="15" fill="rgb(242,21,14)" fg:x="1642" fg:w="8989"/><text x="1.3428%" y="895.50">Compiler..</text></g><g><title>StringEventLog::log (16 samples, 0.01%)</title><rect x="7.0885%" y="885" width="0.0106%" height="15" fill="rgb(222,19,48)" fg:x="10651" fg:w="16"/><text x="7.3385%" y="895.50"></text></g><g><title>ciObjectFactory::ciObjectFactory (39 samples, 0.03%)</title><rect x="7.1124%" y="869" width="0.0260%" height="15" fill="rgb(232,45,27)" fg:x="10687" fg:w="39"/><text x="7.3624%" y="879.50"></text></g><g><title>ciObjectFactory::get (41 samples, 0.03%)</title><rect x="7.1384%" y="869" width="0.0273%" height="15" fill="rgb(249,103,42)" fg:x="10726" fg:w="41"/><text x="7.3884%" y="879.50"></text></g><g><title>ciObjectFactory::get_metadata (26 samples, 0.02%)</title><rect x="7.1484%" y="853" width="0.0173%" height="15" fill="rgb(246,81,33)" fg:x="10741" fg:w="26"/><text x="7.3984%" y="863.50"></text></g><g><title>ciObjectFactory::create_new_metadata (26 samples, 0.02%)</title><rect x="7.1484%" y="837" width="0.0173%" height="15" fill="rgb(252,33,42)" fg:x="10741" fg:w="26"/><text x="7.3984%" y="847.50"></text></g><g><title>ciInstanceKlass::ciInstanceKlass (22 samples, 0.01%)</title><rect x="7.1510%" y="821" width="0.0146%" height="15" fill="rgb(209,212,41)" fg:x="10745" fg:w="22"/><text x="7.4010%" y="831.50"></text></g><g><title>ciEnv::ciEnv (92 samples, 0.06%)</title><rect x="7.1058%" y="885" width="0.0612%" height="15" fill="rgb(207,154,6)" fg:x="10677" fg:w="92"/><text x="7.3558%" y="895.50"></text></g><g><title>SignatureStream::as_symbol (31 samples, 0.02%)</title><rect x="7.1823%" y="805" width="0.0206%" height="15" fill="rgb(223,64,47)" fg:x="10792" fg:w="31"/><text x="7.4323%" y="815.50"></text></g><g><title>SymbolTable::lookup (29 samples, 0.02%)</title><rect x="7.1836%" y="789" width="0.0193%" height="15" fill="rgb(211,161,38)" fg:x="10794" fg:w="29"/><text x="7.4336%" y="799.50"></text></g><g><title>Dictionary::find (16 samples, 0.01%)</title><rect x="7.2123%" y="773" width="0.0106%" height="15" fill="rgb(219,138,40)" fg:x="10837" fg:w="16"/><text x="7.4623%" y="783.50"></text></g><g><title>SystemDictionary::find_constrained_instance_or_array_klass (19 samples, 0.01%)</title><rect x="7.2123%" y="789" width="0.0126%" height="15" fill="rgb(241,228,46)" fg:x="10837" fg:w="19"/><text x="7.4623%" y="799.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (35 samples, 0.02%)</title><rect x="7.2089%" y="805" width="0.0233%" height="15" fill="rgb(223,209,38)" fg:x="10832" fg:w="35"/><text x="7.4589%" y="815.50"></text></g><g><title>ciMethod::ciMethod (102 samples, 0.07%)</title><rect x="7.1703%" y="837" width="0.0679%" height="15" fill="rgb(236,164,45)" fg:x="10774" fg:w="102"/><text x="7.4203%" y="847.50"></text></g><g><title>ciSignature::ciSignature (91 samples, 0.06%)</title><rect x="7.1777%" y="821" width="0.0606%" height="15" fill="rgb(231,15,5)" fg:x="10785" fg:w="91"/><text x="7.4277%" y="831.50"></text></g><g><title>ciEnv::get_method_from_handle (117 samples, 0.08%)</title><rect x="7.1670%" y="885" width="0.0779%" height="15" fill="rgb(252,35,15)" fg:x="10769" fg:w="117"/><text x="7.4170%" y="895.50"></text></g><g><title>ciObjectFactory::get_metadata (115 samples, 0.08%)</title><rect x="7.1683%" y="869" width="0.0765%" height="15" fill="rgb(248,181,18)" fg:x="10771" fg:w="115"/><text x="7.4183%" y="879.50"></text></g><g><title>ciObjectFactory::create_new_metadata (114 samples, 0.08%)</title><rect x="7.1690%" y="853" width="0.0759%" height="15" fill="rgb(233,39,42)" fg:x="10772" fg:w="114"/><text x="7.4190%" y="863.50"></text></g><g><title>ciEnv::~ciEnv (24 samples, 0.02%)</title><rect x="7.2449%" y="885" width="0.0160%" height="15" fill="rgb(238,110,33)" fg:x="10886" fg:w="24"/><text x="7.4949%" y="895.50"></text></g><g><title>ciObjectFactory::remove_symbols (20 samples, 0.01%)</title><rect x="7.2475%" y="869" width="0.0133%" height="15" fill="rgb(233,195,10)" fg:x="10890" fg:w="20"/><text x="7.4975%" y="879.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (9,470 samples, 6.30%)</title><rect x="0.9590%" y="901" width="6.3025%" height="15" fill="rgb(254,105,3)" fg:x="1441" fg:w="9470"/><text x="1.2090%" y="911.50">CompileB..</text></g><g><title>__do_sys_sysinfo (17 samples, 0.01%)</title><rect x="7.2688%" y="821" width="0.0113%" height="15" fill="rgb(221,225,9)" fg:x="10922" fg:w="17"/><text x="7.5188%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="7.2688%" y="853" width="0.0120%" height="15" fill="rgb(224,227,45)" fg:x="10922" fg:w="18"/><text x="7.5188%" y="863.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="7.2688%" y="837" width="0.0120%" height="15" fill="rgb(229,198,43)" fg:x="10922" fg:w="18"/><text x="7.5188%" y="847.50"></text></g><g><title>CompileBroker::possibly_add_compiler_threads (30 samples, 0.02%)</title><rect x="7.2615%" y="901" width="0.0200%" height="15" fill="rgb(206,209,35)" fg:x="10911" fg:w="30"/><text x="7.5115%" y="911.50"></text></g><g><title>os::available_memory (20 samples, 0.01%)</title><rect x="7.2682%" y="885" width="0.0133%" height="15" fill="rgb(245,195,53)" fg:x="10921" fg:w="20"/><text x="7.5182%" y="895.50"></text></g><g><title>__sysinfo (19 samples, 0.01%)</title><rect x="7.2688%" y="869" width="0.0126%" height="15" fill="rgb(240,92,26)" fg:x="10922" fg:w="19"/><text x="7.5188%" y="879.50"></text></g><g><title>CompileTask::select_for_compilation (18 samples, 0.01%)</title><rect x="7.2868%" y="885" width="0.0120%" height="15" fill="rgb(207,40,23)" fg:x="10949" fg:w="18"/><text x="7.5368%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="7.3274%" y="645" width="0.0226%" height="15" fill="rgb(223,111,35)" fg:x="11010" fg:w="34"/><text x="7.5774%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="7.3274%" y="629" width="0.0226%" height="15" fill="rgb(229,147,28)" fg:x="11010" fg:w="34"/><text x="7.5774%" y="639.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="7.3274%" y="613" width="0.0226%" height="15" fill="rgb(211,29,28)" fg:x="11010" fg:w="34"/><text x="7.5774%" y="623.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="7.3274%" y="661" width="0.0246%" height="15" fill="rgb(228,72,33)" fg:x="11010" fg:w="37"/><text x="7.5774%" y="671.50"></text></g><g><title>futex_wait_queue_me (61 samples, 0.04%)</title><rect x="7.3148%" y="709" width="0.0406%" height="15" fill="rgb(205,214,31)" fg:x="10991" fg:w="61"/><text x="7.5648%" y="719.50"></text></g><g><title>schedule (57 samples, 0.04%)</title><rect x="7.3174%" y="693" width="0.0379%" height="15" fill="rgb(224,111,15)" fg:x="10995" fg:w="57"/><text x="7.5674%" y="703.50"></text></g><g><title>__schedule (56 samples, 0.04%)</title><rect x="7.3181%" y="677" width="0.0373%" height="15" fill="rgb(253,21,26)" fg:x="10996" fg:w="56"/><text x="7.5681%" y="687.50"></text></g><g><title>do_futex (68 samples, 0.05%)</title><rect x="7.3128%" y="741" width="0.0453%" height="15" fill="rgb(245,139,43)" fg:x="10988" fg:w="68"/><text x="7.5628%" y="751.50"></text></g><g><title>futex_wait (68 samples, 0.05%)</title><rect x="7.3128%" y="725" width="0.0453%" height="15" fill="rgb(252,170,7)" fg:x="10988" fg:w="68"/><text x="7.5628%" y="735.50"></text></g><g><title>do_syscall_64 (69 samples, 0.05%)</title><rect x="7.3128%" y="773" width="0.0459%" height="15" fill="rgb(231,118,14)" fg:x="10988" fg:w="69"/><text x="7.5628%" y="783.50"></text></g><g><title>__x64_sys_futex (69 samples, 0.05%)</title><rect x="7.3128%" y="757" width="0.0459%" height="15" fill="rgb(238,83,0)" fg:x="10988" fg:w="69"/><text x="7.5628%" y="767.50"></text></g><g><title>__pthread_cond_timedwait (78 samples, 0.05%)</title><rect x="7.3074%" y="837" width="0.0519%" height="15" fill="rgb(221,39,39)" fg:x="10980" fg:w="78"/><text x="7.5574%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (78 samples, 0.05%)</title><rect x="7.3074%" y="821" width="0.0519%" height="15" fill="rgb(222,119,46)" fg:x="10980" fg:w="78"/><text x="7.5574%" y="831.50"></text></g><g><title>futex_abstimed_wait_cancelable (76 samples, 0.05%)</title><rect x="7.3088%" y="805" width="0.0506%" height="15" fill="rgb(222,165,49)" fg:x="10982" fg:w="76"/><text x="7.5588%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (71 samples, 0.05%)</title><rect x="7.3121%" y="789" width="0.0473%" height="15" fill="rgb(219,113,52)" fg:x="10987" fg:w="71"/><text x="7.5621%" y="799.50"></text></g><g><title>Monitor::wait (88 samples, 0.06%)</title><rect x="7.3054%" y="885" width="0.0586%" height="15" fill="rgb(214,7,15)" fg:x="10977" fg:w="88"/><text x="7.5554%" y="895.50"></text></g><g><title>Monitor::IWait (87 samples, 0.06%)</title><rect x="7.3061%" y="869" width="0.0579%" height="15" fill="rgb(235,32,4)" fg:x="10978" fg:w="87"/><text x="7.5561%" y="879.50"></text></g><g><title>os::PlatformEvent::park (85 samples, 0.06%)</title><rect x="7.3074%" y="853" width="0.0566%" height="15" fill="rgb(238,90,54)" fg:x="10980" fg:w="85"/><text x="7.5574%" y="863.50"></text></g><g><title>CompileTask::is_unloaded (16 samples, 0.01%)</title><rect x="7.3873%" y="869" width="0.0106%" height="15" fill="rgb(213,208,19)" fg:x="11100" fg:w="16"/><text x="7.6373%" y="879.50"></text></g><g><title>TieredThresholdPolicy::select_task (59 samples, 0.04%)</title><rect x="7.3640%" y="885" width="0.0393%" height="15" fill="rgb(233,156,4)" fg:x="11065" fg:w="59"/><text x="7.6140%" y="895.50"></text></g><g><title>CompileQueue::get (188 samples, 0.13%)</title><rect x="7.2815%" y="901" width="0.1251%" height="15" fill="rgb(207,194,5)" fg:x="10941" fg:w="188"/><text x="7.5315%" y="911.50"></text></g><g><title>CompileBroker::compiler_thread_loop (9,703 samples, 6.46%)</title><rect x="0.9557%" y="917" width="6.4576%" height="15" fill="rgb(206,111,30)" fg:x="1436" fg:w="9703"/><text x="1.2057%" y="927.50">CompileB..</text></g><g><title>Thread::call_run (9,705 samples, 6.46%)</title><rect x="0.9550%" y="949" width="6.4589%" height="15" fill="rgb(243,70,54)" fg:x="1435" fg:w="9705"/><text x="1.2050%" y="959.50">Thread::..</text></g><g><title>JavaThread::thread_main_inner (9,704 samples, 6.46%)</title><rect x="0.9557%" y="933" width="6.4582%" height="15" fill="rgb(242,28,8)" fg:x="1436" fg:w="9704"/><text x="1.2057%" y="943.50">JavaThre..</text></g><g><title>__GI___clone (9,726 samples, 6.47%)</title><rect x="0.9424%" y="997" width="6.4729%" height="15" fill="rgb(219,106,18)" fg:x="1416" fg:w="9726"/><text x="1.1924%" y="1007.50">__GI___c..</text></g><g><title>start_thread (9,714 samples, 6.46%)</title><rect x="0.9504%" y="981" width="6.4649%" height="15" fill="rgb(244,222,10)" fg:x="1428" fg:w="9714"/><text x="1.2004%" y="991.50">start_th..</text></g><g><title>thread_native_entry (9,714 samples, 6.46%)</title><rect x="0.9504%" y="965" width="6.4649%" height="15" fill="rgb(236,179,52)" fg:x="1428" fg:w="9714"/><text x="1.2004%" y="975.50">thread_n..</text></g><g><title>C1_CompilerThre (11,126 samples, 7.40%)</title><rect x="0.0326%" y="1013" width="7.4046%" height="15" fill="rgb(213,23,39)" fg:x="49" fg:w="11126"/><text x="0.2826%" y="1023.50">C1_Compile..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (27 samples, 0.02%)</title><rect x="7.4751%" y="997" width="0.0180%" height="15" fill="rgb(238,48,10)" fg:x="11232" fg:w="27"/><text x="7.7251%" y="1007.50"></text></g><g><title>RegMask::is_UP (26 samples, 0.02%)</title><rect x="7.4758%" y="981" width="0.0173%" height="15" fill="rgb(251,196,23)" fg:x="11233" fg:w="26"/><text x="7.7258%" y="991.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (21 samples, 0.01%)</title><rect x="7.4938%" y="997" width="0.0140%" height="15" fill="rgb(250,152,24)" fg:x="11260" fg:w="21"/><text x="7.7438%" y="1007.50"></text></g><g><title>ProjNode::pinned (54 samples, 0.04%)</title><rect x="7.5410%" y="981" width="0.0359%" height="15" fill="rgb(209,150,17)" fg:x="11331" fg:w="54"/><text x="7.7910%" y="991.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (55 samples, 0.04%)</title><rect x="7.5410%" y="997" width="0.0366%" height="15" fill="rgb(234,202,34)" fg:x="11331" fg:w="55"/><text x="7.7910%" y="1007.50"></text></g><g><title>CProjNode::is_CFG (26 samples, 0.02%)</title><rect x="7.6755%" y="981" width="0.0173%" height="15" fill="rgb(253,148,53)" fg:x="11533" fg:w="26"/><text x="7.9255%" y="991.50"></text></g><g><title>CallStaticJavaNode::Opcode (19 samples, 0.01%)</title><rect x="7.7101%" y="981" width="0.0126%" height="15" fill="rgb(218,129,16)" fg:x="11585" fg:w="19"/><text x="7.9601%" y="991.50"></text></g><g><title>IfTrueNode::Opcode (17 samples, 0.01%)</title><rect x="7.9057%" y="981" width="0.0113%" height="15" fill="rgb(216,85,19)" fg:x="11879" fg:w="17"/><text x="8.1557%" y="991.50"></text></g><g><title>IndexSetIterator::advance_and_next (21 samples, 0.01%)</title><rect x="7.9257%" y="981" width="0.0140%" height="15" fill="rgb(235,228,7)" fg:x="11909" fg:w="21"/><text x="8.1757%" y="991.50"></text></g><g><title>MultiNode::is_CFG (55 samples, 0.04%)</title><rect x="8.1606%" y="981" width="0.0366%" height="15" fill="rgb(245,175,0)" fg:x="12262" fg:w="55"/><text x="8.4106%" y="991.50"></text></g><g><title>Node::is_CFG (58 samples, 0.04%)</title><rect x="8.2352%" y="981" width="0.0386%" height="15" fill="rgb(208,168,36)" fg:x="12374" fg:w="58"/><text x="8.4852%" y="991.50"></text></g><g><title>Node::pinned (28 samples, 0.02%)</title><rect x="8.2971%" y="981" width="0.0186%" height="15" fill="rgb(246,171,24)" fg:x="12467" fg:w="28"/><text x="8.5471%" y="991.50"></text></g><g><title>PhiNode::Opcode (31 samples, 0.02%)</title><rect x="8.4694%" y="981" width="0.0206%" height="15" fill="rgb(215,142,24)" fg:x="12726" fg:w="31"/><text x="8.7194%" y="991.50"></text></g><g><title>ProjNode::Opcode (18 samples, 0.01%)</title><rect x="8.5054%" y="981" width="0.0120%" height="15" fill="rgb(250,187,7)" fg:x="12780" fg:w="18"/><text x="8.7554%" y="991.50"></text></g><g><title>ProjNode::is_CFG (23 samples, 0.02%)</title><rect x="8.5180%" y="981" width="0.0153%" height="15" fill="rgb(228,66,33)" fg:x="12799" fg:w="23"/><text x="8.7680%" y="991.50"></text></g><g><title>ProjNode::pinned (25 samples, 0.02%)</title><rect x="8.5333%" y="981" width="0.0166%" height="15" fill="rgb(234,215,21)" fg:x="12822" fg:w="25"/><text x="8.7833%" y="991.50"></text></g><g><title>RegionNode::Opcode (19 samples, 0.01%)</title><rect x="8.5886%" y="981" width="0.0126%" height="15" fill="rgb(222,191,20)" fg:x="12905" fg:w="19"/><text x="8.8386%" y="991.50"></text></g><g><title>RegionNode::is_CFG (36 samples, 0.02%)</title><rect x="8.6105%" y="981" width="0.0240%" height="15" fill="rgb(245,79,54)" fg:x="12938" fg:w="36"/><text x="8.8605%" y="991.50"></text></g><g><title>TypeNode::bottom_type (16 samples, 0.01%)</title><rect x="8.7895%" y="981" width="0.0106%" height="15" fill="rgb(240,10,37)" fg:x="13207" fg:w="16"/><text x="9.0395%" y="991.50"></text></g><g><title>_dl_update_slotinfo (144 samples, 0.10%)</title><rect x="8.8581%" y="981" width="0.0958%" height="15" fill="rgb(214,192,32)" fg:x="13310" fg:w="144"/><text x="9.1081%" y="991.50"></text></g><g><title>find_lowest_bit (26 samples, 0.02%)</title><rect x="9.0551%" y="981" width="0.0173%" height="15" fill="rgb(209,36,54)" fg:x="13606" fg:w="26"/><text x="9.3051%" y="991.50"></text></g><g><title>update_get_addr (47 samples, 0.03%)</title><rect x="9.2095%" y="981" width="0.0313%" height="15" fill="rgb(220,10,11)" fg:x="13838" fg:w="47"/><text x="9.4595%" y="991.50"></text></g><g><title>[anon] (2,469 samples, 1.64%)</title><rect x="7.5983%" y="997" width="1.6432%" height="15" fill="rgb(221,106,17)" fg:x="11417" fg:w="2469"/><text x="7.8483%" y="1007.50"></text></g><g><title>[perf-943567.map] (22 samples, 0.01%)</title><rect x="9.2421%" y="997" width="0.0146%" height="15" fill="rgb(251,142,44)" fg:x="13887" fg:w="22"/><text x="9.4921%" y="1007.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (20 samples, 0.01%)</title><rect x="9.2760%" y="725" width="0.0133%" height="15" fill="rgb(238,13,15)" fg:x="13938" fg:w="20"/><text x="9.5260%" y="735.50"></text></g><g><title>ciTypeFlow::df_flow_types (22 samples, 0.01%)</title><rect x="9.2754%" y="757" width="0.0146%" height="15" fill="rgb(208,107,27)" fg:x="13937" fg:w="22"/><text x="9.5254%" y="767.50"></text></g><g><title>ciTypeFlow::flow_block (22 samples, 0.01%)</title><rect x="9.2754%" y="741" width="0.0146%" height="15" fill="rgb(205,136,37)" fg:x="13937" fg:w="22"/><text x="9.5254%" y="751.50"></text></g><g><title>Compile::call_generator (32 samples, 0.02%)</title><rect x="9.2694%" y="837" width="0.0213%" height="15" fill="rgb(250,205,27)" fg:x="13928" fg:w="32"/><text x="9.5194%" y="847.50"></text></g><g><title>InlineTree::ok_to_inline (32 samples, 0.02%)</title><rect x="9.2694%" y="821" width="0.0213%" height="15" fill="rgb(210,80,43)" fg:x="13928" fg:w="32"/><text x="9.5194%" y="831.50"></text></g><g><title>ciMethod::get_flow_analysis (27 samples, 0.02%)</title><rect x="9.2727%" y="805" width="0.0180%" height="15" fill="rgb(247,160,36)" fg:x="13933" fg:w="27"/><text x="9.5227%" y="815.50"></text></g><g><title>ciTypeFlow::do_flow (24 samples, 0.02%)</title><rect x="9.2747%" y="789" width="0.0160%" height="15" fill="rgb(234,13,49)" fg:x="13936" fg:w="24"/><text x="9.5247%" y="799.50"></text></g><g><title>ciTypeFlow::flow_types (24 samples, 0.02%)</title><rect x="9.2747%" y="773" width="0.0160%" height="15" fill="rgb(234,122,0)" fg:x="13936" fg:w="24"/><text x="9.5247%" y="783.50"></text></g><g><title>ciEnv::get_field_by_index (23 samples, 0.02%)</title><rect x="9.3027%" y="693" width="0.0153%" height="15" fill="rgb(207,146,38)" fg:x="13978" fg:w="23"/><text x="9.5527%" y="703.50"></text></g><g><title>ciField::ciField (20 samples, 0.01%)</title><rect x="9.3047%" y="677" width="0.0133%" height="15" fill="rgb(207,177,25)" fg:x="13981" fg:w="20"/><text x="9.5547%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (25 samples, 0.02%)</title><rect x="9.3027%" y="725" width="0.0166%" height="15" fill="rgb(211,178,42)" fg:x="13978" fg:w="25"/><text x="9.5527%" y="735.50"></text></g><g><title>ciBytecodeStream::get_field (25 samples, 0.02%)</title><rect x="9.3027%" y="709" width="0.0166%" height="15" fill="rgb(230,69,54)" fg:x="13978" fg:w="25"/><text x="9.5527%" y="719.50"></text></g><g><title>ciMethod::ciMethod (24 samples, 0.02%)</title><rect x="9.3373%" y="645" width="0.0160%" height="15" fill="rgb(214,135,41)" fg:x="14030" fg:w="24"/><text x="9.5873%" y="655.50"></text></g><g><title>ciSignature::ciSignature (19 samples, 0.01%)</title><rect x="9.3406%" y="629" width="0.0126%" height="15" fill="rgb(237,67,25)" fg:x="14035" fg:w="19"/><text x="9.5906%" y="639.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (52 samples, 0.03%)</title><rect x="9.3193%" y="725" width="0.0346%" height="15" fill="rgb(222,189,50)" fg:x="14003" fg:w="52"/><text x="9.5693%" y="735.50"></text></g><g><title>ciBytecodeStream::get_method (52 samples, 0.03%)</title><rect x="9.3193%" y="709" width="0.0346%" height="15" fill="rgb(245,148,34)" fg:x="14003" fg:w="52"/><text x="9.5693%" y="719.50"></text></g><g><title>ciEnv::get_method_by_index_impl (48 samples, 0.03%)</title><rect x="9.3220%" y="693" width="0.0319%" height="15" fill="rgb(222,29,6)" fg:x="14007" fg:w="48"/><text x="9.5720%" y="703.50"></text></g><g><title>ciObjectFactory::get_metadata (27 samples, 0.02%)</title><rect x="9.3359%" y="677" width="0.0180%" height="15" fill="rgb(221,189,43)" fg:x="14028" fg:w="27"/><text x="9.5859%" y="687.50"></text></g><g><title>ciObjectFactory::create_new_metadata (27 samples, 0.02%)</title><rect x="9.3359%" y="661" width="0.0180%" height="15" fill="rgb(207,36,27)" fg:x="14028" fg:w="27"/><text x="9.5859%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (83 samples, 0.06%)</title><rect x="9.3000%" y="741" width="0.0552%" height="15" fill="rgb(217,90,24)" fg:x="13974" fg:w="83"/><text x="9.5500%" y="751.50"></text></g><g><title>ciTypeFlow::df_flow_types (96 samples, 0.06%)</title><rect x="9.2940%" y="773" width="0.0639%" height="15" fill="rgb(224,66,35)" fg:x="13965" fg:w="96"/><text x="9.5440%" y="783.50"></text></g><g><title>ciTypeFlow::flow_block (96 samples, 0.06%)</title><rect x="9.2940%" y="757" width="0.0639%" height="15" fill="rgb(221,13,50)" fg:x="13965" fg:w="96"/><text x="9.5440%" y="767.50"></text></g><g><title>InlineTree::ok_to_inline (104 samples, 0.07%)</title><rect x="9.2907%" y="837" width="0.0692%" height="15" fill="rgb(236,68,49)" fg:x="13960" fg:w="104"/><text x="9.5407%" y="847.50"></text></g><g><title>ciMethod::get_flow_analysis (101 samples, 0.07%)</title><rect x="9.2927%" y="821" width="0.0672%" height="15" fill="rgb(229,146,28)" fg:x="13963" fg:w="101"/><text x="9.5427%" y="831.50"></text></g><g><title>ciTypeFlow::do_flow (101 samples, 0.07%)</title><rect x="9.2927%" y="805" width="0.0672%" height="15" fill="rgb(225,31,38)" fg:x="13963" fg:w="101"/><text x="9.5427%" y="815.50"></text></g><g><title>ciTypeFlow::flow_types (101 samples, 0.07%)</title><rect x="9.2927%" y="789" width="0.0672%" height="15" fill="rgb(250,208,3)" fg:x="13963" fg:w="101"/><text x="9.5427%" y="799.50"></text></g><g><title>Compile::call_generator (139 samples, 0.09%)</title><rect x="9.2694%" y="853" width="0.0925%" height="15" fill="rgb(246,54,23)" fg:x="13928" fg:w="139"/><text x="9.5194%" y="863.50"></text></g><g><title>InlineTree::should_not_inline (18 samples, 0.01%)</title><rect x="9.4025%" y="709" width="0.0120%" height="15" fill="rgb(243,76,11)" fg:x="14128" fg:w="18"/><text x="9.6525%" y="719.50"></text></g><g><title>InlineTree::try_to_inline (22 samples, 0.01%)</title><rect x="9.4005%" y="725" width="0.0146%" height="15" fill="rgb(245,21,50)" fg:x="14125" fg:w="22"/><text x="9.6505%" y="735.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (27 samples, 0.02%)</title><rect x="9.4384%" y="629" width="0.0180%" height="15" fill="rgb(228,9,43)" fg:x="14182" fg:w="27"/><text x="9.6884%" y="639.50"></text></g><g><title>ciBytecodeStream::get_method (26 samples, 0.02%)</title><rect x="9.4391%" y="613" width="0.0173%" height="15" fill="rgb(208,100,47)" fg:x="14183" fg:w="26"/><text x="9.6891%" y="623.50"></text></g><g><title>ciEnv::get_method_by_index_impl (26 samples, 0.02%)</title><rect x="9.4391%" y="597" width="0.0173%" height="15" fill="rgb(232,26,8)" fg:x="14183" fg:w="26"/><text x="9.6891%" y="607.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (45 samples, 0.03%)</title><rect x="9.4298%" y="645" width="0.0299%" height="15" fill="rgb(216,166,38)" fg:x="14169" fg:w="45"/><text x="9.6798%" y="655.50"></text></g><g><title>ciTypeFlow::flow_block (54 samples, 0.04%)</title><rect x="9.4251%" y="661" width="0.0359%" height="15" fill="rgb(251,202,51)" fg:x="14162" fg:w="54"/><text x="9.6751%" y="671.50"></text></g><g><title>ciTypeFlow::df_flow_types (66 samples, 0.04%)</title><rect x="9.4178%" y="677" width="0.0439%" height="15" fill="rgb(254,216,34)" fg:x="14151" fg:w="66"/><text x="9.6678%" y="687.50"></text></g><g><title>ciTypeFlow::do_flow (74 samples, 0.05%)</title><rect x="9.4171%" y="709" width="0.0492%" height="15" fill="rgb(251,32,27)" fg:x="14150" fg:w="74"/><text x="9.6671%" y="719.50"></text></g><g><title>ciTypeFlow::flow_types (74 samples, 0.05%)</title><rect x="9.4171%" y="693" width="0.0492%" height="15" fill="rgb(208,127,28)" fg:x="14150" fg:w="74"/><text x="9.6671%" y="703.50"></text></g><g><title>InlineTree::ok_to_inline (101 samples, 0.07%)</title><rect x="9.4005%" y="741" width="0.0672%" height="15" fill="rgb(224,137,22)" fg:x="14125" fg:w="101"/><text x="9.6505%" y="751.50"></text></g><g><title>ciMethod::get_flow_analysis (79 samples, 0.05%)</title><rect x="9.4151%" y="725" width="0.0526%" height="15" fill="rgb(254,70,32)" fg:x="14147" fg:w="79"/><text x="9.6651%" y="735.50"></text></g><g><title>Compile::call_generator (122 samples, 0.08%)</title><rect x="9.3885%" y="757" width="0.0812%" height="15" fill="rgb(229,75,37)" fg:x="14107" fg:w="122"/><text x="9.6385%" y="767.50"></text></g><g><title>LibraryIntrinsic::generate (24 samples, 0.02%)</title><rect x="9.4890%" y="757" width="0.0160%" height="15" fill="rgb(252,64,23)" fg:x="14258" fg:w="24"/><text x="9.7390%" y="767.50"></text></g><g><title>LibraryCallKit::try_to_inline (24 samples, 0.02%)</title><rect x="9.4890%" y="741" width="0.0160%" height="15" fill="rgb(232,162,48)" fg:x="14258" fg:w="24"/><text x="9.7390%" y="751.50"></text></g><g><title>Parse::create_entry_map (18 samples, 0.01%)</title><rect x="9.5143%" y="725" width="0.0120%" height="15" fill="rgb(246,160,12)" fg:x="14296" fg:w="18"/><text x="9.7643%" y="735.50"></text></g><g><title>ciTypeFlow::flow_block (17 samples, 0.01%)</title><rect x="9.5742%" y="565" width="0.0113%" height="15" fill="rgb(247,166,0)" fg:x="14386" fg:w="17"/><text x="9.8242%" y="575.50"></text></g><g><title>ciTypeFlow::df_flow_types (24 samples, 0.02%)</title><rect x="9.5702%" y="581" width="0.0160%" height="15" fill="rgb(249,219,21)" fg:x="14380" fg:w="24"/><text x="9.8202%" y="591.50"></text></g><g><title>ciTypeFlow::do_flow (30 samples, 0.02%)</title><rect x="9.5682%" y="613" width="0.0200%" height="15" fill="rgb(205,209,3)" fg:x="14377" fg:w="30"/><text x="9.8182%" y="623.50"></text></g><g><title>ciTypeFlow::flow_types (30 samples, 0.02%)</title><rect x="9.5682%" y="597" width="0.0200%" height="15" fill="rgb(243,44,1)" fg:x="14377" fg:w="30"/><text x="9.8182%" y="607.50"></text></g><g><title>InlineTree::ok_to_inline (44 samples, 0.03%)</title><rect x="9.5596%" y="645" width="0.0293%" height="15" fill="rgb(206,159,16)" fg:x="14364" fg:w="44"/><text x="9.8096%" y="655.50"></text></g><g><title>ciMethod::get_flow_analysis (35 samples, 0.02%)</title><rect x="9.5655%" y="629" width="0.0233%" height="15" fill="rgb(244,77,30)" fg:x="14373" fg:w="35"/><text x="9.8155%" y="639.50"></text></g><g><title>Compile::call_generator (58 samples, 0.04%)</title><rect x="9.5522%" y="661" width="0.0386%" height="15" fill="rgb(218,69,12)" fg:x="14353" fg:w="58"/><text x="9.8022%" y="671.50"></text></g><g><title>InlineTree::ok_to_inline (16 samples, 0.01%)</title><rect x="9.6634%" y="549" width="0.0106%" height="15" fill="rgb(212,87,7)" fg:x="14520" fg:w="16"/><text x="9.9134%" y="559.50"></text></g><g><title>Compile::call_generator (23 samples, 0.02%)</title><rect x="9.6594%" y="565" width="0.0153%" height="15" fill="rgb(245,114,25)" fg:x="14514" fg:w="23"/><text x="9.9094%" y="575.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.03%)</title><rect x="9.6980%" y="517" width="0.0306%" height="15" fill="rgb(210,61,42)" fg:x="14572" fg:w="46"/><text x="9.9480%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.03%)</title><rect x="9.7026%" y="501" width="0.0260%" height="15" fill="rgb(211,52,33)" fg:x="14579" fg:w="39"/><text x="9.9526%" y="511.50"></text></g><g><title>Parse::do_all_blocks (49 samples, 0.03%)</title><rect x="9.6980%" y="533" width="0.0326%" height="15" fill="rgb(234,58,33)" fg:x="14572" fg:w="49"/><text x="9.9480%" y="543.50"></text></g><g><title>ParseGenerator::generate (77 samples, 0.05%)</title><rect x="9.6873%" y="565" width="0.0512%" height="15" fill="rgb(220,115,36)" fg:x="14556" fg:w="77"/><text x="9.9373%" y="575.50"></text></g><g><title>Parse::Parse (76 samples, 0.05%)</title><rect x="9.6880%" y="549" width="0.0506%" height="15" fill="rgb(243,153,54)" fg:x="14557" fg:w="76"/><text x="9.9380%" y="559.50"></text></g><g><title>Parse::do_call (139 samples, 0.09%)</title><rect x="9.6574%" y="581" width="0.0925%" height="15" fill="rgb(251,47,18)" fg:x="14511" fg:w="139"/><text x="9.9074%" y="591.50"></text></g><g><title>Parse::do_get_xxx (26 samples, 0.02%)</title><rect x="9.7572%" y="565" width="0.0173%" height="15" fill="rgb(242,102,42)" fg:x="14661" fg:w="26"/><text x="10.0072%" y="575.50"></text></g><g><title>GraphKit::access_store_at (19 samples, 0.01%)</title><rect x="9.7752%" y="549" width="0.0126%" height="15" fill="rgb(234,31,38)" fg:x="14688" fg:w="19"/><text x="10.0252%" y="559.50"></text></g><g><title>BarrierSetC2::store_at (19 samples, 0.01%)</title><rect x="9.7752%" y="533" width="0.0126%" height="15" fill="rgb(221,117,51)" fg:x="14688" fg:w="19"/><text x="10.0252%" y="543.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (18 samples, 0.01%)</title><rect x="9.7759%" y="517" width="0.0120%" height="15" fill="rgb(212,20,18)" fg:x="14689" fg:w="18"/><text x="10.0259%" y="527.50"></text></g><g><title>Parse::do_put_xxx (22 samples, 0.01%)</title><rect x="9.7745%" y="565" width="0.0146%" height="15" fill="rgb(245,133,36)" fg:x="14687" fg:w="22"/><text x="10.0245%" y="575.50"></text></g><g><title>Parse::do_field_access (55 samples, 0.04%)</title><rect x="9.7559%" y="581" width="0.0366%" height="15" fill="rgb(212,6,19)" fg:x="14659" fg:w="55"/><text x="10.0059%" y="591.50"></text></g><g><title>Parse::do_one_block (276 samples, 0.18%)</title><rect x="9.6354%" y="613" width="0.1837%" height="15" fill="rgb(218,1,36)" fg:x="14478" fg:w="276"/><text x="9.8854%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (271 samples, 0.18%)</title><rect x="9.6388%" y="597" width="0.1804%" height="15" fill="rgb(246,84,54)" fg:x="14483" fg:w="271"/><text x="9.8888%" y="607.50"></text></g><g><title>Parse::do_all_blocks (279 samples, 0.19%)</title><rect x="9.6348%" y="629" width="0.1857%" height="15" fill="rgb(242,110,6)" fg:x="14477" fg:w="279"/><text x="9.8848%" y="639.50"></text></g><g><title>Parse::Parse (320 samples, 0.21%)</title><rect x="9.6181%" y="645" width="0.2130%" height="15" fill="rgb(214,47,5)" fg:x="14452" fg:w="320"/><text x="9.8681%" y="655.50"></text></g><g><title>ParseGenerator::generate (321 samples, 0.21%)</title><rect x="9.6181%" y="661" width="0.2136%" height="15" fill="rgb(218,159,25)" fg:x="14452" fg:w="321"/><text x="9.8681%" y="671.50"></text></g><g><title>Parse::do_one_block (19 samples, 0.01%)</title><rect x="9.8364%" y="597" width="0.0126%" height="15" fill="rgb(215,211,28)" fg:x="14780" fg:w="19"/><text x="10.0864%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="9.8371%" y="581" width="0.0120%" height="15" fill="rgb(238,59,32)" fg:x="14781" fg:w="18"/><text x="10.0871%" y="591.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="9.8364%" y="613" width="0.0133%" height="15" fill="rgb(226,82,3)" fg:x="14780" fg:w="20"/><text x="10.0864%" y="623.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="9.8351%" y="645" width="0.0160%" height="15" fill="rgb(240,164,32)" fg:x="14778" fg:w="24"/><text x="10.0851%" y="655.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="9.8351%" y="629" width="0.0160%" height="15" fill="rgb(232,46,7)" fg:x="14778" fg:w="24"/><text x="10.0851%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (37 samples, 0.02%)</title><rect x="9.8318%" y="661" width="0.0246%" height="15" fill="rgb(229,129,53)" fg:x="14773" fg:w="37"/><text x="10.0818%" y="671.50"></text></g><g><title>Parse::do_call (480 samples, 0.32%)</title><rect x="9.5516%" y="677" width="0.3195%" height="15" fill="rgb(234,188,29)" fg:x="14352" fg:w="480"/><text x="9.8016%" y="687.50"></text></g><g><title>Parse::do_get_xxx (32 samples, 0.02%)</title><rect x="9.8810%" y="661" width="0.0213%" height="15" fill="rgb(246,141,4)" fg:x="14847" fg:w="32"/><text x="10.1310%" y="671.50"></text></g><g><title>GraphKit::access_store_at (28 samples, 0.02%)</title><rect x="9.9030%" y="645" width="0.0186%" height="15" fill="rgb(229,23,39)" fg:x="14880" fg:w="28"/><text x="10.1530%" y="655.50"></text></g><g><title>BarrierSetC2::store_at (27 samples, 0.02%)</title><rect x="9.9036%" y="629" width="0.0180%" height="15" fill="rgb(206,12,3)" fg:x="14881" fg:w="27"/><text x="10.1536%" y="639.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (27 samples, 0.02%)</title><rect x="9.9036%" y="613" width="0.0180%" height="15" fill="rgb(252,226,20)" fg:x="14881" fg:w="27"/><text x="10.1536%" y="623.50"></text></g><g><title>Parse::do_put_xxx (30 samples, 0.02%)</title><rect x="9.9023%" y="661" width="0.0200%" height="15" fill="rgb(216,123,35)" fg:x="14879" fg:w="30"/><text x="10.1523%" y="671.50"></text></g><g><title>Parse::do_field_access (74 samples, 0.05%)</title><rect x="9.8770%" y="677" width="0.0492%" height="15" fill="rgb(212,68,40)" fg:x="14841" fg:w="74"/><text x="10.1270%" y="687.50"></text></g><g><title>Parse::do_if (16 samples, 0.01%)</title><rect x="9.9263%" y="677" width="0.0106%" height="15" fill="rgb(254,125,32)" fg:x="14915" fg:w="16"/><text x="10.1763%" y="687.50"></text></g><g><title>Parse::do_one_block (645 samples, 0.43%)</title><rect x="9.5296%" y="709" width="0.4293%" height="15" fill="rgb(253,97,22)" fg:x="14319" fg:w="645"/><text x="9.7796%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (631 samples, 0.42%)</title><rect x="9.5389%" y="693" width="0.4199%" height="15" fill="rgb(241,101,14)" fg:x="14333" fg:w="631"/><text x="9.7889%" y="703.50"></text></g><g><title>Parse::do_all_blocks (662 samples, 0.44%)</title><rect x="9.5263%" y="725" width="0.4406%" height="15" fill="rgb(238,103,29)" fg:x="14314" fg:w="662"/><text x="9.7763%" y="735.50"></text></g><g><title>ParseGenerator::generate (716 samples, 0.48%)</title><rect x="9.5057%" y="757" width="0.4765%" height="15" fill="rgb(233,195,47)" fg:x="14283" fg:w="716"/><text x="9.7557%" y="767.50"></text></g><g><title>Parse::Parse (716 samples, 0.48%)</title><rect x="9.5057%" y="741" width="0.4765%" height="15" fill="rgb(246,218,30)" fg:x="14283" fg:w="716"/><text x="9.7557%" y="751.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="10.0048%" y="613" width="0.0220%" height="15" fill="rgb(219,145,47)" fg:x="15033" fg:w="33"/><text x="10.2548%" y="623.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.02%)</title><rect x="10.0048%" y="597" width="0.0220%" height="15" fill="rgb(243,12,26)" fg:x="15033" fg:w="33"/><text x="10.2548%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="10.0048%" y="581" width="0.0220%" height="15" fill="rgb(214,87,16)" fg:x="15033" fg:w="33"/><text x="10.2548%" y="591.50"></text></g><g><title>ParseGenerator::generate (40 samples, 0.03%)</title><rect x="10.0015%" y="645" width="0.0266%" height="15" fill="rgb(208,99,42)" fg:x="15028" fg:w="40"/><text x="10.2515%" y="655.50"></text></g><g><title>Parse::Parse (40 samples, 0.03%)</title><rect x="10.0015%" y="629" width="0.0266%" height="15" fill="rgb(253,99,2)" fg:x="15028" fg:w="40"/><text x="10.2515%" y="639.50"></text></g><g><title>Parse::do_call (60 samples, 0.04%)</title><rect x="9.9935%" y="661" width="0.0399%" height="15" fill="rgb(220,168,23)" fg:x="15016" fg:w="60"/><text x="10.2435%" y="671.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.05%)</title><rect x="9.9915%" y="709" width="0.0532%" height="15" fill="rgb(242,38,24)" fg:x="15013" fg:w="80"/><text x="10.2415%" y="719.50"></text></g><g><title>Parse::do_one_block (80 samples, 0.05%)</title><rect x="9.9915%" y="693" width="0.0532%" height="15" fill="rgb(225,182,9)" fg:x="15013" fg:w="80"/><text x="10.2415%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.05%)</title><rect x="9.9915%" y="677" width="0.0532%" height="15" fill="rgb(243,178,37)" fg:x="15013" fg:w="80"/><text x="10.2415%" y="687.50"></text></g><g><title>ParseGenerator::generate (91 samples, 0.06%)</title><rect x="9.9875%" y="741" width="0.0606%" height="15" fill="rgb(232,139,19)" fg:x="15007" fg:w="91"/><text x="10.2375%" y="751.50"></text></g><g><title>Parse::Parse (90 samples, 0.06%)</title><rect x="9.9882%" y="725" width="0.0599%" height="15" fill="rgb(225,201,24)" fg:x="15008" fg:w="90"/><text x="10.2382%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (19 samples, 0.01%)</title><rect x="10.0487%" y="741" width="0.0126%" height="15" fill="rgb(221,47,46)" fg:x="15099" fg:w="19"/><text x="10.2987%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (121 samples, 0.08%)</title><rect x="9.9822%" y="757" width="0.0805%" height="15" fill="rgb(249,23,13)" fg:x="14999" fg:w="121"/><text x="10.2322%" y="767.50"></text></g><g><title>Parse::do_call (1,035 samples, 0.69%)</title><rect x="9.3885%" y="773" width="0.6888%" height="15" fill="rgb(219,9,5)" fg:x="14107" fg:w="1035"/><text x="9.6385%" y="783.50"></text></g><g><title>Parse::do_get_xxx (24 samples, 0.02%)</title><rect x="10.0873%" y="757" width="0.0160%" height="15" fill="rgb(254,171,16)" fg:x="15157" fg:w="24"/><text x="10.3373%" y="767.50"></text></g><g><title>GraphKit::access_store_at (38 samples, 0.03%)</title><rect x="10.1046%" y="741" width="0.0253%" height="15" fill="rgb(230,171,20)" fg:x="15183" fg:w="38"/><text x="10.3546%" y="751.50"></text></g><g><title>BarrierSetC2::store_at (38 samples, 0.03%)</title><rect x="10.1046%" y="725" width="0.0253%" height="15" fill="rgb(210,71,41)" fg:x="15183" fg:w="38"/><text x="10.3546%" y="735.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (36 samples, 0.02%)</title><rect x="10.1060%" y="709" width="0.0240%" height="15" fill="rgb(206,173,20)" fg:x="15185" fg:w="36"/><text x="10.3560%" y="719.50"></text></g><g><title>G1BarrierSetC2::pre_barrier (18 samples, 0.01%)</title><rect x="10.1179%" y="693" width="0.0120%" height="15" fill="rgb(233,88,34)" fg:x="15203" fg:w="18"/><text x="10.3679%" y="703.50"></text></g><g><title>Parse::do_put_xxx (41 samples, 0.03%)</title><rect x="10.1033%" y="757" width="0.0273%" height="15" fill="rgb(223,209,46)" fg:x="15181" fg:w="41"/><text x="10.3533%" y="767.50"></text></g><g><title>Parse::do_field_access (71 samples, 0.05%)</title><rect x="10.0847%" y="773" width="0.0473%" height="15" fill="rgb(250,43,18)" fg:x="15153" fg:w="71"/><text x="10.3347%" y="783.50"></text></g><g><title>Parse::do_all_blocks (1,181 samples, 0.79%)</title><rect x="9.3705%" y="821" width="0.7860%" height="15" fill="rgb(208,13,10)" fg:x="14080" fg:w="1181"/><text x="9.6205%" y="831.50"></text></g><g><title>Parse::do_one_block (1,181 samples, 0.79%)</title><rect x="9.3705%" y="805" width="0.7860%" height="15" fill="rgb(212,200,36)" fg:x="14080" fg:w="1181"/><text x="9.6205%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (1,178 samples, 0.78%)</title><rect x="9.3725%" y="789" width="0.7840%" height="15" fill="rgb(225,90,30)" fg:x="14083" fg:w="1178"/><text x="9.6225%" y="799.50"></text></g><g><title>ParseGenerator::generate (1,191 samples, 0.79%)</title><rect x="9.3646%" y="853" width="0.7926%" height="15" fill="rgb(236,182,39)" fg:x="14071" fg:w="1191"/><text x="9.6146%" y="863.50"></text></g><g><title>Parse::Parse (1,191 samples, 0.79%)</title><rect x="9.3646%" y="837" width="0.7926%" height="15" fill="rgb(212,144,35)" fg:x="14071" fg:w="1191"/><text x="9.6146%" y="847.50"></text></g><g><title>ciTypeFlow::df_flow_types (17 samples, 0.01%)</title><rect x="10.1692%" y="661" width="0.0113%" height="15" fill="rgb(228,63,44)" fg:x="15280" fg:w="17"/><text x="10.4192%" y="671.50"></text></g><g><title>InlineTree::ok_to_inline (25 samples, 0.02%)</title><rect x="10.1645%" y="725" width="0.0166%" height="15" fill="rgb(228,109,6)" fg:x="15273" fg:w="25"/><text x="10.4145%" y="735.50"></text></g><g><title>ciMethod::get_flow_analysis (19 samples, 0.01%)</title><rect x="10.1685%" y="709" width="0.0126%" height="15" fill="rgb(238,117,24)" fg:x="15279" fg:w="19"/><text x="10.4185%" y="719.50"></text></g><g><title>ciTypeFlow::do_flow (18 samples, 0.01%)</title><rect x="10.1692%" y="693" width="0.0120%" height="15" fill="rgb(242,26,26)" fg:x="15280" fg:w="18"/><text x="10.4192%" y="703.50"></text></g><g><title>ciTypeFlow::flow_types (18 samples, 0.01%)</title><rect x="10.1692%" y="677" width="0.0120%" height="15" fill="rgb(221,92,48)" fg:x="15280" fg:w="18"/><text x="10.4192%" y="687.50"></text></g><g><title>Compile::call_generator (28 samples, 0.02%)</title><rect x="10.1632%" y="741" width="0.0186%" height="15" fill="rgb(209,209,32)" fg:x="15271" fg:w="28"/><text x="10.4132%" y="751.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.02%)</title><rect x="10.2124%" y="597" width="0.0213%" height="15" fill="rgb(221,70,22)" fg:x="15345" fg:w="32"/><text x="10.4624%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.02%)</title><rect x="10.2131%" y="581" width="0.0206%" height="15" fill="rgb(248,145,5)" fg:x="15346" fg:w="31"/><text x="10.4631%" y="591.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="10.2124%" y="613" width="0.0226%" height="15" fill="rgb(226,116,26)" fg:x="15345" fg:w="34"/><text x="10.4624%" y="623.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.03%)</title><rect x="10.2098%" y="645" width="0.0273%" height="15" fill="rgb(244,5,17)" fg:x="15341" fg:w="41"/><text x="10.4598%" y="655.50"></text></g><g><title>Parse::Parse (41 samples, 0.03%)</title><rect x="10.2098%" y="629" width="0.0273%" height="15" fill="rgb(252,159,33)" fg:x="15341" fg:w="41"/><text x="10.4598%" y="639.50"></text></g><g><title>Parse::do_call (63 samples, 0.04%)</title><rect x="10.1998%" y="661" width="0.0419%" height="15" fill="rgb(206,71,0)" fg:x="15326" fg:w="63"/><text x="10.4498%" y="671.50"></text></g><g><title>Parse::do_field_access (17 samples, 0.01%)</title><rect x="10.2424%" y="661" width="0.0113%" height="15" fill="rgb(233,118,54)" fg:x="15390" fg:w="17"/><text x="10.4924%" y="671.50"></text></g><g><title>Parse::do_one_block (106 samples, 0.07%)</title><rect x="10.1945%" y="693" width="0.0705%" height="15" fill="rgb(234,83,48)" fg:x="15318" fg:w="106"/><text x="10.4445%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.07%)</title><rect x="10.1965%" y="677" width="0.0685%" height="15" fill="rgb(228,3,54)" fg:x="15321" fg:w="103"/><text x="10.4465%" y="687.50"></text></g><g><title>Parse::do_all_blocks (109 samples, 0.07%)</title><rect x="10.1938%" y="709" width="0.0725%" height="15" fill="rgb(226,155,13)" fg:x="15317" fg:w="109"/><text x="10.4438%" y="719.50"></text></g><g><title>ParseGenerator::generate (120 samples, 0.08%)</title><rect x="10.1885%" y="741" width="0.0799%" height="15" fill="rgb(241,28,37)" fg:x="15309" fg:w="120"/><text x="10.4385%" y="751.50"></text></g><g><title>Parse::Parse (120 samples, 0.08%)</title><rect x="10.1885%" y="725" width="0.0799%" height="15" fill="rgb(233,93,10)" fg:x="15309" fg:w="120"/><text x="10.4385%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (18 samples, 0.01%)</title><rect x="10.2683%" y="741" width="0.0120%" height="15" fill="rgb(225,113,19)" fg:x="15429" fg:w="18"/><text x="10.5183%" y="751.50"></text></g><g><title>Parse::do_call (183 samples, 0.12%)</title><rect x="10.1625%" y="757" width="0.1218%" height="15" fill="rgb(241,2,18)" fg:x="15270" fg:w="183"/><text x="10.4125%" y="767.50"></text></g><g><title>Parse::do_all_blocks (215 samples, 0.14%)</title><rect x="10.1592%" y="805" width="0.1431%" height="15" fill="rgb(228,207,21)" fg:x="15265" fg:w="215"/><text x="10.4092%" y="815.50"></text></g><g><title>Parse::do_one_block (215 samples, 0.14%)</title><rect x="10.1592%" y="789" width="0.1431%" height="15" fill="rgb(213,211,35)" fg:x="15265" fg:w="215"/><text x="10.4092%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (214 samples, 0.14%)</title><rect x="10.1599%" y="773" width="0.1424%" height="15" fill="rgb(209,83,10)" fg:x="15266" fg:w="214"/><text x="10.4099%" y="783.50"></text></g><g><title>ParseGenerator::generate (217 samples, 0.14%)</title><rect x="10.1585%" y="837" width="0.1444%" height="15" fill="rgb(209,164,1)" fg:x="15264" fg:w="217"/><text x="10.4085%" y="847.50"></text></g><g><title>Parse::Parse (217 samples, 0.14%)</title><rect x="10.1585%" y="821" width="0.1444%" height="15" fill="rgb(213,184,43)" fg:x="15264" fg:w="217"/><text x="10.4085%" y="831.50"></text></g><g><title>Parse::do_call (30 samples, 0.02%)</title><rect x="10.3056%" y="741" width="0.0200%" height="15" fill="rgb(231,61,34)" fg:x="15485" fg:w="30"/><text x="10.5556%" y="751.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.02%)</title><rect x="10.3036%" y="773" width="0.0240%" height="15" fill="rgb(235,75,3)" fg:x="15482" fg:w="36"/><text x="10.5536%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (35 samples, 0.02%)</title><rect x="10.3043%" y="757" width="0.0233%" height="15" fill="rgb(220,106,47)" fg:x="15483" fg:w="35"/><text x="10.5543%" y="767.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.03%)</title><rect x="10.3029%" y="821" width="0.0253%" height="15" fill="rgb(210,196,33)" fg:x="15481" fg:w="38"/><text x="10.5529%" y="831.50"></text></g><g><title>Parse::Parse (38 samples, 0.03%)</title><rect x="10.3029%" y="805" width="0.0253%" height="15" fill="rgb(229,154,42)" fg:x="15481" fg:w="38"/><text x="10.5529%" y="815.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.02%)</title><rect x="10.3036%" y="789" width="0.0246%" height="15" fill="rgb(228,114,26)" fg:x="15482" fg:w="37"/><text x="10.5536%" y="799.50"></text></g><g><title>PredictedCallGenerator::generate (39 samples, 0.03%)</title><rect x="10.3029%" y="837" width="0.0260%" height="15" fill="rgb(208,144,1)" fg:x="15481" fg:w="39"/><text x="10.5529%" y="847.50"></text></g><g><title>PredictedCallGenerator::generate (259 samples, 0.17%)</title><rect x="10.1572%" y="853" width="0.1724%" height="15" fill="rgb(239,112,37)" fg:x="15262" fg:w="259"/><text x="10.4072%" y="863.50"></text></g><g><title>Parse::do_call (1,599 samples, 1.06%)</title><rect x="9.2694%" y="869" width="1.0642%" height="15" fill="rgb(210,96,50)" fg:x="13928" fg:w="1599"/><text x="9.5194%" y="879.50"></text></g><g><title>C2Compiler::compile_method (1,625 samples, 1.08%)</title><rect x="9.2581%" y="981" width="1.0815%" height="15" fill="rgb(222,178,2)" fg:x="13911" fg:w="1625"/><text x="9.5081%" y="991.50"></text></g><g><title>Compile::Compile (1,625 samples, 1.08%)</title><rect x="9.2581%" y="965" width="1.0815%" height="15" fill="rgb(226,74,18)" fg:x="13911" fg:w="1625"/><text x="9.5081%" y="975.50"></text></g><g><title>ParseGenerator::generate (1,611 samples, 1.07%)</title><rect x="9.2674%" y="949" width="1.0722%" height="15" fill="rgb(225,67,54)" fg:x="13925" fg:w="1611"/><text x="9.5174%" y="959.50"></text></g><g><title>Parse::Parse (1,611 samples, 1.07%)</title><rect x="9.2674%" y="933" width="1.0722%" height="15" fill="rgb(251,92,32)" fg:x="13925" fg:w="1611"/><text x="9.5174%" y="943.50"></text></g><g><title>Parse::do_all_blocks (1,611 samples, 1.07%)</title><rect x="9.2674%" y="917" width="1.0722%" height="15" fill="rgb(228,149,22)" fg:x="13925" fg:w="1611"/><text x="9.5174%" y="927.50"></text></g><g><title>Parse::do_one_block (1,611 samples, 1.07%)</title><rect x="9.2674%" y="901" width="1.0722%" height="15" fill="rgb(243,54,13)" fg:x="13925" fg:w="1611"/><text x="9.5174%" y="911.50"></text></g><g><title>Parse::do_one_bytecode (1,611 samples, 1.07%)</title><rect x="9.2674%" y="885" width="1.0722%" height="15" fill="rgb(243,180,28)" fg:x="13925" fg:w="1611"/><text x="9.5174%" y="895.50"></text></g><g><title>MachSpillCopyNode::implementation (37 samples, 0.02%)</title><rect x="10.3402%" y="901" width="0.0246%" height="15" fill="rgb(208,167,24)" fg:x="15537" fg:w="37"/><text x="10.5902%" y="911.50"></text></g><g><title>Compile::Output (42 samples, 0.03%)</title><rect x="10.3395%" y="965" width="0.0280%" height="15" fill="rgb(245,73,45)" fg:x="15536" fg:w="42"/><text x="10.5895%" y="975.50"></text></g><g><title>Compile::init_buffer (42 samples, 0.03%)</title><rect x="10.3395%" y="949" width="0.0280%" height="15" fill="rgb(237,203,48)" fg:x="15536" fg:w="42"/><text x="10.5895%" y="959.50"></text></g><g><title>Compile::shorten_branches (41 samples, 0.03%)</title><rect x="10.3402%" y="933" width="0.0273%" height="15" fill="rgb(211,197,16)" fg:x="15537" fg:w="41"/><text x="10.5902%" y="943.50"></text></g><g><title>Compile::scratch_emit_size (41 samples, 0.03%)</title><rect x="10.3402%" y="917" width="0.0273%" height="15" fill="rgb(243,99,51)" fg:x="15537" fg:w="41"/><text x="10.5902%" y="927.50"></text></g><g><title>PhaseCFG::schedule_late (31 samples, 0.02%)</title><rect x="10.3768%" y="933" width="0.0206%" height="15" fill="rgb(215,123,29)" fg:x="15592" fg:w="31"/><text x="10.6268%" y="943.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (31 samples, 0.02%)</title><rect x="10.3768%" y="917" width="0.0206%" height="15" fill="rgb(239,186,37)" fg:x="15592" fg:w="31"/><text x="10.6268%" y="927.50"></text></g><g><title>MachNode::adr_type (19 samples, 0.01%)</title><rect x="10.3848%" y="901" width="0.0126%" height="15" fill="rgb(252,136,39)" fg:x="15604" fg:w="19"/><text x="10.6348%" y="911.50"></text></g><g><title>TypeInstPtr::add_offset (16 samples, 0.01%)</title><rect x="10.3868%" y="885" width="0.0106%" height="15" fill="rgb(223,213,32)" fg:x="15607" fg:w="16"/><text x="10.6368%" y="895.50"></text></g><g><title>PhaseCFG::sched_call (123 samples, 0.08%)</title><rect x="10.3974%" y="917" width="0.0819%" height="15" fill="rgb(233,115,5)" fg:x="15623" fg:w="123"/><text x="10.6474%" y="927.50"></text></g><g><title>PhaseCFG::schedule_local (124 samples, 0.08%)</title><rect x="10.3974%" y="933" width="0.0825%" height="15" fill="rgb(207,226,44)" fg:x="15623" fg:w="124"/><text x="10.6474%" y="943.50"></text></g><g><title>PhaseCFG::do_global_code_motion (164 samples, 0.11%)</title><rect x="10.3755%" y="965" width="0.1091%" height="15" fill="rgb(208,126,0)" fg:x="15590" fg:w="164"/><text x="10.6255%" y="975.50"></text></g><g><title>PhaseCFG::global_code_motion (164 samples, 0.11%)</title><rect x="10.3755%" y="949" width="0.1091%" height="15" fill="rgb(244,66,21)" fg:x="15590" fg:w="164"/><text x="10.6255%" y="959.50"></text></g><g><title>Node::add_req (19 samples, 0.01%)</title><rect x="10.4966%" y="901" width="0.0126%" height="15" fill="rgb(222,97,12)" fg:x="15772" fg:w="19"/><text x="10.7466%" y="911.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (37 samples, 0.02%)</title><rect x="10.4866%" y="917" width="0.0246%" height="15" fill="rgb(219,213,19)" fg:x="15757" fg:w="37"/><text x="10.7366%" y="927.50"></text></g><g><title>PhaseChaitin::Split (42 samples, 0.03%)</title><rect x="10.4846%" y="949" width="0.0280%" height="15" fill="rgb(252,169,30)" fg:x="15754" fg:w="42"/><text x="10.7346%" y="959.50"></text></g><g><title>PhaseChaitin::split_USE (39 samples, 0.03%)</title><rect x="10.4866%" y="933" width="0.0260%" height="15" fill="rgb(206,32,51)" fg:x="15757" fg:w="39"/><text x="10.7366%" y="943.50"></text></g><g><title>Compile::Code_Gen (264 samples, 0.18%)</title><rect x="10.3395%" y="981" width="0.1757%" height="15" fill="rgb(250,172,42)" fg:x="15536" fg:w="264"/><text x="10.5895%" y="991.50"></text></g><g><title>PhaseChaitin::Register_Allocate (46 samples, 0.03%)</title><rect x="10.4846%" y="965" width="0.0306%" height="15" fill="rgb(209,34,43)" fg:x="15754" fg:w="46"/><text x="10.7346%" y="975.50"></text></g><g><title>OopFlow::build_oop_map (96 samples, 0.06%)</title><rect x="10.8014%" y="901" width="0.0639%" height="15" fill="rgb(223,11,35)" fg:x="16230" fg:w="96"/><text x="11.0514%" y="911.50"></text></g><g><title>OopFlow::compute_reach (158 samples, 0.11%)</title><rect x="10.7608%" y="917" width="0.1052%" height="15" fill="rgb(251,219,26)" fg:x="16169" fg:w="158"/><text x="11.0108%" y="927.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (62 samples, 0.04%)</title><rect x="10.8720%" y="917" width="0.0413%" height="15" fill="rgb(231,119,3)" fg:x="16336" fg:w="62"/><text x="11.1220%" y="927.50"></text></g><g><title>Compile::BuildOopMaps (585 samples, 0.39%)</title><rect x="10.5246%" y="933" width="0.3893%" height="15" fill="rgb(216,97,11)" fg:x="15814" fg:w="585"/><text x="10.7746%" y="943.50"></text></g><g><title>BufferBlob::create (22 samples, 0.01%)</title><rect x="10.9219%" y="901" width="0.0146%" height="15" fill="rgb(223,59,9)" fg:x="16411" fg:w="22"/><text x="11.1719%" y="911.50"></text></g><g><title>Compile::init_scratch_buffer_blob (24 samples, 0.02%)</title><rect x="10.9219%" y="917" width="0.0160%" height="15" fill="rgb(233,93,31)" fg:x="16411" fg:w="24"/><text x="11.1719%" y="927.50"></text></g><g><title>Compile::scratch_emit_size (114 samples, 0.08%)</title><rect x="11.0104%" y="901" width="0.0759%" height="15" fill="rgb(239,81,33)" fg:x="16544" fg:w="114"/><text x="11.2604%" y="911.50"></text></g><g><title>Compile::shorten_branches (242 samples, 0.16%)</title><rect x="10.9379%" y="917" width="0.1611%" height="15" fill="rgb(213,120,34)" fg:x="16435" fg:w="242"/><text x="11.1879%" y="927.50"></text></g><g><title>Compile::init_buffer (279 samples, 0.19%)</title><rect x="10.9139%" y="933" width="0.1857%" height="15" fill="rgb(243,49,53)" fg:x="16399" fg:w="279"/><text x="11.1639%" y="943.50"></text></g><g><title>Compile::Output (874 samples, 0.58%)</title><rect x="10.5192%" y="949" width="0.5817%" height="15" fill="rgb(247,216,33)" fg:x="15806" fg:w="874"/><text x="10.7692%" y="959.50"></text></g><g><title>Compile::FillExceptionTables (20 samples, 0.01%)</title><rect x="11.1695%" y="933" width="0.0133%" height="15" fill="rgb(226,26,14)" fg:x="16783" fg:w="20"/><text x="11.4195%" y="943.50"></text></g><g><title>Compile::FillLocArray (32 samples, 0.02%)</title><rect x="11.1974%" y="917" width="0.0213%" height="15" fill="rgb(215,49,53)" fg:x="16825" fg:w="32"/><text x="11.4474%" y="927.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (27 samples, 0.02%)</title><rect x="11.2234%" y="901" width="0.0180%" height="15" fill="rgb(245,162,40)" fg:x="16864" fg:w="27"/><text x="11.4734%" y="911.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (36 samples, 0.02%)</title><rect x="11.2207%" y="917" width="0.0240%" height="15" fill="rgb(229,68,17)" fg:x="16860" fg:w="36"/><text x="11.4707%" y="927.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (30 samples, 0.02%)</title><rect x="11.2493%" y="901" width="0.0200%" height="15" fill="rgb(213,182,10)" fg:x="16903" fg:w="30"/><text x="11.4993%" y="911.50"></text></g><g><title>DebugInformationRecorder::describe_scope (40 samples, 0.03%)</title><rect x="11.2447%" y="917" width="0.0266%" height="15" fill="rgb(245,125,30)" fg:x="16896" fg:w="40"/><text x="11.4947%" y="927.50"></text></g><g><title>Compile::Process_OopMap_Node (156 samples, 0.10%)</title><rect x="11.1828%" y="933" width="0.1038%" height="15" fill="rgb(232,202,2)" fg:x="16803" fg:w="156"/><text x="11.4328%" y="943.50"></text></g><g><title>Compile::valid_bundle_info (44 samples, 0.03%)</title><rect x="11.2912%" y="933" width="0.0293%" height="15" fill="rgb(237,140,51)" fg:x="16966" fg:w="44"/><text x="11.5412%" y="943.50"></text></g><g><title>MachSpillCopyNode::implementation (16 samples, 0.01%)</title><rect x="11.3272%" y="933" width="0.0106%" height="15" fill="rgb(236,157,25)" fg:x="17020" fg:w="16"/><text x="11.5772%" y="943.50"></text></g><g><title>Compile::fill_buffer (412 samples, 0.27%)</title><rect x="11.1029%" y="949" width="0.2742%" height="15" fill="rgb(219,209,0)" fg:x="16683" fg:w="412"/><text x="11.3529%" y="959.50"></text></g><g><title>Matcher::init_first_stack_mask (38 samples, 0.03%)</title><rect x="11.4024%" y="917" width="0.0253%" height="15" fill="rgb(240,116,54)" fg:x="17133" fg:w="38"/><text x="11.6524%" y="927.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (44 samples, 0.03%)</title><rect x="11.4004%" y="933" width="0.0293%" height="15" fill="rgb(216,10,36)" fg:x="17130" fg:w="44"/><text x="11.6504%" y="943.50"></text></g><g><title>Matcher::is_bmi_pattern (25 samples, 0.02%)</title><rect x="11.5861%" y="917" width="0.0166%" height="15" fill="rgb(222,72,44)" fg:x="17409" fg:w="25"/><text x="11.8361%" y="927.50"></text></g><g><title>Matcher::find_shared (275 samples, 0.18%)</title><rect x="11.4297%" y="933" width="0.1830%" height="15" fill="rgb(232,159,9)" fg:x="17174" fg:w="275"/><text x="11.6797%" y="943.50"></text></g><g><title>Arena::contains (424 samples, 0.28%)</title><rect x="11.7877%" y="917" width="0.2822%" height="15" fill="rgb(210,39,32)" fg:x="17712" fg:w="424"/><text x="12.0377%" y="927.50"></text></g><g><title>Matcher::collect_null_checks (18 samples, 0.01%)</title><rect x="12.0772%" y="917" width="0.0120%" height="15" fill="rgb(216,194,45)" fg:x="18147" fg:w="18"/><text x="12.3272%" y="927.50"></text></g><g><title>Node::add_req (34 samples, 0.02%)</title><rect x="12.1411%" y="885" width="0.0226%" height="15" fill="rgb(218,18,35)" fg:x="18243" fg:w="34"/><text x="12.3911%" y="895.50"></text></g><g><title>Matcher::match_tree (92 samples, 0.06%)</title><rect x="12.1038%" y="901" width="0.0612%" height="15" fill="rgb(207,83,51)" fg:x="18187" fg:w="92"/><text x="12.3538%" y="911.50"></text></g><g><title>Matcher::match_sfpt (122 samples, 0.08%)</title><rect x="12.0892%" y="917" width="0.0812%" height="15" fill="rgb(225,63,43)" fg:x="18165" fg:w="122"/><text x="12.3392%" y="927.50"></text></g><g><title>Matcher::Label_Root (38 samples, 0.03%)</title><rect x="12.3641%" y="853" width="0.0253%" height="15" fill="rgb(207,57,36)" fg:x="18578" fg:w="38"/><text x="12.6141%" y="863.50"></text></g><g><title>State::DFA (18 samples, 0.01%)</title><rect x="12.3774%" y="837" width="0.0120%" height="15" fill="rgb(216,99,33)" fg:x="18598" fg:w="18"/><text x="12.6274%" y="847.50"></text></g><g><title>State::DFA (44 samples, 0.03%)</title><rect x="12.3894%" y="853" width="0.0293%" height="15" fill="rgb(225,42,16)" fg:x="18616" fg:w="44"/><text x="12.6394%" y="863.50"></text></g><g><title>Matcher::Label_Root (104 samples, 0.07%)</title><rect x="12.3514%" y="869" width="0.0692%" height="15" fill="rgb(220,201,45)" fg:x="18559" fg:w="104"/><text x="12.6014%" y="879.50"></text></g><g><title>State::_sub_Op_AddP (24 samples, 0.02%)</title><rect x="12.4266%" y="853" width="0.0160%" height="15" fill="rgb(225,33,4)" fg:x="18672" fg:w="24"/><text x="12.6766%" y="863.50"></text></g><g><title>State::DFA (41 samples, 0.03%)</title><rect x="12.4220%" y="869" width="0.0273%" height="15" fill="rgb(224,33,50)" fg:x="18665" fg:w="41"/><text x="12.6720%" y="879.50"></text></g><g><title>Matcher::Label_Root (210 samples, 0.14%)</title><rect x="12.3135%" y="885" width="0.1398%" height="15" fill="rgb(246,198,51)" fg:x="18502" fg:w="210"/><text x="12.5635%" y="895.50"></text></g><g><title>State::DFA (21 samples, 0.01%)</title><rect x="12.4559%" y="885" width="0.0140%" height="15" fill="rgb(205,22,4)" fg:x="18716" fg:w="21"/><text x="12.7059%" y="895.50"></text></g><g><title>Matcher::Label_Root (330 samples, 0.22%)</title><rect x="12.2662%" y="901" width="0.2196%" height="15" fill="rgb(206,3,8)" fg:x="18431" fg:w="330"/><text x="12.5162%" y="911.50"></text></g><g><title>Matcher::ReduceInst (21 samples, 0.01%)</title><rect x="12.5225%" y="837" width="0.0140%" height="15" fill="rgb(251,23,15)" fg:x="18816" fg:w="21"/><text x="12.7725%" y="847.50"></text></g><g><title>Matcher::ReduceInst_Interior (45 samples, 0.03%)</title><rect x="12.5205%" y="853" width="0.0299%" height="15" fill="rgb(252,88,28)" fg:x="18813" fg:w="45"/><text x="12.7705%" y="863.50"></text></g><g><title>State::MachOperGenerator (16 samples, 0.01%)</title><rect x="12.5398%" y="837" width="0.0106%" height="15" fill="rgb(212,127,14)" fg:x="18842" fg:w="16"/><text x="12.7898%" y="847.50"></text></g><g><title>Matcher::ReduceInst (75 samples, 0.05%)</title><rect x="12.5138%" y="869" width="0.0499%" height="15" fill="rgb(247,145,37)" fg:x="18803" fg:w="75"/><text x="12.7638%" y="879.50"></text></g><g><title>Matcher::ReduceOper (17 samples, 0.01%)</title><rect x="12.5664%" y="869" width="0.0113%" height="15" fill="rgb(209,117,53)" fg:x="18882" fg:w="17"/><text x="12.8164%" y="879.50"></text></g><g><title>Matcher::ReduceInst_Interior (142 samples, 0.09%)</title><rect x="12.5012%" y="885" width="0.0945%" height="15" fill="rgb(212,90,42)" fg:x="18784" fg:w="142"/><text x="12.7512%" y="895.50"></text></g><g><title>State::MachOperGenerator (25 samples, 0.02%)</title><rect x="12.5790%" y="869" width="0.0166%" height="15" fill="rgb(218,164,37)" fg:x="18901" fg:w="25"/><text x="12.8290%" y="879.50"></text></g><g><title>State::MachNodeGenerator (41 samples, 0.03%)</title><rect x="12.6070%" y="885" width="0.0273%" height="15" fill="rgb(246,65,34)" fg:x="18943" fg:w="41"/><text x="12.8570%" y="895.50"></text></g><g><title>State::MachOperGenerator (17 samples, 0.01%)</title><rect x="12.6343%" y="885" width="0.0113%" height="15" fill="rgb(231,100,33)" fg:x="18984" fg:w="17"/><text x="12.8843%" y="895.50"></text></g><g><title>Matcher::ReduceInst (251 samples, 0.17%)</title><rect x="12.4859%" y="901" width="0.1670%" height="15" fill="rgb(228,126,14)" fg:x="18761" fg:w="251"/><text x="12.7359%" y="911.50"></text></g><g><title>Matcher::match_tree (742 samples, 0.49%)</title><rect x="12.1704%" y="917" width="0.4938%" height="15" fill="rgb(215,173,21)" fg:x="18287" fg:w="742"/><text x="12.4204%" y="927.50"></text></g><g><title>Node::clone (50 samples, 0.03%)</title><rect x="12.6695%" y="917" width="0.0333%" height="15" fill="rgb(210,6,40)" fg:x="19037" fg:w="50"/><text x="12.9195%" y="927.50"></text></g><g><title>Node::out_grow (35 samples, 0.02%)</title><rect x="12.7028%" y="917" width="0.0233%" height="15" fill="rgb(212,48,18)" fg:x="19087" fg:w="35"/><text x="12.9528%" y="927.50"></text></g><g><title>Matcher::xform (1,672 samples, 1.11%)</title><rect x="11.6174%" y="933" width="1.1128%" height="15" fill="rgb(230,214,11)" fg:x="17456" fg:w="1672"/><text x="11.8674%" y="943.50"></text></g><g><title>Matcher::match (2,026 samples, 1.35%)</title><rect x="11.3838%" y="949" width="1.3483%" height="15" fill="rgb(254,105,39)" fg:x="17105" fg:w="2026"/><text x="11.6338%" y="959.50"></text></g><g><title>PhaseBlockLayout::find_edges (50 samples, 0.03%)</title><rect x="12.7341%" y="933" width="0.0333%" height="15" fill="rgb(245,158,5)" fg:x="19134" fg:w="50"/><text x="12.9841%" y="943.50"></text></g><g><title>PhaseBlockLayout::grow_traces (48 samples, 0.03%)</title><rect x="12.7674%" y="933" width="0.0319%" height="15" fill="rgb(249,208,11)" fg:x="19184" fg:w="48"/><text x="13.0174%" y="943.50"></text></g><g><title>__GI___qsort_r (30 samples, 0.02%)</title><rect x="12.7794%" y="917" width="0.0200%" height="15" fill="rgb(210,39,28)" fg:x="19202" fg:w="30"/><text x="13.0294%" y="927.50"></text></g><g><title>msort_with_tmp (28 samples, 0.02%)</title><rect x="12.7807%" y="901" width="0.0186%" height="15" fill="rgb(211,56,53)" fg:x="19204" fg:w="28"/><text x="13.0307%" y="911.50"></text></g><g><title>msort_with_tmp (28 samples, 0.02%)</title><rect x="12.7807%" y="885" width="0.0186%" height="15" fill="rgb(226,201,30)" fg:x="19204" fg:w="28"/><text x="13.0307%" y="895.50"></text></g><g><title>msort_with_tmp (24 samples, 0.02%)</title><rect x="12.7833%" y="869" width="0.0160%" height="15" fill="rgb(239,101,34)" fg:x="19208" fg:w="24"/><text x="13.0333%" y="879.50"></text></g><g><title>msort_with_tmp (24 samples, 0.02%)</title><rect x="12.7833%" y="853" width="0.0160%" height="15" fill="rgb(226,209,5)" fg:x="19208" fg:w="24"/><text x="13.0333%" y="863.50"></text></g><g><title>msort_with_tmp (23 samples, 0.02%)</title><rect x="12.7840%" y="837" width="0.0153%" height="15" fill="rgb(250,105,47)" fg:x="19209" fg:w="23"/><text x="13.0340%" y="847.50"></text></g><g><title>msort_with_tmp (23 samples, 0.02%)</title><rect x="12.7840%" y="821" width="0.0153%" height="15" fill="rgb(230,72,3)" fg:x="19209" fg:w="23"/><text x="13.0340%" y="831.50"></text></g><g><title>msort_with_tmp (19 samples, 0.01%)</title><rect x="12.7867%" y="805" width="0.0126%" height="15" fill="rgb(232,218,39)" fg:x="19213" fg:w="19"/><text x="13.0367%" y="815.50"></text></g><g><title>msort_with_tmp (19 samples, 0.01%)</title><rect x="12.7867%" y="789" width="0.0126%" height="15" fill="rgb(248,166,6)" fg:x="19213" fg:w="19"/><text x="13.0367%" y="799.50"></text></g><g><title>msort_with_tmp (16 samples, 0.01%)</title><rect x="12.7887%" y="773" width="0.0106%" height="15" fill="rgb(247,89,20)" fg:x="19216" fg:w="16"/><text x="13.0387%" y="783.50"></text></g><g><title>PhaseBlockLayout::merge_traces (16 samples, 0.01%)</title><rect x="12.7993%" y="933" width="0.0106%" height="15" fill="rgb(248,130,54)" fg:x="19232" fg:w="16"/><text x="13.0493%" y="943.50"></text></g><g><title>Trace::fixup_blocks (16 samples, 0.01%)</title><rect x="12.8100%" y="917" width="0.0106%" height="15" fill="rgb(234,196,4)" fg:x="19248" fg:w="16"/><text x="13.0600%" y="927.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (137 samples, 0.09%)</title><rect x="12.7321%" y="949" width="0.0912%" height="15" fill="rgb(250,143,31)" fg:x="19131" fg:w="137"/><text x="12.9821%" y="959.50"></text></g><g><title>PhaseBlockLayout::reorder_traces (20 samples, 0.01%)</title><rect x="12.8100%" y="933" width="0.0133%" height="15" fill="rgb(211,110,34)" fg:x="19248" fg:w="20"/><text x="13.0600%" y="943.50"></text></g><g><title>PhaseCFG::PhaseCFG (95 samples, 0.06%)</title><rect x="12.8233%" y="949" width="0.0632%" height="15" fill="rgb(215,124,48)" fg:x="19268" fg:w="95"/><text x="13.0733%" y="959.50"></text></g><g><title>PhaseCFG::build_cfg (92 samples, 0.06%)</title><rect x="12.8253%" y="933" width="0.0612%" height="15" fill="rgb(216,46,13)" fg:x="19271" fg:w="92"/><text x="13.0753%" y="943.50"></text></g><g><title>PhaseCFG::do_DFS (36 samples, 0.02%)</title><rect x="12.9071%" y="917" width="0.0240%" height="15" fill="rgb(205,184,25)" fg:x="19394" fg:w="36"/><text x="13.1571%" y="927.50"></text></g><g><title>Block_Stack::most_frequent_successor (21 samples, 0.01%)</title><rect x="12.9171%" y="901" width="0.0140%" height="15" fill="rgb(228,1,10)" fg:x="19409" fg:w="21"/><text x="13.1671%" y="911.50"></text></g><g><title>PhaseCFG::build_dominator_tree (71 samples, 0.05%)</title><rect x="12.8865%" y="933" width="0.0473%" height="15" fill="rgb(213,116,27)" fg:x="19363" fg:w="71"/><text x="13.1365%" y="943.50"></text></g><g><title>CFGLoop::compute_freq (16 samples, 0.01%)</title><rect x="12.9384%" y="917" width="0.0106%" height="15" fill="rgb(241,95,50)" fg:x="19441" fg:w="16"/><text x="13.1884%" y="927.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (41 samples, 0.03%)</title><rect x="12.9338%" y="933" width="0.0273%" height="15" fill="rgb(238,48,32)" fg:x="19434" fg:w="41"/><text x="13.1838%" y="943.50"></text></g><g><title>PhaseCFG::implicit_null_check (37 samples, 0.02%)</title><rect x="13.1361%" y="917" width="0.0246%" height="15" fill="rgb(235,113,49)" fg:x="19738" fg:w="37"/><text x="13.3861%" y="927.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (33 samples, 0.02%)</title><rect x="13.1627%" y="917" width="0.0220%" height="15" fill="rgb(205,127,43)" fg:x="19778" fg:w="33"/><text x="13.4127%" y="927.50"></text></g><g><title>Node_Backward_Iterator::next (200 samples, 0.13%)</title><rect x="13.2366%" y="901" width="0.1331%" height="15" fill="rgb(250,162,2)" fg:x="19889" fg:w="200"/><text x="13.4866%" y="911.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (73 samples, 0.05%)</title><rect x="13.3697%" y="901" width="0.0486%" height="15" fill="rgb(220,13,41)" fg:x="20089" fg:w="73"/><text x="13.6197%" y="911.50"></text></g><g><title>MachNode::adr_type (31 samples, 0.02%)</title><rect x="13.4668%" y="885" width="0.0206%" height="15" fill="rgb(249,221,25)" fg:x="20235" fg:w="31"/><text x="13.7168%" y="895.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (119 samples, 0.08%)</title><rect x="13.4183%" y="901" width="0.0792%" height="15" fill="rgb(215,208,19)" fg:x="20162" fg:w="119"/><text x="13.6683%" y="911.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (58 samples, 0.04%)</title><rect x="13.4975%" y="901" width="0.0386%" height="15" fill="rgb(236,175,2)" fg:x="20281" fg:w="58"/><text x="13.7475%" y="911.50"></text></g><g><title>Node_Array::insert (28 samples, 0.02%)</title><rect x="13.5174%" y="885" width="0.0186%" height="15" fill="rgb(241,52,2)" fg:x="20311" fg:w="28"/><text x="13.7674%" y="895.50"></text></g><g><title>PhaseCFG::schedule_late (530 samples, 0.35%)</title><rect x="13.1847%" y="917" width="0.3527%" height="15" fill="rgb(248,140,14)" fg:x="19811" fg:w="530"/><text x="13.4347%" y="927.50"></text></g><g><title>Node::is_iteratively_computed (18 samples, 0.01%)</title><rect x="13.6505%" y="901" width="0.0120%" height="15" fill="rgb(253,22,42)" fg:x="20511" fg:w="18"/><text x="13.9005%" y="911.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (45 samples, 0.03%)</title><rect x="13.6625%" y="901" width="0.0299%" height="15" fill="rgb(234,61,47)" fg:x="20529" fg:w="45"/><text x="13.9125%" y="911.50"></text></g><g><title>PhaseCFG::needed_for_next_call (29 samples, 0.02%)</title><rect x="13.6924%" y="901" width="0.0193%" height="15" fill="rgb(208,226,15)" fg:x="20574" fg:w="29"/><text x="13.9424%" y="911.50"></text></g><g><title>PhaseCFG::select (74 samples, 0.05%)</title><rect x="13.7117%" y="901" width="0.0492%" height="15" fill="rgb(217,221,4)" fg:x="20603" fg:w="74"/><text x="13.9617%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (17 samples, 0.01%)</title><rect x="13.7670%" y="885" width="0.0113%" height="15" fill="rgb(212,174,34)" fg:x="20686" fg:w="17"/><text x="14.0170%" y="895.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (55 samples, 0.04%)</title><rect x="13.7610%" y="901" width="0.0366%" height="15" fill="rgb(253,83,4)" fg:x="20677" fg:w="55"/><text x="14.0110%" y="911.50"></text></g><g><title>PhaseChaitin::raise_pressure (29 samples, 0.02%)</title><rect x="13.7783%" y="885" width="0.0193%" height="15" fill="rgb(250,195,49)" fg:x="20703" fg:w="29"/><text x="14.0283%" y="895.50"></text></g><g><title>RegMask::is_UP (21 samples, 0.01%)</title><rect x="13.7836%" y="869" width="0.0140%" height="15" fill="rgb(241,192,25)" fg:x="20711" fg:w="21"/><text x="14.0336%" y="879.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (32 samples, 0.02%)</title><rect x="13.7976%" y="901" width="0.0213%" height="15" fill="rgb(208,124,10)" fg:x="20732" fg:w="32"/><text x="14.0476%" y="911.50"></text></g><g><title>PhaseCFG::schedule_local (431 samples, 0.29%)</title><rect x="13.5374%" y="917" width="0.2868%" height="15" fill="rgb(222,33,0)" fg:x="20341" fg:w="431"/><text x="13.7874%" y="927.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (18 samples, 0.01%)</title><rect x="13.8242%" y="917" width="0.0120%" height="15" fill="rgb(234,209,28)" fg:x="20772" fg:w="18"/><text x="14.0742%" y="927.50"></text></g><g><title>MachNode::ideal_reg (19 samples, 0.01%)</title><rect x="13.9700%" y="901" width="0.0126%" height="15" fill="rgb(224,11,23)" fg:x="20991" fg:w="19"/><text x="14.2200%" y="911.50"></text></g><g><title>RegMask::Size (78 samples, 0.05%)</title><rect x="13.9959%" y="901" width="0.0519%" height="15" fill="rgb(232,99,1)" fg:x="21030" fg:w="78"/><text x="14.2459%" y="911.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (346 samples, 0.23%)</title><rect x="13.8462%" y="917" width="0.2303%" height="15" fill="rgb(237,95,45)" fg:x="20805" fg:w="346"/><text x="14.0962%" y="927.50"></text></g><g><title>PhaseChaitin::mark_ssa (58 samples, 0.04%)</title><rect x="14.0765%" y="917" width="0.0386%" height="15" fill="rgb(208,109,11)" fg:x="21151" fg:w="58"/><text x="14.3265%" y="927.50"></text></g><g><title>IndexSet::initialize (84 samples, 0.06%)</title><rect x="14.1410%" y="901" width="0.0559%" height="15" fill="rgb(216,190,48)" fg:x="21248" fg:w="84"/><text x="14.3910%" y="911.50"></text></g><g><title>handle_mm_fault (17 samples, 0.01%)</title><rect x="14.2082%" y="837" width="0.0113%" height="15" fill="rgb(251,171,36)" fg:x="21349" fg:w="17"/><text x="14.4582%" y="847.50"></text></g><g><title>asm_exc_page_fault (18 samples, 0.01%)</title><rect x="14.2082%" y="885" width="0.0120%" height="15" fill="rgb(230,62,22)" fg:x="21349" fg:w="18"/><text x="14.4582%" y="895.50"></text></g><g><title>exc_page_fault (18 samples, 0.01%)</title><rect x="14.2082%" y="869" width="0.0120%" height="15" fill="rgb(225,114,35)" fg:x="21349" fg:w="18"/><text x="14.4582%" y="879.50"></text></g><g><title>do_user_addr_fault (18 samples, 0.01%)</title><rect x="14.2082%" y="853" width="0.0120%" height="15" fill="rgb(215,118,42)" fg:x="21349" fg:w="18"/><text x="14.4582%" y="863.50"></text></g><g><title>[libc-2.31.so] (37 samples, 0.02%)</title><rect x="14.1969%" y="901" width="0.0246%" height="15" fill="rgb(243,119,21)" fg:x="21332" fg:w="37"/><text x="14.4469%" y="911.50"></text></g><g><title>PhaseIFG::init (161 samples, 0.11%)</title><rect x="14.1151%" y="917" width="0.1071%" height="15" fill="rgb(252,177,53)" fg:x="21209" fg:w="161"/><text x="14.3651%" y="927.50"></text></g><g><title>IndexSet::initialize (35 samples, 0.02%)</title><rect x="14.3460%" y="901" width="0.0233%" height="15" fill="rgb(237,209,29)" fg:x="21556" fg:w="35"/><text x="14.5960%" y="911.50"></text></g><g><title>IndexSet::alloc_block_containing (42 samples, 0.03%)</title><rect x="14.4092%" y="885" width="0.0280%" height="15" fill="rgb(212,65,23)" fg:x="21651" fg:w="42"/><text x="14.6592%" y="895.50"></text></g><g><title>PhaseLive::add_livein (143 samples, 0.10%)</title><rect x="14.3700%" y="901" width="0.0952%" height="15" fill="rgb(230,222,46)" fg:x="21592" fg:w="143"/><text x="14.6200%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (42 samples, 0.03%)</title><rect x="14.4372%" y="885" width="0.0280%" height="15" fill="rgb(215,135,32)" fg:x="21693" fg:w="42"/><text x="14.6872%" y="895.50"></text></g><g><title>IndexSet::alloc_block_containing (38 samples, 0.03%)</title><rect x="14.5570%" y="885" width="0.0253%" height="15" fill="rgb(246,101,22)" fg:x="21873" fg:w="38"/><text x="14.8070%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (67 samples, 0.04%)</title><rect x="14.5889%" y="885" width="0.0446%" height="15" fill="rgb(206,107,13)" fg:x="21921" fg:w="67"/><text x="14.8389%" y="895.50"></text></g><g><title>PhaseLive::add_liveout (256 samples, 0.17%)</title><rect x="14.4651%" y="901" width="0.1704%" height="15" fill="rgb(250,100,44)" fg:x="21735" fg:w="256"/><text x="14.7151%" y="911.50"></text></g><g><title>PhaseLive::compute (622 samples, 0.41%)</title><rect x="14.2222%" y="917" width="0.4140%" height="15" fill="rgb(231,147,38)" fg:x="21370" fg:w="622"/><text x="14.4722%" y="927.50"></text></g><g><title>PhaseCFG::do_global_code_motion (2,644 samples, 1.76%)</title><rect x="12.8865%" y="949" width="1.7596%" height="15" fill="rgb(229,8,40)" fg:x="19363" fg:w="2644"/><text x="13.1365%" y="959.50"></text></g><g><title>PhaseCFG::global_code_motion (2,532 samples, 1.69%)</title><rect x="12.9610%" y="933" width="1.6851%" height="15" fill="rgb(221,135,30)" fg:x="19475" fg:w="2532"/><text x="13.2110%" y="943.50"></text></g><g><title>PhaseCFG::fixup_flow (21 samples, 0.01%)</title><rect x="14.6461%" y="949" width="0.0140%" height="15" fill="rgb(249,193,18)" fg:x="22007" fg:w="21"/><text x="14.8961%" y="959.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (48 samples, 0.03%)</title><rect x="14.6601%" y="949" width="0.0319%" height="15" fill="rgb(209,133,39)" fg:x="22028" fg:w="48"/><text x="14.9101%" y="959.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (841 samples, 0.56%)</title><rect x="14.7639%" y="933" width="0.5597%" height="15" fill="rgb(232,100,14)" fg:x="22184" fg:w="841"/><text x="15.0139%" y="943.50"></text></g><g><title>IndexSetIterator::advance_and_next (229 samples, 0.15%)</title><rect x="15.6131%" y="917" width="0.1524%" height="15" fill="rgb(224,185,1)" fg:x="23460" fg:w="229"/><text x="15.8631%" y="927.50"></text></g><g><title>RegMask::find_first_set (25 samples, 0.02%)</title><rect x="15.8148%" y="901" width="0.0166%" height="15" fill="rgb(223,139,8)" fg:x="23763" fg:w="25"/><text x="16.0648%" y="911.50"></text></g><g><title>PhaseChaitin::bias_color (112 samples, 0.07%)</title><rect x="15.7655%" y="917" width="0.0745%" height="15" fill="rgb(232,213,38)" fg:x="23689" fg:w="112"/><text x="16.0155%" y="927.50"></text></g><g><title>IndexSet::alloc_block_containing (28 samples, 0.02%)</title><rect x="15.9972%" y="901" width="0.0186%" height="15" fill="rgb(207,94,22)" fg:x="24037" fg:w="28"/><text x="16.2472%" y="911.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (42 samples, 0.03%)</title><rect x="16.0158%" y="901" width="0.0280%" height="15" fill="rgb(219,183,54)" fg:x="24065" fg:w="42"/><text x="16.2658%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (285 samples, 0.19%)</title><rect x="16.0437%" y="901" width="0.1897%" height="15" fill="rgb(216,185,54)" fg:x="24107" fg:w="285"/><text x="16.2937%" y="911.50"></text></g><g><title>PhaseIFG::re_insert (595 samples, 0.40%)</title><rect x="15.8447%" y="917" width="0.3960%" height="15" fill="rgb(254,217,39)" fg:x="23808" fg:w="595"/><text x="16.0947%" y="927.50"></text></g><g><title>RegMask::clear_to_sets (121 samples, 0.08%)</title><rect x="16.2407%" y="917" width="0.0805%" height="15" fill="rgb(240,178,23)" fg:x="24403" fg:w="121"/><text x="16.4907%" y="927.50"></text></g><g><title>PhaseChaitin::Select (1,502 samples, 1.00%)</title><rect x="15.3236%" y="933" width="0.9996%" height="15" fill="rgb(218,11,47)" fg:x="23025" fg:w="1502"/><text x="15.5736%" y="943.50"></text></g><g><title>IndexSetIterator::advance_and_next (251 samples, 0.17%)</title><rect x="16.4584%" y="917" width="0.1670%" height="15" fill="rgb(218,51,51)" fg:x="24730" fg:w="251"/><text x="16.7084%" y="927.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (56 samples, 0.04%)</title><rect x="16.8144%" y="901" width="0.0373%" height="15" fill="rgb(238,126,27)" fg:x="25265" fg:w="56"/><text x="17.0644%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (315 samples, 0.21%)</title><rect x="16.8517%" y="901" width="0.2096%" height="15" fill="rgb(249,202,22)" fg:x="25321" fg:w="315"/><text x="17.1017%" y="911.50"></text></g><g><title>PhaseChaitin::Simplify (1,117 samples, 0.74%)</title><rect x="16.3233%" y="933" width="0.7434%" height="15" fill="rgb(254,195,49)" fg:x="24527" fg:w="1117"/><text x="16.5733%" y="943.50"></text></g><g><title>PhaseIFG::remove_node (663 samples, 0.44%)</title><rect x="16.6254%" y="917" width="0.4412%" height="15" fill="rgb(208,123,14)" fg:x="24981" fg:w="663"/><text x="16.8754%" y="927.50"></text></g><g><title>CProjNode::is_block_proj (24 samples, 0.02%)</title><rect x="18.2786%" y="917" width="0.0160%" height="15" fill="rgb(224,200,8)" fg:x="27465" fg:w="24"/><text x="18.5286%" y="927.50"></text></g><g><title>MachNode::ideal_reg (26 samples, 0.02%)</title><rect x="18.3804%" y="901" width="0.0173%" height="15" fill="rgb(217,61,36)" fg:x="27618" fg:w="26"/><text x="18.6304%" y="911.50"></text></g><g><title>MachNode::rematerialize (129 samples, 0.09%)</title><rect x="18.3172%" y="917" width="0.0859%" height="15" fill="rgb(206,35,45)" fg:x="27523" fg:w="129"/><text x="18.5672%" y="927.50"></text></g><g><title>Node::rematerialize (100 samples, 0.07%)</title><rect x="18.4163%" y="917" width="0.0666%" height="15" fill="rgb(217,65,33)" fg:x="27672" fg:w="100"/><text x="18.6663%" y="927.50"></text></g><g><title>Node::replace_by (20 samples, 0.01%)</title><rect x="18.4829%" y="917" width="0.0133%" height="15" fill="rgb(222,158,48)" fg:x="27772" fg:w="20"/><text x="18.7329%" y="927.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (19 samples, 0.01%)</title><rect x="18.5255%" y="901" width="0.0126%" height="15" fill="rgb(254,2,54)" fg:x="27836" fg:w="19"/><text x="18.7755%" y="911.50"></text></g><g><title>PhaseChaitin::split_DEF (27 samples, 0.02%)</title><rect x="18.5235%" y="917" width="0.0180%" height="15" fill="rgb(250,143,38)" fg:x="27833" fg:w="27"/><text x="18.7735%" y="927.50"></text></g><g><title>PhaseChaitin::clone_projs (16 samples, 0.01%)</title><rect x="18.5468%" y="901" width="0.0106%" height="15" fill="rgb(248,25,0)" fg:x="27868" fg:w="16"/><text x="18.7968%" y="911.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (28 samples, 0.02%)</title><rect x="18.5414%" y="917" width="0.0186%" height="15" fill="rgb(206,152,27)" fg:x="27860" fg:w="28"/><text x="18.7914%" y="927.50"></text></g><g><title>RegMask::is_aligned_pairs (29 samples, 0.02%)</title><rect x="18.6047%" y="885" width="0.0193%" height="15" fill="rgb(240,77,30)" fg:x="27955" fg:w="29"/><text x="18.8547%" y="895.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (53 samples, 0.04%)</title><rect x="18.5907%" y="901" width="0.0353%" height="15" fill="rgb(231,5,3)" fg:x="27934" fg:w="53"/><text x="18.8407%" y="911.50"></text></g><g><title>PhaseChaitin::insert_proj (22 samples, 0.01%)</title><rect x="18.6260%" y="901" width="0.0146%" height="15" fill="rgb(207,226,32)" fg:x="27987" fg:w="22"/><text x="18.8760%" y="911.50"></text></g><g><title>Node_Array::insert (17 samples, 0.01%)</title><rect x="18.6293%" y="885" width="0.0113%" height="15" fill="rgb(222,207,47)" fg:x="27992" fg:w="17"/><text x="18.8793%" y="895.50"></text></g><g><title>PhaseChaitin::split_USE (125 samples, 0.08%)</title><rect x="18.5601%" y="917" width="0.0832%" height="15" fill="rgb(229,115,45)" fg:x="27888" fg:w="125"/><text x="18.8101%" y="927.50"></text></g><g><title>RegMask::Size (18 samples, 0.01%)</title><rect x="18.6486%" y="917" width="0.0120%" height="15" fill="rgb(224,191,6)" fg:x="28021" fg:w="18"/><text x="18.8986%" y="927.50"></text></g><g><title>PhaseChaitin::Split (2,425 samples, 1.61%)</title><rect x="17.0666%" y="933" width="1.6139%" height="15" fill="rgb(230,227,24)" fg:x="25644" fg:w="2425"/><text x="17.3166%" y="943.50"></text></g><g><title>__tls_get_addr (21 samples, 0.01%)</title><rect x="19.2402%" y="901" width="0.0140%" height="15" fill="rgb(228,80,19)" fg:x="28910" fg:w="21"/><text x="19.4902%" y="911.50"></text></g><g><title>IndexSet::IndexSet (223 samples, 0.15%)</title><rect x="19.1138%" y="917" width="0.1484%" height="15" fill="rgb(247,229,0)" fg:x="28720" fg:w="223"/><text x="19.3638%" y="927.50"></text></g><g><title>MachNode::rematerialize (62 samples, 0.04%)</title><rect x="19.2695%" y="917" width="0.0413%" height="15" fill="rgb(237,194,15)" fg:x="28954" fg:w="62"/><text x="19.5195%" y="927.50"></text></g><g><title>IndexSet::alloc_block_containing (39 samples, 0.03%)</title><rect x="19.5311%" y="901" width="0.0260%" height="15" fill="rgb(219,203,20)" fg:x="29347" fg:w="39"/><text x="19.7811%" y="911.50"></text></g><g><title>__tls_get_addr (16 samples, 0.01%)</title><rect x="19.5464%" y="885" width="0.0106%" height="15" fill="rgb(234,128,8)" fg:x="29370" fg:w="16"/><text x="19.7964%" y="895.50"></text></g><g><title>JVMState::debug_start (28 samples, 0.02%)</title><rect x="19.5570%" y="901" width="0.0186%" height="15" fill="rgb(248,202,8)" fg:x="29386" fg:w="28"/><text x="19.8070%" y="911.50"></text></g><g><title>MachNode::rematerialize (69 samples, 0.05%)</title><rect x="19.5770%" y="901" width="0.0459%" height="15" fill="rgb(206,104,37)" fg:x="29416" fg:w="69"/><text x="19.8270%" y="911.50"></text></g><g><title>PhaseChaitin::raise_pressure (110 samples, 0.07%)</title><rect x="19.6289%" y="901" width="0.0732%" height="15" fill="rgb(223,8,27)" fg:x="29494" fg:w="110"/><text x="19.8789%" y="911.50"></text></g><g><title>RegMask::is_UP (35 samples, 0.02%)</title><rect x="19.6788%" y="885" width="0.0233%" height="15" fill="rgb(216,217,28)" fg:x="29569" fg:w="35"/><text x="19.9288%" y="895.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (581 samples, 0.39%)</title><rect x="19.3208%" y="917" width="0.3867%" height="15" fill="rgb(249,199,1)" fg:x="29031" fg:w="581"/><text x="19.5708%" y="927.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (22 samples, 0.01%)</title><rect x="19.7074%" y="917" width="0.0146%" height="15" fill="rgb(240,85,17)" fg:x="29612" fg:w="22"/><text x="19.9574%" y="927.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (34 samples, 0.02%)</title><rect x="19.7221%" y="917" width="0.0226%" height="15" fill="rgb(206,108,45)" fg:x="29634" fg:w="34"/><text x="19.9721%" y="927.50"></text></g><g><title>RegMask::Size (22 samples, 0.01%)</title><rect x="19.7301%" y="901" width="0.0146%" height="15" fill="rgb(245,210,41)" fg:x="29646" fg:w="22"/><text x="19.9801%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (115 samples, 0.08%)</title><rect x="19.8645%" y="901" width="0.0765%" height="15" fill="rgb(206,13,37)" fg:x="29848" fg:w="115"/><text x="20.1145%" y="911.50"></text></g><g><title>RegMask::is_UP (47 samples, 0.03%)</title><rect x="19.9410%" y="901" width="0.0313%" height="15" fill="rgb(250,61,18)" fg:x="29963" fg:w="47"/><text x="20.1910%" y="911.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (343 samples, 0.23%)</title><rect x="19.7447%" y="917" width="0.2283%" height="15" fill="rgb(235,172,48)" fg:x="29668" fg:w="343"/><text x="19.9947%" y="927.50"></text></g><g><title>__tls_get_addr (25 samples, 0.02%)</title><rect x="20.9932%" y="885" width="0.0166%" height="15" fill="rgb(249,201,17)" fg:x="31544" fg:w="25"/><text x="21.2432%" y="895.50"></text></g><g><title>update_get_addr (18 samples, 0.01%)</title><rect x="20.9979%" y="869" width="0.0120%" height="15" fill="rgb(219,208,6)" fg:x="31551" fg:w="18"/><text x="21.2479%" y="879.50"></text></g><g><title>IndexSet::alloc_block_containing (93 samples, 0.06%)</title><rect x="20.9500%" y="901" width="0.0619%" height="15" fill="rgb(248,31,23)" fg:x="31479" fg:w="93"/><text x="21.2000%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (636 samples, 0.42%)</title><rect x="21.0159%" y="901" width="0.4233%" height="15" fill="rgb(245,15,42)" fg:x="31578" fg:w="636"/><text x="21.2659%" y="911.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,205 samples, 1.47%)</title><rect x="19.9730%" y="917" width="1.4675%" height="15" fill="rgb(222,217,39)" fg:x="30011" fg:w="2205"/><text x="20.2230%" y="927.50"></text></g><g><title>PhaseChaitin::lower_pressure (70 samples, 0.05%)</title><rect x="21.4405%" y="917" width="0.0466%" height="15" fill="rgb(210,219,27)" fg:x="32216" fg:w="70"/><text x="21.6905%" y="927.50"></text></g><g><title>RegMask::is_UP (19 samples, 0.01%)</title><rect x="21.4744%" y="901" width="0.0126%" height="15" fill="rgb(252,166,36)" fg:x="32267" fg:w="19"/><text x="21.7244%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (194 samples, 0.13%)</title><rect x="21.7399%" y="901" width="0.1291%" height="15" fill="rgb(245,132,34)" fg:x="32666" fg:w="194"/><text x="21.9899%" y="911.50"></text></g><g><title>RegMask::Size (232 samples, 0.15%)</title><rect x="21.8691%" y="901" width="0.1544%" height="15" fill="rgb(236,54,3)" fg:x="32860" fg:w="232"/><text x="22.1191%" y="911.50"></text></g><g><title>RegMask::smear_to_sets (471 samples, 0.31%)</title><rect x="22.0235%" y="901" width="0.3135%" height="15" fill="rgb(241,173,43)" fg:x="33092" fg:w="471"/><text x="22.2735%" y="911.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,283 samples, 0.85%)</title><rect x="21.4870%" y="917" width="0.8539%" height="15" fill="rgb(215,190,9)" fg:x="32286" fg:w="1283"/><text x="21.7370%" y="927.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (18 samples, 0.01%)</title><rect x="22.3409%" y="917" width="0.0120%" height="15" fill="rgb(242,101,16)" fg:x="33569" fg:w="18"/><text x="22.5909%" y="927.50"></text></g><g><title>RegMask::smear_to_sets (22 samples, 0.01%)</title><rect x="22.3595%" y="917" width="0.0146%" height="15" fill="rgb(223,190,21)" fg:x="33597" fg:w="22"/><text x="22.6095%" y="927.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (5,553 samples, 3.70%)</title><rect x="18.6812%" y="933" width="3.6956%" height="15" fill="rgb(215,228,25)" fg:x="28070" fg:w="5553"/><text x="18.9312%" y="943.50">Phas..</text></g><g><title>IndexSet::alloc_block_containing (19 samples, 0.01%)</title><rect x="22.5685%" y="901" width="0.0126%" height="15" fill="rgb(225,36,22)" fg:x="33911" fg:w="19"/><text x="22.8185%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (51 samples, 0.03%)</title><rect x="22.5818%" y="901" width="0.0339%" height="15" fill="rgb(251,106,46)" fg:x="33931" fg:w="51"/><text x="22.8318%" y="911.50"></text></g><g><title>PhaseChaitin::interfere_with_live (266 samples, 0.18%)</title><rect x="22.4401%" y="917" width="0.1770%" height="15" fill="rgb(208,90,1)" fg:x="33718" fg:w="266"/><text x="22.6901%" y="927.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (365 samples, 0.24%)</title><rect x="22.3768%" y="933" width="0.2429%" height="15" fill="rgb(243,10,4)" fg:x="33623" fg:w="365"/><text x="22.6268%" y="943.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (86 samples, 0.06%)</title><rect x="22.6198%" y="933" width="0.0572%" height="15" fill="rgb(212,137,27)" fg:x="33988" fg:w="86"/><text x="22.8698%" y="943.50"></text></g><g><title>find_hihghest_bit (31 samples, 0.02%)</title><rect x="22.6564%" y="917" width="0.0206%" height="15" fill="rgb(231,220,49)" fg:x="34043" fg:w="31"/><text x="22.9064%" y="927.50"></text></g><g><title>PhaseChaitin::compact (37 samples, 0.02%)</title><rect x="22.6777%" y="933" width="0.0246%" height="15" fill="rgb(237,96,20)" fg:x="34075" fg:w="37"/><text x="22.9277%" y="943.50"></text></g><g><title>PhaseChaitin::de_ssa (69 samples, 0.05%)</title><rect x="22.7023%" y="933" width="0.0459%" height="15" fill="rgb(239,229,30)" fg:x="34112" fg:w="69"/><text x="22.9523%" y="943.50"></text></g><g><title>PhaseChaitin::fixup_spills (46 samples, 0.03%)</title><rect x="22.7495%" y="933" width="0.0306%" height="15" fill="rgb(219,65,33)" fg:x="34183" fg:w="46"/><text x="22.9995%" y="943.50"></text></g><g><title>MachCallJavaNode::in_RegMask (57 samples, 0.04%)</title><rect x="23.6846%" y="917" width="0.0379%" height="15" fill="rgb(243,134,7)" fg:x="35588" fg:w="57"/><text x="23.9346%" y="927.50"></text></g><g><title>MachNode::ideal_reg (53 samples, 0.04%)</title><rect x="23.7252%" y="917" width="0.0353%" height="15" fill="rgb(216,177,54)" fg:x="35649" fg:w="53"/><text x="23.9752%" y="927.50"></text></g><g><title>MachNode::in_RegMask (54 samples, 0.04%)</title><rect x="23.7605%" y="917" width="0.0359%" height="15" fill="rgb(211,160,20)" fg:x="35702" fg:w="54"/><text x="24.0105%" y="927.50"></text></g><g><title>MachProjNode::bottom_type (25 samples, 0.02%)</title><rect x="23.7977%" y="917" width="0.0166%" height="15" fill="rgb(239,85,39)" fg:x="35758" fg:w="25"/><text x="24.0477%" y="927.50"></text></g><g><title>MachSpillCopyNode::ideal_reg (17 samples, 0.01%)</title><rect x="23.8150%" y="917" width="0.0113%" height="15" fill="rgb(232,125,22)" fg:x="35784" fg:w="17"/><text x="24.0650%" y="927.50"></text></g><g><title>PhiNode::in_RegMask (30 samples, 0.02%)</title><rect x="23.8277%" y="917" width="0.0200%" height="15" fill="rgb(244,57,34)" fg:x="35803" fg:w="30"/><text x="24.0777%" y="927.50"></text></g><g><title>RegMask::Size (894 samples, 0.59%)</title><rect x="23.8530%" y="917" width="0.5950%" height="15" fill="rgb(214,203,32)" fg:x="35841" fg:w="894"/><text x="24.1030%" y="927.50"></text></g><g><title>RegMask::clear_to_sets (125 samples, 0.08%)</title><rect x="24.4479%" y="917" width="0.0832%" height="15" fill="rgb(207,58,43)" fg:x="36735" fg:w="125"/><text x="24.6979%" y="927.50"></text></g><g><title>RegMask::is_aligned_pairs (64 samples, 0.04%)</title><rect x="24.5311%" y="917" width="0.0426%" height="15" fill="rgb(215,193,15)" fg:x="36860" fg:w="64"/><text x="24.7811%" y="927.50"></text></g><g><title>RegMask::is_bound1 (99 samples, 0.07%)</title><rect x="24.5737%" y="917" width="0.0659%" height="15" fill="rgb(232,15,44)" fg:x="36924" fg:w="99"/><text x="24.8237%" y="927.50"></text></g><g><title>RegMask::is_bound_pair (48 samples, 0.03%)</title><rect x="24.6396%" y="917" width="0.0319%" height="15" fill="rgb(212,3,48)" fg:x="37023" fg:w="48"/><text x="24.8896%" y="927.50"></text></g><g><title>RegMask::is_vector (25 samples, 0.02%)</title><rect x="24.6716%" y="917" width="0.0166%" height="15" fill="rgb(218,128,7)" fg:x="37071" fg:w="25"/><text x="24.9216%" y="927.50"></text></g><g><title>Dict::Insert (25 samples, 0.02%)</title><rect x="24.6915%" y="901" width="0.0166%" height="15" fill="rgb(226,216,39)" fg:x="37101" fg:w="25"/><text x="24.9415%" y="911.50"></text></g><g><title>Type::hashcons (30 samples, 0.02%)</title><rect x="24.6889%" y="917" width="0.0200%" height="15" fill="rgb(243,47,51)" fg:x="37097" fg:w="30"/><text x="24.9389%" y="927.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (2,971 samples, 1.98%)</title><rect x="22.7802%" y="933" width="1.9773%" height="15" fill="rgb(241,183,40)" fg:x="34229" fg:w="2971"/><text x="23.0302%" y="943.50">P..</text></g><g><title>PhaseChaitin::merge_multidefs (385 samples, 0.26%)</title><rect x="24.7574%" y="933" width="0.2562%" height="15" fill="rgb(231,217,32)" fg:x="37200" fg:w="385"/><text x="25.0074%" y="943.50"></text></g><g><title>Node::replace_by (18 samples, 0.01%)</title><rect x="25.8602%" y="917" width="0.0120%" height="15" fill="rgb(229,61,38)" fg:x="38857" fg:w="18"/><text x="26.1102%" y="927.50"></text></g><g><title>RegMask::Size (18 samples, 0.01%)</title><rect x="26.7507%" y="885" width="0.0120%" height="15" fill="rgb(225,210,5)" fg:x="40195" fg:w="18"/><text x="27.0007%" y="895.50"></text></g><g><title>PhaseChaitin::use_prior_register (68 samples, 0.05%)</title><rect x="26.7234%" y="901" width="0.0453%" height="15" fill="rgb(231,79,45)" fg:x="40154" fg:w="68"/><text x="26.9734%" y="911.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (24 samples, 0.02%)</title><rect x="26.7686%" y="901" width="0.0160%" height="15" fill="rgb(224,100,7)" fg:x="40222" fg:w="24"/><text x="27.0186%" y="911.50"></text></g><g><title>PhaseChaitin::elide_copy (1,361 samples, 0.91%)</title><rect x="25.8815%" y="917" width="0.9058%" height="15" fill="rgb(241,198,18)" fg:x="38889" fg:w="1361"/><text x="26.1315%" y="927.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (26 samples, 0.02%)</title><rect x="26.7946%" y="917" width="0.0173%" height="15" fill="rgb(252,97,53)" fg:x="40261" fg:w="26"/><text x="27.0446%" y="927.50"></text></g><g><title>[libc-2.31.so] (66 samples, 0.04%)</title><rect x="26.8132%" y="917" width="0.0439%" height="15" fill="rgb(220,88,7)" fg:x="40289" fg:w="66"/><text x="27.0632%" y="927.50"></text></g><g><title>find_lowest_bit (223 samples, 0.15%)</title><rect x="26.8605%" y="917" width="0.1484%" height="15" fill="rgb(213,176,14)" fg:x="40360" fg:w="223"/><text x="27.1105%" y="927.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (3,002 samples, 2.00%)</title><rect x="25.0136%" y="933" width="1.9979%" height="15" fill="rgb(246,73,7)" fg:x="37585" fg:w="3002"/><text x="25.2636%" y="943.50">P..</text></g><g><title>IndexSet::IndexSet (28 samples, 0.02%)</title><rect x="27.0788%" y="917" width="0.0186%" height="15" fill="rgb(245,64,36)" fg:x="40688" fg:w="28"/><text x="27.3288%" y="927.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (153 samples, 0.10%)</title><rect x="27.0122%" y="933" width="0.1018%" height="15" fill="rgb(245,80,10)" fg:x="40588" fg:w="153"/><text x="27.2622%" y="943.50"></text></g><g><title>PhaseIFG::Union (39 samples, 0.03%)</title><rect x="27.1719%" y="885" width="0.0260%" height="15" fill="rgb(232,107,50)" fg:x="40828" fg:w="39"/><text x="27.4219%" y="895.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (121 samples, 0.08%)</title><rect x="27.1187%" y="917" width="0.0805%" height="15" fill="rgb(253,3,0)" fg:x="40748" fg:w="121"/><text x="27.3687%" y="927.50"></text></g><g><title>PhaseCoalesce::combine_these_two (56 samples, 0.04%)</title><rect x="27.1619%" y="901" width="0.0373%" height="15" fill="rgb(212,99,53)" fg:x="40813" fg:w="56"/><text x="27.4119%" y="911.50"></text></g><g><title>PhaseCFG::is_uncommon (102 samples, 0.07%)</title><rect x="27.2212%" y="901" width="0.0679%" height="15" fill="rgb(249,111,54)" fg:x="40902" fg:w="102"/><text x="27.4712%" y="911.50"></text></g><g><title>Block::has_uncommon_code (23 samples, 0.02%)</title><rect x="27.2738%" y="885" width="0.0153%" height="15" fill="rgb(249,55,30)" fg:x="40981" fg:w="23"/><text x="27.5238%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (34 samples, 0.02%)</title><rect x="27.4228%" y="869" width="0.0226%" height="15" fill="rgb(237,47,42)" fg:x="41205" fg:w="34"/><text x="27.6728%" y="879.50"></text></g><g><title>IndexSet::lrg_union (203 samples, 0.14%)</title><rect x="27.3117%" y="885" width="0.1351%" height="15" fill="rgb(211,20,18)" fg:x="41038" fg:w="203"/><text x="27.5617%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (21 samples, 0.01%)</title><rect x="27.5539%" y="869" width="0.0140%" height="15" fill="rgb(231,203,46)" fg:x="41402" fg:w="21"/><text x="27.8039%" y="879.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (174 samples, 0.12%)</title><rect x="27.4541%" y="885" width="0.1158%" height="15" fill="rgb(237,142,3)" fg:x="41252" fg:w="174"/><text x="27.7041%" y="895.50"></text></g><g><title>PhaseIFG::effective_degree (53 samples, 0.04%)</title><rect x="27.5699%" y="885" width="0.0353%" height="15" fill="rgb(241,107,1)" fg:x="41426" fg:w="53"/><text x="27.8199%" y="895.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (756 samples, 0.50%)</title><rect x="27.1140%" y="933" width="0.5031%" height="15" fill="rgb(229,83,13)" fg:x="40741" fg:w="756"/><text x="27.3640%" y="943.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (628 samples, 0.42%)</title><rect x="27.1992%" y="917" width="0.4179%" height="15" fill="rgb(241,91,40)" fg:x="40869" fg:w="628"/><text x="27.4492%" y="927.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (493 samples, 0.33%)</title><rect x="27.2891%" y="901" width="0.3281%" height="15" fill="rgb(225,3,45)" fg:x="41004" fg:w="493"/><text x="27.5391%" y="911.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (31 samples, 0.02%)</title><rect x="27.8162%" y="917" width="0.0206%" height="15" fill="rgb(244,223,14)" fg:x="41796" fg:w="31"/><text x="28.0662%" y="927.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (695 samples, 0.46%)</title><rect x="27.6178%" y="933" width="0.4625%" height="15" fill="rgb(224,124,37)" fg:x="41498" fg:w="695"/><text x="27.8678%" y="943.50"></text></g><g><title>IndexSetIterator::advance_and_next (366 samples, 0.24%)</title><rect x="27.8368%" y="917" width="0.2436%" height="15" fill="rgb(251,171,30)" fg:x="41827" fg:w="366"/><text x="28.0868%" y="927.50"></text></g><g><title>__tls_get_addr (16 samples, 0.01%)</title><rect x="28.2687%" y="901" width="0.0106%" height="15" fill="rgb(236,46,54)" fg:x="42476" fg:w="16"/><text x="28.5187%" y="911.50"></text></g><g><title>IndexSet::alloc_block_containing (49 samples, 0.03%)</title><rect x="28.2474%" y="917" width="0.0326%" height="15" fill="rgb(245,213,5)" fg:x="42444" fg:w="49"/><text x="28.4974%" y="927.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (68 samples, 0.05%)</title><rect x="28.2800%" y="917" width="0.0453%" height="15" fill="rgb(230,144,27)" fg:x="42493" fg:w="68"/><text x="28.5300%" y="927.50"></text></g><g><title>IndexSetIterator::advance_and_next (279 samples, 0.19%)</title><rect x="28.3253%" y="917" width="0.1857%" height="15" fill="rgb(220,86,6)" fg:x="42561" fg:w="279"/><text x="28.5753%" y="927.50"></text></g><g><title>PhaseIFG::SquareUp (649 samples, 0.43%)</title><rect x="28.0804%" y="933" width="0.4319%" height="15" fill="rgb(240,20,13)" fg:x="42193" fg:w="649"/><text x="28.3304%" y="943.50"></text></g><g><title>IndexSet::initialize (139 samples, 0.09%)</title><rect x="28.5669%" y="917" width="0.0925%" height="15" fill="rgb(217,89,34)" fg:x="42924" fg:w="139"/><text x="28.8169%" y="927.50"></text></g><g><title>PhaseIFG::init (263 samples, 0.18%)</title><rect x="28.5123%" y="933" width="0.1750%" height="15" fill="rgb(229,13,5)" fg:x="42842" fg:w="263"/><text x="28.7623%" y="943.50"></text></g><g><title>[libc-2.31.so] (41 samples, 0.03%)</title><rect x="28.6600%" y="917" width="0.0273%" height="15" fill="rgb(244,67,35)" fg:x="43064" fg:w="41"/><text x="28.9100%" y="927.50"></text></g><g><title>IndexSet::alloc_block_containing (51 samples, 0.03%)</title><rect x="29.2989%" y="917" width="0.0339%" height="15" fill="rgb(221,40,2)" fg:x="44024" fg:w="51"/><text x="29.5489%" y="927.50"></text></g><g><title>IndexSet::free_block (32 samples, 0.02%)</title><rect x="29.3329%" y="917" width="0.0213%" height="15" fill="rgb(237,157,21)" fg:x="44075" fg:w="32"/><text x="29.5829%" y="927.50"></text></g><g><title>IndexSet::initialize (97 samples, 0.06%)</title><rect x="29.3542%" y="917" width="0.0646%" height="15" fill="rgb(222,94,11)" fg:x="44107" fg:w="97"/><text x="29.6042%" y="927.50"></text></g><g><title>__tls_get_addr (45 samples, 0.03%)</title><rect x="29.8513%" y="885" width="0.0299%" height="15" fill="rgb(249,113,6)" fg:x="44854" fg:w="45"/><text x="30.1013%" y="895.50"></text></g><g><title>update_get_addr (27 samples, 0.02%)</title><rect x="29.8633%" y="869" width="0.0180%" height="15" fill="rgb(238,137,36)" fg:x="44872" fg:w="27"/><text x="30.1133%" y="879.50"></text></g><g><title>_dl_update_slotinfo (21 samples, 0.01%)</title><rect x="29.8673%" y="853" width="0.0140%" height="15" fill="rgb(210,102,26)" fg:x="44878" fg:w="21"/><text x="30.1173%" y="863.50"></text></g><g><title>IndexSet::alloc_block_containing (165 samples, 0.11%)</title><rect x="29.7755%" y="901" width="0.1098%" height="15" fill="rgb(218,30,30)" fg:x="44740" fg:w="165"/><text x="30.0255%" y="911.50"></text></g><g><title>IndexSet::initialize (31 samples, 0.02%)</title><rect x="29.8853%" y="901" width="0.0206%" height="15" fill="rgb(214,67,26)" fg:x="44905" fg:w="31"/><text x="30.1353%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (216 samples, 0.14%)</title><rect x="29.9072%" y="901" width="0.1438%" height="15" fill="rgb(251,9,53)" fg:x="44938" fg:w="216"/><text x="30.1572%" y="911.50"></text></g><g><title>PhaseLive::add_liveout (963 samples, 0.64%)</title><rect x="29.4201%" y="917" width="0.6409%" height="15" fill="rgb(228,204,25)" fg:x="44206" fg:w="963"/><text x="29.6701%" y="927.50"></text></g><g><title>PhaseLive::compute (2,070 samples, 1.38%)</title><rect x="28.6880%" y="933" width="1.3776%" height="15" fill="rgb(207,153,8)" fg:x="43106" fg:w="2070"/><text x="28.9380%" y="943.50"></text></g><g><title>RegMask::Size (39 samples, 0.03%)</title><rect x="30.0703%" y="933" width="0.0260%" height="15" fill="rgb(242,9,16)" fg:x="45183" fg:w="39"/><text x="30.3203%" y="943.50"></text></g><g><title>find_lowest_bit (27 samples, 0.02%)</title><rect x="30.1115%" y="933" width="0.0180%" height="15" fill="rgb(217,211,10)" fg:x="45245" fg:w="27"/><text x="30.3615%" y="943.50"></text></g><g><title>PhaseChaitin::Register_Allocate (23,190 samples, 15.43%)</title><rect x="14.7000%" y="949" width="15.4335%" height="15" fill="rgb(219,228,52)" fg:x="22088" fg:w="23190"/><text x="14.9500%" y="959.50">PhaseChaitin::Register_A..</text></g><g><title>Compile::Code_Gen (29,518 samples, 19.64%)</title><rect x="10.5152%" y="965" width="19.6449%" height="15" fill="rgb(231,92,29)" fg:x="15800" fg:w="29518"/><text x="10.7652%" y="975.50">Compile::Code_Gen</text></g><g><title>PhasePeephole::do_transform (38 samples, 0.03%)</title><rect x="30.1348%" y="949" width="0.0253%" height="15" fill="rgb(232,8,23)" fg:x="45280" fg:w="38"/><text x="30.3848%" y="959.50"></text></g><g><title>Compile::call_generator (20 samples, 0.01%)</title><rect x="30.1648%" y="677" width="0.0133%" height="15" fill="rgb(216,211,34)" fg:x="45325" fg:w="20"/><text x="30.4148%" y="687.50"></text></g><g><title>ciTypeFlow::df_flow_types (16 samples, 0.01%)</title><rect x="30.1814%" y="501" width="0.0106%" height="15" fill="rgb(236,151,0)" fg:x="45350" fg:w="16"/><text x="30.4314%" y="511.50"></text></g><g><title>ciTypeFlow::flow_block (16 samples, 0.01%)</title><rect x="30.1814%" y="485" width="0.0106%" height="15" fill="rgb(209,168,3)" fg:x="45350" fg:w="16"/><text x="30.4314%" y="495.50"></text></g><g><title>Compile::call_generator (22 samples, 0.01%)</title><rect x="30.1781%" y="581" width="0.0146%" height="15" fill="rgb(208,129,28)" fg:x="45345" fg:w="22"/><text x="30.4281%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (17 samples, 0.01%)</title><rect x="30.1814%" y="565" width="0.0113%" height="15" fill="rgb(229,78,22)" fg:x="45350" fg:w="17"/><text x="30.4314%" y="575.50"></text></g><g><title>ciMethod::get_flow_analysis (17 samples, 0.01%)</title><rect x="30.1814%" y="549" width="0.0113%" height="15" fill="rgb(228,187,13)" fg:x="45350" fg:w="17"/><text x="30.4314%" y="559.50"></text></g><g><title>ciTypeFlow::do_flow (17 samples, 0.01%)</title><rect x="30.1814%" y="533" width="0.0113%" height="15" fill="rgb(240,119,24)" fg:x="45350" fg:w="17"/><text x="30.4314%" y="543.50"></text></g><g><title>ciTypeFlow::flow_types (17 samples, 0.01%)</title><rect x="30.1814%" y="517" width="0.0113%" height="15" fill="rgb(209,194,42)" fg:x="45350" fg:w="17"/><text x="30.4314%" y="527.50"></text></g><g><title>Compile::call_generator (22 samples, 0.01%)</title><rect x="30.2074%" y="485" width="0.0146%" height="15" fill="rgb(247,200,46)" fg:x="45389" fg:w="22"/><text x="30.4574%" y="495.50"></text></g><g><title>InlineTree::ok_to_inline (20 samples, 0.01%)</title><rect x="30.2087%" y="469" width="0.0133%" height="15" fill="rgb(218,76,16)" fg:x="45391" fg:w="20"/><text x="30.4587%" y="479.50"></text></g><g><title>ciMethod::get_flow_analysis (16 samples, 0.01%)</title><rect x="30.2114%" y="453" width="0.0106%" height="15" fill="rgb(225,21,48)" fg:x="45395" fg:w="16"/><text x="30.4614%" y="463.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="30.3045%" y="245" width="0.0186%" height="15" fill="rgb(239,223,50)" fg:x="45535" fg:w="28"/><text x="30.5545%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="30.3059%" y="229" width="0.0173%" height="15" fill="rgb(244,45,21)" fg:x="45537" fg:w="26"/><text x="30.5559%" y="239.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="30.3032%" y="261" width="0.0220%" height="15" fill="rgb(232,33,43)" fg:x="45533" fg:w="33"/><text x="30.5532%" y="271.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.03%)</title><rect x="30.3019%" y="293" width="0.0273%" height="15" fill="rgb(209,8,3)" fg:x="45531" fg:w="41"/><text x="30.5519%" y="303.50"></text></g><g><title>Parse::Parse (41 samples, 0.03%)</title><rect x="30.3019%" y="277" width="0.0273%" height="15" fill="rgb(214,25,53)" fg:x="45531" fg:w="41"/><text x="30.5519%" y="287.50"></text></g><g><title>Parse::do_call (70 samples, 0.05%)</title><rect x="30.2872%" y="309" width="0.0466%" height="15" fill="rgb(254,186,54)" fg:x="45509" fg:w="70"/><text x="30.5372%" y="319.50"></text></g><g><title>Parse::do_field_access (21 samples, 0.01%)</title><rect x="30.3338%" y="309" width="0.0140%" height="15" fill="rgb(208,174,49)" fg:x="45579" fg:w="21"/><text x="30.5838%" y="319.50"></text></g><g><title>Parse::do_all_blocks (114 samples, 0.08%)</title><rect x="30.2812%" y="357" width="0.0759%" height="15" fill="rgb(233,191,51)" fg:x="45500" fg:w="114"/><text x="30.5312%" y="367.50"></text></g><g><title>Parse::do_one_block (114 samples, 0.08%)</title><rect x="30.2812%" y="341" width="0.0759%" height="15" fill="rgb(222,134,10)" fg:x="45500" fg:w="114"/><text x="30.5312%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (111 samples, 0.07%)</title><rect x="30.2832%" y="325" width="0.0739%" height="15" fill="rgb(230,226,20)" fg:x="45503" fg:w="111"/><text x="30.5332%" y="335.50"></text></g><g><title>ParseGenerator::generate (128 samples, 0.09%)</title><rect x="30.2773%" y="389" width="0.0852%" height="15" fill="rgb(251,111,25)" fg:x="45494" fg:w="128"/><text x="30.5273%" y="399.50"></text></g><g><title>Parse::Parse (128 samples, 0.09%)</title><rect x="30.2773%" y="373" width="0.0852%" height="15" fill="rgb(224,40,46)" fg:x="45494" fg:w="128"/><text x="30.5273%" y="383.50"></text></g><g><title>Parse::do_call (190 samples, 0.13%)</title><rect x="30.2546%" y="405" width="0.1264%" height="15" fill="rgb(236,108,47)" fg:x="45460" fg:w="190"/><text x="30.5046%" y="415.50"></text></g><g><title>Parse::do_field_access (19 samples, 0.01%)</title><rect x="30.3811%" y="405" width="0.0126%" height="15" fill="rgb(234,93,0)" fg:x="45650" fg:w="19"/><text x="30.6311%" y="415.50"></text></g><g><title>Parse::do_one_block (252 samples, 0.17%)</title><rect x="30.2460%" y="437" width="0.1677%" height="15" fill="rgb(224,213,32)" fg:x="45447" fg:w="252"/><text x="30.4960%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (249 samples, 0.17%)</title><rect x="30.2480%" y="421" width="0.1657%" height="15" fill="rgb(251,11,48)" fg:x="45450" fg:w="249"/><text x="30.4980%" y="431.50"></text></g><g><title>Parse::do_all_blocks (255 samples, 0.17%)</title><rect x="30.2446%" y="453" width="0.1697%" height="15" fill="rgb(236,173,5)" fg:x="45445" fg:w="255"/><text x="30.4946%" y="463.50"></text></g><g><title>Parse::Parse (269 samples, 0.18%)</title><rect x="30.2393%" y="469" width="0.1790%" height="15" fill="rgb(230,95,12)" fg:x="45437" fg:w="269"/><text x="30.4893%" y="479.50"></text></g><g><title>ParseGenerator::generate (270 samples, 0.18%)</title><rect x="30.2393%" y="485" width="0.1797%" height="15" fill="rgb(232,209,1)" fg:x="45437" fg:w="270"/><text x="30.4893%" y="495.50"></text></g><g><title>Parse::do_call (19 samples, 0.01%)</title><rect x="30.4243%" y="389" width="0.0126%" height="15" fill="rgb(232,6,1)" fg:x="45715" fg:w="19"/><text x="30.6743%" y="399.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.01%)</title><rect x="30.4237%" y="437" width="0.0146%" height="15" fill="rgb(210,224,50)" fg:x="45714" fg:w="22"/><text x="30.6737%" y="447.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.01%)</title><rect x="30.4237%" y="421" width="0.0146%" height="15" fill="rgb(228,127,35)" fg:x="45714" fg:w="22"/><text x="30.6737%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.01%)</title><rect x="30.4237%" y="405" width="0.0146%" height="15" fill="rgb(245,102,45)" fg:x="45714" fg:w="22"/><text x="30.6737%" y="415.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="30.4230%" y="469" width="0.0166%" height="15" fill="rgb(214,1,49)" fg:x="45713" fg:w="25"/><text x="30.6730%" y="479.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="30.4230%" y="453" width="0.0166%" height="15" fill="rgb(226,163,40)" fg:x="45713" fg:w="25"/><text x="30.6730%" y="463.50"></text></g><g><title>PredictedCallGenerator::generate (34 samples, 0.02%)</title><rect x="30.4190%" y="485" width="0.0226%" height="15" fill="rgb(239,212,28)" fg:x="45707" fg:w="34"/><text x="30.6690%" y="495.50"></text></g><g><title>Parse::do_call (360 samples, 0.24%)</title><rect x="30.2074%" y="501" width="0.2396%" height="15" fill="rgb(220,20,13)" fg:x="45389" fg:w="360"/><text x="30.4574%" y="511.50"></text></g><g><title>Parse::do_field_access (23 samples, 0.02%)</title><rect x="30.4476%" y="501" width="0.0153%" height="15" fill="rgb(210,164,35)" fg:x="45750" fg:w="23"/><text x="30.6976%" y="511.50"></text></g><g><title>Parse::do_one_block (415 samples, 0.28%)</title><rect x="30.1981%" y="533" width="0.2762%" height="15" fill="rgb(248,109,41)" fg:x="45375" fg:w="415"/><text x="30.4481%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (413 samples, 0.27%)</title><rect x="30.1994%" y="517" width="0.2749%" height="15" fill="rgb(238,23,50)" fg:x="45377" fg:w="413"/><text x="30.4494%" y="527.50"></text></g><g><title>ParseGenerator::generate (422 samples, 0.28%)</title><rect x="30.1941%" y="581" width="0.2809%" height="15" fill="rgb(211,48,49)" fg:x="45369" fg:w="422"/><text x="30.4441%" y="591.50"></text></g><g><title>Parse::Parse (422 samples, 0.28%)</title><rect x="30.1941%" y="565" width="0.2809%" height="15" fill="rgb(223,36,21)" fg:x="45369" fg:w="422"/><text x="30.4441%" y="575.50"></text></g><g><title>Parse::do_all_blocks (416 samples, 0.28%)</title><rect x="30.1981%" y="549" width="0.2769%" height="15" fill="rgb(207,123,46)" fg:x="45375" fg:w="416"/><text x="30.4481%" y="559.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="30.4796%" y="373" width="0.0106%" height="15" fill="rgb(240,218,32)" fg:x="45798" fg:w="16"/><text x="30.7296%" y="383.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="30.4796%" y="357" width="0.0106%" height="15" fill="rgb(252,5,43)" fg:x="45798" fg:w="16"/><text x="30.7296%" y="367.50"></text></g><g><title>Parse::do_call (19 samples, 0.01%)</title><rect x="30.4789%" y="389" width="0.0126%" height="15" fill="rgb(252,84,19)" fg:x="45797" fg:w="19"/><text x="30.7289%" y="399.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="30.4789%" y="421" width="0.0173%" height="15" fill="rgb(243,152,39)" fg:x="45797" fg:w="26"/><text x="30.7289%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="30.4789%" y="405" width="0.0173%" height="15" fill="rgb(234,160,15)" fg:x="45797" fg:w="26"/><text x="30.7289%" y="415.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.02%)</title><rect x="30.4776%" y="469" width="0.0193%" height="15" fill="rgb(237,34,20)" fg:x="45795" fg:w="29"/><text x="30.7276%" y="479.50"></text></g><g><title>Parse::Parse (29 samples, 0.02%)</title><rect x="30.4776%" y="453" width="0.0193%" height="15" fill="rgb(229,97,13)" fg:x="45795" fg:w="29"/><text x="30.7276%" y="463.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="30.4782%" y="437" width="0.0186%" height="15" fill="rgb(234,71,50)" fg:x="45796" fg:w="28"/><text x="30.7282%" y="447.50"></text></g><g><title>Parse::do_call (38 samples, 0.03%)</title><rect x="30.4756%" y="485" width="0.0253%" height="15" fill="rgb(253,155,4)" fg:x="45792" fg:w="38"/><text x="30.7256%" y="495.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.03%)</title><rect x="30.4749%" y="565" width="0.0273%" height="15" fill="rgb(222,185,37)" fg:x="45791" fg:w="41"/><text x="30.7249%" y="575.50"></text></g><g><title>Parse::Parse (41 samples, 0.03%)</title><rect x="30.4749%" y="549" width="0.0273%" height="15" fill="rgb(251,177,13)" fg:x="45791" fg:w="41"/><text x="30.7249%" y="559.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.03%)</title><rect x="30.4749%" y="533" width="0.0273%" height="15" fill="rgb(250,179,40)" fg:x="45791" fg:w="41"/><text x="30.7249%" y="543.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.03%)</title><rect x="30.4749%" y="517" width="0.0273%" height="15" fill="rgb(242,44,2)" fg:x="45791" fg:w="41"/><text x="30.7249%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (40 samples, 0.03%)</title><rect x="30.4756%" y="501" width="0.0266%" height="15" fill="rgb(216,177,13)" fg:x="45792" fg:w="40"/><text x="30.7256%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (47 samples, 0.03%)</title><rect x="30.4749%" y="581" width="0.0313%" height="15" fill="rgb(216,106,43)" fg:x="45791" fg:w="47"/><text x="30.7249%" y="591.50"></text></g><g><title>Parse::do_call (496 samples, 0.33%)</title><rect x="30.1781%" y="597" width="0.3301%" height="15" fill="rgb(216,183,2)" fg:x="45345" fg:w="496"/><text x="30.4281%" y="607.50"></text></g><g><title>ParseGenerator::generate (505 samples, 0.34%)</title><rect x="30.1781%" y="677" width="0.3361%" height="15" fill="rgb(249,75,3)" fg:x="45345" fg:w="505"/><text x="30.4281%" y="687.50"></text></g><g><title>Parse::Parse (505 samples, 0.34%)</title><rect x="30.1781%" y="661" width="0.3361%" height="15" fill="rgb(219,67,39)" fg:x="45345" fg:w="505"/><text x="30.4281%" y="671.50"></text></g><g><title>Parse::do_all_blocks (505 samples, 0.34%)</title><rect x="30.1781%" y="645" width="0.3361%" height="15" fill="rgb(253,228,2)" fg:x="45345" fg:w="505"/><text x="30.4281%" y="655.50"></text></g><g><title>Parse::do_one_block (505 samples, 0.34%)</title><rect x="30.1781%" y="629" width="0.3361%" height="15" fill="rgb(235,138,27)" fg:x="45345" fg:w="505"/><text x="30.4281%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (505 samples, 0.34%)</title><rect x="30.1781%" y="613" width="0.3361%" height="15" fill="rgb(236,97,51)" fg:x="45345" fg:w="505"/><text x="30.4281%" y="623.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="30.5282%" y="373" width="0.0106%" height="15" fill="rgb(240,80,30)" fg:x="45871" fg:w="16"/><text x="30.7782%" y="383.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="30.5282%" y="357" width="0.0106%" height="15" fill="rgb(230,178,19)" fg:x="45871" fg:w="16"/><text x="30.7782%" y="367.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="30.5262%" y="389" width="0.0153%" height="15" fill="rgb(210,190,27)" fg:x="45868" fg:w="23"/><text x="30.7762%" y="399.50"></text></g><g><title>Parse::do_one_block (38 samples, 0.03%)</title><rect x="30.5248%" y="421" width="0.0253%" height="15" fill="rgb(222,107,31)" fg:x="45866" fg:w="38"/><text x="30.7748%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (38 samples, 0.03%)</title><rect x="30.5248%" y="405" width="0.0253%" height="15" fill="rgb(216,127,34)" fg:x="45866" fg:w="38"/><text x="30.7748%" y="415.50"></text></g><g><title>Parse::do_all_blocks (40 samples, 0.03%)</title><rect x="30.5248%" y="437" width="0.0266%" height="15" fill="rgb(234,116,52)" fg:x="45866" fg:w="40"/><text x="30.7748%" y="447.50"></text></g><g><title>ParseGenerator::generate (45 samples, 0.03%)</title><rect x="30.5222%" y="469" width="0.0299%" height="15" fill="rgb(222,124,15)" fg:x="45862" fg:w="45"/><text x="30.7722%" y="479.50"></text></g><g><title>Parse::Parse (45 samples, 0.03%)</title><rect x="30.5222%" y="453" width="0.0299%" height="15" fill="rgb(231,179,28)" fg:x="45862" fg:w="45"/><text x="30.7722%" y="463.50"></text></g><g><title>Parse::do_call (57 samples, 0.04%)</title><rect x="30.5188%" y="485" width="0.0379%" height="15" fill="rgb(226,93,45)" fg:x="45857" fg:w="57"/><text x="30.7688%" y="495.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.05%)</title><rect x="30.5182%" y="565" width="0.0459%" height="15" fill="rgb(215,8,51)" fg:x="45856" fg:w="69"/><text x="30.7682%" y="575.50"></text></g><g><title>Parse::Parse (69 samples, 0.05%)</title><rect x="30.5182%" y="549" width="0.0459%" height="15" fill="rgb(223,106,5)" fg:x="45856" fg:w="69"/><text x="30.7682%" y="559.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.05%)</title><rect x="30.5182%" y="533" width="0.0459%" height="15" fill="rgb(250,191,5)" fg:x="45856" fg:w="69"/><text x="30.7682%" y="543.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.05%)</title><rect x="30.5182%" y="517" width="0.0459%" height="15" fill="rgb(242,132,44)" fg:x="45856" fg:w="69"/><text x="30.7682%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.05%)</title><rect x="30.5182%" y="501" width="0.0459%" height="15" fill="rgb(251,152,29)" fg:x="45856" fg:w="69"/><text x="30.7682%" y="511.50"></text></g><g><title>Parse::do_call (80 samples, 0.05%)</title><rect x="30.5142%" y="581" width="0.0532%" height="15" fill="rgb(218,179,5)" fg:x="45850" fg:w="80"/><text x="30.7642%" y="591.50"></text></g><g><title>ParseGenerator::generate (82 samples, 0.05%)</title><rect x="30.5142%" y="661" width="0.0546%" height="15" fill="rgb(227,67,19)" fg:x="45850" fg:w="82"/><text x="30.7642%" y="671.50"></text></g><g><title>Parse::Parse (82 samples, 0.05%)</title><rect x="30.5142%" y="645" width="0.0546%" height="15" fill="rgb(233,119,31)" fg:x="45850" fg:w="82"/><text x="30.7642%" y="655.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.05%)</title><rect x="30.5142%" y="629" width="0.0546%" height="15" fill="rgb(241,120,22)" fg:x="45850" fg:w="82"/><text x="30.7642%" y="639.50"></text></g><g><title>Parse::do_one_block (82 samples, 0.05%)</title><rect x="30.5142%" y="613" width="0.0546%" height="15" fill="rgb(224,102,30)" fg:x="45850" fg:w="82"/><text x="30.7642%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (82 samples, 0.05%)</title><rect x="30.5142%" y="597" width="0.0546%" height="15" fill="rgb(210,164,37)" fg:x="45850" fg:w="82"/><text x="30.7642%" y="607.50"></text></g><g><title>Parse::do_call (613 samples, 0.41%)</title><rect x="30.1648%" y="693" width="0.4080%" height="15" fill="rgb(226,191,16)" fg:x="45325" fg:w="613"/><text x="30.4148%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (88 samples, 0.06%)</title><rect x="30.5142%" y="677" width="0.0586%" height="15" fill="rgb(214,40,45)" fg:x="45850" fg:w="88"/><text x="30.7642%" y="687.50"></text></g><g><title>Parse::do_all_blocks (615 samples, 0.41%)</title><rect x="30.1648%" y="741" width="0.4093%" height="15" fill="rgb(244,29,26)" fg:x="45325" fg:w="615"/><text x="30.4148%" y="751.50"></text></g><g><title>Parse::do_one_block (615 samples, 0.41%)</title><rect x="30.1648%" y="725" width="0.4093%" height="15" fill="rgb(216,16,5)" fg:x="45325" fg:w="615"/><text x="30.4148%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (615 samples, 0.41%)</title><rect x="30.1648%" y="709" width="0.4093%" height="15" fill="rgb(249,76,35)" fg:x="45325" fg:w="615"/><text x="30.4148%" y="719.50"></text></g><g><title>ParseGenerator::generate (616 samples, 0.41%)</title><rect x="30.1648%" y="773" width="0.4100%" height="15" fill="rgb(207,11,44)" fg:x="45325" fg:w="616"/><text x="30.4148%" y="783.50"></text></g><g><title>Parse::Parse (616 samples, 0.41%)</title><rect x="30.1648%" y="757" width="0.4100%" height="15" fill="rgb(228,190,49)" fg:x="45325" fg:w="616"/><text x="30.4148%" y="767.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="30.5914%" y="421" width="0.0106%" height="15" fill="rgb(214,173,12)" fg:x="45966" fg:w="16"/><text x="30.8414%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="30.5914%" y="405" width="0.0106%" height="15" fill="rgb(218,26,35)" fg:x="45966" fg:w="16"/><text x="30.8414%" y="415.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="30.5914%" y="437" width="0.0113%" height="15" fill="rgb(220,200,19)" fg:x="45966" fg:w="17"/><text x="30.8414%" y="447.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="30.5901%" y="469" width="0.0140%" height="15" fill="rgb(239,95,49)" fg:x="45964" fg:w="21"/><text x="30.8401%" y="479.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="30.5901%" y="453" width="0.0140%" height="15" fill="rgb(235,85,53)" fg:x="45964" fg:w="21"/><text x="30.8401%" y="463.50"></text></g><g><title>Parse::do_call (34 samples, 0.02%)</title><rect x="30.5834%" y="485" width="0.0226%" height="15" fill="rgb(233,133,31)" fg:x="45954" fg:w="34"/><text x="30.8334%" y="495.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.03%)</title><rect x="30.5821%" y="565" width="0.0319%" height="15" fill="rgb(218,25,20)" fg:x="45952" fg:w="48"/><text x="30.8321%" y="575.50"></text></g><g><title>Parse::Parse (48 samples, 0.03%)</title><rect x="30.5821%" y="549" width="0.0319%" height="15" fill="rgb(252,210,38)" fg:x="45952" fg:w="48"/><text x="30.8321%" y="559.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.03%)</title><rect x="30.5821%" y="533" width="0.0319%" height="15" fill="rgb(242,134,21)" fg:x="45952" fg:w="48"/><text x="30.8321%" y="543.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.03%)</title><rect x="30.5821%" y="517" width="0.0319%" height="15" fill="rgb(213,28,48)" fg:x="45952" fg:w="48"/><text x="30.8321%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (48 samples, 0.03%)</title><rect x="30.5821%" y="501" width="0.0319%" height="15" fill="rgb(250,196,2)" fg:x="45952" fg:w="48"/><text x="30.8321%" y="511.50"></text></g><g><title>Parse::do_call (57 samples, 0.04%)</title><rect x="30.5787%" y="581" width="0.0379%" height="15" fill="rgb(227,5,17)" fg:x="45947" fg:w="57"/><text x="30.8287%" y="591.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.04%)</title><rect x="30.5781%" y="661" width="0.0433%" height="15" fill="rgb(221,226,24)" fg:x="45946" fg:w="65"/><text x="30.8281%" y="671.50"></text></g><g><title>Parse::Parse (65 samples, 0.04%)</title><rect x="30.5781%" y="645" width="0.0433%" height="15" fill="rgb(211,5,48)" fg:x="45946" fg:w="65"/><text x="30.8281%" y="655.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.04%)</title><rect x="30.5787%" y="629" width="0.0426%" height="15" fill="rgb(219,150,6)" fg:x="45947" fg:w="64"/><text x="30.8287%" y="639.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.04%)</title><rect x="30.5787%" y="613" width="0.0426%" height="15" fill="rgb(251,46,16)" fg:x="45947" fg:w="64"/><text x="30.8287%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.04%)</title><rect x="30.5787%" y="597" width="0.0426%" height="15" fill="rgb(220,204,40)" fg:x="45947" fg:w="64"/><text x="30.8287%" y="607.50"></text></g><g><title>ParseGenerator::generate (79 samples, 0.05%)</title><rect x="30.5747%" y="757" width="0.0526%" height="15" fill="rgb(211,85,2)" fg:x="45941" fg:w="79"/><text x="30.8247%" y="767.50"></text></g><g><title>Parse::Parse (79 samples, 0.05%)</title><rect x="30.5747%" y="741" width="0.0526%" height="15" fill="rgb(229,17,7)" fg:x="45941" fg:w="79"/><text x="30.8247%" y="751.50"></text></g><g><title>Parse::do_all_blocks (79 samples, 0.05%)</title><rect x="30.5747%" y="725" width="0.0526%" height="15" fill="rgb(239,72,28)" fg:x="45941" fg:w="79"/><text x="30.8247%" y="735.50"></text></g><g><title>Parse::do_one_block (79 samples, 0.05%)</title><rect x="30.5747%" y="709" width="0.0526%" height="15" fill="rgb(230,47,54)" fg:x="45941" fg:w="79"/><text x="30.8247%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (78 samples, 0.05%)</title><rect x="30.5754%" y="693" width="0.0519%" height="15" fill="rgb(214,50,8)" fg:x="45942" fg:w="78"/><text x="30.8254%" y="703.50"></text></g><g><title>Parse::do_call (78 samples, 0.05%)</title><rect x="30.5754%" y="677" width="0.0519%" height="15" fill="rgb(216,198,43)" fg:x="45942" fg:w="78"/><text x="30.8254%" y="687.50"></text></g><g><title>ParseGenerator::generate (708 samples, 0.47%)</title><rect x="30.1635%" y="869" width="0.4712%" height="15" fill="rgb(234,20,35)" fg:x="45323" fg:w="708"/><text x="30.4135%" y="879.50"></text></g><g><title>Parse::Parse (708 samples, 0.47%)</title><rect x="30.1635%" y="853" width="0.4712%" height="15" fill="rgb(254,45,19)" fg:x="45323" fg:w="708"/><text x="30.4135%" y="863.50"></text></g><g><title>Parse::do_all_blocks (708 samples, 0.47%)</title><rect x="30.1635%" y="837" width="0.4712%" height="15" fill="rgb(219,14,44)" fg:x="45323" fg:w="708"/><text x="30.4135%" y="847.50"></text></g><g><title>Parse::do_one_block (708 samples, 0.47%)</title><rect x="30.1635%" y="821" width="0.4712%" height="15" fill="rgb(217,220,26)" fg:x="45323" fg:w="708"/><text x="30.4135%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (708 samples, 0.47%)</title><rect x="30.1635%" y="805" width="0.4712%" height="15" fill="rgb(213,158,28)" fg:x="45323" fg:w="708"/><text x="30.4135%" y="815.50"></text></g><g><title>Parse::do_call (708 samples, 0.47%)</title><rect x="30.1635%" y="789" width="0.4712%" height="15" fill="rgb(252,51,52)" fg:x="45323" fg:w="708"/><text x="30.4135%" y="799.50"></text></g><g><title>PredictedCallGenerator::generate (90 samples, 0.06%)</title><rect x="30.5747%" y="773" width="0.0599%" height="15" fill="rgb(246,89,16)" fg:x="45941" fg:w="90"/><text x="30.8247%" y="783.50"></text></g><g><title>ParseGenerator::generate (19 samples, 0.01%)</title><rect x="30.6692%" y="373" width="0.0126%" height="15" fill="rgb(216,158,49)" fg:x="46083" fg:w="19"/><text x="30.9192%" y="383.50"></text></g><g><title>Parse::Parse (19 samples, 0.01%)</title><rect x="30.6692%" y="357" width="0.0126%" height="15" fill="rgb(236,107,19)" fg:x="46083" fg:w="19"/><text x="30.9192%" y="367.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="30.6712%" y="341" width="0.0106%" height="15" fill="rgb(228,185,30)" fg:x="46086" fg:w="16"/><text x="30.9212%" y="351.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="30.6646%" y="389" width="0.0186%" height="15" fill="rgb(246,134,8)" fg:x="46076" fg:w="28"/><text x="30.9146%" y="399.50"></text></g><g><title>Parse::do_one_block (45 samples, 0.03%)</title><rect x="30.6619%" y="421" width="0.0299%" height="15" fill="rgb(214,143,50)" fg:x="46072" fg:w="45"/><text x="30.9119%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.03%)</title><rect x="30.6626%" y="405" width="0.0293%" height="15" fill="rgb(228,75,8)" fg:x="46073" fg:w="44"/><text x="30.9126%" y="415.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.03%)</title><rect x="30.6619%" y="437" width="0.0306%" height="15" fill="rgb(207,175,4)" fg:x="46072" fg:w="46"/><text x="30.9119%" y="447.50"></text></g><g><title>Parse::Parse (53 samples, 0.04%)</title><rect x="30.6586%" y="453" width="0.0353%" height="15" fill="rgb(205,108,24)" fg:x="46067" fg:w="53"/><text x="30.9086%" y="463.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.04%)</title><rect x="30.6579%" y="469" width="0.0366%" height="15" fill="rgb(244,120,49)" fg:x="46066" fg:w="55"/><text x="30.9079%" y="479.50"></text></g><g><title>Parse::do_call (70 samples, 0.05%)</title><rect x="30.6513%" y="485" width="0.0466%" height="15" fill="rgb(223,47,38)" fg:x="46056" fg:w="70"/><text x="30.9013%" y="495.50"></text></g><g><title>Parse::do_one_block (86 samples, 0.06%)</title><rect x="30.6493%" y="517" width="0.0572%" height="15" fill="rgb(229,179,11)" fg:x="46053" fg:w="86"/><text x="30.8993%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (86 samples, 0.06%)</title><rect x="30.6493%" y="501" width="0.0572%" height="15" fill="rgb(231,122,1)" fg:x="46053" fg:w="86"/><text x="30.8993%" y="511.50"></text></g><g><title>Parse::do_all_blocks (88 samples, 0.06%)</title><rect x="30.6486%" y="533" width="0.0586%" height="15" fill="rgb(245,119,9)" fg:x="46052" fg:w="88"/><text x="30.8986%" y="543.50"></text></g><g><title>ParseGenerator::generate (90 samples, 0.06%)</title><rect x="30.6480%" y="565" width="0.0599%" height="15" fill="rgb(241,163,25)" fg:x="46051" fg:w="90"/><text x="30.8980%" y="575.50"></text></g><g><title>Parse::Parse (90 samples, 0.06%)</title><rect x="30.6480%" y="549" width="0.0599%" height="15" fill="rgb(217,214,3)" fg:x="46051" fg:w="90"/><text x="30.8980%" y="559.50"></text></g><g><title>Parse::do_call (105 samples, 0.07%)</title><rect x="30.6413%" y="581" width="0.0699%" height="15" fill="rgb(240,86,28)" fg:x="46041" fg:w="105"/><text x="30.8913%" y="591.50"></text></g><g><title>ParseGenerator::generate (108 samples, 0.07%)</title><rect x="30.6413%" y="661" width="0.0719%" height="15" fill="rgb(215,47,9)" fg:x="46041" fg:w="108"/><text x="30.8913%" y="671.50"></text></g><g><title>Parse::Parse (108 samples, 0.07%)</title><rect x="30.6413%" y="645" width="0.0719%" height="15" fill="rgb(252,25,45)" fg:x="46041" fg:w="108"/><text x="30.8913%" y="655.50"></text></g><g><title>Parse::do_all_blocks (108 samples, 0.07%)</title><rect x="30.6413%" y="629" width="0.0719%" height="15" fill="rgb(251,164,9)" fg:x="46041" fg:w="108"/><text x="30.8913%" y="639.50"></text></g><g><title>Parse::do_one_block (108 samples, 0.07%)</title><rect x="30.6413%" y="613" width="0.0719%" height="15" fill="rgb(233,194,0)" fg:x="46041" fg:w="108"/><text x="30.8913%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (108 samples, 0.07%)</title><rect x="30.6413%" y="597" width="0.0719%" height="15" fill="rgb(249,111,24)" fg:x="46041" fg:w="108"/><text x="30.8913%" y="607.50"></text></g><g><title>ParseGenerator::generate (128 samples, 0.09%)</title><rect x="30.6360%" y="757" width="0.0852%" height="15" fill="rgb(250,223,3)" fg:x="46033" fg:w="128"/><text x="30.8860%" y="767.50"></text></g><g><title>Parse::Parse (128 samples, 0.09%)</title><rect x="30.6360%" y="741" width="0.0852%" height="15" fill="rgb(236,178,37)" fg:x="46033" fg:w="128"/><text x="30.8860%" y="751.50"></text></g><g><title>Parse::do_all_blocks (128 samples, 0.09%)</title><rect x="30.6360%" y="725" width="0.0852%" height="15" fill="rgb(241,158,50)" fg:x="46033" fg:w="128"/><text x="30.8860%" y="735.50"></text></g><g><title>Parse::do_one_block (128 samples, 0.09%)</title><rect x="30.6360%" y="709" width="0.0852%" height="15" fill="rgb(213,121,41)" fg:x="46033" fg:w="128"/><text x="30.8860%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (128 samples, 0.09%)</title><rect x="30.6360%" y="693" width="0.0852%" height="15" fill="rgb(240,92,3)" fg:x="46033" fg:w="128"/><text x="30.8860%" y="703.50"></text></g><g><title>Parse::do_call (128 samples, 0.09%)</title><rect x="30.6360%" y="677" width="0.0852%" height="15" fill="rgb(205,123,3)" fg:x="46033" fg:w="128"/><text x="30.8860%" y="687.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="30.7212%" y="741" width="0.0106%" height="15" fill="rgb(205,97,47)" fg:x="46161" fg:w="16"/><text x="30.9712%" y="751.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="30.7212%" y="725" width="0.0106%" height="15" fill="rgb(247,152,14)" fg:x="46161" fg:w="16"/><text x="30.9712%" y="735.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="30.7212%" y="709" width="0.0106%" height="15" fill="rgb(248,195,53)" fg:x="46161" fg:w="16"/><text x="30.9712%" y="719.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="30.7212%" y="693" width="0.0106%" height="15" fill="rgb(226,201,16)" fg:x="46161" fg:w="16"/><text x="30.9712%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="30.7212%" y="677" width="0.0106%" height="15" fill="rgb(205,98,0)" fg:x="46161" fg:w="16"/><text x="30.9712%" y="687.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="30.7212%" y="661" width="0.0106%" height="15" fill="rgb(214,191,48)" fg:x="46161" fg:w="16"/><text x="30.9712%" y="671.50"></text></g><g><title>ParseGenerator::generate (150 samples, 0.10%)</title><rect x="30.6346%" y="853" width="0.0998%" height="15" fill="rgb(237,112,39)" fg:x="46031" fg:w="150"/><text x="30.8846%" y="863.50"></text></g><g><title>Parse::Parse (150 samples, 0.10%)</title><rect x="30.6346%" y="837" width="0.0998%" height="15" fill="rgb(247,203,27)" fg:x="46031" fg:w="150"/><text x="30.8846%" y="847.50"></text></g><g><title>Parse::do_all_blocks (150 samples, 0.10%)</title><rect x="30.6346%" y="821" width="0.0998%" height="15" fill="rgb(235,124,28)" fg:x="46031" fg:w="150"/><text x="30.8846%" y="831.50"></text></g><g><title>Parse::do_one_block (150 samples, 0.10%)</title><rect x="30.6346%" y="805" width="0.0998%" height="15" fill="rgb(208,207,46)" fg:x="46031" fg:w="150"/><text x="30.8846%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (150 samples, 0.10%)</title><rect x="30.6346%" y="789" width="0.0998%" height="15" fill="rgb(234,176,4)" fg:x="46031" fg:w="150"/><text x="30.8846%" y="799.50"></text></g><g><title>Parse::do_call (150 samples, 0.10%)</title><rect x="30.6346%" y="773" width="0.0998%" height="15" fill="rgb(230,133,28)" fg:x="46031" fg:w="150"/><text x="30.8846%" y="783.50"></text></g><g><title>PredictedCallGenerator::generate (20 samples, 0.01%)</title><rect x="30.7212%" y="757" width="0.0133%" height="15" fill="rgb(211,137,40)" fg:x="46161" fg:w="20"/><text x="30.9712%" y="767.50"></text></g><g><title>ParseGenerator::generate (885 samples, 0.59%)</title><rect x="30.1635%" y="965" width="0.5890%" height="15" fill="rgb(254,35,13)" fg:x="45323" fg:w="885"/><text x="30.4135%" y="975.50"></text></g><g><title>Parse::Parse (885 samples, 0.59%)</title><rect x="30.1635%" y="949" width="0.5890%" height="15" fill="rgb(225,49,51)" fg:x="45323" fg:w="885"/><text x="30.4135%" y="959.50"></text></g><g><title>Parse::do_all_blocks (885 samples, 0.59%)</title><rect x="30.1635%" y="933" width="0.5890%" height="15" fill="rgb(251,10,15)" fg:x="45323" fg:w="885"/><text x="30.4135%" y="943.50"></text></g><g><title>Parse::do_one_block (885 samples, 0.59%)</title><rect x="30.1635%" y="917" width="0.5890%" height="15" fill="rgb(228,207,15)" fg:x="45323" fg:w="885"/><text x="30.4135%" y="927.50"></text></g><g><title>Parse::do_one_bytecode (885 samples, 0.59%)</title><rect x="30.1635%" y="901" width="0.5890%" height="15" fill="rgb(241,99,19)" fg:x="45323" fg:w="885"/><text x="30.4135%" y="911.50"></text></g><g><title>Parse::do_call (885 samples, 0.59%)</title><rect x="30.1635%" y="885" width="0.5890%" height="15" fill="rgb(207,104,49)" fg:x="45323" fg:w="885"/><text x="30.4135%" y="895.50"></text></g><g><title>PredictedCallGenerator::generate (177 samples, 0.12%)</title><rect x="30.6346%" y="869" width="0.1178%" height="15" fill="rgb(234,99,18)" fg:x="46031" fg:w="177"/><text x="30.8846%" y="879.50"></text></g><g><title>PredictedCallGenerator::generate (27 samples, 0.02%)</title><rect x="30.7345%" y="853" width="0.0180%" height="15" fill="rgb(213,191,49)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="863.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="30.7345%" y="837" width="0.0180%" height="15" fill="rgb(210,226,19)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="847.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="30.7345%" y="821" width="0.0180%" height="15" fill="rgb(229,97,18)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="831.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="30.7345%" y="805" width="0.0180%" height="15" fill="rgb(211,167,15)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="815.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="30.7345%" y="789" width="0.0180%" height="15" fill="rgb(210,169,34)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="30.7345%" y="773" width="0.0180%" height="15" fill="rgb(241,121,31)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="783.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="30.7345%" y="757" width="0.0180%" height="15" fill="rgb(232,40,11)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="767.50"></text></g><g><title>Compile::Compile (30,415 samples, 20.24%)</title><rect x="10.5152%" y="981" width="20.2419%" height="15" fill="rgb(205,86,26)" fg:x="15800" fg:w="30415"/><text x="10.7652%" y="991.50">Compile::Compile</text></g><g><title>Compile::final_graph_reshaping_impl (88 samples, 0.06%)</title><rect x="30.8303%" y="933" width="0.0586%" height="15" fill="rgb(231,126,28)" fg:x="46325" fg:w="88"/><text x="31.0803%" y="943.50"></text></g><g><title>Compile::final_graph_reshaping (203 samples, 0.14%)</title><rect x="30.7578%" y="965" width="0.1351%" height="15" fill="rgb(219,221,18)" fg:x="46216" fg:w="203"/><text x="31.0078%" y="975.50"></text></g><g><title>Compile::final_graph_reshaping_walk (201 samples, 0.13%)</title><rect x="30.7591%" y="949" width="0.1338%" height="15" fill="rgb(211,40,0)" fg:x="46218" fg:w="201"/><text x="31.0091%" y="959.50"></text></g><g><title>PhaseIterGVN::optimize (30 samples, 0.02%)</title><rect x="30.9814%" y="949" width="0.0200%" height="15" fill="rgb(239,85,43)" fg:x="46552" fg:w="30"/><text x="31.2314%" y="959.50"></text></g><g><title>PhaseIterGVN::transform_old (28 samples, 0.02%)</title><rect x="30.9827%" y="933" width="0.0186%" height="15" fill="rgb(231,55,21)" fg:x="46554" fg:w="28"/><text x="31.2327%" y="943.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (36 samples, 0.02%)</title><rect x="31.0013%" y="949" width="0.0240%" height="15" fill="rgb(225,184,43)" fg:x="46582" fg:w="36"/><text x="31.2513%" y="959.50"></text></g><g><title>Compile::remove_speculative_types (190 samples, 0.13%)</title><rect x="30.9042%" y="965" width="0.1264%" height="15" fill="rgb(251,158,41)" fg:x="46436" fg:w="190"/><text x="31.1542%" y="975.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (16 samples, 0.01%)</title><rect x="31.0712%" y="901" width="0.0106%" height="15" fill="rgb(234,159,37)" fg:x="46687" fg:w="16"/><text x="31.3212%" y="911.50"></text></g><g><title>ciMethod::get_bcea (17 samples, 0.01%)</title><rect x="31.0712%" y="917" width="0.0113%" height="15" fill="rgb(216,204,22)" fg:x="46687" fg:w="17"/><text x="31.3212%" y="927.50"></text></g><g><title>ConnectionGraph::add_call_node (18 samples, 0.01%)</title><rect x="31.0712%" y="933" width="0.0120%" height="15" fill="rgb(214,17,3)" fg:x="46687" fg:w="18"/><text x="31.3212%" y="943.50"></text></g><g><title>BCEscapeAnalyzer::compute_escape_info (18 samples, 0.01%)</title><rect x="31.0905%" y="869" width="0.0120%" height="15" fill="rgb(212,111,17)" fg:x="46716" fg:w="18"/><text x="31.3405%" y="879.50"></text></g><g><title>BCEscapeAnalyzer::iterate_blocks (18 samples, 0.01%)</title><rect x="31.0905%" y="853" width="0.0120%" height="15" fill="rgb(221,157,24)" fg:x="46716" fg:w="18"/><text x="31.3405%" y="863.50"></text></g><g><title>BCEscapeAnalyzer::iterate_one_block (17 samples, 0.01%)</title><rect x="31.0912%" y="837" width="0.0113%" height="15" fill="rgb(252,16,13)" fg:x="46717" fg:w="17"/><text x="31.3412%" y="847.50"></text></g><g><title>ConnectionGraph::process_call_arguments (22 samples, 0.01%)</title><rect x="31.0885%" y="917" width="0.0146%" height="15" fill="rgb(221,62,2)" fg:x="46713" fg:w="22"/><text x="31.3385%" y="927.50"></text></g><g><title>ciMethod::get_bcea (20 samples, 0.01%)</title><rect x="31.0899%" y="901" width="0.0133%" height="15" fill="rgb(247,87,22)" fg:x="46715" fg:w="20"/><text x="31.3399%" y="911.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (20 samples, 0.01%)</title><rect x="31.0899%" y="885" width="0.0133%" height="15" fill="rgb(215,73,9)" fg:x="46715" fg:w="20"/><text x="31.3399%" y="895.50"></text></g><g><title>ConnectionGraph::add_final_edges (33 samples, 0.02%)</title><rect x="31.0832%" y="933" width="0.0220%" height="15" fill="rgb(207,175,33)" fg:x="46705" fg:w="33"/><text x="31.3332%" y="943.50"></text></g><g><title>ConnectionGraph::is_oop_field (17 samples, 0.01%)</title><rect x="31.1338%" y="901" width="0.0113%" height="15" fill="rgb(243,129,54)" fg:x="46781" fg:w="17"/><text x="31.3838%" y="911.50"></text></g><g><title>ConnectionGraph::add_field (24 samples, 0.02%)</title><rect x="31.1305%" y="917" width="0.0160%" height="15" fill="rgb(227,119,45)" fg:x="46776" fg:w="24"/><text x="31.3805%" y="927.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (68 samples, 0.05%)</title><rect x="31.1072%" y="933" width="0.0453%" height="15" fill="rgb(205,109,36)" fg:x="46741" fg:w="68"/><text x="31.3572%" y="943.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (57 samples, 0.04%)</title><rect x="31.1671%" y="917" width="0.0379%" height="15" fill="rgb(205,6,39)" fg:x="46831" fg:w="57"/><text x="31.4171%" y="927.50"></text></g><g><title>ConnectionGraph::add_java_object_edges (19 samples, 0.01%)</title><rect x="31.2050%" y="917" width="0.0126%" height="15" fill="rgb(221,32,16)" fg:x="46888" fg:w="19"/><text x="31.4550%" y="927.50"></text></g><g><title>ConnectionGraph::find_non_escaped_objects (18 samples, 0.01%)</title><rect x="31.2176%" y="917" width="0.0120%" height="15" fill="rgb(228,144,50)" fg:x="46907" fg:w="18"/><text x="31.4676%" y="927.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (115 samples, 0.08%)</title><rect x="31.1537%" y="933" width="0.0765%" height="15" fill="rgb(229,201,53)" fg:x="46811" fg:w="115"/><text x="31.4037%" y="943.50"></text></g><g><title>ConnectionGraph::find_inst_mem (19 samples, 0.01%)</title><rect x="31.2542%" y="853" width="0.0126%" height="15" fill="rgb(249,153,27)" fg:x="46962" fg:w="19"/><text x="31.5042%" y="863.50"></text></g><g><title>ConnectionGraph::split_memory_phi (21 samples, 0.01%)</title><rect x="31.2536%" y="869" width="0.0140%" height="15" fill="rgb(227,106,25)" fg:x="46961" fg:w="21"/><text x="31.5036%" y="879.50"></text></g><g><title>ConnectionGraph::split_memory_phi (36 samples, 0.02%)</title><rect x="31.2443%" y="901" width="0.0240%" height="15" fill="rgb(230,65,29)" fg:x="46947" fg:w="36"/><text x="31.4943%" y="911.50"></text></g><g><title>ConnectionGraph::find_inst_mem (28 samples, 0.02%)</title><rect x="31.2496%" y="885" width="0.0186%" height="15" fill="rgb(221,57,46)" fg:x="46955" fg:w="28"/><text x="31.4996%" y="895.50"></text></g><g><title>ConnectionGraph::find_inst_mem (50 samples, 0.03%)</title><rect x="31.2363%" y="917" width="0.0333%" height="15" fill="rgb(229,161,17)" fg:x="46935" fg:w="50"/><text x="31.4863%" y="927.50"></text></g><g><title>ConnectionGraph::split_unique_types (69 samples, 0.05%)</title><rect x="31.2329%" y="933" width="0.0459%" height="15" fill="rgb(222,213,11)" fg:x="46930" fg:w="69"/><text x="31.4829%" y="943.50"></text></g><g><title>ConnectionGraph::compute_escape (378 samples, 0.25%)</title><rect x="31.0313%" y="949" width="0.2516%" height="15" fill="rgb(235,35,13)" fg:x="46627" fg:w="378"/><text x="31.2813%" y="959.50"></text></g><g><title>ConnectionGraph::do_analysis (381 samples, 0.25%)</title><rect x="31.0313%" y="965" width="0.2536%" height="15" fill="rgb(233,158,34)" fg:x="46627" fg:w="381"/><text x="31.2813%" y="975.50"></text></g><g><title>AddPNode::bottom_type (17 samples, 0.01%)</title><rect x="31.4559%" y="949" width="0.0113%" height="15" fill="rgb(215,151,48)" fg:x="47265" fg:w="17"/><text x="31.7059%" y="959.50"></text></g><g><title>PhiNode::Value (37 samples, 0.02%)</title><rect x="31.5351%" y="949" width="0.0246%" height="15" fill="rgb(229,84,14)" fg:x="47384" fg:w="37"/><text x="31.7851%" y="959.50"></text></g><g><title>Type::hashcons (17 samples, 0.01%)</title><rect x="31.5757%" y="949" width="0.0113%" height="15" fill="rgb(229,68,14)" fg:x="47445" fg:w="17"/><text x="31.8257%" y="959.50"></text></g><g><title>TypeAryPtr::add_offset (17 samples, 0.01%)</title><rect x="31.5870%" y="949" width="0.0113%" height="15" fill="rgb(243,106,26)" fg:x="47462" fg:w="17"/><text x="31.8370%" y="959.50"></text></g><g><title>TypeInstPtr::add_offset (27 samples, 0.02%)</title><rect x="31.5983%" y="949" width="0.0180%" height="15" fill="rgb(206,45,38)" fg:x="47479" fg:w="27"/><text x="31.8483%" y="959.50"></text></g><g><title>PhaseCCP::analyze (521 samples, 0.35%)</title><rect x="31.2862%" y="965" width="0.3467%" height="15" fill="rgb(226,6,15)" fg:x="47010" fg:w="521"/><text x="31.5362%" y="975.50"></text></g><g><title>PhaseCCP::transform_once (72 samples, 0.05%)</title><rect x="31.6915%" y="933" width="0.0479%" height="15" fill="rgb(232,22,54)" fg:x="47619" fg:w="72"/><text x="31.9415%" y="943.50"></text></g><g><title>PhaseCCP::do_transform (161 samples, 0.11%)</title><rect x="31.6329%" y="965" width="0.1071%" height="15" fill="rgb(229,222,32)" fg:x="47531" fg:w="161"/><text x="31.8829%" y="975.50"></text></g><g><title>PhaseCCP::transform (161 samples, 0.11%)</title><rect x="31.6329%" y="949" width="0.1071%" height="15" fill="rgb(228,62,29)" fg:x="47531" fg:w="161"/><text x="31.8829%" y="959.50"></text></g><g><title>IdealLoopTree::counted_loop (17 samples, 0.01%)</title><rect x="31.7727%" y="885" width="0.0113%" height="15" fill="rgb(251,103,34)" fg:x="47741" fg:w="17"/><text x="32.0227%" y="895.50"></text></g><g><title>IdealLoopTree::counted_loop (20 samples, 0.01%)</title><rect x="31.7720%" y="901" width="0.0133%" height="15" fill="rgb(233,12,30)" fg:x="47740" fg:w="20"/><text x="32.0220%" y="911.50"></text></g><g><title>IdealLoopTree::counted_loop (28 samples, 0.02%)</title><rect x="31.7720%" y="917" width="0.0186%" height="15" fill="rgb(238,52,0)" fg:x="47740" fg:w="28"/><text x="32.0220%" y="927.50"></text></g><g><title>IdealLoopTree::counted_loop (42 samples, 0.03%)</title><rect x="31.7720%" y="949" width="0.0280%" height="15" fill="rgb(223,98,5)" fg:x="47740" fg:w="42"/><text x="32.0220%" y="959.50"></text></g><g><title>IdealLoopTree::counted_loop (42 samples, 0.03%)</title><rect x="31.7720%" y="933" width="0.0280%" height="15" fill="rgb(228,75,37)" fg:x="47740" fg:w="42"/><text x="32.0220%" y="943.50"></text></g><g><title>IdealLoopTree::iteration_split (18 samples, 0.01%)</title><rect x="31.8120%" y="789" width="0.0120%" height="15" fill="rgb(205,115,49)" fg:x="47800" fg:w="18"/><text x="32.0620%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (21 samples, 0.01%)</title><rect x="31.8120%" y="805" width="0.0140%" height="15" fill="rgb(250,154,43)" fg:x="47800" fg:w="21"/><text x="32.0620%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (31 samples, 0.02%)</title><rect x="31.8113%" y="821" width="0.0206%" height="15" fill="rgb(226,43,29)" fg:x="47799" fg:w="31"/><text x="32.0613%" y="831.50"></text></g><g><title>IdealLoopTree::iteration_split (37 samples, 0.02%)</title><rect x="31.8100%" y="837" width="0.0246%" height="15" fill="rgb(249,228,39)" fg:x="47797" fg:w="37"/><text x="32.0600%" y="847.50"></text></g><g><title>IdealLoopTree::iteration_split (41 samples, 0.03%)</title><rect x="31.8093%" y="853" width="0.0273%" height="15" fill="rgb(216,79,43)" fg:x="47796" fg:w="41"/><text x="32.0593%" y="863.50"></text></g><g><title>IdealLoopTree::iteration_split (52 samples, 0.03%)</title><rect x="31.8073%" y="869" width="0.0346%" height="15" fill="rgb(228,95,12)" fg:x="47793" fg:w="52"/><text x="32.0573%" y="879.50"></text></g><g><title>IdealLoopTree::iteration_split (58 samples, 0.04%)</title><rect x="31.8066%" y="885" width="0.0386%" height="15" fill="rgb(249,221,15)" fg:x="47792" fg:w="58"/><text x="32.0566%" y="895.50"></text></g><g><title>IdealLoopTree::iteration_split (67 samples, 0.04%)</title><rect x="31.8066%" y="901" width="0.0446%" height="15" fill="rgb(233,34,13)" fg:x="47792" fg:w="67"/><text x="32.0566%" y="911.50"></text></g><g><title>PhaseIdealLoop::do_unroll (20 samples, 0.01%)</title><rect x="31.8559%" y="885" width="0.0133%" height="15" fill="rgb(214,103,39)" fg:x="47866" fg:w="20"/><text x="32.1059%" y="895.50"></text></g><g><title>IdealLoopTree::iteration_split (104 samples, 0.07%)</title><rect x="31.8053%" y="917" width="0.0692%" height="15" fill="rgb(251,126,39)" fg:x="47790" fg:w="104"/><text x="32.0553%" y="927.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (35 samples, 0.02%)</title><rect x="31.8512%" y="901" width="0.0233%" height="15" fill="rgb(214,216,36)" fg:x="47859" fg:w="35"/><text x="32.1012%" y="911.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (24 samples, 0.02%)</title><rect x="31.8745%" y="917" width="0.0160%" height="15" fill="rgb(220,221,8)" fg:x="47894" fg:w="24"/><text x="32.1245%" y="927.50"></text></g><g><title>PhaseIdealLoop::insert_pre_post_loops (18 samples, 0.01%)</title><rect x="31.8785%" y="901" width="0.0120%" height="15" fill="rgb(240,216,3)" fg:x="47900" fg:w="18"/><text x="32.1285%" y="911.50"></text></g><g><title>IdealLoopTree::iteration_split (136 samples, 0.09%)</title><rect x="31.8026%" y="933" width="0.0905%" height="15" fill="rgb(232,218,17)" fg:x="47786" fg:w="136"/><text x="32.0526%" y="943.50"></text></g><g><title>IdealLoopTree::iteration_split (153 samples, 0.10%)</title><rect x="31.8000%" y="949" width="0.1018%" height="15" fill="rgb(229,163,45)" fg:x="47782" fg:w="153"/><text x="32.0500%" y="959.50"></text></g><g><title>IdealLoopTree::loop_predication (32 samples, 0.02%)</title><rect x="31.9031%" y="917" width="0.0213%" height="15" fill="rgb(231,110,42)" fg:x="47937" fg:w="32"/><text x="32.1531%" y="927.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (20 samples, 0.01%)</title><rect x="31.9111%" y="901" width="0.0133%" height="15" fill="rgb(208,170,48)" fg:x="47949" fg:w="20"/><text x="32.1611%" y="911.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (19 samples, 0.01%)</title><rect x="31.9331%" y="901" width="0.0126%" height="15" fill="rgb(239,116,25)" fg:x="47982" fg:w="19"/><text x="32.1831%" y="911.50"></text></g><g><title>IdealLoopTree::loop_predication (75 samples, 0.05%)</title><rect x="31.9025%" y="933" width="0.0499%" height="15" fill="rgb(219,200,50)" fg:x="47936" fg:w="75"/><text x="32.1525%" y="943.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (42 samples, 0.03%)</title><rect x="31.9244%" y="917" width="0.0280%" height="15" fill="rgb(245,200,0)" fg:x="47969" fg:w="42"/><text x="32.1744%" y="927.50"></text></g><g><title>PathFrequency::to (22 samples, 0.01%)</title><rect x="31.9597%" y="917" width="0.0146%" height="15" fill="rgb(245,119,33)" fg:x="48022" fg:w="22"/><text x="32.2097%" y="927.50"></text></g><g><title>PathFrequency::to (19 samples, 0.01%)</title><rect x="31.9763%" y="901" width="0.0126%" height="15" fill="rgb(231,125,12)" fg:x="48047" fg:w="19"/><text x="32.2263%" y="911.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (44 samples, 0.03%)</title><rect x="31.9743%" y="917" width="0.0293%" height="15" fill="rgb(216,96,41)" fg:x="48044" fg:w="44"/><text x="32.2243%" y="927.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (25 samples, 0.02%)</title><rect x="32.0036%" y="917" width="0.0166%" height="15" fill="rgb(248,43,45)" fg:x="48088" fg:w="25"/><text x="32.2536%" y="927.50"></text></g><g><title>IdealLoopTree::loop_predication (190 samples, 0.13%)</title><rect x="31.9018%" y="949" width="0.1264%" height="15" fill="rgb(217,222,7)" fg:x="47935" fg:w="190"/><text x="32.1518%" y="959.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (114 samples, 0.08%)</title><rect x="31.9524%" y="933" width="0.0759%" height="15" fill="rgb(233,28,6)" fg:x="48011" fg:w="114"/><text x="32.2024%" y="943.50"></text></g><g><title>NTarjan::DFS (242 samples, 0.16%)</title><rect x="32.4329%" y="933" width="0.1611%" height="15" fill="rgb(231,218,15)" fg:x="48733" fg:w="242"/><text x="32.6829%" y="943.50"></text></g><g><title>asm_exc_page_fault (24 samples, 0.02%)</title><rect x="32.6046%" y="933" width="0.0160%" height="15" fill="rgb(226,171,48)" fg:x="48991" fg:w="24"/><text x="32.8546%" y="943.50"></text></g><g><title>exc_page_fault (23 samples, 0.02%)</title><rect x="32.6053%" y="917" width="0.0153%" height="15" fill="rgb(235,201,9)" fg:x="48992" fg:w="23"/><text x="32.8553%" y="927.50"></text></g><g><title>do_user_addr_fault (23 samples, 0.02%)</title><rect x="32.6053%" y="901" width="0.0153%" height="15" fill="rgb(217,80,15)" fg:x="48992" fg:w="23"/><text x="32.8553%" y="911.50"></text></g><g><title>handle_mm_fault (22 samples, 0.01%)</title><rect x="32.6059%" y="885" width="0.0146%" height="15" fill="rgb(219,152,8)" fg:x="48993" fg:w="22"/><text x="32.8559%" y="895.50"></text></g><g><title>PhaseIdealLoop::Dominators (863 samples, 0.57%)</title><rect x="32.0535%" y="949" width="0.5743%" height="15" fill="rgb(243,107,38)" fg:x="48163" fg:w="863"/><text x="32.3035%" y="959.50"></text></g><g><title>PhaseIdealLoop::dom_depth (54 samples, 0.04%)</title><rect x="33.2981%" y="901" width="0.0359%" height="15" fill="rgb(231,17,5)" fg:x="50033" fg:w="54"/><text x="33.5481%" y="911.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (136 samples, 0.09%)</title><rect x="33.3340%" y="901" width="0.0905%" height="15" fill="rgb(209,25,54)" fg:x="50087" fg:w="136"/><text x="33.5840%" y="911.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (329 samples, 0.22%)</title><rect x="33.2069%" y="933" width="0.2190%" height="15" fill="rgb(219,0,2)" fg:x="49896" fg:w="329"/><text x="33.4569%" y="943.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (293 samples, 0.19%)</title><rect x="33.2308%" y="917" width="0.1950%" height="15" fill="rgb(246,9,5)" fg:x="49932" fg:w="293"/><text x="33.4808%" y="927.50"></text></g><g><title>PhiNode::pinned (27 samples, 0.02%)</title><rect x="33.4265%" y="933" width="0.0180%" height="15" fill="rgb(226,159,4)" fg:x="50226" fg:w="27"/><text x="33.6765%" y="943.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,252 samples, 0.83%)</title><rect x="32.6279%" y="949" width="0.8332%" height="15" fill="rgb(219,175,34)" fg:x="49026" fg:w="1252"/><text x="32.8779%" y="959.50"></text></g><g><title>Node_List::push (19 samples, 0.01%)</title><rect x="34.0627%" y="933" width="0.0126%" height="15" fill="rgb(236,10,46)" fg:x="51182" fg:w="19"/><text x="34.3127%" y="943.50"></text></g><g><title>Node::unique_ctrl_out (63 samples, 0.04%)</title><rect x="34.3948%" y="917" width="0.0419%" height="15" fill="rgb(240,211,16)" fg:x="51681" fg:w="63"/><text x="34.6448%" y="927.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (60 samples, 0.04%)</title><rect x="34.4388%" y="917" width="0.0399%" height="15" fill="rgb(205,3,43)" fg:x="51747" fg:w="60"/><text x="34.6888%" y="927.50"></text></g><g><title>PhaseIdealLoop::dom_depth (51 samples, 0.03%)</title><rect x="34.7808%" y="869" width="0.0339%" height="15" fill="rgb(245,7,22)" fg:x="52261" fg:w="51"/><text x="35.0308%" y="879.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (224 samples, 0.15%)</title><rect x="34.7402%" y="885" width="0.1491%" height="15" fill="rgb(239,132,32)" fg:x="52200" fg:w="224"/><text x="34.9902%" y="895.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (112 samples, 0.07%)</title><rect x="34.8148%" y="869" width="0.0745%" height="15" fill="rgb(228,202,34)" fg:x="52312" fg:w="112"/><text x="35.0648%" y="879.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (322 samples, 0.21%)</title><rect x="34.6937%" y="901" width="0.2143%" height="15" fill="rgb(254,200,22)" fg:x="52130" fg:w="322"/><text x="34.9437%" y="911.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (28 samples, 0.02%)</title><rect x="34.8893%" y="885" width="0.0186%" height="15" fill="rgb(219,10,39)" fg:x="52424" fg:w="28"/><text x="35.1393%" y="895.50"></text></g><g><title>PhaseIdealLoop::dom_depth (24 samples, 0.02%)</title><rect x="34.9459%" y="885" width="0.0160%" height="15" fill="rgb(226,210,39)" fg:x="52509" fg:w="24"/><text x="35.1959%" y="895.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (94 samples, 0.06%)</title><rect x="34.9093%" y="901" width="0.0626%" height="15" fill="rgb(208,219,16)" fg:x="52454" fg:w="94"/><text x="35.1593%" y="911.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (18 samples, 0.01%)</title><rect x="34.9718%" y="901" width="0.0120%" height="15" fill="rgb(216,158,51)" fg:x="52548" fg:w="18"/><text x="35.2218%" y="911.50"></text></g><g><title>PhaseIdealLoop::dom_depth (421 samples, 0.28%)</title><rect x="35.9987%" y="885" width="0.2802%" height="15" fill="rgb(233,14,44)" fg:x="54091" fg:w="421"/><text x="36.2487%" y="895.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,949 samples, 1.30%)</title><rect x="34.9838%" y="901" width="1.2971%" height="15" fill="rgb(237,97,39)" fg:x="52566" fg:w="1949"/><text x="35.2338%" y="911.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,718 samples, 1.81%)</title><rect x="34.4787%" y="917" width="1.8089%" height="15" fill="rgb(218,198,43)" fg:x="51807" fg:w="2718"/><text x="34.7287%" y="927.50">P..</text></g><g><title>PhaseIdealLoop::get_loop (27 samples, 0.02%)</title><rect x="36.2876%" y="917" width="0.0180%" height="15" fill="rgb(231,104,20)" fg:x="54525" fg:w="27"/><text x="36.5376%" y="927.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (3,374 samples, 2.25%)</title><rect x="34.0754%" y="933" width="2.2455%" height="15" fill="rgb(254,36,13)" fg:x="51201" fg:w="3374"/><text x="34.3254%" y="943.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_late (4,319 samples, 2.87%)</title><rect x="33.4611%" y="949" width="2.8744%" height="15" fill="rgb(248,14,50)" fg:x="50278" fg:w="4319"/><text x="33.7111%" y="959.50">Ph..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (150 samples, 0.10%)</title><rect x="36.6543%" y="933" width="0.0998%" height="15" fill="rgb(217,107,29)" fg:x="55076" fg:w="150"/><text x="36.9043%" y="943.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (643 samples, 0.43%)</title><rect x="36.3368%" y="949" width="0.4279%" height="15" fill="rgb(251,169,33)" fg:x="54599" fg:w="643"/><text x="36.5868%" y="959.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (21 samples, 0.01%)</title><rect x="36.7674%" y="949" width="0.0140%" height="15" fill="rgb(217,108,32)" fg:x="55246" fg:w="21"/><text x="37.0174%" y="959.50"></text></g><g><title>PhaseIdealLoop::collect_potentially_useful_predicates (21 samples, 0.01%)</title><rect x="36.7674%" y="933" width="0.0140%" height="15" fill="rgb(219,66,42)" fg:x="55246" fg:w="21"/><text x="37.0174%" y="943.50"></text></g><g><title>PhaseIdealLoop::handle_use (32 samples, 0.02%)</title><rect x="37.0463%" y="917" width="0.0213%" height="15" fill="rgb(206,180,7)" fg:x="55665" fg:w="32"/><text x="37.2963%" y="927.50"></text></g><g><title>PhaseIdealLoop::spinup (25 samples, 0.02%)</title><rect x="37.0509%" y="901" width="0.0166%" height="15" fill="rgb(208,226,31)" fg:x="55672" fg:w="25"/><text x="37.3009%" y="911.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (19 samples, 0.01%)</title><rect x="37.0869%" y="901" width="0.0126%" height="15" fill="rgb(218,26,49)" fg:x="55726" fg:w="19"/><text x="37.3369%" y="911.50"></text></g><g><title>PhaseIterGVN::subsume_node (20 samples, 0.01%)</title><rect x="37.0869%" y="917" width="0.0133%" height="15" fill="rgb(233,197,48)" fg:x="55726" fg:w="20"/><text x="37.3369%" y="927.50"></text></g><g><title>PhaseIdealLoop::do_split_if (87 samples, 0.06%)</title><rect x="37.0430%" y="933" width="0.0579%" height="15" fill="rgb(252,181,51)" fg:x="55660" fg:w="87"/><text x="37.2930%" y="943.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (18 samples, 0.01%)</title><rect x="37.1627%" y="917" width="0.0120%" height="15" fill="rgb(253,90,19)" fg:x="55840" fg:w="18"/><text x="37.4127%" y="927.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (19 samples, 0.01%)</title><rect x="37.1940%" y="917" width="0.0126%" height="15" fill="rgb(215,171,30)" fg:x="55887" fg:w="19"/><text x="37.4440%" y="927.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (180 samples, 0.12%)</title><rect x="37.1035%" y="933" width="0.1198%" height="15" fill="rgb(214,222,9)" fg:x="55751" fg:w="180"/><text x="37.3535%" y="943.50"></text></g><g><title>ConstraintCastNode::dominating_cast (41 samples, 0.03%)</title><rect x="37.2792%" y="917" width="0.0273%" height="15" fill="rgb(223,3,22)" fg:x="56015" fg:w="41"/><text x="37.5292%" y="927.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (29 samples, 0.02%)</title><rect x="37.3171%" y="917" width="0.0193%" height="15" fill="rgb(225,196,46)" fg:x="56072" fg:w="29"/><text x="37.5671%" y="927.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (64 samples, 0.04%)</title><rect x="37.3364%" y="917" width="0.0426%" height="15" fill="rgb(209,110,37)" fg:x="56101" fg:w="64"/><text x="37.5864%" y="927.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (20 samples, 0.01%)</title><rect x="37.3657%" y="901" width="0.0133%" height="15" fill="rgb(249,89,12)" fg:x="56145" fg:w="20"/><text x="37.6157%" y="911.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (128 samples, 0.09%)</title><rect x="37.3804%" y="917" width="0.0852%" height="15" fill="rgb(226,27,33)" fg:x="56167" fg:w="128"/><text x="37.6304%" y="927.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (44 samples, 0.03%)</title><rect x="37.4363%" y="901" width="0.0293%" height="15" fill="rgb(213,82,22)" fg:x="56251" fg:w="44"/><text x="37.6863%" y="911.50"></text></g><g><title>Unique_Node_List::remove (27 samples, 0.02%)</title><rect x="37.5294%" y="885" width="0.0180%" height="15" fill="rgb(248,140,0)" fg:x="56391" fg:w="27"/><text x="37.7794%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (53 samples, 0.04%)</title><rect x="37.5128%" y="901" width="0.0353%" height="15" fill="rgb(228,106,3)" fg:x="56366" fg:w="53"/><text x="37.7628%" y="911.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (143 samples, 0.10%)</title><rect x="37.4656%" y="917" width="0.0952%" height="15" fill="rgb(209,23,37)" fg:x="56295" fg:w="143"/><text x="37.7156%" y="927.50"></text></g><g><title>PhaseIdealLoop::try_move_store_before_loop (23 samples, 0.02%)</title><rect x="37.5607%" y="917" width="0.0153%" height="15" fill="rgb(241,93,50)" fg:x="56438" fg:w="23"/><text x="37.8107%" y="927.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (551 samples, 0.37%)</title><rect x="37.2233%" y="933" width="0.3667%" height="15" fill="rgb(253,46,43)" fg:x="55931" fg:w="551"/><text x="37.4733%" y="943.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,206 samples, 0.80%)</title><rect x="36.7894%" y="949" width="0.8026%" height="15" fill="rgb(226,206,43)" fg:x="55279" fg:w="1206"/><text x="37.0394%" y="959.50"></text></g><g><title>AddNode::Value (16 samples, 0.01%)</title><rect x="37.6832%" y="917" width="0.0106%" height="15" fill="rgb(217,54,7)" fg:x="56622" fg:w="16"/><text x="37.9332%" y="927.50"></text></g><g><title>AddNode::add_of_identity (16 samples, 0.01%)</title><rect x="37.6832%" y="901" width="0.0106%" height="15" fill="rgb(223,5,52)" fg:x="56622" fg:w="16"/><text x="37.9332%" y="911.50"></text></g><g><title>CallNode::Ideal (21 samples, 0.01%)</title><rect x="37.7111%" y="917" width="0.0140%" height="15" fill="rgb(206,52,46)" fg:x="56664" fg:w="21"/><text x="37.9611%" y="927.50"></text></g><g><title>Node::remove_dead_region (21 samples, 0.01%)</title><rect x="37.7111%" y="901" width="0.0140%" height="15" fill="rgb(253,136,11)" fg:x="56664" fg:w="21"/><text x="37.9611%" y="911.50"></text></g><g><title>Dict::Insert (16 samples, 0.01%)</title><rect x="37.7324%" y="869" width="0.0106%" height="15" fill="rgb(208,106,33)" fg:x="56696" fg:w="16"/><text x="37.9824%" y="879.50"></text></g><g><title>Type::hashcons (18 samples, 0.01%)</title><rect x="37.7324%" y="885" width="0.0120%" height="15" fill="rgb(206,54,4)" fg:x="56696" fg:w="18"/><text x="37.9824%" y="895.50"></text></g><g><title>CastIINode::Value (28 samples, 0.02%)</title><rect x="37.7298%" y="917" width="0.0186%" height="15" fill="rgb(213,3,15)" fg:x="56692" fg:w="28"/><text x="37.9798%" y="927.50"></text></g><g><title>TypeInt::filter_helper (25 samples, 0.02%)</title><rect x="37.7318%" y="901" width="0.0166%" height="15" fill="rgb(252,211,39)" fg:x="56695" fg:w="25"/><text x="37.9818%" y="911.50"></text></g><g><title>ConstraintCastNode::Identity (21 samples, 0.01%)</title><rect x="37.7597%" y="917" width="0.0140%" height="15" fill="rgb(223,6,36)" fg:x="56737" fg:w="21"/><text x="38.0097%" y="927.50"></text></g><g><title>ConvI2LNode::Value (25 samples, 0.02%)</title><rect x="37.7837%" y="917" width="0.0166%" height="15" fill="rgb(252,169,45)" fg:x="56773" fg:w="25"/><text x="38.0337%" y="927.50"></text></g><g><title>IfNode::Ideal (23 samples, 0.02%)</title><rect x="37.8016%" y="917" width="0.0153%" height="15" fill="rgb(212,48,26)" fg:x="56800" fg:w="23"/><text x="38.0516%" y="927.50"></text></g><g><title>MemNode::Ideal_common (21 samples, 0.01%)</title><rect x="37.8296%" y="901" width="0.0140%" height="15" fill="rgb(251,102,48)" fg:x="56842" fg:w="21"/><text x="38.0796%" y="911.50"></text></g><g><title>MemNode::find_previous_store (22 samples, 0.01%)</title><rect x="37.8476%" y="901" width="0.0146%" height="15" fill="rgb(243,208,16)" fg:x="56869" fg:w="22"/><text x="38.0976%" y="911.50"></text></g><g><title>LoadNode::Ideal (59 samples, 0.04%)</title><rect x="37.8243%" y="917" width="0.0393%" height="15" fill="rgb(219,96,24)" fg:x="56834" fg:w="59"/><text x="38.0743%" y="927.50"></text></g><g><title>NodeHash::grow (30 samples, 0.02%)</title><rect x="37.9301%" y="901" width="0.0200%" height="15" fill="rgb(219,33,29)" fg:x="56993" fg:w="30"/><text x="38.1801%" y="911.50"></text></g><g><title>NodeHash::hash_find_insert (98 samples, 0.07%)</title><rect x="37.8882%" y="917" width="0.0652%" height="15" fill="rgb(223,176,5)" fg:x="56930" fg:w="98"/><text x="38.1382%" y="927.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (60 samples, 0.04%)</title><rect x="37.9541%" y="917" width="0.0399%" height="15" fill="rgb(228,140,14)" fg:x="57029" fg:w="60"/><text x="38.2041%" y="927.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (39 samples, 0.03%)</title><rect x="38.0093%" y="901" width="0.0260%" height="15" fill="rgb(217,179,31)" fg:x="57112" fg:w="39"/><text x="38.2593%" y="911.50"></text></g><g><title>PhaseIterGVN::subsume_node (69 samples, 0.05%)</title><rect x="37.9940%" y="917" width="0.0459%" height="15" fill="rgb(230,9,30)" fg:x="57089" fg:w="69"/><text x="38.2440%" y="927.50"></text></g><g><title>PhiNode::Ideal (47 samples, 0.03%)</title><rect x="38.0406%" y="917" width="0.0313%" height="15" fill="rgb(230,136,20)" fg:x="57159" fg:w="47"/><text x="38.2906%" y="927.50"></text></g><g><title>PhiNode::Value (18 samples, 0.01%)</title><rect x="38.0745%" y="917" width="0.0120%" height="15" fill="rgb(215,210,22)" fg:x="57210" fg:w="18"/><text x="38.3245%" y="927.50"></text></g><g><title>PhaseIterGVN::subsume_node (16 samples, 0.01%)</title><rect x="38.1271%" y="901" width="0.0106%" height="15" fill="rgb(218,43,5)" fg:x="57289" fg:w="16"/><text x="38.3771%" y="911.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (18 samples, 0.01%)</title><rect x="38.1377%" y="901" width="0.0120%" height="15" fill="rgb(216,11,5)" fg:x="57305" fg:w="18"/><text x="38.3877%" y="911.50"></text></g><g><title>RegionNode::is_unreachable_region (94 samples, 0.06%)</title><rect x="38.1497%" y="901" width="0.0626%" height="15" fill="rgb(209,82,29)" fg:x="57323" fg:w="94"/><text x="38.3997%" y="911.50"></text></g><g><title>RegionNode::Ideal (167 samples, 0.11%)</title><rect x="38.1025%" y="917" width="0.1111%" height="15" fill="rgb(244,115,12)" fg:x="57252" fg:w="167"/><text x="38.3525%" y="927.50"></text></g><g><title>InitializeNode::detect_init_independence (19 samples, 0.01%)</title><rect x="38.2183%" y="693" width="0.0126%" height="15" fill="rgb(222,82,18)" fg:x="57426" fg:w="19"/><text x="38.4683%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (23 samples, 0.02%)</title><rect x="38.2183%" y="709" width="0.0153%" height="15" fill="rgb(249,227,8)" fg:x="57426" fg:w="23"/><text x="38.4683%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (24 samples, 0.02%)</title><rect x="38.2183%" y="725" width="0.0160%" height="15" fill="rgb(253,141,45)" fg:x="57426" fg:w="24"/><text x="38.4683%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (26 samples, 0.02%)</title><rect x="38.2183%" y="741" width="0.0173%" height="15" fill="rgb(234,184,4)" fg:x="57426" fg:w="26"/><text x="38.4683%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (27 samples, 0.02%)</title><rect x="38.2183%" y="757" width="0.0180%" height="15" fill="rgb(218,194,23)" fg:x="57426" fg:w="27"/><text x="38.4683%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (32 samples, 0.02%)</title><rect x="38.2183%" y="773" width="0.0213%" height="15" fill="rgb(235,66,41)" fg:x="57426" fg:w="32"/><text x="38.4683%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (37 samples, 0.02%)</title><rect x="38.2183%" y="789" width="0.0246%" height="15" fill="rgb(245,217,1)" fg:x="57426" fg:w="37"/><text x="38.4683%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (39 samples, 0.03%)</title><rect x="38.2183%" y="805" width="0.0260%" height="15" fill="rgb(229,91,1)" fg:x="57426" fg:w="39"/><text x="38.4683%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (41 samples, 0.03%)</title><rect x="38.2183%" y="821" width="0.0273%" height="15" fill="rgb(207,101,30)" fg:x="57426" fg:w="41"/><text x="38.4683%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (43 samples, 0.03%)</title><rect x="38.2183%" y="837" width="0.0286%" height="15" fill="rgb(223,82,49)" fg:x="57426" fg:w="43"/><text x="38.4683%" y="847.50"></text></g><g><title>InitializeNode::detect_init_independence (48 samples, 0.03%)</title><rect x="38.2183%" y="853" width="0.0319%" height="15" fill="rgb(218,167,17)" fg:x="57426" fg:w="48"/><text x="38.4683%" y="863.50"></text></g><g><title>InitializeNode::can_capture_store (52 samples, 0.03%)</title><rect x="38.2183%" y="901" width="0.0346%" height="15" fill="rgb(208,103,14)" fg:x="57426" fg:w="52"/><text x="38.4683%" y="911.50"></text></g><g><title>InitializeNode::detect_init_independence (52 samples, 0.03%)</title><rect x="38.2183%" y="885" width="0.0346%" height="15" fill="rgb(238,20,8)" fg:x="57426" fg:w="52"/><text x="38.4683%" y="895.50"></text></g><g><title>InitializeNode::detect_init_independence (52 samples, 0.03%)</title><rect x="38.2183%" y="869" width="0.0346%" height="15" fill="rgb(218,80,54)" fg:x="57426" fg:w="52"/><text x="38.4683%" y="879.50"></text></g><g><title>StoreNode::Ideal (59 samples, 0.04%)</title><rect x="38.2176%" y="917" width="0.0393%" height="15" fill="rgb(240,144,17)" fg:x="57425" fg:w="59"/><text x="38.4676%" y="927.50"></text></g><g><title>PhaseIterGVN::transform_old (993 samples, 0.66%)</title><rect x="37.6200%" y="933" width="0.6609%" height="15" fill="rgb(245,27,50)" fg:x="56527" fg:w="993"/><text x="37.8700%" y="943.50"></text></g><g><title>PhaseIterGVN::optimize (1,045 samples, 0.70%)</title><rect x="37.5927%" y="949" width="0.6955%" height="15" fill="rgb(251,51,7)" fg:x="56486" fg:w="1045"/><text x="37.8427%" y="959.50"></text></g><g><title>SuperWord::find_adjacent_refs (22 samples, 0.01%)</title><rect x="38.3141%" y="917" width="0.0146%" height="15" fill="rgb(245,217,29)" fg:x="57570" fg:w="22"/><text x="38.5641%" y="927.50"></text></g><g><title>SuperWord::transform_loop (36 samples, 0.02%)</title><rect x="38.3081%" y="949" width="0.0240%" height="15" fill="rgb(221,176,29)" fg:x="57561" fg:w="36"/><text x="38.5581%" y="959.50"></text></g><g><title>SuperWord::SLP_extract (36 samples, 0.02%)</title><rect x="38.3081%" y="933" width="0.0240%" height="15" fill="rgb(212,180,24)" fg:x="57561" fg:w="36"/><text x="38.5581%" y="943.50"></text></g><g><title>[libc-2.31.so] (23 samples, 0.02%)</title><rect x="38.3334%" y="949" width="0.0153%" height="15" fill="rgb(254,24,2)" fg:x="57599" fg:w="23"/><text x="38.5834%" y="959.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (9,917 samples, 6.60%)</title><rect x="31.7501%" y="965" width="6.6000%" height="15" fill="rgb(230,100,2)" fg:x="47707" fg:w="9917"/><text x="32.0001%" y="975.50">PhaseIdea..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (101 samples, 0.07%)</title><rect x="38.3500%" y="965" width="0.0672%" height="15" fill="rgb(219,142,25)" fg:x="57624" fg:w="101"/><text x="38.6000%" y="975.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (57 samples, 0.04%)</title><rect x="38.3793%" y="949" width="0.0379%" height="15" fill="rgb(240,73,43)" fg:x="57668" fg:w="57"/><text x="38.6293%" y="959.50"></text></g><g><title>CallNode::Ideal (23 samples, 0.02%)</title><rect x="38.5517%" y="933" width="0.0153%" height="15" fill="rgb(214,114,15)" fg:x="57927" fg:w="23"/><text x="38.8017%" y="943.50"></text></g><g><title>Node::remove_dead_region (22 samples, 0.01%)</title><rect x="38.5524%" y="917" width="0.0146%" height="15" fill="rgb(207,130,4)" fg:x="57928" fg:w="22"/><text x="38.8024%" y="927.50"></text></g><g><title>IfNode::fold_compares (16 samples, 0.01%)</title><rect x="38.6276%" y="917" width="0.0106%" height="15" fill="rgb(221,25,40)" fg:x="58041" fg:w="16"/><text x="38.8776%" y="927.50"></text></g><g><title>IfNode::search_identical (27 samples, 0.02%)</title><rect x="38.6382%" y="917" width="0.0180%" height="15" fill="rgb(241,184,7)" fg:x="58057" fg:w="27"/><text x="38.8882%" y="927.50"></text></g><g><title>PhaseIterGVN::subsume_node (67 samples, 0.04%)</title><rect x="38.6715%" y="917" width="0.0446%" height="15" fill="rgb(235,159,4)" fg:x="58107" fg:w="67"/><text x="38.9215%" y="927.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (60 samples, 0.04%)</title><rect x="38.6761%" y="901" width="0.0399%" height="15" fill="rgb(214,87,48)" fg:x="58114" fg:w="60"/><text x="38.9261%" y="911.50"></text></g><g><title>Unique_Node_List::remove (54 samples, 0.04%)</title><rect x="38.6801%" y="885" width="0.0359%" height="15" fill="rgb(246,198,24)" fg:x="58120" fg:w="54"/><text x="38.9301%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (31 samples, 0.02%)</title><rect x="38.7367%" y="901" width="0.0206%" height="15" fill="rgb(209,66,40)" fg:x="58205" fg:w="31"/><text x="38.9867%" y="911.50"></text></g><g><title>Unique_Node_List::remove (23 samples, 0.02%)</title><rect x="38.7420%" y="885" width="0.0153%" height="15" fill="rgb(233,147,39)" fg:x="58213" fg:w="23"/><text x="38.9920%" y="895.50"></text></g><g><title>IfNode::Ideal (228 samples, 0.15%)</title><rect x="38.6096%" y="933" width="0.1517%" height="15" fill="rgb(231,145,52)" fg:x="58014" fg:w="228"/><text x="38.8596%" y="943.50"></text></g><g><title>split_if (61 samples, 0.04%)</title><rect x="38.7207%" y="917" width="0.0406%" height="15" fill="rgb(206,20,26)" fg:x="58181" fg:w="61"/><text x="38.9707%" y="927.50"></text></g><g><title>MemNode::Ideal_common (40 samples, 0.03%)</title><rect x="38.7886%" y="917" width="0.0266%" height="15" fill="rgb(238,220,4)" fg:x="58283" fg:w="40"/><text x="39.0386%" y="927.50"></text></g><g><title>MemNode::all_controls_dominate (25 samples, 0.02%)</title><rect x="38.8206%" y="901" width="0.0166%" height="15" fill="rgb(252,195,42)" fg:x="58331" fg:w="25"/><text x="39.0706%" y="911.50"></text></g><g><title>Node::dominates (23 samples, 0.02%)</title><rect x="38.8219%" y="885" width="0.0153%" height="15" fill="rgb(209,10,6)" fg:x="58333" fg:w="23"/><text x="39.0719%" y="895.50"></text></g><g><title>MemNode::find_previous_store (44 samples, 0.03%)</title><rect x="38.8172%" y="917" width="0.0293%" height="15" fill="rgb(229,3,52)" fg:x="58326" fg:w="44"/><text x="39.0672%" y="927.50"></text></g><g><title>LoadNode::Ideal (110 samples, 0.07%)</title><rect x="38.7746%" y="933" width="0.0732%" height="15" fill="rgb(253,49,37)" fg:x="58262" fg:w="110"/><text x="39.0246%" y="943.50"></text></g><g><title>LoadNode::is_instance_field_load_with_local_phi (17 samples, 0.01%)</title><rect x="38.8478%" y="917" width="0.0113%" height="15" fill="rgb(240,103,49)" fg:x="58372" fg:w="17"/><text x="39.0978%" y="927.50"></text></g><g><title>LoadNode::Identity (22 samples, 0.01%)</title><rect x="38.8478%" y="933" width="0.0146%" height="15" fill="rgb(250,182,30)" fg:x="58372" fg:w="22"/><text x="39.0978%" y="943.50"></text></g><g><title>MergeMemNode::Ideal (36 samples, 0.02%)</title><rect x="38.8791%" y="933" width="0.0240%" height="15" fill="rgb(248,8,30)" fg:x="58419" fg:w="36"/><text x="39.1291%" y="943.50"></text></g><g><title>NodeHash::grow (44 samples, 0.03%)</title><rect x="38.9663%" y="917" width="0.0293%" height="15" fill="rgb(237,120,30)" fg:x="58550" fg:w="44"/><text x="39.2163%" y="927.50"></text></g><g><title>NodeHash::hash_find_insert (136 samples, 0.09%)</title><rect x="38.9104%" y="933" width="0.0905%" height="15" fill="rgb(221,146,34)" fg:x="58466" fg:w="136"/><text x="39.1604%" y="943.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (43 samples, 0.03%)</title><rect x="39.0009%" y="933" width="0.0286%" height="15" fill="rgb(242,55,13)" fg:x="58602" fg:w="43"/><text x="39.2509%" y="943.50"></text></g><g><title>Node::replace_edge (17 samples, 0.01%)</title><rect x="39.0908%" y="901" width="0.0113%" height="15" fill="rgb(242,112,31)" fg:x="58737" fg:w="17"/><text x="39.3408%" y="911.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (63 samples, 0.04%)</title><rect x="39.0721%" y="917" width="0.0419%" height="15" fill="rgb(249,192,27)" fg:x="58709" fg:w="63"/><text x="39.3221%" y="927.50"></text></g><g><title>Unique_Node_List::remove (18 samples, 0.01%)</title><rect x="39.1021%" y="901" width="0.0120%" height="15" fill="rgb(208,204,44)" fg:x="58754" fg:w="18"/><text x="39.3521%" y="911.50"></text></g><g><title>PhaseIterGVN::subsume_node (137 samples, 0.09%)</title><rect x="39.0295%" y="933" width="0.0912%" height="15" fill="rgb(208,93,54)" fg:x="58645" fg:w="137"/><text x="39.2795%" y="943.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (31 samples, 0.02%)</title><rect x="39.1626%" y="917" width="0.0206%" height="15" fill="rgb(242,1,31)" fg:x="58845" fg:w="31"/><text x="39.4126%" y="927.50"></text></g><g><title>PhiNode::unique_input (18 samples, 0.01%)</title><rect x="39.1846%" y="917" width="0.0120%" height="15" fill="rgb(241,83,25)" fg:x="58878" fg:w="18"/><text x="39.4346%" y="927.50"></text></g><g><title>PhiNode::Ideal (112 samples, 0.07%)</title><rect x="39.1234%" y="933" width="0.0745%" height="15" fill="rgb(205,169,50)" fg:x="58786" fg:w="112"/><text x="39.3734%" y="943.50"></text></g><g><title>PhiNode::Value (34 samples, 0.02%)</title><rect x="39.2032%" y="933" width="0.0226%" height="15" fill="rgb(239,186,37)" fg:x="58906" fg:w="34"/><text x="39.4532%" y="943.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (108 samples, 0.07%)</title><rect x="39.2924%" y="901" width="0.0719%" height="15" fill="rgb(205,221,10)" fg:x="59040" fg:w="108"/><text x="39.5424%" y="911.50"></text></g><g><title>Unique_Node_List::remove (92 samples, 0.06%)</title><rect x="39.3031%" y="885" width="0.0612%" height="15" fill="rgb(218,196,15)" fg:x="59056" fg:w="92"/><text x="39.5531%" y="895.50"></text></g><g><title>PhaseIterGVN::subsume_node (121 samples, 0.08%)</title><rect x="39.2871%" y="917" width="0.0805%" height="15" fill="rgb(218,196,35)" fg:x="59032" fg:w="121"/><text x="39.5371%" y="927.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (18 samples, 0.01%)</title><rect x="39.3683%" y="917" width="0.0120%" height="15" fill="rgb(233,63,24)" fg:x="59154" fg:w="18"/><text x="39.6183%" y="927.50"></text></g><g><title>RegionNode::is_unreachable_region (79 samples, 0.05%)</title><rect x="39.3803%" y="917" width="0.0526%" height="15" fill="rgb(225,8,4)" fg:x="59172" fg:w="79"/><text x="39.6303%" y="927.50"></text></g><g><title>RegionNode::Ideal (297 samples, 0.20%)</title><rect x="39.2385%" y="933" width="0.1977%" height="15" fill="rgb(234,105,35)" fg:x="58959" fg:w="297"/><text x="39.4885%" y="943.50"></text></g><g><title>InitializeNode::detect_init_independence (24 samples, 0.02%)</title><rect x="39.4501%" y="629" width="0.0160%" height="15" fill="rgb(236,21,32)" fg:x="59277" fg:w="24"/><text x="39.7001%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (27 samples, 0.02%)</title><rect x="39.4501%" y="645" width="0.0180%" height="15" fill="rgb(228,109,6)" fg:x="59277" fg:w="27"/><text x="39.7001%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (33 samples, 0.02%)</title><rect x="39.4501%" y="661" width="0.0220%" height="15" fill="rgb(229,215,31)" fg:x="59277" fg:w="33"/><text x="39.7001%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (42 samples, 0.03%)</title><rect x="39.4501%" y="677" width="0.0280%" height="15" fill="rgb(221,52,54)" fg:x="59277" fg:w="42"/><text x="39.7001%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (49 samples, 0.03%)</title><rect x="39.4501%" y="693" width="0.0326%" height="15" fill="rgb(252,129,43)" fg:x="59277" fg:w="49"/><text x="39.7001%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (57 samples, 0.04%)</title><rect x="39.4501%" y="709" width="0.0379%" height="15" fill="rgb(248,183,27)" fg:x="59277" fg:w="57"/><text x="39.7001%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (65 samples, 0.04%)</title><rect x="39.4501%" y="725" width="0.0433%" height="15" fill="rgb(250,0,22)" fg:x="59277" fg:w="65"/><text x="39.7001%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (71 samples, 0.05%)</title><rect x="39.4501%" y="741" width="0.0473%" height="15" fill="rgb(213,166,10)" fg:x="59277" fg:w="71"/><text x="39.7001%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (80 samples, 0.05%)</title><rect x="39.4495%" y="757" width="0.0532%" height="15" fill="rgb(207,163,36)" fg:x="59276" fg:w="80"/><text x="39.6995%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (86 samples, 0.06%)</title><rect x="39.4495%" y="773" width="0.0572%" height="15" fill="rgb(208,122,22)" fg:x="59276" fg:w="86"/><text x="39.6995%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (97 samples, 0.06%)</title><rect x="39.4495%" y="789" width="0.0646%" height="15" fill="rgb(207,104,49)" fg:x="59276" fg:w="97"/><text x="39.6995%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (106 samples, 0.07%)</title><rect x="39.4495%" y="805" width="0.0705%" height="15" fill="rgb(248,211,50)" fg:x="59276" fg:w="106"/><text x="39.6995%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (117 samples, 0.08%)</title><rect x="39.4488%" y="821" width="0.0779%" height="15" fill="rgb(217,13,45)" fg:x="59275" fg:w="117"/><text x="39.6988%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (120 samples, 0.08%)</title><rect x="39.4488%" y="837" width="0.0799%" height="15" fill="rgb(211,216,49)" fg:x="59275" fg:w="120"/><text x="39.6988%" y="847.50"></text></g><g><title>InitializeNode::detect_init_independence (125 samples, 0.08%)</title><rect x="39.4488%" y="853" width="0.0832%" height="15" fill="rgb(221,58,53)" fg:x="59275" fg:w="125"/><text x="39.6988%" y="863.50"></text></g><g><title>Node::dominates (17 samples, 0.01%)</title><rect x="39.5333%" y="837" width="0.0113%" height="15" fill="rgb(220,112,41)" fg:x="59402" fg:w="17"/><text x="39.7833%" y="847.50"></text></g><g><title>InitializeNode::detect_init_independence (146 samples, 0.10%)</title><rect x="39.4481%" y="869" width="0.0972%" height="15" fill="rgb(236,38,28)" fg:x="59274" fg:w="146"/><text x="39.6981%" y="879.50"></text></g><g><title>MemNode::all_controls_dominate (20 samples, 0.01%)</title><rect x="39.5320%" y="853" width="0.0133%" height="15" fill="rgb(227,195,22)" fg:x="59400" fg:w="20"/><text x="39.7820%" y="863.50"></text></g><g><title>Node::dominates (17 samples, 0.01%)</title><rect x="39.5453%" y="853" width="0.0113%" height="15" fill="rgb(214,55,33)" fg:x="59420" fg:w="17"/><text x="39.7953%" y="863.50"></text></g><g><title>InitializeNode::detect_init_independence (164 samples, 0.11%)</title><rect x="39.4481%" y="885" width="0.1091%" height="15" fill="rgb(248,80,13)" fg:x="59274" fg:w="164"/><text x="39.6981%" y="895.50"></text></g><g><title>MemNode::all_controls_dominate (18 samples, 0.01%)</title><rect x="39.5453%" y="869" width="0.0120%" height="15" fill="rgb(238,52,6)" fg:x="59420" fg:w="18"/><text x="39.7953%" y="879.50"></text></g><g><title>InitializeNode::can_capture_store (166 samples, 0.11%)</title><rect x="39.4475%" y="917" width="0.1105%" height="15" fill="rgb(224,198,47)" fg:x="59273" fg:w="166"/><text x="39.6975%" y="927.50"></text></g><g><title>InitializeNode::detect_init_independence (165 samples, 0.11%)</title><rect x="39.4481%" y="901" width="0.1098%" height="15" fill="rgb(233,171,20)" fg:x="59274" fg:w="165"/><text x="39.6981%" y="911.50"></text></g><g><title>StoreNode::Ideal (202 samples, 0.13%)</title><rect x="39.4455%" y="933" width="0.1344%" height="15" fill="rgb(241,30,25)" fg:x="59270" fg:w="202"/><text x="39.6955%" y="943.50"></text></g><g><title>MemNode::Ideal_common (33 samples, 0.02%)</title><rect x="39.5580%" y="917" width="0.0220%" height="15" fill="rgb(207,171,38)" fg:x="59439" fg:w="33"/><text x="39.8080%" y="927.50"></text></g><g><title>PhaseIterGVN::transform_old (1,733 samples, 1.15%)</title><rect x="38.4539%" y="949" width="1.1533%" height="15" fill="rgb(234,70,1)" fg:x="57780" fg:w="1733"/><text x="38.7039%" y="959.50"></text></g><g><title>PhaseIterGVN::optimize (1,798 samples, 1.20%)</title><rect x="38.4173%" y="965" width="1.1966%" height="15" fill="rgb(232,178,18)" fg:x="57725" fg:w="1798"/><text x="38.6673%" y="975.50"></text></g><g><title>PhaseMacroExpand::eliminate_macro_nodes (21 samples, 0.01%)</title><rect x="39.6139%" y="965" width="0.0140%" height="15" fill="rgb(241,78,40)" fg:x="59523" fg:w="21"/><text x="39.8639%" y="975.50"></text></g><g><title>PhaseMacroExpand::eliminate_allocate_node (21 samples, 0.01%)</title><rect x="39.6139%" y="949" width="0.0140%" height="15" fill="rgb(222,35,25)" fg:x="59523" fg:w="21"/><text x="39.8639%" y="959.50"></text></g><g><title>IfNode::Ideal (32 samples, 0.02%)</title><rect x="39.6731%" y="917" width="0.0213%" height="15" fill="rgb(207,92,16)" fg:x="59612" fg:w="32"/><text x="39.9231%" y="927.50"></text></g><g><title>PhaseIterGVN::subsume_node (16 samples, 0.01%)</title><rect x="39.7217%" y="917" width="0.0106%" height="15" fill="rgb(216,59,51)" fg:x="59685" fg:w="16"/><text x="39.9717%" y="927.50"></text></g><g><title>PhaseIterGVN::optimize (194 samples, 0.13%)</title><rect x="39.6325%" y="949" width="0.1291%" height="15" fill="rgb(213,80,28)" fg:x="59551" fg:w="194"/><text x="39.8825%" y="959.50"></text></g><g><title>PhaseIterGVN::transform_old (187 samples, 0.12%)</title><rect x="39.6372%" y="933" width="0.1245%" height="15" fill="rgb(220,93,7)" fg:x="59558" fg:w="187"/><text x="39.8872%" y="943.50"></text></g><g><title>PhaseIterGVN::subsume_node (18 samples, 0.01%)</title><rect x="39.7802%" y="933" width="0.0120%" height="15" fill="rgb(225,24,44)" fg:x="59773" fg:w="18"/><text x="40.0302%" y="943.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (17 samples, 0.01%)</title><rect x="39.7809%" y="917" width="0.0113%" height="15" fill="rgb(243,74,40)" fg:x="59774" fg:w="17"/><text x="40.0309%" y="927.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (65 samples, 0.04%)</title><rect x="39.7636%" y="949" width="0.0433%" height="15" fill="rgb(228,39,7)" fg:x="59748" fg:w="65"/><text x="40.0136%" y="959.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (290 samples, 0.19%)</title><rect x="39.6278%" y="965" width="0.1930%" height="15" fill="rgb(227,79,8)" fg:x="59544" fg:w="290"/><text x="39.8778%" y="975.50"></text></g><g><title>Compile::identify_useful_nodes (49 samples, 0.03%)</title><rect x="39.8348%" y="933" width="0.0326%" height="15" fill="rgb(236,58,11)" fg:x="59855" fg:w="49"/><text x="40.0848%" y="943.50"></text></g><g><title>Compile::remove_useless_nodes (43 samples, 0.03%)</title><rect x="39.8674%" y="933" width="0.0286%" height="15" fill="rgb(249,63,35)" fg:x="59904" fg:w="43"/><text x="40.1174%" y="943.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (112 samples, 0.07%)</title><rect x="39.8295%" y="949" width="0.0745%" height="15" fill="rgb(252,114,16)" fg:x="59847" fg:w="112"/><text x="40.0795%" y="959.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (127 samples, 0.08%)</title><rect x="39.8208%" y="965" width="0.0845%" height="15" fill="rgb(254,151,24)" fg:x="59834" fg:w="127"/><text x="40.0708%" y="975.50"></text></g><g><title>Compile::Optimize (13,752 samples, 9.15%)</title><rect x="30.7571%" y="981" width="9.1523%" height="15" fill="rgb(253,54,39)" fg:x="46215" fg:w="13752"/><text x="31.0071%" y="991.50">Compile::Opti..</text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="39.9340%" y="837" width="0.0180%" height="15" fill="rgb(243,25,45)" fg:x="60004" fg:w="27"/><text x="40.1840%" y="847.50"></text></g><g><title>Parse::do_field_access (24 samples, 0.02%)</title><rect x="39.9546%" y="837" width="0.0160%" height="15" fill="rgb(234,134,9)" fg:x="60035" fg:w="24"/><text x="40.2046%" y="847.50"></text></g><g><title>Parse::do_if (18 samples, 0.01%)</title><rect x="39.9706%" y="837" width="0.0120%" height="15" fill="rgb(227,166,31)" fg:x="60059" fg:w="18"/><text x="40.2206%" y="847.50"></text></g><g><title>Parse::do_one_block (123 samples, 0.08%)</title><rect x="39.9133%" y="869" width="0.0819%" height="15" fill="rgb(245,143,41)" fg:x="59973" fg:w="123"/><text x="40.1633%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (112 samples, 0.07%)</title><rect x="39.9207%" y="853" width="0.0745%" height="15" fill="rgb(238,181,32)" fg:x="59984" fg:w="112"/><text x="40.1707%" y="863.50"></text></g><g><title>Parse::do_all_blocks (124 samples, 0.08%)</title><rect x="39.9133%" y="885" width="0.0825%" height="15" fill="rgb(224,113,18)" fg:x="59973" fg:w="124"/><text x="40.1633%" y="895.50"></text></g><g><title>ParseGenerator::generate (131 samples, 0.09%)</title><rect x="39.9133%" y="917" width="0.0872%" height="15" fill="rgb(240,229,28)" fg:x="59973" fg:w="131"/><text x="40.1633%" y="927.50"></text></g><g><title>Parse::Parse (131 samples, 0.09%)</title><rect x="39.9133%" y="901" width="0.0872%" height="15" fill="rgb(250,185,3)" fg:x="59973" fg:w="131"/><text x="40.1633%" y="911.50"></text></g><g><title>CompileBroker::compiler_thread_loop (148 samples, 0.10%)</title><rect x="39.9100%" y="981" width="0.0985%" height="15" fill="rgb(212,59,25)" fg:x="59968" fg:w="148"/><text x="40.1600%" y="991.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (148 samples, 0.10%)</title><rect x="39.9100%" y="965" width="0.0985%" height="15" fill="rgb(221,87,20)" fg:x="59968" fg:w="148"/><text x="40.1600%" y="975.50"></text></g><g><title>C2Compiler::compile_method (148 samples, 0.10%)</title><rect x="39.9100%" y="949" width="0.0985%" height="15" fill="rgb(213,74,28)" fg:x="59968" fg:w="148"/><text x="40.1600%" y="959.50"></text></g><g><title>Compile::Compile (148 samples, 0.10%)</title><rect x="39.9100%" y="933" width="0.0985%" height="15" fill="rgb(224,132,34)" fg:x="59968" fg:w="148"/><text x="40.1600%" y="943.50"></text></g><g><title>ciField::ciField (18 samples, 0.01%)</title><rect x="40.0092%" y="757" width="0.0120%" height="15" fill="rgb(222,101,24)" fg:x="60117" fg:w="18"/><text x="40.2592%" y="767.50"></text></g><g><title>ciEnv::get_field_by_index (19 samples, 0.01%)</title><rect x="40.0092%" y="773" width="0.0126%" height="15" fill="rgb(254,142,4)" fg:x="60117" fg:w="19"/><text x="40.2592%" y="783.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (21 samples, 0.01%)</title><rect x="40.0092%" y="805" width="0.0140%" height="15" fill="rgb(230,229,49)" fg:x="60117" fg:w="21"/><text x="40.2592%" y="815.50"></text></g><g><title>ciBytecodeStream::get_field (21 samples, 0.01%)</title><rect x="40.0092%" y="789" width="0.0140%" height="15" fill="rgb(238,70,47)" fg:x="60117" fg:w="21"/><text x="40.2592%" y="799.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (21 samples, 0.01%)</title><rect x="40.0232%" y="805" width="0.0140%" height="15" fill="rgb(231,160,17)" fg:x="60138" fg:w="21"/><text x="40.2732%" y="815.50"></text></g><g><title>ciBytecodeStream::get_method (21 samples, 0.01%)</title><rect x="40.0232%" y="789" width="0.0140%" height="15" fill="rgb(218,68,53)" fg:x="60138" fg:w="21"/><text x="40.2732%" y="799.50"></text></g><g><title>ciEnv::get_method_by_index_impl (20 samples, 0.01%)</title><rect x="40.0238%" y="773" width="0.0133%" height="15" fill="rgb(236,111,10)" fg:x="60139" fg:w="20"/><text x="40.2738%" y="783.50"></text></g><g><title>ciObjectFactory::get_metadata (16 samples, 0.01%)</title><rect x="40.0265%" y="757" width="0.0106%" height="15" fill="rgb(224,34,41)" fg:x="60143" fg:w="16"/><text x="40.2765%" y="767.50"></text></g><g><title>ciTypeFlow::df_flow_types (46 samples, 0.03%)</title><rect x="40.0085%" y="853" width="0.0306%" height="15" fill="rgb(241,118,19)" fg:x="60116" fg:w="46"/><text x="40.2585%" y="863.50"></text></g><g><title>ciTypeFlow::flow_block (46 samples, 0.03%)</title><rect x="40.0085%" y="837" width="0.0306%" height="15" fill="rgb(238,129,25)" fg:x="60116" fg:w="46"/><text x="40.2585%" y="847.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (46 samples, 0.03%)</title><rect x="40.0085%" y="821" width="0.0306%" height="15" fill="rgb(238,22,31)" fg:x="60116" fg:w="46"/><text x="40.2585%" y="831.50"></text></g><g><title>CallGenerator::for_inline (48 samples, 0.03%)</title><rect x="40.0085%" y="933" width="0.0319%" height="15" fill="rgb(222,174,48)" fg:x="60116" fg:w="48"/><text x="40.2585%" y="943.50"></text></g><g><title>InlineTree::check_can_parse (48 samples, 0.03%)</title><rect x="40.0085%" y="917" width="0.0319%" height="15" fill="rgb(206,152,40)" fg:x="60116" fg:w="48"/><text x="40.2585%" y="927.50"></text></g><g><title>ciMethod::get_flow_analysis (48 samples, 0.03%)</title><rect x="40.0085%" y="901" width="0.0319%" height="15" fill="rgb(218,99,54)" fg:x="60116" fg:w="48"/><text x="40.2585%" y="911.50"></text></g><g><title>ciTypeFlow::do_flow (48 samples, 0.03%)</title><rect x="40.0085%" y="885" width="0.0319%" height="15" fill="rgb(220,174,26)" fg:x="60116" fg:w="48"/><text x="40.2585%" y="895.50"></text></g><g><title>ciTypeFlow::flow_types (48 samples, 0.03%)</title><rect x="40.0085%" y="869" width="0.0319%" height="15" fill="rgb(245,116,9)" fg:x="60116" fg:w="48"/><text x="40.2585%" y="879.50"></text></g><g><title>InlineTree::try_to_inline (16 samples, 0.01%)</title><rect x="40.0744%" y="805" width="0.0106%" height="15" fill="rgb(209,72,35)" fg:x="60215" fg:w="16"/><text x="40.3244%" y="815.50"></text></g><g><title>InlineTree::ok_to_inline (47 samples, 0.03%)</title><rect x="40.0724%" y="821" width="0.0313%" height="15" fill="rgb(226,126,21)" fg:x="60212" fg:w="47"/><text x="40.3224%" y="831.50"></text></g><g><title>ciMethod::get_flow_analysis (28 samples, 0.02%)</title><rect x="40.0851%" y="805" width="0.0186%" height="15" fill="rgb(227,192,1)" fg:x="60231" fg:w="28"/><text x="40.3351%" y="815.50"></text></g><g><title>ciTypeFlow::do_flow (19 samples, 0.01%)</title><rect x="40.0910%" y="789" width="0.0126%" height="15" fill="rgb(237,180,29)" fg:x="60240" fg:w="19"/><text x="40.3410%" y="799.50"></text></g><g><title>ciTypeFlow::flow_types (19 samples, 0.01%)</title><rect x="40.0910%" y="773" width="0.0126%" height="15" fill="rgb(230,197,35)" fg:x="60240" fg:w="19"/><text x="40.3410%" y="783.50"></text></g><g><title>Compile::call_generator (57 samples, 0.04%)</title><rect x="40.0684%" y="837" width="0.0379%" height="15" fill="rgb(246,193,31)" fg:x="60206" fg:w="57"/><text x="40.3184%" y="847.50"></text></g><g><title>GraphKit::round_double_arguments (17 samples, 0.01%)</title><rect x="40.1243%" y="837" width="0.0113%" height="15" fill="rgb(241,36,4)" fg:x="60290" fg:w="17"/><text x="40.3743%" y="847.50"></text></g><g><title>TypeFunc::make (17 samples, 0.01%)</title><rect x="40.1243%" y="821" width="0.0113%" height="15" fill="rgb(241,130,17)" fg:x="60290" fg:w="17"/><text x="40.3743%" y="831.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="40.1829%" y="757" width="0.0113%" height="15" fill="rgb(206,137,32)" fg:x="60378" fg:w="17"/><text x="40.4329%" y="767.50"></text></g><g><title>Parse::do_field_access (20 samples, 0.01%)</title><rect x="40.1949%" y="757" width="0.0133%" height="15" fill="rgb(237,228,51)" fg:x="60396" fg:w="20"/><text x="40.4449%" y="767.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.06%)</title><rect x="40.1636%" y="789" width="0.0639%" height="15" fill="rgb(243,6,42)" fg:x="60349" fg:w="96"/><text x="40.4136%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (86 samples, 0.06%)</title><rect x="40.1702%" y="773" width="0.0572%" height="15" fill="rgb(251,74,28)" fg:x="60359" fg:w="86"/><text x="40.4202%" y="783.50"></text></g><g><title>Parse::do_all_blocks (110 samples, 0.07%)</title><rect x="40.1629%" y="805" width="0.0732%" height="15" fill="rgb(218,20,49)" fg:x="60348" fg:w="110"/><text x="40.4129%" y="815.50"></text></g><g><title>Parse::do_exits (17 samples, 0.01%)</title><rect x="40.2361%" y="805" width="0.0113%" height="15" fill="rgb(238,28,14)" fg:x="60458" fg:w="17"/><text x="40.4861%" y="815.50"></text></g><g><title>ParseGenerator::generate (168 samples, 0.11%)</title><rect x="40.1456%" y="837" width="0.1118%" height="15" fill="rgb(229,40,46)" fg:x="60322" fg:w="168"/><text x="40.3956%" y="847.50"></text></g><g><title>Parse::Parse (168 samples, 0.11%)</title><rect x="40.1456%" y="821" width="0.1118%" height="15" fill="rgb(244,195,20)" fg:x="60322" fg:w="168"/><text x="40.3956%" y="831.50"></text></g><g><title>PredictedCallGenerator::generate (38 samples, 0.03%)</title><rect x="40.2574%" y="837" width="0.0253%" height="15" fill="rgb(253,56,35)" fg:x="60490" fg:w="38"/><text x="40.5074%" y="847.50"></text></g><g><title>Parse::do_call (342 samples, 0.23%)</title><rect x="40.0684%" y="853" width="0.2276%" height="15" fill="rgb(210,149,44)" fg:x="60206" fg:w="342"/><text x="40.3184%" y="863.50"></text></g><g><title>GraphKit::access_load_at (22 samples, 0.01%)</title><rect x="40.3147%" y="821" width="0.0146%" height="15" fill="rgb(240,135,12)" fg:x="60576" fg:w="22"/><text x="40.5647%" y="831.50"></text></g><g><title>BarrierSetC2::load_at (22 samples, 0.01%)</title><rect x="40.3147%" y="805" width="0.0146%" height="15" fill="rgb(251,24,50)" fg:x="60576" fg:w="22"/><text x="40.5647%" y="815.50"></text></g><g><title>G1BarrierSetC2::load_at_resolved (22 samples, 0.01%)</title><rect x="40.3147%" y="789" width="0.0146%" height="15" fill="rgb(243,200,47)" fg:x="60576" fg:w="22"/><text x="40.5647%" y="799.50"></text></g><g><title>BarrierSetC2::load_at_resolved (22 samples, 0.01%)</title><rect x="40.3147%" y="773" width="0.0146%" height="15" fill="rgb(224,166,26)" fg:x="60576" fg:w="22"/><text x="40.5647%" y="783.50"></text></g><g><title>GraphKit::make_load (21 samples, 0.01%)</title><rect x="40.3153%" y="757" width="0.0140%" height="15" fill="rgb(233,0,47)" fg:x="60577" fg:w="21"/><text x="40.5653%" y="767.50"></text></g><g><title>Parse::do_get_xxx (34 samples, 0.02%)</title><rect x="40.3093%" y="837" width="0.0226%" height="15" fill="rgb(253,80,5)" fg:x="60568" fg:w="34"/><text x="40.5593%" y="847.50"></text></g><g><title>GraphKit::access_store_at (18 samples, 0.01%)</title><rect x="40.3320%" y="821" width="0.0120%" height="15" fill="rgb(214,133,25)" fg:x="60602" fg:w="18"/><text x="40.5820%" y="831.50"></text></g><g><title>BarrierSetC2::store_at (18 samples, 0.01%)</title><rect x="40.3320%" y="805" width="0.0120%" height="15" fill="rgb(209,27,14)" fg:x="60602" fg:w="18"/><text x="40.5820%" y="815.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (17 samples, 0.01%)</title><rect x="40.3326%" y="789" width="0.0113%" height="15" fill="rgb(219,102,51)" fg:x="60603" fg:w="17"/><text x="40.5826%" y="799.50"></text></g><g><title>Parse::do_put_xxx (19 samples, 0.01%)</title><rect x="40.3320%" y="837" width="0.0126%" height="15" fill="rgb(237,18,16)" fg:x="60602" fg:w="19"/><text x="40.5820%" y="847.50"></text></g><g><title>Parse::do_field_access (65 samples, 0.04%)</title><rect x="40.3040%" y="853" width="0.0433%" height="15" fill="rgb(241,85,17)" fg:x="60560" fg:w="65"/><text x="40.5540%" y="863.50"></text></g><g><title>Parse::do_if (16 samples, 0.01%)</title><rect x="40.3473%" y="853" width="0.0106%" height="15" fill="rgb(236,90,42)" fg:x="60625" fg:w="16"/><text x="40.5973%" y="863.50"></text></g><g><title>Parse::do_all_blocks (502 samples, 0.33%)</title><rect x="40.0451%" y="901" width="0.3341%" height="15" fill="rgb(249,57,21)" fg:x="60171" fg:w="502"/><text x="40.2951%" y="911.50"></text></g><g><title>Parse::do_one_block (501 samples, 0.33%)</title><rect x="40.0458%" y="885" width="0.3334%" height="15" fill="rgb(243,12,36)" fg:x="60172" fg:w="501"/><text x="40.2958%" y="895.50"></text></g><g><title>Parse::do_one_bytecode (496 samples, 0.33%)</title><rect x="40.0491%" y="869" width="0.3301%" height="15" fill="rgb(253,128,47)" fg:x="60177" fg:w="496"/><text x="40.2991%" y="879.50"></text></g><g><title>ParseGenerator::generate (509 samples, 0.34%)</title><rect x="40.0451%" y="933" width="0.3388%" height="15" fill="rgb(207,33,20)" fg:x="60171" fg:w="509"/><text x="40.2951%" y="943.50"></text></g><g><title>Parse::Parse (509 samples, 0.34%)</title><rect x="40.0451%" y="917" width="0.3388%" height="15" fill="rgb(233,215,35)" fg:x="60171" fg:w="509"/><text x="40.2951%" y="927.50"></text></g><g><title>CodeBuffer::copy_code_to (16 samples, 0.01%)</title><rect x="40.3839%" y="885" width="0.0106%" height="15" fill="rgb(249,188,52)" fg:x="60680" fg:w="16"/><text x="40.6339%" y="895.50"></text></g><g><title>CodeBuffer::relocate_code_to (16 samples, 0.01%)</title><rect x="40.3839%" y="869" width="0.0106%" height="15" fill="rgb(225,12,32)" fg:x="60680" fg:w="16"/><text x="40.6339%" y="879.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (586 samples, 0.39%)</title><rect x="40.0085%" y="981" width="0.3900%" height="15" fill="rgb(247,98,14)" fg:x="60116" fg:w="586"/><text x="40.2585%" y="991.50"></text></g><g><title>C2Compiler::compile_method (586 samples, 0.39%)</title><rect x="40.0085%" y="965" width="0.3900%" height="15" fill="rgb(247,219,48)" fg:x="60116" fg:w="586"/><text x="40.2585%" y="975.50"></text></g><g><title>Compile::Compile (586 samples, 0.39%)</title><rect x="40.0085%" y="949" width="0.3900%" height="15" fill="rgb(253,60,48)" fg:x="60116" fg:w="586"/><text x="40.2585%" y="959.50"></text></g><g><title>ciEnv::register_method (22 samples, 0.01%)</title><rect x="40.3839%" y="933" width="0.0146%" height="15" fill="rgb(245,15,52)" fg:x="60680" fg:w="22"/><text x="40.6339%" y="943.50"></text></g><g><title>nmethod::new_nmethod (22 samples, 0.01%)</title><rect x="40.3839%" y="917" width="0.0146%" height="15" fill="rgb(220,133,28)" fg:x="60680" fg:w="22"/><text x="40.6339%" y="927.50"></text></g><g><title>nmethod::nmethod (22 samples, 0.01%)</title><rect x="40.3839%" y="901" width="0.0146%" height="15" fill="rgb(217,180,4)" fg:x="60680" fg:w="22"/><text x="40.6339%" y="911.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="40.4265%" y="853" width="0.0186%" height="15" fill="rgb(251,24,1)" fg:x="60744" fg:w="28"/><text x="40.6765%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="40.4271%" y="837" width="0.0180%" height="15" fill="rgb(212,185,49)" fg:x="60745" fg:w="27"/><text x="40.6771%" y="847.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="40.4258%" y="869" width="0.0226%" height="15" fill="rgb(215,175,22)" fg:x="60743" fg:w="34"/><text x="40.6758%" y="879.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.03%)</title><rect x="40.4251%" y="901" width="0.0293%" height="15" fill="rgb(250,205,14)" fg:x="60742" fg:w="44"/><text x="40.6751%" y="911.50"></text></g><g><title>Parse::Parse (44 samples, 0.03%)</title><rect x="40.4251%" y="885" width="0.0293%" height="15" fill="rgb(225,211,22)" fg:x="60742" fg:w="44"/><text x="40.6751%" y="895.50"></text></g><g><title>JavaThread::thread_main_inner (52 samples, 0.03%)</title><rect x="40.4225%" y="981" width="0.0346%" height="15" fill="rgb(251,179,42)" fg:x="60738" fg:w="52"/><text x="40.6725%" y="991.50"></text></g><g><title>CompileBroker::compiler_thread_loop (52 samples, 0.03%)</title><rect x="40.4225%" y="965" width="0.0346%" height="15" fill="rgb(208,216,51)" fg:x="60738" fg:w="52"/><text x="40.6725%" y="975.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (52 samples, 0.03%)</title><rect x="40.4225%" y="949" width="0.0346%" height="15" fill="rgb(235,36,11)" fg:x="60738" fg:w="52"/><text x="40.6725%" y="959.50"></text></g><g><title>C2Compiler::compile_method (52 samples, 0.03%)</title><rect x="40.4225%" y="933" width="0.0346%" height="15" fill="rgb(213,189,28)" fg:x="60738" fg:w="52"/><text x="40.6725%" y="943.50"></text></g><g><title>Compile::Compile (52 samples, 0.03%)</title><rect x="40.4225%" y="917" width="0.0346%" height="15" fill="rgb(227,203,42)" fg:x="60738" fg:w="52"/><text x="40.6725%" y="927.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="40.4624%" y="421" width="0.0133%" height="15" fill="rgb(244,72,36)" fg:x="60798" fg:w="20"/><text x="40.7124%" y="431.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="40.4624%" y="405" width="0.0133%" height="15" fill="rgb(213,53,17)" fg:x="60798" fg:w="20"/><text x="40.7124%" y="415.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="40.4624%" y="389" width="0.0133%" height="15" fill="rgb(207,167,3)" fg:x="60798" fg:w="20"/><text x="40.7124%" y="399.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="40.4624%" y="373" width="0.0133%" height="15" fill="rgb(216,98,30)" fg:x="60798" fg:w="20"/><text x="40.7124%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="40.4624%" y="357" width="0.0133%" height="15" fill="rgb(236,123,15)" fg:x="60798" fg:w="20"/><text x="40.7124%" y="367.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="40.4624%" y="341" width="0.0133%" height="15" fill="rgb(248,81,50)" fg:x="60798" fg:w="20"/><text x="40.7124%" y="351.50"></text></g><g><title>ParseGenerator::generate (19 samples, 0.01%)</title><rect x="40.4631%" y="325" width="0.0126%" height="15" fill="rgb(214,120,4)" fg:x="60799" fg:w="19"/><text x="40.7131%" y="335.50"></text></g><g><title>Parse::Parse (19 samples, 0.01%)</title><rect x="40.4631%" y="309" width="0.0126%" height="15" fill="rgb(208,179,34)" fg:x="60799" fg:w="19"/><text x="40.7131%" y="319.50"></text></g><g><title>Parse::do_all_blocks (19 samples, 0.01%)</title><rect x="40.4631%" y="293" width="0.0126%" height="15" fill="rgb(227,140,7)" fg:x="60799" fg:w="19"/><text x="40.7131%" y="303.50"></text></g><g><title>Parse::do_one_block (19 samples, 0.01%)</title><rect x="40.4631%" y="277" width="0.0126%" height="15" fill="rgb(214,22,6)" fg:x="60799" fg:w="19"/><text x="40.7131%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (19 samples, 0.01%)</title><rect x="40.4631%" y="261" width="0.0126%" height="15" fill="rgb(207,137,27)" fg:x="60799" fg:w="19"/><text x="40.7131%" y="271.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="40.4624%" y="517" width="0.0140%" height="15" fill="rgb(210,8,46)" fg:x="60798" fg:w="21"/><text x="40.7124%" y="527.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="40.4624%" y="501" width="0.0140%" height="15" fill="rgb(240,16,54)" fg:x="60798" fg:w="21"/><text x="40.7124%" y="511.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="40.4624%" y="485" width="0.0140%" height="15" fill="rgb(211,209,29)" fg:x="60798" fg:w="21"/><text x="40.7124%" y="495.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="40.4624%" y="469" width="0.0140%" height="15" fill="rgb(226,228,24)" fg:x="60798" fg:w="21"/><text x="40.7124%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="40.4624%" y="453" width="0.0140%" height="15" fill="rgb(222,84,9)" fg:x="60798" fg:w="21"/><text x="40.7124%" y="463.50"></text></g><g><title>Parse::do_call (21 samples, 0.01%)</title><rect x="40.4624%" y="437" width="0.0140%" height="15" fill="rgb(234,203,30)" fg:x="60798" fg:w="21"/><text x="40.7124%" y="447.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="40.4624%" y="613" width="0.0160%" height="15" fill="rgb(238,109,14)" fg:x="60798" fg:w="24"/><text x="40.7124%" y="623.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="40.4624%" y="597" width="0.0160%" height="15" fill="rgb(233,206,34)" fg:x="60798" fg:w="24"/><text x="40.7124%" y="607.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="40.4624%" y="581" width="0.0160%" height="15" fill="rgb(220,167,47)" fg:x="60798" fg:w="24"/><text x="40.7124%" y="591.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="40.4624%" y="565" width="0.0160%" height="15" fill="rgb(238,105,10)" fg:x="60798" fg:w="24"/><text x="40.7124%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="40.4624%" y="549" width="0.0160%" height="15" fill="rgb(213,227,17)" fg:x="60798" fg:w="24"/><text x="40.7124%" y="559.50"></text></g><g><title>Parse::do_call (24 samples, 0.02%)</title><rect x="40.4624%" y="533" width="0.0160%" height="15" fill="rgb(217,132,38)" fg:x="60798" fg:w="24"/><text x="40.7124%" y="543.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.02%)</title><rect x="40.4624%" y="805" width="0.0173%" height="15" fill="rgb(242,146,4)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="815.50"></text></g><g><title>Parse::Parse (26 samples, 0.02%)</title><rect x="40.4624%" y="789" width="0.0173%" height="15" fill="rgb(212,61,9)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="799.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="40.4624%" y="773" width="0.0173%" height="15" fill="rgb(247,126,22)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="783.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="40.4624%" y="757" width="0.0173%" height="15" fill="rgb(220,196,2)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="40.4624%" y="741" width="0.0173%" height="15" fill="rgb(208,46,4)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="751.50"></text></g><g><title>Parse::do_call (26 samples, 0.02%)</title><rect x="40.4624%" y="725" width="0.0173%" height="15" fill="rgb(252,104,46)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="735.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.02%)</title><rect x="40.4624%" y="709" width="0.0173%" height="15" fill="rgb(237,152,48)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="719.50"></text></g><g><title>Parse::Parse (26 samples, 0.02%)</title><rect x="40.4624%" y="693" width="0.0173%" height="15" fill="rgb(221,59,37)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="703.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="40.4624%" y="677" width="0.0173%" height="15" fill="rgb(209,202,51)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="687.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="40.4624%" y="661" width="0.0173%" height="15" fill="rgb(228,81,30)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="40.4624%" y="645" width="0.0173%" height="15" fill="rgb(227,42,39)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="655.50"></text></g><g><title>Parse::do_call (26 samples, 0.02%)</title><rect x="40.4624%" y="629" width="0.0173%" height="15" fill="rgb(221,26,2)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="639.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="40.4624%" y="901" width="0.0180%" height="15" fill="rgb(254,61,31)" fg:x="60798" fg:w="27"/><text x="40.7124%" y="911.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="40.4624%" y="885" width="0.0180%" height="15" fill="rgb(222,173,38)" fg:x="60798" fg:w="27"/><text x="40.7124%" y="895.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="40.4624%" y="869" width="0.0180%" height="15" fill="rgb(218,50,12)" fg:x="60798" fg:w="27"/><text x="40.7124%" y="879.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="40.4624%" y="853" width="0.0180%" height="15" fill="rgb(223,88,40)" fg:x="60798" fg:w="27"/><text x="40.7124%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="40.4624%" y="837" width="0.0180%" height="15" fill="rgb(237,54,19)" fg:x="60798" fg:w="27"/><text x="40.7124%" y="847.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="40.4624%" y="821" width="0.0180%" height="15" fill="rgb(251,129,25)" fg:x="60798" fg:w="27"/><text x="40.7124%" y="831.50"></text></g><g><title>Parse::Parse (30 samples, 0.02%)</title><rect x="40.4624%" y="981" width="0.0200%" height="15" fill="rgb(238,97,19)" fg:x="60798" fg:w="30"/><text x="40.7124%" y="991.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.02%)</title><rect x="40.4624%" y="965" width="0.0200%" height="15" fill="rgb(240,169,18)" fg:x="60798" fg:w="30"/><text x="40.7124%" y="975.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.02%)</title><rect x="40.4624%" y="949" width="0.0200%" height="15" fill="rgb(230,187,49)" fg:x="60798" fg:w="30"/><text x="40.7124%" y="959.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.02%)</title><rect x="40.4624%" y="933" width="0.0200%" height="15" fill="rgb(209,44,26)" fg:x="60798" fg:w="30"/><text x="40.7124%" y="943.50"></text></g><g><title>Parse::do_call (30 samples, 0.02%)</title><rect x="40.4624%" y="917" width="0.0200%" height="15" fill="rgb(244,0,6)" fg:x="60798" fg:w="30"/><text x="40.7124%" y="927.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="40.4857%" y="261" width="0.0113%" height="15" fill="rgb(248,18,21)" fg:x="60833" fg:w="17"/><text x="40.7357%" y="271.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="40.4824%" y="533" width="0.0166%" height="15" fill="rgb(245,180,19)" fg:x="60828" fg:w="25"/><text x="40.7324%" y="543.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="40.4824%" y="517" width="0.0166%" height="15" fill="rgb(252,118,36)" fg:x="60828" fg:w="25"/><text x="40.7324%" y="527.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.02%)</title><rect x="40.4824%" y="501" width="0.0166%" height="15" fill="rgb(210,224,19)" fg:x="60828" fg:w="25"/><text x="40.7324%" y="511.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.02%)</title><rect x="40.4824%" y="485" width="0.0166%" height="15" fill="rgb(218,30,24)" fg:x="60828" fg:w="25"/><text x="40.7324%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.02%)</title><rect x="40.4824%" y="469" width="0.0166%" height="15" fill="rgb(219,75,50)" fg:x="60828" fg:w="25"/><text x="40.7324%" y="479.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="40.4824%" y="453" width="0.0166%" height="15" fill="rgb(234,72,50)" fg:x="60828" fg:w="25"/><text x="40.7324%" y="463.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="40.4837%" y="437" width="0.0153%" height="15" fill="rgb(219,100,48)" fg:x="60830" fg:w="23"/><text x="40.7337%" y="447.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="40.4837%" y="421" width="0.0153%" height="15" fill="rgb(253,5,41)" fg:x="60830" fg:w="23"/><text x="40.7337%" y="431.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="40.4837%" y="405" width="0.0153%" height="15" fill="rgb(247,181,11)" fg:x="60830" fg:w="23"/><text x="40.7337%" y="415.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="40.4837%" y="389" width="0.0153%" height="15" fill="rgb(222,223,25)" fg:x="60830" fg:w="23"/><text x="40.7337%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="40.4837%" y="373" width="0.0153%" height="15" fill="rgb(214,198,28)" fg:x="60830" fg:w="23"/><text x="40.7337%" y="383.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="40.4837%" y="357" width="0.0153%" height="15" fill="rgb(230,46,43)" fg:x="60830" fg:w="23"/><text x="40.7337%" y="367.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="40.4850%" y="341" width="0.0140%" height="15" fill="rgb(233,65,53)" fg:x="60832" fg:w="21"/><text x="40.7350%" y="351.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="40.4850%" y="325" width="0.0140%" height="15" fill="rgb(221,121,27)" fg:x="60832" fg:w="21"/><text x="40.7350%" y="335.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="40.4850%" y="309" width="0.0140%" height="15" fill="rgb(247,70,47)" fg:x="60832" fg:w="21"/><text x="40.7350%" y="319.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="40.4850%" y="293" width="0.0140%" height="15" fill="rgb(228,85,35)" fg:x="60832" fg:w="21"/><text x="40.7350%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="40.4850%" y="277" width="0.0140%" height="15" fill="rgb(209,50,18)" fg:x="60832" fg:w="21"/><text x="40.7350%" y="287.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="40.4824%" y="629" width="0.0186%" height="15" fill="rgb(250,19,35)" fg:x="60828" fg:w="28"/><text x="40.7324%" y="639.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="40.4824%" y="613" width="0.0186%" height="15" fill="rgb(253,107,29)" fg:x="60828" fg:w="28"/><text x="40.7324%" y="623.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="40.4824%" y="597" width="0.0186%" height="15" fill="rgb(252,179,29)" fg:x="60828" fg:w="28"/><text x="40.7324%" y="607.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="40.4824%" y="581" width="0.0186%" height="15" fill="rgb(238,194,6)" fg:x="60828" fg:w="28"/><text x="40.7324%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="40.4824%" y="565" width="0.0186%" height="15" fill="rgb(238,164,29)" fg:x="60828" fg:w="28"/><text x="40.7324%" y="575.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="40.4824%" y="549" width="0.0186%" height="15" fill="rgb(224,25,9)" fg:x="60828" fg:w="28"/><text x="40.7324%" y="559.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.02%)</title><rect x="40.4824%" y="725" width="0.0193%" height="15" fill="rgb(244,153,23)" fg:x="60828" fg:w="29"/><text x="40.7324%" y="735.50"></text></g><g><title>Parse::Parse (29 samples, 0.02%)</title><rect x="40.4824%" y="709" width="0.0193%" height="15" fill="rgb(212,203,14)" fg:x="60828" fg:w="29"/><text x="40.7324%" y="719.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.02%)</title><rect x="40.4824%" y="693" width="0.0193%" height="15" fill="rgb(220,164,20)" fg:x="60828" fg:w="29"/><text x="40.7324%" y="703.50"></text></g><g><title>Parse::do_one_block (29 samples, 0.02%)</title><rect x="40.4824%" y="677" width="0.0193%" height="15" fill="rgb(222,203,48)" fg:x="60828" fg:w="29"/><text x="40.7324%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.02%)</title><rect x="40.4824%" y="661" width="0.0193%" height="15" fill="rgb(215,159,22)" fg:x="60828" fg:w="29"/><text x="40.7324%" y="671.50"></text></g><g><title>Parse::do_call (29 samples, 0.02%)</title><rect x="40.4824%" y="645" width="0.0193%" height="15" fill="rgb(216,183,47)" fg:x="60828" fg:w="29"/><text x="40.7324%" y="655.50"></text></g><g><title>ParseGenerator::generate (31 samples, 0.02%)</title><rect x="40.4824%" y="821" width="0.0206%" height="15" fill="rgb(229,195,25)" fg:x="60828" fg:w="31"/><text x="40.7324%" y="831.50"></text></g><g><title>Parse::Parse (31 samples, 0.02%)</title><rect x="40.4824%" y="805" width="0.0206%" height="15" fill="rgb(224,132,51)" fg:x="60828" fg:w="31"/><text x="40.7324%" y="815.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.02%)</title><rect x="40.4824%" y="789" width="0.0206%" height="15" fill="rgb(240,63,7)" fg:x="60828" fg:w="31"/><text x="40.7324%" y="799.50"></text></g><g><title>Parse::do_one_block (31 samples, 0.02%)</title><rect x="40.4824%" y="773" width="0.0206%" height="15" fill="rgb(249,182,41)" fg:x="60828" fg:w="31"/><text x="40.7324%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.02%)</title><rect x="40.4824%" y="757" width="0.0206%" height="15" fill="rgb(243,47,26)" fg:x="60828" fg:w="31"/><text x="40.7324%" y="767.50"></text></g><g><title>Parse::do_call (31 samples, 0.02%)</title><rect x="40.4824%" y="741" width="0.0206%" height="15" fill="rgb(233,48,2)" fg:x="60828" fg:w="31"/><text x="40.7324%" y="751.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.02%)</title><rect x="40.4824%" y="917" width="0.0220%" height="15" fill="rgb(244,165,34)" fg:x="60828" fg:w="33"/><text x="40.7324%" y="927.50"></text></g><g><title>Parse::Parse (33 samples, 0.02%)</title><rect x="40.4824%" y="901" width="0.0220%" height="15" fill="rgb(207,89,7)" fg:x="60828" fg:w="33"/><text x="40.7324%" y="911.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="40.4824%" y="885" width="0.0220%" height="15" fill="rgb(244,117,36)" fg:x="60828" fg:w="33"/><text x="40.7324%" y="895.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.02%)</title><rect x="40.4824%" y="869" width="0.0220%" height="15" fill="rgb(226,144,34)" fg:x="60828" fg:w="33"/><text x="40.7324%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="40.4824%" y="853" width="0.0220%" height="15" fill="rgb(213,23,19)" fg:x="60828" fg:w="33"/><text x="40.7324%" y="863.50"></text></g><g><title>Parse::do_call (33 samples, 0.02%)</title><rect x="40.4824%" y="837" width="0.0220%" height="15" fill="rgb(217,75,12)" fg:x="60828" fg:w="33"/><text x="40.7324%" y="847.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.02%)</title><rect x="40.4824%" y="981" width="0.0246%" height="15" fill="rgb(224,159,17)" fg:x="60828" fg:w="37"/><text x="40.7324%" y="991.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.02%)</title><rect x="40.4824%" y="965" width="0.0246%" height="15" fill="rgb(217,118,1)" fg:x="60828" fg:w="37"/><text x="40.7324%" y="975.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.02%)</title><rect x="40.4824%" y="949" width="0.0246%" height="15" fill="rgb(232,180,48)" fg:x="60828" fg:w="37"/><text x="40.7324%" y="959.50"></text></g><g><title>Parse::do_call (37 samples, 0.02%)</title><rect x="40.4824%" y="933" width="0.0246%" height="15" fill="rgb(230,27,33)" fg:x="60828" fg:w="37"/><text x="40.7324%" y="943.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="40.5170%" y="213" width="0.0106%" height="15" fill="rgb(205,31,21)" fg:x="60880" fg:w="16"/><text x="40.7670%" y="223.50"></text></g><g><title>Parse::do_call (37 samples, 0.02%)</title><rect x="40.5110%" y="309" width="0.0246%" height="15" fill="rgb(253,59,4)" fg:x="60871" fg:w="37"/><text x="40.7610%" y="319.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.02%)</title><rect x="40.5123%" y="293" width="0.0233%" height="15" fill="rgb(224,201,9)" fg:x="60873" fg:w="35"/><text x="40.7623%" y="303.50"></text></g><g><title>Parse::Parse (35 samples, 0.02%)</title><rect x="40.5123%" y="277" width="0.0233%" height="15" fill="rgb(229,206,30)" fg:x="60873" fg:w="35"/><text x="40.7623%" y="287.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="40.5130%" y="261" width="0.0226%" height="15" fill="rgb(212,67,47)" fg:x="60874" fg:w="34"/><text x="40.7630%" y="271.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="40.5130%" y="245" width="0.0226%" height="15" fill="rgb(211,96,50)" fg:x="60874" fg:w="34"/><text x="40.7630%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="40.5136%" y="229" width="0.0220%" height="15" fill="rgb(252,114,18)" fg:x="60875" fg:w="33"/><text x="40.7636%" y="239.50"></text></g><g><title>ParseGenerator::generate (43 samples, 0.03%)</title><rect x="40.5097%" y="389" width="0.0286%" height="15" fill="rgb(223,58,37)" fg:x="60869" fg:w="43"/><text x="40.7597%" y="399.50"></text></g><g><title>Parse::Parse (43 samples, 0.03%)</title><rect x="40.5097%" y="373" width="0.0286%" height="15" fill="rgb(237,70,4)" fg:x="60869" fg:w="43"/><text x="40.7597%" y="383.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.03%)</title><rect x="40.5103%" y="357" width="0.0280%" height="15" fill="rgb(244,85,46)" fg:x="60870" fg:w="42"/><text x="40.7603%" y="367.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.03%)</title><rect x="40.5103%" y="341" width="0.0280%" height="15" fill="rgb(223,39,52)" fg:x="60870" fg:w="42"/><text x="40.7603%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.03%)</title><rect x="40.5103%" y="325" width="0.0280%" height="15" fill="rgb(218,200,14)" fg:x="60870" fg:w="42"/><text x="40.7603%" y="335.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.03%)</title><rect x="40.5070%" y="485" width="0.0319%" height="15" fill="rgb(208,171,16)" fg:x="60865" fg:w="48"/><text x="40.7570%" y="495.50"></text></g><g><title>Parse::Parse (48 samples, 0.03%)</title><rect x="40.5070%" y="469" width="0.0319%" height="15" fill="rgb(234,200,18)" fg:x="60865" fg:w="48"/><text x="40.7570%" y="479.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.03%)</title><rect x="40.5070%" y="453" width="0.0319%" height="15" fill="rgb(228,45,11)" fg:x="60865" fg:w="48"/><text x="40.7570%" y="463.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.03%)</title><rect x="40.5070%" y="437" width="0.0319%" height="15" fill="rgb(237,182,11)" fg:x="60865" fg:w="48"/><text x="40.7570%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (48 samples, 0.03%)</title><rect x="40.5070%" y="421" width="0.0319%" height="15" fill="rgb(241,175,49)" fg:x="60865" fg:w="48"/><text x="40.7570%" y="431.50"></text></g><g><title>Parse::do_call (48 samples, 0.03%)</title><rect x="40.5070%" y="405" width="0.0319%" height="15" fill="rgb(247,38,35)" fg:x="60865" fg:w="48"/><text x="40.7570%" y="415.50"></text></g><g><title>ParseGenerator::generate (51 samples, 0.03%)</title><rect x="40.5070%" y="581" width="0.0339%" height="15" fill="rgb(228,39,49)" fg:x="60865" fg:w="51"/><text x="40.7570%" y="591.50"></text></g><g><title>Parse::Parse (51 samples, 0.03%)</title><rect x="40.5070%" y="565" width="0.0339%" height="15" fill="rgb(226,101,26)" fg:x="60865" fg:w="51"/><text x="40.7570%" y="575.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.03%)</title><rect x="40.5070%" y="549" width="0.0339%" height="15" fill="rgb(206,141,19)" fg:x="60865" fg:w="51"/><text x="40.7570%" y="559.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.03%)</title><rect x="40.5070%" y="533" width="0.0339%" height="15" fill="rgb(211,200,13)" fg:x="60865" fg:w="51"/><text x="40.7570%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.03%)</title><rect x="40.5070%" y="517" width="0.0339%" height="15" fill="rgb(241,121,6)" fg:x="60865" fg:w="51"/><text x="40.7570%" y="527.50"></text></g><g><title>Parse::do_call (51 samples, 0.03%)</title><rect x="40.5070%" y="501" width="0.0339%" height="15" fill="rgb(234,221,29)" fg:x="60865" fg:w="51"/><text x="40.7570%" y="511.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.04%)</title><rect x="40.5070%" y="677" width="0.0379%" height="15" fill="rgb(229,136,5)" fg:x="60865" fg:w="57"/><text x="40.7570%" y="687.50"></text></g><g><title>Parse::Parse (57 samples, 0.04%)</title><rect x="40.5070%" y="661" width="0.0379%" height="15" fill="rgb(238,36,11)" fg:x="60865" fg:w="57"/><text x="40.7570%" y="671.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.04%)</title><rect x="40.5070%" y="645" width="0.0379%" height="15" fill="rgb(251,55,41)" fg:x="60865" fg:w="57"/><text x="40.7570%" y="655.50"></text></g><g><title>Parse::do_one_block (57 samples, 0.04%)</title><rect x="40.5070%" y="629" width="0.0379%" height="15" fill="rgb(242,34,40)" fg:x="60865" fg:w="57"/><text x="40.7570%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.04%)</title><rect x="40.5070%" y="613" width="0.0379%" height="15" fill="rgb(215,42,17)" fg:x="60865" fg:w="57"/><text x="40.7570%" y="623.50"></text></g><g><title>Parse::do_call (57 samples, 0.04%)</title><rect x="40.5070%" y="597" width="0.0379%" height="15" fill="rgb(207,44,46)" fg:x="60865" fg:w="57"/><text x="40.7570%" y="607.50"></text></g><g><title>ParseGenerator::generate (62 samples, 0.04%)</title><rect x="40.5070%" y="773" width="0.0413%" height="15" fill="rgb(211,206,28)" fg:x="60865" fg:w="62"/><text x="40.7570%" y="783.50"></text></g><g><title>Parse::Parse (62 samples, 0.04%)</title><rect x="40.5070%" y="757" width="0.0413%" height="15" fill="rgb(237,167,16)" fg:x="60865" fg:w="62"/><text x="40.7570%" y="767.50"></text></g><g><title>Parse::do_all_blocks (62 samples, 0.04%)</title><rect x="40.5070%" y="741" width="0.0413%" height="15" fill="rgb(233,66,6)" fg:x="60865" fg:w="62"/><text x="40.7570%" y="751.50"></text></g><g><title>Parse::do_one_block (62 samples, 0.04%)</title><rect x="40.5070%" y="725" width="0.0413%" height="15" fill="rgb(246,123,29)" fg:x="60865" fg:w="62"/><text x="40.7570%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (62 samples, 0.04%)</title><rect x="40.5070%" y="709" width="0.0413%" height="15" fill="rgb(209,62,40)" fg:x="60865" fg:w="62"/><text x="40.7570%" y="719.50"></text></g><g><title>Parse::do_call (62 samples, 0.04%)</title><rect x="40.5070%" y="693" width="0.0413%" height="15" fill="rgb(218,4,25)" fg:x="60865" fg:w="62"/><text x="40.7570%" y="703.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.04%)</title><rect x="40.5070%" y="869" width="0.0446%" height="15" fill="rgb(253,91,49)" fg:x="60865" fg:w="67"/><text x="40.7570%" y="879.50"></text></g><g><title>Parse::Parse (67 samples, 0.04%)</title><rect x="40.5070%" y="853" width="0.0446%" height="15" fill="rgb(228,155,29)" fg:x="60865" fg:w="67"/><text x="40.7570%" y="863.50"></text></g><g><title>Parse::do_all_blocks (67 samples, 0.04%)</title><rect x="40.5070%" y="837" width="0.0446%" height="15" fill="rgb(243,57,37)" fg:x="60865" fg:w="67"/><text x="40.7570%" y="847.50"></text></g><g><title>Parse::do_one_block (67 samples, 0.04%)</title><rect x="40.5070%" y="821" width="0.0446%" height="15" fill="rgb(244,167,17)" fg:x="60865" fg:w="67"/><text x="40.7570%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (67 samples, 0.04%)</title><rect x="40.5070%" y="805" width="0.0446%" height="15" fill="rgb(207,181,38)" fg:x="60865" fg:w="67"/><text x="40.7570%" y="815.50"></text></g><g><title>Parse::do_call (67 samples, 0.04%)</title><rect x="40.5070%" y="789" width="0.0446%" height="15" fill="rgb(211,8,23)" fg:x="60865" fg:w="67"/><text x="40.7570%" y="799.50"></text></g><g><title>ParseGenerator::generate (68 samples, 0.05%)</title><rect x="40.5070%" y="965" width="0.0453%" height="15" fill="rgb(235,11,44)" fg:x="60865" fg:w="68"/><text x="40.7570%" y="975.50"></text></g><g><title>Parse::Parse (68 samples, 0.05%)</title><rect x="40.5070%" y="949" width="0.0453%" height="15" fill="rgb(248,18,52)" fg:x="60865" fg:w="68"/><text x="40.7570%" y="959.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.05%)</title><rect x="40.5070%" y="933" width="0.0453%" height="15" fill="rgb(208,4,7)" fg:x="60865" fg:w="68"/><text x="40.7570%" y="943.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.05%)</title><rect x="40.5070%" y="917" width="0.0453%" height="15" fill="rgb(240,17,39)" fg:x="60865" fg:w="68"/><text x="40.7570%" y="927.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.05%)</title><rect x="40.5070%" y="901" width="0.0453%" height="15" fill="rgb(207,170,3)" fg:x="60865" fg:w="68"/><text x="40.7570%" y="911.50"></text></g><g><title>Parse::do_call (68 samples, 0.05%)</title><rect x="40.5070%" y="885" width="0.0453%" height="15" fill="rgb(236,100,52)" fg:x="60865" fg:w="68"/><text x="40.7570%" y="895.50"></text></g><g><title>Parse::do_call (77 samples, 0.05%)</title><rect x="40.5070%" y="981" width="0.0512%" height="15" fill="rgb(246,78,51)" fg:x="60865" fg:w="77"/><text x="40.7570%" y="991.50"></text></g><g><title>ParseGenerator::generate (19 samples, 0.01%)</title><rect x="40.5589%" y="453" width="0.0126%" height="15" fill="rgb(211,17,15)" fg:x="60943" fg:w="19"/><text x="40.8089%" y="463.50"></text></g><g><title>Parse::Parse (19 samples, 0.01%)</title><rect x="40.5589%" y="437" width="0.0126%" height="15" fill="rgb(209,59,46)" fg:x="60943" fg:w="19"/><text x="40.8089%" y="447.50"></text></g><g><title>Parse::do_all_blocks (19 samples, 0.01%)</title><rect x="40.5589%" y="421" width="0.0126%" height="15" fill="rgb(210,92,25)" fg:x="60943" fg:w="19"/><text x="40.8089%" y="431.50"></text></g><g><title>Parse::do_one_block (19 samples, 0.01%)</title><rect x="40.5589%" y="405" width="0.0126%" height="15" fill="rgb(238,174,52)" fg:x="60943" fg:w="19"/><text x="40.8089%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (19 samples, 0.01%)</title><rect x="40.5589%" y="389" width="0.0126%" height="15" fill="rgb(230,73,7)" fg:x="60943" fg:w="19"/><text x="40.8089%" y="399.50"></text></g><g><title>Parse::do_call (19 samples, 0.01%)</title><rect x="40.5589%" y="373" width="0.0126%" height="15" fill="rgb(243,124,40)" fg:x="60943" fg:w="19"/><text x="40.8089%" y="383.50"></text></g><g><title>ParseGenerator::generate (18 samples, 0.01%)</title><rect x="40.5596%" y="357" width="0.0120%" height="15" fill="rgb(244,170,11)" fg:x="60944" fg:w="18"/><text x="40.8096%" y="367.50"></text></g><g><title>Parse::Parse (18 samples, 0.01%)</title><rect x="40.5596%" y="341" width="0.0120%" height="15" fill="rgb(207,114,54)" fg:x="60944" fg:w="18"/><text x="40.8096%" y="351.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="40.5596%" y="325" width="0.0120%" height="15" fill="rgb(205,42,20)" fg:x="60944" fg:w="18"/><text x="40.8096%" y="335.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="40.5596%" y="309" width="0.0120%" height="15" fill="rgb(230,30,28)" fg:x="60944" fg:w="18"/><text x="40.8096%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="40.5596%" y="293" width="0.0120%" height="15" fill="rgb(205,73,54)" fg:x="60944" fg:w="18"/><text x="40.8096%" y="303.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.01%)</title><rect x="40.5582%" y="549" width="0.0146%" height="15" fill="rgb(254,227,23)" fg:x="60942" fg:w="22"/><text x="40.8082%" y="559.50"></text></g><g><title>Parse::Parse (22 samples, 0.01%)</title><rect x="40.5582%" y="533" width="0.0146%" height="15" fill="rgb(228,202,34)" fg:x="60942" fg:w="22"/><text x="40.8082%" y="543.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.01%)</title><rect x="40.5582%" y="517" width="0.0146%" height="15" fill="rgb(222,225,37)" fg:x="60942" fg:w="22"/><text x="40.8082%" y="527.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.01%)</title><rect x="40.5582%" y="501" width="0.0146%" height="15" fill="rgb(221,14,54)" fg:x="60942" fg:w="22"/><text x="40.8082%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.01%)</title><rect x="40.5582%" y="485" width="0.0146%" height="15" fill="rgb(254,102,2)" fg:x="60942" fg:w="22"/><text x="40.8082%" y="495.50"></text></g><g><title>Parse::do_call (22 samples, 0.01%)</title><rect x="40.5582%" y="469" width="0.0146%" height="15" fill="rgb(232,104,17)" fg:x="60942" fg:w="22"/><text x="40.8082%" y="479.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="40.5582%" y="645" width="0.0160%" height="15" fill="rgb(250,220,14)" fg:x="60942" fg:w="24"/><text x="40.8082%" y="655.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="40.5582%" y="629" width="0.0160%" height="15" fill="rgb(241,158,9)" fg:x="60942" fg:w="24"/><text x="40.8082%" y="639.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="40.5582%" y="613" width="0.0160%" height="15" fill="rgb(246,9,43)" fg:x="60942" fg:w="24"/><text x="40.8082%" y="623.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="40.5582%" y="597" width="0.0160%" height="15" fill="rgb(206,73,33)" fg:x="60942" fg:w="24"/><text x="40.8082%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="40.5582%" y="581" width="0.0160%" height="15" fill="rgb(222,79,8)" fg:x="60942" fg:w="24"/><text x="40.8082%" y="591.50"></text></g><g><title>Parse::do_call (24 samples, 0.02%)</title><rect x="40.5582%" y="565" width="0.0160%" height="15" fill="rgb(234,8,54)" fg:x="60942" fg:w="24"/><text x="40.8082%" y="575.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="40.5582%" y="837" width="0.0180%" height="15" fill="rgb(209,134,38)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="847.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="40.5582%" y="821" width="0.0180%" height="15" fill="rgb(230,127,29)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="831.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="40.5582%" y="805" width="0.0180%" height="15" fill="rgb(242,44,41)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="815.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="40.5582%" y="789" width="0.0180%" height="15" fill="rgb(222,56,43)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="40.5582%" y="773" width="0.0180%" height="15" fill="rgb(238,39,47)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="783.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="40.5582%" y="757" width="0.0180%" height="15" fill="rgb(226,79,43)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="767.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="40.5582%" y="741" width="0.0180%" height="15" fill="rgb(242,105,53)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="751.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="40.5582%" y="725" width="0.0180%" height="15" fill="rgb(251,132,46)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="735.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="40.5582%" y="709" width="0.0180%" height="15" fill="rgb(231,77,14)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="719.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="40.5582%" y="693" width="0.0180%" height="15" fill="rgb(240,135,9)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="40.5582%" y="677" width="0.0180%" height="15" fill="rgb(248,109,14)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="687.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="40.5582%" y="661" width="0.0180%" height="15" fill="rgb(227,146,52)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="671.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.02%)</title><rect x="40.5582%" y="933" width="0.0193%" height="15" fill="rgb(232,54,3)" fg:x="60942" fg:w="29"/><text x="40.8082%" y="943.50"></text></g><g><title>Parse::Parse (29 samples, 0.02%)</title><rect x="40.5582%" y="917" width="0.0193%" height="15" fill="rgb(229,201,43)" fg:x="60942" fg:w="29"/><text x="40.8082%" y="927.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.02%)</title><rect x="40.5582%" y="901" width="0.0193%" height="15" fill="rgb(252,161,33)" fg:x="60942" fg:w="29"/><text x="40.8082%" y="911.50"></text></g><g><title>Parse::do_one_block (29 samples, 0.02%)</title><rect x="40.5582%" y="885" width="0.0193%" height="15" fill="rgb(226,146,40)" fg:x="60942" fg:w="29"/><text x="40.8082%" y="895.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.02%)</title><rect x="40.5582%" y="869" width="0.0193%" height="15" fill="rgb(219,47,25)" fg:x="60942" fg:w="29"/><text x="40.8082%" y="879.50"></text></g><g><title>Parse::do_call (29 samples, 0.02%)</title><rect x="40.5582%" y="853" width="0.0193%" height="15" fill="rgb(250,135,13)" fg:x="60942" fg:w="29"/><text x="40.8082%" y="863.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.02%)</title><rect x="40.5582%" y="981" width="0.0213%" height="15" fill="rgb(219,229,18)" fg:x="60942" fg:w="32"/><text x="40.8082%" y="991.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.02%)</title><rect x="40.5582%" y="965" width="0.0213%" height="15" fill="rgb(217,152,27)" fg:x="60942" fg:w="32"/><text x="40.8082%" y="975.50"></text></g><g><title>Parse::do_call (32 samples, 0.02%)</title><rect x="40.5582%" y="949" width="0.0213%" height="15" fill="rgb(225,71,47)" fg:x="60942" fg:w="32"/><text x="40.8082%" y="959.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="40.5815%" y="293" width="0.0106%" height="15" fill="rgb(220,139,14)" fg:x="60977" fg:w="16"/><text x="40.8315%" y="303.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="40.5795%" y="469" width="0.0133%" height="15" fill="rgb(247,54,32)" fg:x="60974" fg:w="20"/><text x="40.8295%" y="479.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="40.5795%" y="453" width="0.0133%" height="15" fill="rgb(252,131,39)" fg:x="60974" fg:w="20"/><text x="40.8295%" y="463.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="40.5795%" y="437" width="0.0133%" height="15" fill="rgb(210,108,39)" fg:x="60974" fg:w="20"/><text x="40.8295%" y="447.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="40.5795%" y="421" width="0.0133%" height="15" fill="rgb(205,23,29)" fg:x="60974" fg:w="20"/><text x="40.8295%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="40.5795%" y="405" width="0.0133%" height="15" fill="rgb(246,139,46)" fg:x="60974" fg:w="20"/><text x="40.8295%" y="415.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="40.5795%" y="389" width="0.0133%" height="15" fill="rgb(250,81,26)" fg:x="60974" fg:w="20"/><text x="40.8295%" y="399.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="40.5815%" y="373" width="0.0113%" height="15" fill="rgb(214,104,7)" fg:x="60977" fg:w="17"/><text x="40.8315%" y="383.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="40.5815%" y="357" width="0.0113%" height="15" fill="rgb(233,189,8)" fg:x="60977" fg:w="17"/><text x="40.8315%" y="367.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="40.5815%" y="341" width="0.0113%" height="15" fill="rgb(228,141,17)" fg:x="60977" fg:w="17"/><text x="40.8315%" y="351.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="40.5815%" y="325" width="0.0113%" height="15" fill="rgb(247,157,1)" fg:x="60977" fg:w="17"/><text x="40.8315%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="40.5815%" y="309" width="0.0113%" height="15" fill="rgb(249,225,5)" fg:x="60977" fg:w="17"/><text x="40.8315%" y="319.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="40.5795%" y="565" width="0.0160%" height="15" fill="rgb(242,55,13)" fg:x="60974" fg:w="24"/><text x="40.8295%" y="575.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="40.5795%" y="549" width="0.0160%" height="15" fill="rgb(230,49,50)" fg:x="60974" fg:w="24"/><text x="40.8295%" y="559.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="40.5795%" y="533" width="0.0160%" height="15" fill="rgb(241,111,38)" fg:x="60974" fg:w="24"/><text x="40.8295%" y="543.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="40.5795%" y="517" width="0.0160%" height="15" fill="rgb(252,155,4)" fg:x="60974" fg:w="24"/><text x="40.8295%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="40.5795%" y="501" width="0.0160%" height="15" fill="rgb(212,69,32)" fg:x="60974" fg:w="24"/><text x="40.8295%" y="511.50"></text></g><g><title>Parse::do_call (24 samples, 0.02%)</title><rect x="40.5795%" y="485" width="0.0160%" height="15" fill="rgb(243,107,47)" fg:x="60974" fg:w="24"/><text x="40.8295%" y="495.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="40.5795%" y="661" width="0.0166%" height="15" fill="rgb(247,130,12)" fg:x="60974" fg:w="25"/><text x="40.8295%" y="671.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="40.5795%" y="645" width="0.0166%" height="15" fill="rgb(233,74,16)" fg:x="60974" fg:w="25"/><text x="40.8295%" y="655.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.02%)</title><rect x="40.5795%" y="629" width="0.0166%" height="15" fill="rgb(208,58,18)" fg:x="60974" fg:w="25"/><text x="40.8295%" y="639.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.02%)</title><rect x="40.5795%" y="613" width="0.0166%" height="15" fill="rgb(242,225,1)" fg:x="60974" fg:w="25"/><text x="40.8295%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.02%)</title><rect x="40.5795%" y="597" width="0.0166%" height="15" fill="rgb(249,39,40)" fg:x="60974" fg:w="25"/><text x="40.8295%" y="607.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="40.5795%" y="581" width="0.0166%" height="15" fill="rgb(207,72,44)" fg:x="60974" fg:w="25"/><text x="40.8295%" y="591.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="40.5795%" y="757" width="0.0180%" height="15" fill="rgb(215,193,12)" fg:x="60974" fg:w="27"/><text x="40.8295%" y="767.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="40.5795%" y="741" width="0.0180%" height="15" fill="rgb(248,41,39)" fg:x="60974" fg:w="27"/><text x="40.8295%" y="751.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="40.5795%" y="725" width="0.0180%" height="15" fill="rgb(253,85,4)" fg:x="60974" fg:w="27"/><text x="40.8295%" y="735.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="40.5795%" y="709" width="0.0180%" height="15" fill="rgb(243,70,31)" fg:x="60974" fg:w="27"/><text x="40.8295%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="40.5795%" y="693" width="0.0180%" height="15" fill="rgb(253,195,26)" fg:x="60974" fg:w="27"/><text x="40.8295%" y="703.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="40.5795%" y="677" width="0.0180%" height="15" fill="rgb(243,42,11)" fg:x="60974" fg:w="27"/><text x="40.8295%" y="687.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.02%)</title><rect x="40.5795%" y="853" width="0.0220%" height="15" fill="rgb(239,66,17)" fg:x="60974" fg:w="33"/><text x="40.8295%" y="863.50"></text></g><g><title>Parse::Parse (33 samples, 0.02%)</title><rect x="40.5795%" y="837" width="0.0220%" height="15" fill="rgb(217,132,21)" fg:x="60974" fg:w="33"/><text x="40.8295%" y="847.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="40.5795%" y="821" width="0.0220%" height="15" fill="rgb(252,202,21)" fg:x="60974" fg:w="33"/><text x="40.8295%" y="831.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.02%)</title><rect x="40.5795%" y="805" width="0.0220%" height="15" fill="rgb(233,98,36)" fg:x="60974" fg:w="33"/><text x="40.8295%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="40.5795%" y="789" width="0.0220%" height="15" fill="rgb(216,153,54)" fg:x="60974" fg:w="33"/><text x="40.8295%" y="799.50"></text></g><g><title>Parse::do_call (33 samples, 0.02%)</title><rect x="40.5795%" y="773" width="0.0220%" height="15" fill="rgb(250,99,7)" fg:x="60974" fg:w="33"/><text x="40.8295%" y="783.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.02%)</title><rect x="40.5795%" y="949" width="0.0233%" height="15" fill="rgb(207,56,50)" fg:x="60974" fg:w="35"/><text x="40.8295%" y="959.50"></text></g><g><title>Parse::Parse (35 samples, 0.02%)</title><rect x="40.5795%" y="933" width="0.0233%" height="15" fill="rgb(244,61,34)" fg:x="60974" fg:w="35"/><text x="40.8295%" y="943.50"></text></g><g><title>Parse::do_all_blocks (35 samples, 0.02%)</title><rect x="40.5795%" y="917" width="0.0233%" height="15" fill="rgb(241,50,38)" fg:x="60974" fg:w="35"/><text x="40.8295%" y="927.50"></text></g><g><title>Parse::do_one_block (35 samples, 0.02%)</title><rect x="40.5795%" y="901" width="0.0233%" height="15" fill="rgb(212,166,30)" fg:x="60974" fg:w="35"/><text x="40.8295%" y="911.50"></text></g><g><title>Parse::do_one_bytecode (35 samples, 0.02%)</title><rect x="40.5795%" y="885" width="0.0233%" height="15" fill="rgb(249,127,32)" fg:x="60974" fg:w="35"/><text x="40.8295%" y="895.50"></text></g><g><title>Parse::do_call (35 samples, 0.02%)</title><rect x="40.5795%" y="869" width="0.0233%" height="15" fill="rgb(209,103,0)" fg:x="60974" fg:w="35"/><text x="40.8295%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (36 samples, 0.02%)</title><rect x="40.5795%" y="981" width="0.0240%" height="15" fill="rgb(238,209,51)" fg:x="60974" fg:w="36"/><text x="40.8295%" y="991.50"></text></g><g><title>Parse::do_call (36 samples, 0.02%)</title><rect x="40.5795%" y="965" width="0.0240%" height="15" fill="rgb(237,56,23)" fg:x="60974" fg:w="36"/><text x="40.8295%" y="975.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="40.6341%" y="213" width="0.0160%" height="15" fill="rgb(215,153,46)" fg:x="61056" fg:w="24"/><text x="40.8841%" y="223.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="40.6341%" y="197" width="0.0160%" height="15" fill="rgb(224,49,31)" fg:x="61056" fg:w="24"/><text x="40.8841%" y="207.50"></text></g><g><title>Parse::do_call (52 samples, 0.03%)</title><rect x="40.6181%" y="229" width="0.0346%" height="15" fill="rgb(250,18,42)" fg:x="61032" fg:w="52"/><text x="40.8681%" y="239.50"></text></g><g><title>Parse::do_call (85 samples, 0.06%)</title><rect x="40.6068%" y="325" width="0.0566%" height="15" fill="rgb(215,176,39)" fg:x="61015" fg:w="85"/><text x="40.8568%" y="335.50"></text></g><g><title>ParseGenerator::generate (73 samples, 0.05%)</title><rect x="40.6148%" y="309" width="0.0486%" height="15" fill="rgb(223,77,29)" fg:x="61027" fg:w="73"/><text x="40.8648%" y="319.50"></text></g><g><title>Parse::Parse (73 samples, 0.05%)</title><rect x="40.6148%" y="293" width="0.0486%" height="15" fill="rgb(234,94,52)" fg:x="61027" fg:w="73"/><text x="40.8648%" y="303.50"></text></g><g><title>Parse::do_all_blocks (73 samples, 0.05%)</title><rect x="40.6148%" y="277" width="0.0486%" height="15" fill="rgb(220,154,50)" fg:x="61027" fg:w="73"/><text x="40.8648%" y="287.50"></text></g><g><title>Parse::do_one_block (73 samples, 0.05%)</title><rect x="40.6148%" y="261" width="0.0486%" height="15" fill="rgb(212,11,10)" fg:x="61027" fg:w="73"/><text x="40.8648%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (72 samples, 0.05%)</title><rect x="40.6155%" y="245" width="0.0479%" height="15" fill="rgb(205,166,19)" fg:x="61028" fg:w="72"/><text x="40.8655%" y="255.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.06%)</title><rect x="40.6068%" y="405" width="0.0579%" height="15" fill="rgb(244,198,16)" fg:x="61015" fg:w="87"/><text x="40.8568%" y="415.50"></text></g><g><title>Parse::Parse (87 samples, 0.06%)</title><rect x="40.6068%" y="389" width="0.0579%" height="15" fill="rgb(219,69,12)" fg:x="61015" fg:w="87"/><text x="40.8568%" y="399.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.06%)</title><rect x="40.6068%" y="373" width="0.0579%" height="15" fill="rgb(245,30,7)" fg:x="61015" fg:w="87"/><text x="40.8568%" y="383.50"></text></g><g><title>Parse::do_one_block (87 samples, 0.06%)</title><rect x="40.6068%" y="357" width="0.0579%" height="15" fill="rgb(218,221,48)" fg:x="61015" fg:w="87"/><text x="40.8568%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.06%)</title><rect x="40.6068%" y="341" width="0.0579%" height="15" fill="rgb(216,66,15)" fg:x="61015" fg:w="87"/><text x="40.8568%" y="351.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.06%)</title><rect x="40.6042%" y="501" width="0.0639%" height="15" fill="rgb(226,122,50)" fg:x="61011" fg:w="96"/><text x="40.8542%" y="511.50"></text></g><g><title>Parse::Parse (96 samples, 0.06%)</title><rect x="40.6042%" y="485" width="0.0639%" height="15" fill="rgb(239,156,16)" fg:x="61011" fg:w="96"/><text x="40.8542%" y="495.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.06%)</title><rect x="40.6042%" y="469" width="0.0639%" height="15" fill="rgb(224,27,38)" fg:x="61011" fg:w="96"/><text x="40.8542%" y="479.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.06%)</title><rect x="40.6042%" y="453" width="0.0639%" height="15" fill="rgb(224,39,27)" fg:x="61011" fg:w="96"/><text x="40.8542%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.06%)</title><rect x="40.6042%" y="437" width="0.0639%" height="15" fill="rgb(215,92,29)" fg:x="61011" fg:w="96"/><text x="40.8542%" y="447.50"></text></g><g><title>Parse::do_call (96 samples, 0.06%)</title><rect x="40.6042%" y="421" width="0.0639%" height="15" fill="rgb(207,159,16)" fg:x="61011" fg:w="96"/><text x="40.8542%" y="431.50"></text></g><g><title>ParseGenerator::generate (106 samples, 0.07%)</title><rect x="40.6035%" y="597" width="0.0705%" height="15" fill="rgb(238,163,47)" fg:x="61010" fg:w="106"/><text x="40.8535%" y="607.50"></text></g><g><title>Parse::Parse (106 samples, 0.07%)</title><rect x="40.6035%" y="581" width="0.0705%" height="15" fill="rgb(219,91,49)" fg:x="61010" fg:w="106"/><text x="40.8535%" y="591.50"></text></g><g><title>Parse::do_all_blocks (106 samples, 0.07%)</title><rect x="40.6035%" y="565" width="0.0705%" height="15" fill="rgb(227,167,31)" fg:x="61010" fg:w="106"/><text x="40.8535%" y="575.50"></text></g><g><title>Parse::do_one_block (106 samples, 0.07%)</title><rect x="40.6035%" y="549" width="0.0705%" height="15" fill="rgb(234,80,54)" fg:x="61010" fg:w="106"/><text x="40.8535%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (106 samples, 0.07%)</title><rect x="40.6035%" y="533" width="0.0705%" height="15" fill="rgb(212,114,2)" fg:x="61010" fg:w="106"/><text x="40.8535%" y="543.50"></text></g><g><title>Parse::do_call (106 samples, 0.07%)</title><rect x="40.6035%" y="517" width="0.0705%" height="15" fill="rgb(234,50,24)" fg:x="61010" fg:w="106"/><text x="40.8535%" y="527.50"></text></g><g><title>ParseGenerator::generate (113 samples, 0.08%)</title><rect x="40.6035%" y="693" width="0.0752%" height="15" fill="rgb(221,68,8)" fg:x="61010" fg:w="113"/><text x="40.8535%" y="703.50"></text></g><g><title>Parse::Parse (113 samples, 0.08%)</title><rect x="40.6035%" y="677" width="0.0752%" height="15" fill="rgb(254,180,31)" fg:x="61010" fg:w="113"/><text x="40.8535%" y="687.50"></text></g><g><title>Parse::do_all_blocks (113 samples, 0.08%)</title><rect x="40.6035%" y="661" width="0.0752%" height="15" fill="rgb(247,130,50)" fg:x="61010" fg:w="113"/><text x="40.8535%" y="671.50"></text></g><g><title>Parse::do_one_block (113 samples, 0.08%)</title><rect x="40.6035%" y="645" width="0.0752%" height="15" fill="rgb(211,109,4)" fg:x="61010" fg:w="113"/><text x="40.8535%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (113 samples, 0.08%)</title><rect x="40.6035%" y="629" width="0.0752%" height="15" fill="rgb(238,50,21)" fg:x="61010" fg:w="113"/><text x="40.8535%" y="639.50"></text></g><g><title>Parse::do_call (113 samples, 0.08%)</title><rect x="40.6035%" y="613" width="0.0752%" height="15" fill="rgb(225,57,45)" fg:x="61010" fg:w="113"/><text x="40.8535%" y="623.50"></text></g><g><title>ParseGenerator::generate (123 samples, 0.08%)</title><rect x="40.6035%" y="789" width="0.0819%" height="15" fill="rgb(209,196,50)" fg:x="61010" fg:w="123"/><text x="40.8535%" y="799.50"></text></g><g><title>Parse::Parse (123 samples, 0.08%)</title><rect x="40.6035%" y="773" width="0.0819%" height="15" fill="rgb(242,140,13)" fg:x="61010" fg:w="123"/><text x="40.8535%" y="783.50"></text></g><g><title>Parse::do_all_blocks (123 samples, 0.08%)</title><rect x="40.6035%" y="757" width="0.0819%" height="15" fill="rgb(217,111,7)" fg:x="61010" fg:w="123"/><text x="40.8535%" y="767.50"></text></g><g><title>Parse::do_one_block (123 samples, 0.08%)</title><rect x="40.6035%" y="741" width="0.0819%" height="15" fill="rgb(253,193,51)" fg:x="61010" fg:w="123"/><text x="40.8535%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (123 samples, 0.08%)</title><rect x="40.6035%" y="725" width="0.0819%" height="15" fill="rgb(252,70,29)" fg:x="61010" fg:w="123"/><text x="40.8535%" y="735.50"></text></g><g><title>Parse::do_call (123 samples, 0.08%)</title><rect x="40.6035%" y="709" width="0.0819%" height="15" fill="rgb(232,127,12)" fg:x="61010" fg:w="123"/><text x="40.8535%" y="719.50"></text></g><g><title>ParseGenerator::generate (18 samples, 0.01%)</title><rect x="40.6854%" y="773" width="0.0120%" height="15" fill="rgb(211,180,21)" fg:x="61133" fg:w="18"/><text x="40.9354%" y="783.50"></text></g><g><title>Parse::Parse (18 samples, 0.01%)</title><rect x="40.6854%" y="757" width="0.0120%" height="15" fill="rgb(229,72,13)" fg:x="61133" fg:w="18"/><text x="40.9354%" y="767.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="40.6854%" y="741" width="0.0120%" height="15" fill="rgb(240,211,49)" fg:x="61133" fg:w="18"/><text x="40.9354%" y="751.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="40.6854%" y="725" width="0.0120%" height="15" fill="rgb(219,149,40)" fg:x="61133" fg:w="18"/><text x="40.9354%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="40.6854%" y="709" width="0.0120%" height="15" fill="rgb(210,127,46)" fg:x="61133" fg:w="18"/><text x="40.9354%" y="719.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="40.6854%" y="693" width="0.0120%" height="15" fill="rgb(220,106,7)" fg:x="61133" fg:w="18"/><text x="40.9354%" y="703.50"></text></g><g><title>ParseGenerator::generate (144 samples, 0.10%)</title><rect x="40.6035%" y="885" width="0.0958%" height="15" fill="rgb(249,31,22)" fg:x="61010" fg:w="144"/><text x="40.8535%" y="895.50"></text></g><g><title>Parse::Parse (144 samples, 0.10%)</title><rect x="40.6035%" y="869" width="0.0958%" height="15" fill="rgb(253,1,49)" fg:x="61010" fg:w="144"/><text x="40.8535%" y="879.50"></text></g><g><title>Parse::do_all_blocks (144 samples, 0.10%)</title><rect x="40.6035%" y="853" width="0.0958%" height="15" fill="rgb(227,144,33)" fg:x="61010" fg:w="144"/><text x="40.8535%" y="863.50"></text></g><g><title>Parse::do_one_block (144 samples, 0.10%)</title><rect x="40.6035%" y="837" width="0.0958%" height="15" fill="rgb(249,163,44)" fg:x="61010" fg:w="144"/><text x="40.8535%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (144 samples, 0.10%)</title><rect x="40.6035%" y="821" width="0.0958%" height="15" fill="rgb(234,15,39)" fg:x="61010" fg:w="144"/><text x="40.8535%" y="831.50"></text></g><g><title>Parse::do_call (144 samples, 0.10%)</title><rect x="40.6035%" y="805" width="0.0958%" height="15" fill="rgb(207,66,16)" fg:x="61010" fg:w="144"/><text x="40.8535%" y="815.50"></text></g><g><title>PredictedCallGenerator::generate (21 samples, 0.01%)</title><rect x="40.6854%" y="789" width="0.0140%" height="15" fill="rgb(233,112,24)" fg:x="61133" fg:w="21"/><text x="40.9354%" y="799.50"></text></g><g><title>ParseGenerator::generate (162 samples, 0.11%)</title><rect x="40.6035%" y="981" width="0.1078%" height="15" fill="rgb(230,90,22)" fg:x="61010" fg:w="162"/><text x="40.8535%" y="991.50"></text></g><g><title>Parse::Parse (162 samples, 0.11%)</title><rect x="40.6035%" y="965" width="0.1078%" height="15" fill="rgb(229,61,13)" fg:x="61010" fg:w="162"/><text x="40.8535%" y="975.50"></text></g><g><title>Parse::do_all_blocks (162 samples, 0.11%)</title><rect x="40.6035%" y="949" width="0.1078%" height="15" fill="rgb(225,57,24)" fg:x="61010" fg:w="162"/><text x="40.8535%" y="959.50"></text></g><g><title>Parse::do_one_block (162 samples, 0.11%)</title><rect x="40.6035%" y="933" width="0.1078%" height="15" fill="rgb(208,169,48)" fg:x="61010" fg:w="162"/><text x="40.8535%" y="943.50"></text></g><g><title>Parse::do_one_bytecode (162 samples, 0.11%)</title><rect x="40.6035%" y="917" width="0.1078%" height="15" fill="rgb(244,218,51)" fg:x="61010" fg:w="162"/><text x="40.8535%" y="927.50"></text></g><g><title>Parse::do_call (162 samples, 0.11%)</title><rect x="40.6035%" y="901" width="0.1078%" height="15" fill="rgb(214,148,10)" fg:x="61010" fg:w="162"/><text x="40.8535%" y="911.50"></text></g><g><title>PredictedCallGenerator::generate (18 samples, 0.01%)</title><rect x="40.6993%" y="885" width="0.0120%" height="15" fill="rgb(225,174,27)" fg:x="61154" fg:w="18"/><text x="40.9493%" y="895.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="40.7379%" y="837" width="0.0106%" height="15" fill="rgb(230,96,26)" fg:x="61212" fg:w="16"/><text x="40.9879%" y="847.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="40.7359%" y="853" width="0.0173%" height="15" fill="rgb(232,10,30)" fg:x="61209" fg:w="26"/><text x="40.9859%" y="863.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.02%)</title><rect x="40.7333%" y="885" width="0.0220%" height="15" fill="rgb(222,8,50)" fg:x="61205" fg:w="33"/><text x="40.9833%" y="895.50"></text></g><g><title>Parse::Parse (33 samples, 0.02%)</title><rect x="40.7333%" y="869" width="0.0220%" height="15" fill="rgb(213,81,27)" fg:x="61205" fg:w="33"/><text x="40.9833%" y="879.50"></text></g><g><title>Thread::call_run (58 samples, 0.04%)</title><rect x="40.7279%" y="981" width="0.0386%" height="15" fill="rgb(245,50,10)" fg:x="61197" fg:w="58"/><text x="40.9779%" y="991.50"></text></g><g><title>JavaThread::thread_main_inner (58 samples, 0.04%)</title><rect x="40.7279%" y="965" width="0.0386%" height="15" fill="rgb(216,100,18)" fg:x="61197" fg:w="58"/><text x="40.9779%" y="975.50"></text></g><g><title>CompileBroker::compiler_thread_loop (58 samples, 0.04%)</title><rect x="40.7279%" y="949" width="0.0386%" height="15" fill="rgb(236,147,54)" fg:x="61197" fg:w="58"/><text x="40.9779%" y="959.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (58 samples, 0.04%)</title><rect x="40.7279%" y="933" width="0.0386%" height="15" fill="rgb(205,143,26)" fg:x="61197" fg:w="58"/><text x="40.9779%" y="943.50"></text></g><g><title>C2Compiler::compile_method (58 samples, 0.04%)</title><rect x="40.7279%" y="917" width="0.0386%" height="15" fill="rgb(236,26,9)" fg:x="61197" fg:w="58"/><text x="40.9779%" y="927.50"></text></g><g><title>Compile::Compile (58 samples, 0.04%)</title><rect x="40.7279%" y="901" width="0.0386%" height="15" fill="rgb(221,165,53)" fg:x="61197" fg:w="58"/><text x="40.9779%" y="911.50"></text></g><g><title>ciEnv::register_method (17 samples, 0.01%)</title><rect x="40.7552%" y="885" width="0.0113%" height="15" fill="rgb(214,110,17)" fg:x="61238" fg:w="17"/><text x="41.0052%" y="895.50"></text></g><g><title>nmethod::new_nmethod (17 samples, 0.01%)</title><rect x="40.7552%" y="869" width="0.0113%" height="15" fill="rgb(237,197,12)" fg:x="61238" fg:w="17"/><text x="41.0052%" y="879.50"></text></g><g><title>_dl_update_slotinfo (40 samples, 0.03%)</title><rect x="40.7779%" y="981" width="0.0266%" height="15" fill="rgb(205,84,17)" fg:x="61272" fg:w="40"/><text x="41.0279%" y="991.50"></text></g><g><title>CallGenerator::for_inline (22 samples, 0.01%)</title><rect x="40.8138%" y="853" width="0.0146%" height="15" fill="rgb(237,18,45)" fg:x="61326" fg:w="22"/><text x="41.0638%" y="863.50"></text></g><g><title>InlineTree::check_can_parse (22 samples, 0.01%)</title><rect x="40.8138%" y="837" width="0.0146%" height="15" fill="rgb(221,87,14)" fg:x="61326" fg:w="22"/><text x="41.0638%" y="847.50"></text></g><g><title>ciMethod::get_flow_analysis (22 samples, 0.01%)</title><rect x="40.8138%" y="821" width="0.0146%" height="15" fill="rgb(238,186,15)" fg:x="61326" fg:w="22"/><text x="41.0638%" y="831.50"></text></g><g><title>ciTypeFlow::do_flow (19 samples, 0.01%)</title><rect x="40.8158%" y="805" width="0.0126%" height="15" fill="rgb(208,115,11)" fg:x="61329" fg:w="19"/><text x="41.0658%" y="815.50"></text></g><g><title>ciTypeFlow::flow_types (19 samples, 0.01%)</title><rect x="40.8158%" y="789" width="0.0126%" height="15" fill="rgb(254,175,0)" fg:x="61329" fg:w="19"/><text x="41.0658%" y="799.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="40.8311%" y="853" width="0.0166%" height="15" fill="rgb(227,24,42)" fg:x="61352" fg:w="25"/><text x="41.0811%" y="863.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="40.8311%" y="837" width="0.0166%" height="15" fill="rgb(223,211,37)" fg:x="61352" fg:w="25"/><text x="41.0811%" y="847.50"></text></g><g><title>ciEnv::register_method (17 samples, 0.01%)</title><rect x="40.8477%" y="853" width="0.0113%" height="15" fill="rgb(235,49,27)" fg:x="61377" fg:w="17"/><text x="41.0977%" y="863.50"></text></g><g><title>start_thread (69 samples, 0.05%)</title><rect x="40.8138%" y="981" width="0.0459%" height="15" fill="rgb(254,97,51)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="991.50"></text></g><g><title>thread_native_entry (69 samples, 0.05%)</title><rect x="40.8138%" y="965" width="0.0459%" height="15" fill="rgb(249,51,40)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="975.50"></text></g><g><title>Thread::call_run (69 samples, 0.05%)</title><rect x="40.8138%" y="949" width="0.0459%" height="15" fill="rgb(210,128,45)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="959.50"></text></g><g><title>JavaThread::thread_main_inner (69 samples, 0.05%)</title><rect x="40.8138%" y="933" width="0.0459%" height="15" fill="rgb(224,137,50)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="943.50"></text></g><g><title>CompileBroker::compiler_thread_loop (69 samples, 0.05%)</title><rect x="40.8138%" y="917" width="0.0459%" height="15" fill="rgb(242,15,9)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="927.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (69 samples, 0.05%)</title><rect x="40.8138%" y="901" width="0.0459%" height="15" fill="rgb(233,187,41)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="911.50"></text></g><g><title>C2Compiler::compile_method (69 samples, 0.05%)</title><rect x="40.8138%" y="885" width="0.0459%" height="15" fill="rgb(227,2,29)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="895.50"></text></g><g><title>Compile::Compile (69 samples, 0.05%)</title><rect x="40.8138%" y="869" width="0.0459%" height="15" fill="rgb(222,70,3)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="879.50"></text></g><g><title>[unknown] (47,504 samples, 31.61%)</title><rect x="9.2567%" y="997" width="31.6150%" height="15" fill="rgb(213,11,42)" fg:x="13909" fg:w="47504"/><text x="9.5067%" y="1007.50">[unknown]</text></g><g><title>thread_native_entry (18 samples, 0.01%)</title><rect x="40.8597%" y="981" width="0.0120%" height="15" fill="rgb(225,150,9)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="991.50"></text></g><g><title>Thread::call_run (18 samples, 0.01%)</title><rect x="40.8597%" y="965" width="0.0120%" height="15" fill="rgb(230,162,45)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="975.50"></text></g><g><title>JavaThread::thread_main_inner (18 samples, 0.01%)</title><rect x="40.8597%" y="949" width="0.0120%" height="15" fill="rgb(222,14,52)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="959.50"></text></g><g><title>CompileBroker::compiler_thread_loop (18 samples, 0.01%)</title><rect x="40.8597%" y="933" width="0.0120%" height="15" fill="rgb(254,198,14)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="943.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (18 samples, 0.01%)</title><rect x="40.8597%" y="917" width="0.0120%" height="15" fill="rgb(220,217,30)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="927.50"></text></g><g><title>C2Compiler::compile_method (18 samples, 0.01%)</title><rect x="40.8597%" y="901" width="0.0120%" height="15" fill="rgb(215,146,41)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="911.50"></text></g><g><title>Compile::Compile (18 samples, 0.01%)</title><rect x="40.8597%" y="885" width="0.0120%" height="15" fill="rgb(217,27,36)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="895.50"></text></g><g><title>ret_from_fork (18 samples, 0.01%)</title><rect x="40.8770%" y="981" width="0.0120%" height="15" fill="rgb(219,218,39)" fg:x="61421" fg:w="18"/><text x="41.1270%" y="991.50"></text></g><g><title>schedule_tail (18 samples, 0.01%)</title><rect x="40.8770%" y="965" width="0.0120%" height="15" fill="rgb(219,4,42)" fg:x="61421" fg:w="18"/><text x="41.1270%" y="975.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="40.8770%" y="949" width="0.0120%" height="15" fill="rgb(249,119,36)" fg:x="61421" fg:w="18"/><text x="41.1270%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="40.8770%" y="933" width="0.0120%" height="15" fill="rgb(209,23,33)" fg:x="61421" fg:w="18"/><text x="41.1270%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="40.8770%" y="917" width="0.0120%" height="15" fill="rgb(211,10,0)" fg:x="61421" fg:w="18"/><text x="41.1270%" y="927.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="40.8770%" y="901" width="0.0120%" height="15" fill="rgb(208,99,37)" fg:x="61421" fg:w="18"/><text x="41.1270%" y="911.50"></text></g><g><title>Dict::Insert (49 samples, 0.03%)</title><rect x="40.9396%" y="821" width="0.0326%" height="15" fill="rgb(213,132,31)" fg:x="61515" fg:w="49"/><text x="41.1896%" y="831.50"></text></g><g><title>Type::Initialize (60 samples, 0.04%)</title><rect x="40.9389%" y="837" width="0.0399%" height="15" fill="rgb(243,129,40)" fg:x="61514" fg:w="60"/><text x="41.1889%" y="847.50"></text></g><g><title>CompileWrapper::CompileWrapper (62 samples, 0.04%)</title><rect x="40.9383%" y="853" width="0.0413%" height="15" fill="rgb(210,66,33)" fg:x="61513" fg:w="62"/><text x="41.1883%" y="863.50"></text></g><g><title>Compile::identify_useful_nodes (133 samples, 0.09%)</title><rect x="41.0061%" y="837" width="0.0885%" height="15" fill="rgb(209,189,4)" fg:x="61615" fg:w="133"/><text x="41.2561%" y="847.50"></text></g><g><title>Compile::remove_useless_nodes (131 samples, 0.09%)</title><rect x="41.0947%" y="837" width="0.0872%" height="15" fill="rgb(214,107,37)" fg:x="61748" fg:w="131"/><text x="41.3447%" y="847.50"></text></g><g><title>Compile::update_dead_node_list (19 samples, 0.01%)</title><rect x="41.1818%" y="837" width="0.0126%" height="15" fill="rgb(245,88,54)" fg:x="61879" fg:w="19"/><text x="41.4318%" y="847.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (337 samples, 0.22%)</title><rect x="40.9828%" y="853" width="0.2243%" height="15" fill="rgb(205,146,20)" fg:x="61580" fg:w="337"/><text x="41.2328%" y="863.50"></text></g><g><title>Unique_Node_List::remove_useless_nodes (18 samples, 0.01%)</title><rect x="41.1951%" y="837" width="0.0120%" height="15" fill="rgb(220,161,25)" fg:x="61899" fg:w="18"/><text x="41.4451%" y="847.50"></text></g><g><title>Compile::Compile (486 samples, 0.32%)</title><rect x="40.9070%" y="869" width="0.3234%" height="15" fill="rgb(215,152,15)" fg:x="61466" fg:w="486"/><text x="41.1570%" y="879.50"></text></g><g><title>C2Compiler::compile_method (496 samples, 0.33%)</title><rect x="40.9010%" y="885" width="0.3301%" height="15" fill="rgb(233,192,44)" fg:x="61457" fg:w="496"/><text x="41.1510%" y="895.50"></text></g><g><title>CompileTask::print (21 samples, 0.01%)</title><rect x="41.2477%" y="885" width="0.0140%" height="15" fill="rgb(240,170,46)" fg:x="61978" fg:w="21"/><text x="41.4977%" y="895.50"></text></g><g><title>ciMethod::ciMethod (24 samples, 0.02%)</title><rect x="41.2770%" y="837" width="0.0160%" height="15" fill="rgb(207,104,33)" fg:x="62022" fg:w="24"/><text x="41.5270%" y="847.50"></text></g><g><title>ciSignature::ciSignature (21 samples, 0.01%)</title><rect x="41.2790%" y="821" width="0.0140%" height="15" fill="rgb(219,21,39)" fg:x="62025" fg:w="21"/><text x="41.5290%" y="831.50"></text></g><g><title>ciEnv::get_method_from_handle (25 samples, 0.02%)</title><rect x="41.2770%" y="885" width="0.0166%" height="15" fill="rgb(214,133,29)" fg:x="62022" fg:w="25"/><text x="41.5270%" y="895.50"></text></g><g><title>ciObjectFactory::get_metadata (25 samples, 0.02%)</title><rect x="41.2770%" y="869" width="0.0166%" height="15" fill="rgb(226,93,6)" fg:x="62022" fg:w="25"/><text x="41.5270%" y="879.50"></text></g><g><title>ciObjectFactory::create_new_metadata (25 samples, 0.02%)</title><rect x="41.2770%" y="853" width="0.0166%" height="15" fill="rgb(252,222,34)" fg:x="62022" fg:w="25"/><text x="41.5270%" y="863.50"></text></g><g><title>ciEnv::~ciEnv (16 samples, 0.01%)</title><rect x="41.2936%" y="885" width="0.0106%" height="15" fill="rgb(252,92,48)" fg:x="62047" fg:w="16"/><text x="41.5436%" y="895.50"></text></g><g><title>ciObjectFactory::remove_symbols (16 samples, 0.01%)</title><rect x="41.2936%" y="869" width="0.0106%" height="15" fill="rgb(245,223,24)" fg:x="62047" fg:w="16"/><text x="41.5436%" y="879.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (614 samples, 0.41%)</title><rect x="40.8963%" y="901" width="0.4086%" height="15" fill="rgb(205,176,3)" fg:x="61450" fg:w="614"/><text x="41.1463%" y="911.50"></text></g><g><title>__pthread_cond_signal (22 samples, 0.01%)</title><rect x="41.3289%" y="853" width="0.0146%" height="15" fill="rgb(235,151,15)" fg:x="62100" fg:w="22"/><text x="41.5789%" y="863.50"></text></g><g><title>futex_wake (22 samples, 0.01%)</title><rect x="41.3289%" y="837" width="0.0146%" height="15" fill="rgb(237,209,11)" fg:x="62100" fg:w="22"/><text x="41.5789%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="41.3289%" y="821" width="0.0146%" height="15" fill="rgb(243,227,24)" fg:x="62100" fg:w="22"/><text x="41.5789%" y="831.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="41.3289%" y="805" width="0.0146%" height="15" fill="rgb(239,193,16)" fg:x="62100" fg:w="22"/><text x="41.5789%" y="815.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.01%)</title><rect x="41.3289%" y="789" width="0.0146%" height="15" fill="rgb(231,27,9)" fg:x="62100" fg:w="22"/><text x="41.5789%" y="799.50"></text></g><g><title>do_futex (22 samples, 0.01%)</title><rect x="41.3289%" y="773" width="0.0146%" height="15" fill="rgb(219,169,10)" fg:x="62100" fg:w="22"/><text x="41.5789%" y="783.50"></text></g><g><title>futex_wake (21 samples, 0.01%)</title><rect x="41.3296%" y="757" width="0.0140%" height="15" fill="rgb(244,229,43)" fg:x="62101" fg:w="21"/><text x="41.5796%" y="767.50"></text></g><g><title>wake_up_q (19 samples, 0.01%)</title><rect x="41.3309%" y="741" width="0.0126%" height="15" fill="rgb(254,38,20)" fg:x="62103" fg:w="19"/><text x="41.5809%" y="751.50"></text></g><g><title>try_to_wake_up (19 samples, 0.01%)</title><rect x="41.3309%" y="725" width="0.0126%" height="15" fill="rgb(250,47,30)" fg:x="62103" fg:w="19"/><text x="41.5809%" y="735.50"></text></g><g><title>hrtimer_start_range_ns (16 samples, 0.01%)</title><rect x="41.3622%" y="693" width="0.0106%" height="15" fill="rgb(224,124,36)" fg:x="62150" fg:w="16"/><text x="41.6122%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (143 samples, 0.10%)</title><rect x="41.3855%" y="645" width="0.0952%" height="15" fill="rgb(246,68,51)" fg:x="62185" fg:w="143"/><text x="41.6355%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (142 samples, 0.09%)</title><rect x="41.3861%" y="629" width="0.0945%" height="15" fill="rgb(253,43,49)" fg:x="62186" fg:w="142"/><text x="41.6361%" y="639.50"></text></g><g><title>native_write_msr (142 samples, 0.09%)</title><rect x="41.3861%" y="613" width="0.0945%" height="15" fill="rgb(219,54,36)" fg:x="62186" fg:w="142"/><text x="41.6361%" y="623.50"></text></g><g><title>finish_task_switch (152 samples, 0.10%)</title><rect x="41.3828%" y="661" width="0.1012%" height="15" fill="rgb(227,133,34)" fg:x="62181" fg:w="152"/><text x="41.6328%" y="671.50"></text></g><g><title>futex_wait_queue_me (194 samples, 0.13%)</title><rect x="41.3602%" y="709" width="0.1291%" height="15" fill="rgb(247,227,15)" fg:x="62147" fg:w="194"/><text x="41.6102%" y="719.50"></text></g><g><title>schedule (175 samples, 0.12%)</title><rect x="41.3728%" y="693" width="0.1165%" height="15" fill="rgb(229,96,14)" fg:x="62166" fg:w="175"/><text x="41.6228%" y="703.50"></text></g><g><title>__schedule (174 samples, 0.12%)</title><rect x="41.3735%" y="677" width="0.1158%" height="15" fill="rgb(220,79,17)" fg:x="62167" fg:w="174"/><text x="41.6235%" y="687.50"></text></g><g><title>do_futex (206 samples, 0.14%)</title><rect x="41.3575%" y="741" width="0.1371%" height="15" fill="rgb(205,131,53)" fg:x="62143" fg:w="206"/><text x="41.6075%" y="751.50"></text></g><g><title>futex_wait (204 samples, 0.14%)</title><rect x="41.3589%" y="725" width="0.1358%" height="15" fill="rgb(209,50,29)" fg:x="62145" fg:w="204"/><text x="41.6089%" y="735.50"></text></g><g><title>do_syscall_64 (212 samples, 0.14%)</title><rect x="41.3555%" y="773" width="0.1411%" height="15" fill="rgb(245,86,46)" fg:x="62140" fg:w="212"/><text x="41.6055%" y="783.50"></text></g><g><title>__x64_sys_futex (211 samples, 0.14%)</title><rect x="41.3562%" y="757" width="0.1404%" height="15" fill="rgb(235,66,46)" fg:x="62141" fg:w="211"/><text x="41.6062%" y="767.50"></text></g><g><title>__pthread_cond_timedwait (233 samples, 0.16%)</title><rect x="41.3456%" y="837" width="0.1551%" height="15" fill="rgb(232,148,31)" fg:x="62125" fg:w="233"/><text x="41.5956%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (233 samples, 0.16%)</title><rect x="41.3456%" y="821" width="0.1551%" height="15" fill="rgb(217,149,8)" fg:x="62125" fg:w="233"/><text x="41.5956%" y="831.50"></text></g><g><title>futex_abstimed_wait_cancelable (229 samples, 0.15%)</title><rect x="41.3482%" y="805" width="0.1524%" height="15" fill="rgb(209,183,11)" fg:x="62129" fg:w="229"/><text x="41.5982%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (218 samples, 0.15%)</title><rect x="41.3555%" y="789" width="0.1451%" height="15" fill="rgb(208,55,20)" fg:x="62140" fg:w="218"/><text x="41.6055%" y="799.50"></text></g><g><title>os::PlatformEvent::park (254 samples, 0.17%)</title><rect x="41.3436%" y="853" width="0.1690%" height="15" fill="rgb(218,39,14)" fg:x="62122" fg:w="254"/><text x="41.5936%" y="863.50"></text></g><g><title>Monitor::wait (298 samples, 0.20%)</title><rect x="41.3163%" y="885" width="0.1983%" height="15" fill="rgb(216,169,33)" fg:x="62081" fg:w="298"/><text x="41.5663%" y="895.50"></text></g><g><title>Monitor::IWait (290 samples, 0.19%)</title><rect x="41.3216%" y="869" width="0.1930%" height="15" fill="rgb(233,80,24)" fg:x="62089" fg:w="290"/><text x="41.5716%" y="879.50"></text></g><g><title>TieredThresholdPolicy::select_task (19 samples, 0.01%)</title><rect x="41.5146%" y="885" width="0.0126%" height="15" fill="rgb(213,179,31)" fg:x="62379" fg:w="19"/><text x="41.7646%" y="895.50"></text></g><g><title>CompileQueue::get (334 samples, 0.22%)</title><rect x="41.3089%" y="901" width="0.2223%" height="15" fill="rgb(209,19,5)" fg:x="62070" fg:w="334"/><text x="41.5589%" y="911.50"></text></g><g><title>Thread::call_run (961 samples, 0.64%)</title><rect x="40.8943%" y="949" width="0.6396%" height="15" fill="rgb(219,18,35)" fg:x="61447" fg:w="961"/><text x="41.1443%" y="959.50"></text></g><g><title>JavaThread::thread_main_inner (959 samples, 0.64%)</title><rect x="40.8957%" y="933" width="0.6382%" height="15" fill="rgb(209,169,16)" fg:x="61449" fg:w="959"/><text x="41.1457%" y="943.50"></text></g><g><title>CompileBroker::compiler_thread_loop (959 samples, 0.64%)</title><rect x="40.8957%" y="917" width="0.6382%" height="15" fill="rgb(245,90,51)" fg:x="61449" fg:w="959"/><text x="41.1457%" y="927.50"></text></g><g><title>__GI___clone (990 samples, 0.66%)</title><rect x="40.8764%" y="997" width="0.6589%" height="15" fill="rgb(220,99,45)" fg:x="61420" fg:w="990"/><text x="41.1264%" y="1007.50"></text></g><g><title>start_thread (971 samples, 0.65%)</title><rect x="40.8890%" y="981" width="0.6462%" height="15" fill="rgb(249,89,25)" fg:x="61439" fg:w="971"/><text x="41.1390%" y="991.50"></text></g><g><title>thread_native_entry (971 samples, 0.65%)</title><rect x="40.8890%" y="965" width="0.6462%" height="15" fill="rgb(239,193,0)" fg:x="61439" fg:w="971"/><text x="41.1390%" y="975.50"></text></g><g><title>asm_exc_page_fault (56 samples, 0.04%)</title><rect x="41.5439%" y="997" width="0.0373%" height="15" fill="rgb(231,126,1)" fg:x="62423" fg:w="56"/><text x="41.7939%" y="1007.50"></text></g><g><title>C2_CompilerThre (51,346 samples, 34.17%)</title><rect x="7.4372%" y="1013" width="34.1719%" height="15" fill="rgb(243,166,3)" fg:x="11175" fg:w="51346"/><text x="7.6872%" y="1023.50">C2_CompilerThre</text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="41.6417%" y="677" width="0.0120%" height="15" fill="rgb(223,22,34)" fg:x="62570" fg:w="18"/><text x="41.8917%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="41.6417%" y="661" width="0.0120%" height="15" fill="rgb(251,52,51)" fg:x="62570" fg:w="18"/><text x="41.8917%" y="671.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="41.6417%" y="645" width="0.0120%" height="15" fill="rgb(221,165,28)" fg:x="62570" fg:w="18"/><text x="41.8917%" y="655.50"></text></g><g><title>__pthread_cond_wait (20 samples, 0.01%)</title><rect x="41.6417%" y="869" width="0.0133%" height="15" fill="rgb(218,121,47)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (20 samples, 0.01%)</title><rect x="41.6417%" y="853" width="0.0133%" height="15" fill="rgb(209,120,9)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="863.50"></text></g><g><title>futex_wait_cancelable (20 samples, 0.01%)</title><rect x="41.6417%" y="837" width="0.0133%" height="15" fill="rgb(236,68,12)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="41.6417%" y="821" width="0.0133%" height="15" fill="rgb(225,194,26)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="831.50"></text></g><g><title>do_syscall_64 (20 samples, 0.01%)</title><rect x="41.6417%" y="805" width="0.0133%" height="15" fill="rgb(231,84,39)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="815.50"></text></g><g><title>__x64_sys_futex (20 samples, 0.01%)</title><rect x="41.6417%" y="789" width="0.0133%" height="15" fill="rgb(210,11,45)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="799.50"></text></g><g><title>do_futex (20 samples, 0.01%)</title><rect x="41.6417%" y="773" width="0.0133%" height="15" fill="rgb(224,54,52)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="783.50"></text></g><g><title>futex_wait (20 samples, 0.01%)</title><rect x="41.6417%" y="757" width="0.0133%" height="15" fill="rgb(238,102,14)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="767.50"></text></g><g><title>futex_wait_queue_me (20 samples, 0.01%)</title><rect x="41.6417%" y="741" width="0.0133%" height="15" fill="rgb(243,160,52)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="751.50"></text></g><g><title>schedule (20 samples, 0.01%)</title><rect x="41.6417%" y="725" width="0.0133%" height="15" fill="rgb(216,114,19)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="735.50"></text></g><g><title>__schedule (20 samples, 0.01%)</title><rect x="41.6417%" y="709" width="0.0133%" height="15" fill="rgb(244,166,37)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="719.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="41.6417%" y="693" width="0.0133%" height="15" fill="rgb(246,29,44)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="703.50"></text></g><g><title>Monitor::IWait (21 samples, 0.01%)</title><rect x="41.6417%" y="901" width="0.0140%" height="15" fill="rgb(215,56,53)" fg:x="62570" fg:w="21"/><text x="41.8917%" y="911.50"></text></g><g><title>os::PlatformEvent::park (21 samples, 0.01%)</title><rect x="41.6417%" y="885" width="0.0140%" height="15" fill="rgb(217,60,2)" fg:x="62570" fg:w="21"/><text x="41.8917%" y="895.50"></text></g><g><title>InterpreterRuntime::monitorenter (27 samples, 0.02%)</title><rect x="41.6397%" y="981" width="0.0180%" height="15" fill="rgb(207,26,24)" fg:x="62567" fg:w="27"/><text x="41.8897%" y="991.50"></text></g><g><title>ObjectSynchronizer::fast_enter (27 samples, 0.02%)</title><rect x="41.6397%" y="965" width="0.0180%" height="15" fill="rgb(252,210,15)" fg:x="62567" fg:w="27"/><text x="41.8897%" y="975.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (27 samples, 0.02%)</title><rect x="41.6397%" y="949" width="0.0180%" height="15" fill="rgb(253,209,26)" fg:x="62567" fg:w="27"/><text x="41.8897%" y="959.50"></text></g><g><title>VMThread::execute (27 samples, 0.02%)</title><rect x="41.6397%" y="933" width="0.0180%" height="15" fill="rgb(238,170,14)" fg:x="62567" fg:w="27"/><text x="41.8897%" y="943.50"></text></g><g><title>Monitor::wait (24 samples, 0.02%)</title><rect x="41.6417%" y="917" width="0.0160%" height="15" fill="rgb(216,178,15)" fg:x="62570" fg:w="24"/><text x="41.8917%" y="927.50"></text></g><g><title>futex_wait_queue_me (19 samples, 0.01%)</title><rect x="41.6643%" y="821" width="0.0126%" height="15" fill="rgb(250,197,2)" fg:x="62604" fg:w="19"/><text x="41.9143%" y="831.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="41.6663%" y="805" width="0.0106%" height="15" fill="rgb(212,70,42)" fg:x="62607" fg:w="16"/><text x="41.9163%" y="815.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="41.6663%" y="789" width="0.0106%" height="15" fill="rgb(227,213,9)" fg:x="62607" fg:w="16"/><text x="41.9163%" y="799.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="41.6630%" y="885" width="0.0153%" height="15" fill="rgb(245,99,25)" fg:x="62602" fg:w="23"/><text x="41.9130%" y="895.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="41.6630%" y="869" width="0.0153%" height="15" fill="rgb(250,82,29)" fg:x="62602" fg:w="23"/><text x="41.9130%" y="879.50"></text></g><g><title>do_futex (22 samples, 0.01%)</title><rect x="41.6637%" y="853" width="0.0146%" height="15" fill="rgb(241,226,54)" fg:x="62603" fg:w="22"/><text x="41.9137%" y="863.50"></text></g><g><title>futex_wait (21 samples, 0.01%)</title><rect x="41.6643%" y="837" width="0.0140%" height="15" fill="rgb(221,99,41)" fg:x="62604" fg:w="21"/><text x="41.9143%" y="847.50"></text></g><g><title>__pthread_cond_timedwait (26 samples, 0.02%)</title><rect x="41.6617%" y="949" width="0.0173%" height="15" fill="rgb(213,90,21)" fg:x="62600" fg:w="26"/><text x="41.9117%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (26 samples, 0.02%)</title><rect x="41.6617%" y="933" width="0.0173%" height="15" fill="rgb(205,208,24)" fg:x="62600" fg:w="26"/><text x="41.9117%" y="943.50"></text></g><g><title>futex_abstimed_wait_cancelable (26 samples, 0.02%)</title><rect x="41.6617%" y="917" width="0.0173%" height="15" fill="rgb(246,31,12)" fg:x="62600" fg:w="26"/><text x="41.9117%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="41.6630%" y="901" width="0.0160%" height="15" fill="rgb(213,154,6)" fg:x="62602" fg:w="24"/><text x="41.9130%" y="911.50"></text></g><g><title>Unsafe_Park (28 samples, 0.02%)</title><rect x="41.6617%" y="981" width="0.0186%" height="15" fill="rgb(222,163,29)" fg:x="62600" fg:w="28"/><text x="41.9117%" y="991.50"></text></g><g><title>Parker::park (28 samples, 0.02%)</title><rect x="41.6617%" y="965" width="0.0186%" height="15" fill="rgb(227,201,8)" fg:x="62600" fg:w="28"/><text x="41.9117%" y="975.50"></text></g><g><title>[perf-943567.map] (110 samples, 0.07%)</title><rect x="41.6118%" y="997" width="0.0732%" height="15" fill="rgb(233,9,32)" fg:x="62525" fg:w="110"/><text x="41.8618%" y="1007.50"></text></g><g><title>[unknown] (18 samples, 0.01%)</title><rect x="41.6850%" y="997" width="0.0120%" height="15" fill="rgb(217,54,24)" fg:x="62635" fg:w="18"/><text x="41.9350%" y="1007.50"></text></g><g><title>readBytes (17 samples, 0.01%)</title><rect x="41.6856%" y="981" width="0.0113%" height="15" fill="rgb(235,192,0)" fg:x="62636" fg:w="17"/><text x="41.9356%" y="991.50"></text></g><g><title>Command-Accumul (133 samples, 0.09%)</title><rect x="41.6091%" y="1013" width="0.0885%" height="15" fill="rgb(235,45,9)" fg:x="62521" fg:w="133"/><text x="41.8591%" y="1023.50"></text></g><g><title>[perf-943567.map] (22 samples, 0.01%)</title><rect x="41.6976%" y="997" width="0.0146%" height="15" fill="rgb(246,42,40)" fg:x="62654" fg:w="22"/><text x="41.9476%" y="1007.50"></text></g><g><title>Common-Cleaner (23 samples, 0.02%)</title><rect x="41.6976%" y="1013" width="0.0153%" height="15" fill="rgb(248,111,24)" fg:x="62654" fg:w="23"/><text x="41.9476%" y="1023.50"></text></g><g><title>[anon] (16 samples, 0.01%)</title><rect x="41.7256%" y="997" width="0.0106%" height="15" fill="rgb(249,65,22)" fg:x="62696" fg:w="16"/><text x="41.9756%" y="1007.50"></text></g><g><title>dequeue_task_fair (26 samples, 0.02%)</title><rect x="42.0716%" y="773" width="0.0173%" height="15" fill="rgb(238,111,51)" fg:x="63216" fg:w="26"/><text x="42.3216%" y="783.50"></text></g><g><title>dequeue_entity (19 samples, 0.01%)</title><rect x="42.0763%" y="757" width="0.0126%" height="15" fill="rgb(250,118,22)" fg:x="63223" fg:w="19"/><text x="42.3263%" y="767.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="42.0889%" y="773" width="0.0126%" height="15" fill="rgb(234,84,26)" fg:x="63242" fg:w="19"/><text x="42.3389%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (16 samples, 0.01%)</title><rect x="42.0909%" y="757" width="0.0106%" height="15" fill="rgb(243,172,12)" fg:x="63245" fg:w="16"/><text x="42.3409%" y="767.50"></text></g><g><title>futex_wait_queue_me (73 samples, 0.05%)</title><rect x="42.0650%" y="821" width="0.0486%" height="15" fill="rgb(236,150,49)" fg:x="63206" fg:w="73"/><text x="42.3150%" y="831.50"></text></g><g><title>schedule (68 samples, 0.05%)</title><rect x="42.0683%" y="805" width="0.0453%" height="15" fill="rgb(225,197,26)" fg:x="63211" fg:w="68"/><text x="42.3183%" y="815.50"></text></g><g><title>__schedule (68 samples, 0.05%)</title><rect x="42.0683%" y="789" width="0.0453%" height="15" fill="rgb(214,17,42)" fg:x="63211" fg:w="68"/><text x="42.3183%" y="799.50"></text></g><g><title>__x64_sys_futex (92 samples, 0.06%)</title><rect x="42.0610%" y="869" width="0.0612%" height="15" fill="rgb(224,165,40)" fg:x="63200" fg:w="92"/><text x="42.3110%" y="879.50"></text></g><g><title>do_futex (88 samples, 0.06%)</title><rect x="42.0637%" y="853" width="0.0586%" height="15" fill="rgb(246,100,4)" fg:x="63204" fg:w="88"/><text x="42.3137%" y="863.50"></text></g><g><title>futex_wait (88 samples, 0.06%)</title><rect x="42.0637%" y="837" width="0.0586%" height="15" fill="rgb(222,103,0)" fg:x="63204" fg:w="88"/><text x="42.3137%" y="847.50"></text></g><g><title>do_syscall_64 (94 samples, 0.06%)</title><rect x="42.0603%" y="885" width="0.0626%" height="15" fill="rgb(227,189,26)" fg:x="63199" fg:w="94"/><text x="42.3103%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (95 samples, 0.06%)</title><rect x="42.0603%" y="901" width="0.0632%" height="15" fill="rgb(214,202,17)" fg:x="63199" fg:w="95"/><text x="42.3103%" y="911.50"></text></g><g><title>__pthread_cond_timedwait (111 samples, 0.07%)</title><rect x="42.0503%" y="949" width="0.0739%" height="15" fill="rgb(229,111,3)" fg:x="63184" fg:w="111"/><text x="42.3003%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (111 samples, 0.07%)</title><rect x="42.0503%" y="933" width="0.0739%" height="15" fill="rgb(229,172,15)" fg:x="63184" fg:w="111"/><text x="42.3003%" y="943.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.07%)</title><rect x="42.0537%" y="917" width="0.0705%" height="15" fill="rgb(230,224,35)" fg:x="63189" fg:w="106"/><text x="42.3037%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (31 samples, 0.02%)</title><rect x="42.1275%" y="757" width="0.0206%" height="15" fill="rgb(251,141,6)" fg:x="63300" fg:w="31"/><text x="42.3775%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.02%)</title><rect x="42.1282%" y="741" width="0.0200%" height="15" fill="rgb(225,208,6)" fg:x="63301" fg:w="30"/><text x="42.3782%" y="751.50"></text></g><g><title>native_write_msr (30 samples, 0.02%)</title><rect x="42.1282%" y="725" width="0.0200%" height="15" fill="rgb(246,181,16)" fg:x="63301" fg:w="30"/><text x="42.3782%" y="735.50"></text></g><g><title>finish_task_switch (32 samples, 0.02%)</title><rect x="42.1275%" y="773" width="0.0213%" height="15" fill="rgb(227,129,36)" fg:x="63300" fg:w="32"/><text x="42.3775%" y="783.50"></text></g><g><title>do_syscall_64 (40 samples, 0.03%)</title><rect x="42.1242%" y="885" width="0.0266%" height="15" fill="rgb(248,117,24)" fg:x="63295" fg:w="40"/><text x="42.3742%" y="895.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.03%)</title><rect x="42.1249%" y="869" width="0.0260%" height="15" fill="rgb(214,185,35)" fg:x="63296" fg:w="39"/><text x="42.3749%" y="879.50"></text></g><g><title>do_futex (39 samples, 0.03%)</title><rect x="42.1249%" y="853" width="0.0260%" height="15" fill="rgb(236,150,34)" fg:x="63296" fg:w="39"/><text x="42.3749%" y="863.50"></text></g><g><title>futex_wait (38 samples, 0.03%)</title><rect x="42.1255%" y="837" width="0.0253%" height="15" fill="rgb(243,228,27)" fg:x="63297" fg:w="38"/><text x="42.3755%" y="847.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.02%)</title><rect x="42.1262%" y="821" width="0.0246%" height="15" fill="rgb(245,77,44)" fg:x="63298" fg:w="37"/><text x="42.3762%" y="831.50"></text></g><g><title>schedule (37 samples, 0.02%)</title><rect x="42.1262%" y="805" width="0.0246%" height="15" fill="rgb(235,214,42)" fg:x="63298" fg:w="37"/><text x="42.3762%" y="815.50"></text></g><g><title>__schedule (37 samples, 0.02%)</title><rect x="42.1262%" y="789" width="0.0246%" height="15" fill="rgb(221,74,3)" fg:x="63298" fg:w="37"/><text x="42.3762%" y="799.50"></text></g><g><title>__pthread_cond_wait (41 samples, 0.03%)</title><rect x="42.1242%" y="949" width="0.0273%" height="15" fill="rgb(206,121,29)" fg:x="63295" fg:w="41"/><text x="42.3742%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (41 samples, 0.03%)</title><rect x="42.1242%" y="933" width="0.0273%" height="15" fill="rgb(249,131,53)" fg:x="63295" fg:w="41"/><text x="42.3742%" y="943.50"></text></g><g><title>futex_wait_cancelable (41 samples, 0.03%)</title><rect x="42.1242%" y="917" width="0.0273%" height="15" fill="rgb(236,170,29)" fg:x="63295" fg:w="41"/><text x="42.3742%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="42.1242%" y="901" width="0.0273%" height="15" fill="rgb(247,96,15)" fg:x="63295" fg:w="41"/><text x="42.3742%" y="911.50"></text></g><g><title>Parker::park (184 samples, 0.12%)</title><rect x="42.0424%" y="965" width="0.1225%" height="15" fill="rgb(211,210,7)" fg:x="63172" fg:w="184"/><text x="42.2924%" y="975.50"></text></g><g><title>Unsafe_Park (189 samples, 0.13%)</title><rect x="42.0397%" y="981" width="0.1258%" height="15" fill="rgb(240,88,50)" fg:x="63168" fg:w="189"/><text x="42.2897%" y="991.50"></text></g><g><title>[perf-943567.map] (649 samples, 0.43%)</title><rect x="41.7362%" y="997" width="0.4319%" height="15" fill="rgb(209,229,26)" fg:x="62712" fg:w="649"/><text x="41.9862%" y="1007.50"></text></g><g><title>ForkJoinPool.co (682 samples, 0.45%)</title><rect x="41.7249%" y="1013" width="0.4539%" height="15" fill="rgb(210,68,23)" fg:x="62695" fg:w="682"/><text x="41.9749%" y="1023.50"></text></g><g><title>G1CMRootRegionScanTask::work (18 samples, 0.01%)</title><rect x="42.1795%" y="917" width="0.0120%" height="15" fill="rgb(229,180,13)" fg:x="63378" fg:w="18"/><text x="42.4295%" y="927.50"></text></g><g><title>G1ConcurrentMark::scan_root_region (18 samples, 0.01%)</title><rect x="42.1795%" y="901" width="0.0120%" height="15" fill="rgb(236,53,44)" fg:x="63378" fg:w="18"/><text x="42.4295%" y="911.50"></text></g><g><title>__GI___clone (44 samples, 0.03%)</title><rect x="42.1788%" y="997" width="0.0293%" height="15" fill="rgb(244,214,29)" fg:x="63377" fg:w="44"/><text x="42.4288%" y="1007.50"></text></g><g><title>start_thread (44 samples, 0.03%)</title><rect x="42.1788%" y="981" width="0.0293%" height="15" fill="rgb(220,75,29)" fg:x="63377" fg:w="44"/><text x="42.4288%" y="991.50"></text></g><g><title>thread_native_entry (44 samples, 0.03%)</title><rect x="42.1788%" y="965" width="0.0293%" height="15" fill="rgb(214,183,37)" fg:x="63377" fg:w="44"/><text x="42.4288%" y="975.50"></text></g><g><title>Thread::call_run (44 samples, 0.03%)</title><rect x="42.1788%" y="949" width="0.0293%" height="15" fill="rgb(239,117,29)" fg:x="63377" fg:w="44"/><text x="42.4288%" y="959.50"></text></g><g><title>GangWorker::loop (44 samples, 0.03%)</title><rect x="42.1788%" y="933" width="0.0293%" height="15" fill="rgb(237,171,35)" fg:x="63377" fg:w="44"/><text x="42.4288%" y="943.50"></text></g><g><title>G1_Conc#0 (48 samples, 0.03%)</title><rect x="42.1788%" y="1013" width="0.0319%" height="15" fill="rgb(229,178,53)" fg:x="63377" fg:w="48"/><text x="42.4288%" y="1023.50"></text></g><g><title>G1CMRootRegionScanTask::work (19 samples, 0.01%)</title><rect x="42.2114%" y="917" width="0.0126%" height="15" fill="rgb(210,102,19)" fg:x="63426" fg:w="19"/><text x="42.4614%" y="927.50"></text></g><g><title>G1ConcurrentMark::scan_root_region (19 samples, 0.01%)</title><rect x="42.2114%" y="901" width="0.0126%" height="15" fill="rgb(235,127,22)" fg:x="63426" fg:w="19"/><text x="42.4614%" y="911.50"></text></g><g><title>__GI___clone (27 samples, 0.02%)</title><rect x="42.2107%" y="997" width="0.0180%" height="15" fill="rgb(244,31,31)" fg:x="63425" fg:w="27"/><text x="42.4607%" y="1007.50"></text></g><g><title>start_thread (27 samples, 0.02%)</title><rect x="42.2107%" y="981" width="0.0180%" height="15" fill="rgb(231,43,21)" fg:x="63425" fg:w="27"/><text x="42.4607%" y="991.50"></text></g><g><title>thread_native_entry (27 samples, 0.02%)</title><rect x="42.2107%" y="965" width="0.0180%" height="15" fill="rgb(217,131,35)" fg:x="63425" fg:w="27"/><text x="42.4607%" y="975.50"></text></g><g><title>Thread::call_run (27 samples, 0.02%)</title><rect x="42.2107%" y="949" width="0.0180%" height="15" fill="rgb(221,149,4)" fg:x="63425" fg:w="27"/><text x="42.4607%" y="959.50"></text></g><g><title>GangWorker::loop (27 samples, 0.02%)</title><rect x="42.2107%" y="933" width="0.0180%" height="15" fill="rgb(232,170,28)" fg:x="63425" fg:w="27"/><text x="42.4607%" y="943.50"></text></g><g><title>G1_Conc#1 (28 samples, 0.02%)</title><rect x="42.2107%" y="1013" width="0.0186%" height="15" fill="rgb(238,56,10)" fg:x="63425" fg:w="28"/><text x="42.4607%" y="1023.50"></text></g><g><title>Thread::call_run (16 samples, 0.01%)</title><rect x="42.2340%" y="949" width="0.0106%" height="15" fill="rgb(235,196,14)" fg:x="63460" fg:w="16"/><text x="42.4840%" y="959.50"></text></g><g><title>ConcurrentGCThread::run (16 samples, 0.01%)</title><rect x="42.2340%" y="933" width="0.0106%" height="15" fill="rgb(216,45,48)" fg:x="63460" fg:w="16"/><text x="42.4840%" y="943.50"></text></g><g><title>G1_Main_Marker (24 samples, 0.02%)</title><rect x="42.2294%" y="1013" width="0.0160%" height="15" fill="rgb(238,213,17)" fg:x="63453" fg:w="24"/><text x="42.4794%" y="1023.50"></text></g><g><title>__GI___clone (23 samples, 0.02%)</title><rect x="42.2300%" y="997" width="0.0153%" height="15" fill="rgb(212,13,2)" fg:x="63454" fg:w="23"/><text x="42.4800%" y="1007.50"></text></g><g><title>start_thread (17 samples, 0.01%)</title><rect x="42.2340%" y="981" width="0.0113%" height="15" fill="rgb(240,114,20)" fg:x="63460" fg:w="17"/><text x="42.4840%" y="991.50"></text></g><g><title>thread_native_entry (17 samples, 0.01%)</title><rect x="42.2340%" y="965" width="0.0113%" height="15" fill="rgb(228,41,40)" fg:x="63460" fg:w="17"/><text x="42.4840%" y="975.50"></text></g><g><title>G1_Refine#0 (27 samples, 0.02%)</title><rect x="42.2453%" y="1013" width="0.0180%" height="15" fill="rgb(244,132,35)" fg:x="63477" fg:w="27"/><text x="42.4953%" y="1023.50"></text></g><g><title>__GI___clone (25 samples, 0.02%)</title><rect x="42.2467%" y="997" width="0.0166%" height="15" fill="rgb(253,189,4)" fg:x="63479" fg:w="25"/><text x="42.4967%" y="1007.50"></text></g><g><title>start_thread (25 samples, 0.02%)</title><rect x="42.2467%" y="981" width="0.0166%" height="15" fill="rgb(224,37,19)" fg:x="63479" fg:w="25"/><text x="42.4967%" y="991.50"></text></g><g><title>thread_native_entry (25 samples, 0.02%)</title><rect x="42.2467%" y="965" width="0.0166%" height="15" fill="rgb(235,223,18)" fg:x="63479" fg:w="25"/><text x="42.4967%" y="975.50"></text></g><g><title>Thread::call_run (25 samples, 0.02%)</title><rect x="42.2467%" y="949" width="0.0166%" height="15" fill="rgb(235,163,25)" fg:x="63479" fg:w="25"/><text x="42.4967%" y="959.50"></text></g><g><title>ConcurrentGCThread::run (25 samples, 0.02%)</title><rect x="42.2467%" y="933" width="0.0166%" height="15" fill="rgb(217,145,28)" fg:x="63479" fg:w="25"/><text x="42.4967%" y="943.50"></text></g><g><title>Monitor::wait (16 samples, 0.01%)</title><rect x="42.2779%" y="901" width="0.0106%" height="15" fill="rgb(223,223,32)" fg:x="63526" fg:w="16"/><text x="42.5279%" y="911.50"></text></g><g><title>Monitor::IWait (16 samples, 0.01%)</title><rect x="42.2779%" y="885" width="0.0106%" height="15" fill="rgb(227,189,39)" fg:x="63526" fg:w="16"/><text x="42.5279%" y="895.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="42.2779%" y="869" width="0.0106%" height="15" fill="rgb(248,10,22)" fg:x="63526" fg:w="16"/><text x="42.5279%" y="879.50"></text></g><g><title>__pthread_cond_timedwait (16 samples, 0.01%)</title><rect x="42.2779%" y="853" width="0.0106%" height="15" fill="rgb(248,46,39)" fg:x="63526" fg:w="16"/><text x="42.5279%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.01%)</title><rect x="42.2779%" y="837" width="0.0106%" height="15" fill="rgb(248,113,48)" fg:x="63526" fg:w="16"/><text x="42.5279%" y="847.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (25 samples, 0.02%)</title><rect x="42.2740%" y="917" width="0.0166%" height="15" fill="rgb(245,16,25)" fg:x="63520" fg:w="25"/><text x="42.5240%" y="927.50"></text></g><g><title>G1_Young_RemSet (33 samples, 0.02%)</title><rect x="42.2740%" y="1013" width="0.0220%" height="15" fill="rgb(249,152,16)" fg:x="63520" fg:w="33"/><text x="42.5240%" y="1023.50"></text></g><g><title>__GI___clone (33 samples, 0.02%)</title><rect x="42.2740%" y="997" width="0.0220%" height="15" fill="rgb(250,16,1)" fg:x="63520" fg:w="33"/><text x="42.5240%" y="1007.50"></text></g><g><title>start_thread (33 samples, 0.02%)</title><rect x="42.2740%" y="981" width="0.0220%" height="15" fill="rgb(249,138,3)" fg:x="63520" fg:w="33"/><text x="42.5240%" y="991.50"></text></g><g><title>thread_native_entry (33 samples, 0.02%)</title><rect x="42.2740%" y="965" width="0.0220%" height="15" fill="rgb(227,71,41)" fg:x="63520" fg:w="33"/><text x="42.5240%" y="975.50"></text></g><g><title>Thread::call_run (33 samples, 0.02%)</title><rect x="42.2740%" y="949" width="0.0220%" height="15" fill="rgb(209,184,23)" fg:x="63520" fg:w="33"/><text x="42.5240%" y="959.50"></text></g><g><title>ConcurrentGCThread::run (33 samples, 0.02%)</title><rect x="42.2740%" y="933" width="0.0220%" height="15" fill="rgb(223,215,31)" fg:x="63520" fg:w="33"/><text x="42.5240%" y="943.50"></text></g><g><title>G1ParScanThreadState::trim_queue (74 samples, 0.05%)</title><rect x="42.3112%" y="885" width="0.0492%" height="15" fill="rgb(210,146,28)" fg:x="63576" fg:w="74"/><text x="42.5612%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (50 samples, 0.03%)</title><rect x="42.3272%" y="869" width="0.0333%" height="15" fill="rgb(209,183,41)" fg:x="63600" fg:w="50"/><text x="42.5772%" y="879.50"></text></g><g><title>SpinPause (21 samples, 0.01%)</title><rect x="42.3625%" y="885" width="0.0140%" height="15" fill="rgb(209,224,45)" fg:x="63653" fg:w="21"/><text x="42.6125%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (102 samples, 0.07%)</title><rect x="42.3092%" y="901" width="0.0679%" height="15" fill="rgb(224,209,51)" fg:x="63573" fg:w="102"/><text x="42.5592%" y="911.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (24 samples, 0.02%)</title><rect x="42.3771%" y="805" width="0.0160%" height="15" fill="rgb(223,17,39)" fg:x="63675" fg:w="24"/><text x="42.6271%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (23 samples, 0.02%)</title><rect x="42.3778%" y="789" width="0.0153%" height="15" fill="rgb(234,204,37)" fg:x="63676" fg:w="23"/><text x="42.6278%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (25 samples, 0.02%)</title><rect x="42.3771%" y="821" width="0.0166%" height="15" fill="rgb(236,120,5)" fg:x="63675" fg:w="25"/><text x="42.6271%" y="831.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (26 samples, 0.02%)</title><rect x="42.3771%" y="901" width="0.0173%" height="15" fill="rgb(248,97,27)" fg:x="63675" fg:w="26"/><text x="42.6271%" y="911.50"></text></g><g><title>G1RemSet::update_rem_set (26 samples, 0.02%)</title><rect x="42.3771%" y="885" width="0.0173%" height="15" fill="rgb(240,66,17)" fg:x="63675" fg:w="26"/><text x="42.6271%" y="895.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (26 samples, 0.02%)</title><rect x="42.3771%" y="869" width="0.0173%" height="15" fill="rgb(210,79,3)" fg:x="63675" fg:w="26"/><text x="42.6271%" y="879.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (26 samples, 0.02%)</title><rect x="42.3771%" y="853" width="0.0173%" height="15" fill="rgb(214,176,27)" fg:x="63675" fg:w="26"/><text x="42.6271%" y="863.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (26 samples, 0.02%)</title><rect x="42.3771%" y="837" width="0.0173%" height="15" fill="rgb(235,185,3)" fg:x="63675" fg:w="26"/><text x="42.6271%" y="847.50"></text></g><g><title>G1RemSet::scan_rem_set (33 samples, 0.02%)</title><rect x="42.3944%" y="901" width="0.0220%" height="15" fill="rgb(227,24,12)" fg:x="63701" fg:w="33"/><text x="42.6444%" y="911.50"></text></g><g><title>G1CollectionSet::iterate_from (33 samples, 0.02%)</title><rect x="42.3944%" y="885" width="0.0220%" height="15" fill="rgb(252,169,48)" fg:x="63701" fg:w="33"/><text x="42.6444%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (33 samples, 0.02%)</title><rect x="42.3944%" y="869" width="0.0220%" height="15" fill="rgb(212,65,1)" fg:x="63701" fg:w="33"/><text x="42.6444%" y="879.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (24 samples, 0.02%)</title><rect x="42.4004%" y="853" width="0.0160%" height="15" fill="rgb(242,39,24)" fg:x="63710" fg:w="24"/><text x="42.6504%" y="863.50"></text></g><g><title>G1CodeRootSet::nmethods_do (24 samples, 0.02%)</title><rect x="42.4004%" y="837" width="0.0160%" height="15" fill="rgb(249,32,23)" fg:x="63710" fg:w="24"/><text x="42.6504%" y="847.50"></text></g><g><title>G1CodeBlobClosure::do_code_blob (24 samples, 0.02%)</title><rect x="42.4004%" y="821" width="0.0160%" height="15" fill="rgb(251,195,23)" fg:x="63710" fg:w="24"/><text x="42.6504%" y="831.50"></text></g><g><title>nmethod::oops_do (23 samples, 0.02%)</title><rect x="42.4011%" y="805" width="0.0153%" height="15" fill="rgb(236,174,8)" fg:x="63711" fg:w="23"/><text x="42.6511%" y="815.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (26 samples, 0.02%)</title><rect x="42.4323%" y="773" width="0.0173%" height="15" fill="rgb(220,197,8)" fg:x="63758" fg:w="26"/><text x="42.6823%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="42.4357%" y="757" width="0.0140%" height="15" fill="rgb(240,108,37)" fg:x="63763" fg:w="21"/><text x="42.6857%" y="767.50"></text></g><g><title>InterpreterOopMap::iterate_oop (38 samples, 0.03%)</title><rect x="42.4250%" y="805" width="0.0253%" height="15" fill="rgb(232,176,24)" fg:x="63747" fg:w="38"/><text x="42.6750%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (37 samples, 0.02%)</title><rect x="42.4257%" y="789" width="0.0246%" height="15" fill="rgb(243,35,29)" fg:x="63748" fg:w="37"/><text x="42.6757%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (55 samples, 0.04%)</title><rect x="42.4164%" y="885" width="0.0366%" height="15" fill="rgb(210,37,18)" fg:x="63734" fg:w="55"/><text x="42.6664%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (55 samples, 0.04%)</title><rect x="42.4164%" y="869" width="0.0366%" height="15" fill="rgb(224,184,40)" fg:x="63734" fg:w="55"/><text x="42.6664%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (55 samples, 0.04%)</title><rect x="42.4164%" y="853" width="0.0366%" height="15" fill="rgb(236,39,29)" fg:x="63734" fg:w="55"/><text x="42.6664%" y="863.50"></text></g><g><title>JavaThread::oops_do (55 samples, 0.04%)</title><rect x="42.4164%" y="837" width="0.0366%" height="15" fill="rgb(232,48,39)" fg:x="63734" fg:w="55"/><text x="42.6664%" y="847.50"></text></g><g><title>frame::oops_interpreted_do (44 samples, 0.03%)</title><rect x="42.4237%" y="821" width="0.0293%" height="15" fill="rgb(236,34,42)" fg:x="63745" fg:w="44"/><text x="42.6737%" y="831.50"></text></g><g><title>G1ParTask::work (232 samples, 0.15%)</title><rect x="42.3092%" y="917" width="0.1544%" height="15" fill="rgb(243,106,37)" fg:x="63573" fg:w="232"/><text x="42.5592%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (71 samples, 0.05%)</title><rect x="42.4164%" y="901" width="0.0473%" height="15" fill="rgb(218,96,6)" fg:x="63734" fg:w="71"/><text x="42.6664%" y="911.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (16 samples, 0.01%)</title><rect x="42.4530%" y="885" width="0.0106%" height="15" fill="rgb(235,130,12)" fg:x="63789" fg:w="16"/><text x="42.7030%" y="895.50"></text></g><g><title>G1STWRefProcTaskProxy::work (21 samples, 0.01%)</title><rect x="42.4663%" y="917" width="0.0140%" height="15" fill="rgb(231,95,0)" fg:x="63809" fg:w="21"/><text x="42.7163%" y="927.50"></text></g><g><title>JavaThread::nmethods_do (20 samples, 0.01%)</title><rect x="42.4823%" y="885" width="0.0133%" height="15" fill="rgb(228,12,23)" fg:x="63833" fg:w="20"/><text x="42.7323%" y="895.50"></text></g><g><title>frame::sender (17 samples, 0.01%)</title><rect x="42.4843%" y="869" width="0.0113%" height="15" fill="rgb(216,12,1)" fg:x="63836" fg:w="17"/><text x="42.7343%" y="879.50"></text></g><g><title>ParallelSPCleanupTask::work (26 samples, 0.02%)</title><rect x="42.4803%" y="917" width="0.0173%" height="15" fill="rgb(219,59,3)" fg:x="63830" fg:w="26"/><text x="42.7303%" y="927.50"></text></g><g><title>Threads::possibly_parallel_threads_do (25 samples, 0.02%)</title><rect x="42.4809%" y="901" width="0.0166%" height="15" fill="rgb(215,208,46)" fg:x="63831" fg:w="25"/><text x="42.7309%" y="911.50"></text></g><g><title>finish_task_switch (68 samples, 0.05%)</title><rect x="42.5042%" y="709" width="0.0453%" height="15" fill="rgb(254,224,29)" fg:x="63866" fg:w="68"/><text x="42.7542%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.04%)</title><rect x="42.5056%" y="693" width="0.0439%" height="15" fill="rgb(232,14,29)" fg:x="63868" fg:w="66"/><text x="42.7556%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.04%)</title><rect x="42.5062%" y="677" width="0.0433%" height="15" fill="rgb(208,45,52)" fg:x="63869" fg:w="65"/><text x="42.7562%" y="687.50"></text></g><g><title>native_write_msr (64 samples, 0.04%)</title><rect x="42.5069%" y="661" width="0.0426%" height="15" fill="rgb(234,191,28)" fg:x="63870" fg:w="64"/><text x="42.7569%" y="671.50"></text></g><g><title>futex_wait_queue_me (77 samples, 0.05%)</title><rect x="42.5009%" y="757" width="0.0512%" height="15" fill="rgb(244,67,43)" fg:x="63861" fg:w="77"/><text x="42.7509%" y="767.50"></text></g><g><title>schedule (76 samples, 0.05%)</title><rect x="42.5016%" y="741" width="0.0506%" height="15" fill="rgb(236,189,24)" fg:x="63862" fg:w="76"/><text x="42.7516%" y="751.50"></text></g><g><title>__schedule (75 samples, 0.05%)</title><rect x="42.5022%" y="725" width="0.0499%" height="15" fill="rgb(239,214,33)" fg:x="63863" fg:w="75"/><text x="42.7522%" y="735.50"></text></g><g><title>do_syscall_64 (79 samples, 0.05%)</title><rect x="42.5009%" y="821" width="0.0526%" height="15" fill="rgb(226,176,41)" fg:x="63861" fg:w="79"/><text x="42.7509%" y="831.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.05%)</title><rect x="42.5009%" y="805" width="0.0526%" height="15" fill="rgb(248,47,8)" fg:x="63861" fg:w="79"/><text x="42.7509%" y="815.50"></text></g><g><title>do_futex (79 samples, 0.05%)</title><rect x="42.5009%" y="789" width="0.0526%" height="15" fill="rgb(218,81,44)" fg:x="63861" fg:w="79"/><text x="42.7509%" y="799.50"></text></g><g><title>futex_wait (79 samples, 0.05%)</title><rect x="42.5009%" y="773" width="0.0526%" height="15" fill="rgb(213,98,6)" fg:x="63861" fg:w="79"/><text x="42.7509%" y="783.50"></text></g><g><title>GC_Thread#0 (389 samples, 0.26%)</title><rect x="42.2959%" y="1013" width="0.2589%" height="15" fill="rgb(222,85,22)" fg:x="63553" fg:w="389"/><text x="42.5459%" y="1023.50"></text></g><g><title>__GI___clone (380 samples, 0.25%)</title><rect x="42.3019%" y="997" width="0.2529%" height="15" fill="rgb(239,46,39)" fg:x="63562" fg:w="380"/><text x="42.5519%" y="1007.50"></text></g><g><title>start_thread (380 samples, 0.25%)</title><rect x="42.3019%" y="981" width="0.2529%" height="15" fill="rgb(237,12,29)" fg:x="63562" fg:w="380"/><text x="42.5519%" y="991.50"></text></g><g><title>thread_native_entry (380 samples, 0.25%)</title><rect x="42.3019%" y="965" width="0.2529%" height="15" fill="rgb(214,77,8)" fg:x="63562" fg:w="380"/><text x="42.5519%" y="975.50"></text></g><g><title>Thread::call_run (380 samples, 0.25%)</title><rect x="42.3019%" y="949" width="0.2529%" height="15" fill="rgb(217,168,37)" fg:x="63562" fg:w="380"/><text x="42.5519%" y="959.50"></text></g><g><title>GangWorker::loop (380 samples, 0.25%)</title><rect x="42.3019%" y="933" width="0.2529%" height="15" fill="rgb(221,217,23)" fg:x="63562" fg:w="380"/><text x="42.5519%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (86 samples, 0.06%)</title><rect x="42.4976%" y="917" width="0.0572%" height="15" fill="rgb(243,229,36)" fg:x="63856" fg:w="86"/><text x="42.7476%" y="927.50"></text></g><g><title>PosixSemaphore::wait (86 samples, 0.06%)</title><rect x="42.4976%" y="901" width="0.0572%" height="15" fill="rgb(251,163,40)" fg:x="63856" fg:w="86"/><text x="42.7476%" y="911.50"></text></g><g><title>__new_sem_wait_slow (83 samples, 0.06%)</title><rect x="42.4996%" y="885" width="0.0552%" height="15" fill="rgb(237,222,12)" fg:x="63859" fg:w="83"/><text x="42.7496%" y="895.50"></text></g><g><title>do_futex_wait (82 samples, 0.05%)</title><rect x="42.5002%" y="869" width="0.0546%" height="15" fill="rgb(248,132,6)" fg:x="63860" fg:w="82"/><text x="42.7502%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (82 samples, 0.05%)</title><rect x="42.5002%" y="853" width="0.0546%" height="15" fill="rgb(227,167,50)" fg:x="63860" fg:w="82"/><text x="42.7502%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.05%)</title><rect x="42.5009%" y="837" width="0.0539%" height="15" fill="rgb(242,84,37)" fg:x="63861" fg:w="81"/><text x="42.7509%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="42.5774%" y="869" width="0.0140%" height="15" fill="rgb(212,4,50)" fg:x="63976" fg:w="21"/><text x="42.8274%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue (33 samples, 0.02%)</title><rect x="42.5708%" y="885" width="0.0220%" height="15" fill="rgb(230,228,32)" fg:x="63966" fg:w="33"/><text x="42.8208%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (38 samples, 0.03%)</title><rect x="42.5694%" y="901" width="0.0253%" height="15" fill="rgb(248,217,23)" fg:x="63964" fg:w="38"/><text x="42.8194%" y="911.50"></text></g><g><title>G1ParCopyClosure<(G1Barrier)1, (G1Mark)0>::do_oop (24 samples, 0.02%)</title><rect x="42.5994%" y="821" width="0.0160%" height="15" fill="rgb(238,197,32)" fg:x="64009" fg:w="24"/><text x="42.8494%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (20 samples, 0.01%)</title><rect x="42.6021%" y="805" width="0.0133%" height="15" fill="rgb(236,106,1)" fg:x="64013" fg:w="20"/><text x="42.8521%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (39 samples, 0.03%)</title><rect x="42.6234%" y="789" width="0.0260%" height="15" fill="rgb(219,228,13)" fg:x="64045" fg:w="39"/><text x="42.8734%" y="799.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (81 samples, 0.05%)</title><rect x="42.5961%" y="869" width="0.0539%" height="15" fill="rgb(238,30,35)" fg:x="64004" fg:w="81"/><text x="42.8461%" y="879.50"></text></g><g><title>G1CLDScanClosure::do_cld (80 samples, 0.05%)</title><rect x="42.5967%" y="853" width="0.0532%" height="15" fill="rgb(236,70,23)" fg:x="64005" fg:w="80"/><text x="42.8467%" y="863.50"></text></g><g><title>ClassLoaderData::oops_do (80 samples, 0.05%)</title><rect x="42.5967%" y="837" width="0.0532%" height="15" fill="rgb(249,104,48)" fg:x="64005" fg:w="80"/><text x="42.8467%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (52 samples, 0.03%)</title><rect x="42.6154%" y="821" width="0.0346%" height="15" fill="rgb(254,117,50)" fg:x="64033" fg:w="52"/><text x="42.8654%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (48 samples, 0.03%)</title><rect x="42.6180%" y="805" width="0.0319%" height="15" fill="rgb(223,152,4)" fg:x="64037" fg:w="48"/><text x="42.8680%" y="815.50"></text></g><g><title>frame::oops_do_internal (20 samples, 0.01%)</title><rect x="42.6586%" y="821" width="0.0133%" height="15" fill="rgb(245,6,2)" fg:x="64098" fg:w="20"/><text x="42.9086%" y="831.50"></text></g><g><title>OopMapSet::oops_do (20 samples, 0.01%)</title><rect x="42.6586%" y="805" width="0.0133%" height="15" fill="rgb(249,150,24)" fg:x="64098" fg:w="20"/><text x="42.9086%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (20 samples, 0.01%)</title><rect x="42.6586%" y="789" width="0.0133%" height="15" fill="rgb(228,185,42)" fg:x="64098" fg:w="20"/><text x="42.9086%" y="799.50"></text></g><g><title>asm_exc_page_fault (16 samples, 0.01%)</title><rect x="42.6966%" y="741" width="0.0106%" height="15" fill="rgb(226,39,33)" fg:x="64155" fg:w="16"/><text x="42.9466%" y="751.50"></text></g><g><title>exc_page_fault (16 samples, 0.01%)</title><rect x="42.6966%" y="725" width="0.0106%" height="15" fill="rgb(221,166,19)" fg:x="64155" fg:w="16"/><text x="42.9466%" y="735.50"></text></g><g><title>do_user_addr_fault (16 samples, 0.01%)</title><rect x="42.6966%" y="709" width="0.0106%" height="15" fill="rgb(209,109,2)" fg:x="64155" fg:w="16"/><text x="42.9466%" y="719.50"></text></g><g><title>handle_mm_fault (16 samples, 0.01%)</title><rect x="42.6966%" y="693" width="0.0106%" height="15" fill="rgb(252,216,26)" fg:x="64155" fg:w="16"/><text x="42.9466%" y="703.50"></text></g><g><title>do_huge_pmd_anonymous_page (16 samples, 0.01%)</title><rect x="42.6966%" y="677" width="0.0106%" height="15" fill="rgb(227,173,36)" fg:x="64155" fg:w="16"/><text x="42.9466%" y="687.50"></text></g><g><title>InterpreterOopMap::iterate_oop (53 samples, 0.04%)</title><rect x="42.6726%" y="805" width="0.0353%" height="15" fill="rgb(209,90,7)" fg:x="64119" fg:w="53"/><text x="42.9226%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.04%)</title><rect x="42.6726%" y="789" width="0.0353%" height="15" fill="rgb(250,194,11)" fg:x="64119" fg:w="53"/><text x="42.9226%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (45 samples, 0.03%)</title><rect x="42.6779%" y="773" width="0.0299%" height="15" fill="rgb(220,72,50)" fg:x="64127" fg:w="45"/><text x="42.9279%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (41 samples, 0.03%)</title><rect x="42.6806%" y="757" width="0.0273%" height="15" fill="rgb(222,106,48)" fg:x="64131" fg:w="41"/><text x="42.9306%" y="767.50"></text></g><g><title>G1RootProcessor::process_java_roots (173 samples, 0.12%)</title><rect x="42.5961%" y="885" width="0.1151%" height="15" fill="rgb(216,220,45)" fg:x="64004" fg:w="173"/><text x="42.8461%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (92 samples, 0.06%)</title><rect x="42.6500%" y="869" width="0.0612%" height="15" fill="rgb(234,112,18)" fg:x="64085" fg:w="92"/><text x="42.9000%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (92 samples, 0.06%)</title><rect x="42.6500%" y="853" width="0.0612%" height="15" fill="rgb(206,179,9)" fg:x="64085" fg:w="92"/><text x="42.9000%" y="863.50"></text></g><g><title>JavaThread::oops_do (86 samples, 0.06%)</title><rect x="42.6540%" y="837" width="0.0572%" height="15" fill="rgb(215,115,40)" fg:x="64091" fg:w="86"/><text x="42.9040%" y="847.50"></text></g><g><title>frame::oops_interpreted_do (59 samples, 0.04%)</title><rect x="42.6719%" y="821" width="0.0393%" height="15" fill="rgb(222,69,34)" fg:x="64118" fg:w="59"/><text x="42.9219%" y="831.50"></text></g><g><title>G1ParTask::work (218 samples, 0.15%)</title><rect x="42.5694%" y="917" width="0.1451%" height="15" fill="rgb(209,161,10)" fg:x="63964" fg:w="218"/><text x="42.8194%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (178 samples, 0.12%)</title><rect x="42.5961%" y="901" width="0.1185%" height="15" fill="rgb(217,6,38)" fg:x="64004" fg:w="178"/><text x="42.8461%" y="911.50"></text></g><g><title>ParallelSPCleanupTask::work (16 samples, 0.01%)</title><rect x="42.7305%" y="917" width="0.0106%" height="15" fill="rgb(229,229,48)" fg:x="64206" fg:w="16"/><text x="42.9805%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.05%)</title><rect x="42.7511%" y="693" width="0.0539%" height="15" fill="rgb(225,21,28)" fg:x="64237" fg:w="81"/><text x="43.0011%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (80 samples, 0.05%)</title><rect x="42.7518%" y="677" width="0.0532%" height="15" fill="rgb(206,33,13)" fg:x="64238" fg:w="80"/><text x="43.0018%" y="687.50"></text></g><g><title>native_write_msr (79 samples, 0.05%)</title><rect x="42.7525%" y="661" width="0.0526%" height="15" fill="rgb(242,178,17)" fg:x="64239" fg:w="79"/><text x="43.0025%" y="671.50"></text></g><g><title>finish_task_switch (85 samples, 0.06%)</title><rect x="42.7498%" y="709" width="0.0566%" height="15" fill="rgb(220,162,5)" fg:x="64235" fg:w="85"/><text x="42.9998%" y="719.50"></text></g><g><title>do_syscall_64 (100 samples, 0.07%)</title><rect x="42.7458%" y="821" width="0.0666%" height="15" fill="rgb(210,33,43)" fg:x="64229" fg:w="100"/><text x="42.9958%" y="831.50"></text></g><g><title>__x64_sys_futex (100 samples, 0.07%)</title><rect x="42.7458%" y="805" width="0.0666%" height="15" fill="rgb(216,116,54)" fg:x="64229" fg:w="100"/><text x="42.9958%" y="815.50"></text></g><g><title>do_futex (100 samples, 0.07%)</title><rect x="42.7458%" y="789" width="0.0666%" height="15" fill="rgb(249,92,24)" fg:x="64229" fg:w="100"/><text x="42.9958%" y="799.50"></text></g><g><title>futex_wait (99 samples, 0.07%)</title><rect x="42.7465%" y="773" width="0.0659%" height="15" fill="rgb(231,189,14)" fg:x="64230" fg:w="99"/><text x="42.9965%" y="783.50"></text></g><g><title>futex_wait_queue_me (99 samples, 0.07%)</title><rect x="42.7465%" y="757" width="0.0659%" height="15" fill="rgb(230,8,41)" fg:x="64230" fg:w="99"/><text x="42.9965%" y="767.50"></text></g><g><title>schedule (97 samples, 0.06%)</title><rect x="42.7478%" y="741" width="0.0646%" height="15" fill="rgb(249,7,27)" fg:x="64232" fg:w="97"/><text x="42.9978%" y="751.50"></text></g><g><title>__schedule (97 samples, 0.06%)</title><rect x="42.7478%" y="725" width="0.0646%" height="15" fill="rgb(232,86,5)" fg:x="64232" fg:w="97"/><text x="42.9978%" y="735.50"></text></g><g><title>GC_Thread#1 (390 samples, 0.26%)</title><rect x="42.5548%" y="1013" width="0.2596%" height="15" fill="rgb(224,175,18)" fg:x="63942" fg:w="390"/><text x="42.8048%" y="1023.50"></text></g><g><title>__GI___clone (378 samples, 0.25%)</title><rect x="42.5628%" y="997" width="0.2516%" height="15" fill="rgb(220,129,12)" fg:x="63954" fg:w="378"/><text x="42.8128%" y="1007.50"></text></g><g><title>start_thread (378 samples, 0.25%)</title><rect x="42.5628%" y="981" width="0.2516%" height="15" fill="rgb(210,19,36)" fg:x="63954" fg:w="378"/><text x="42.8128%" y="991.50"></text></g><g><title>thread_native_entry (378 samples, 0.25%)</title><rect x="42.5628%" y="965" width="0.2516%" height="15" fill="rgb(219,96,14)" fg:x="63954" fg:w="378"/><text x="42.8128%" y="975.50"></text></g><g><title>Thread::call_run (378 samples, 0.25%)</title><rect x="42.5628%" y="949" width="0.2516%" height="15" fill="rgb(249,106,1)" fg:x="63954" fg:w="378"/><text x="42.8128%" y="959.50"></text></g><g><title>GangWorker::loop (378 samples, 0.25%)</title><rect x="42.5628%" y="933" width="0.2516%" height="15" fill="rgb(249,155,20)" fg:x="63954" fg:w="378"/><text x="42.8128%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (109 samples, 0.07%)</title><rect x="42.7418%" y="917" width="0.0725%" height="15" fill="rgb(244,168,9)" fg:x="64223" fg:w="109"/><text x="42.9918%" y="927.50"></text></g><g><title>PosixSemaphore::wait (108 samples, 0.07%)</title><rect x="42.7425%" y="901" width="0.0719%" height="15" fill="rgb(216,23,50)" fg:x="64224" fg:w="108"/><text x="42.9925%" y="911.50"></text></g><g><title>__new_sem_wait_slow (108 samples, 0.07%)</title><rect x="42.7425%" y="885" width="0.0719%" height="15" fill="rgb(224,219,20)" fg:x="64224" fg:w="108"/><text x="42.9925%" y="895.50"></text></g><g><title>do_futex_wait (107 samples, 0.07%)</title><rect x="42.7431%" y="869" width="0.0712%" height="15" fill="rgb(222,156,15)" fg:x="64225" fg:w="107"/><text x="42.9931%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (107 samples, 0.07%)</title><rect x="42.7431%" y="853" width="0.0712%" height="15" fill="rgb(231,97,17)" fg:x="64225" fg:w="107"/><text x="42.9931%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (103 samples, 0.07%)</title><rect x="42.7458%" y="837" width="0.0685%" height="15" fill="rgb(218,70,48)" fg:x="64229" fg:w="103"/><text x="42.9958%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (48 samples, 0.03%)</title><rect x="42.8483%" y="869" width="0.0319%" height="15" fill="rgb(212,196,52)" fg:x="64383" fg:w="48"/><text x="43.0983%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue (75 samples, 0.05%)</title><rect x="42.8317%" y="885" width="0.0499%" height="15" fill="rgb(243,203,18)" fg:x="64358" fg:w="75"/><text x="43.0817%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (122 samples, 0.08%)</title><rect x="42.8303%" y="901" width="0.0812%" height="15" fill="rgb(252,125,41)" fg:x="64356" fg:w="122"/><text x="43.0803%" y="911.50"></text></g><g><title>SpinPause (41 samples, 0.03%)</title><rect x="42.8842%" y="885" width="0.0273%" height="15" fill="rgb(223,180,33)" fg:x="64437" fg:w="41"/><text x="43.1342%" y="895.50"></text></g><g><title>G1CodeBlobClosure::HeapRegionGatheringOopClosure::do_oop (19 samples, 0.01%)</title><rect x="42.9262%" y="789" width="0.0126%" height="15" fill="rgb(254,159,46)" fg:x="64500" fg:w="19"/><text x="43.1762%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (19 samples, 0.01%)</title><rect x="42.9262%" y="773" width="0.0126%" height="15" fill="rgb(254,38,10)" fg:x="64500" fg:w="19"/><text x="43.1762%" y="783.50"></text></g><g><title>G1CodeBlobClosure::do_code_blob (29 samples, 0.02%)</title><rect x="42.9228%" y="821" width="0.0193%" height="15" fill="rgb(208,217,32)" fg:x="64495" fg:w="29"/><text x="43.1728%" y="831.50"></text></g><g><title>nmethod::oops_do (27 samples, 0.02%)</title><rect x="42.9242%" y="805" width="0.0180%" height="15" fill="rgb(221,120,13)" fg:x="64497" fg:w="27"/><text x="43.1742%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (39 samples, 0.03%)</title><rect x="42.9182%" y="901" width="0.0260%" height="15" fill="rgb(246,54,52)" fg:x="64488" fg:w="39"/><text x="43.1682%" y="911.50"></text></g><g><title>G1CollectionSet::iterate_from (39 samples, 0.03%)</title><rect x="42.9182%" y="885" width="0.0260%" height="15" fill="rgb(242,34,25)" fg:x="64488" fg:w="39"/><text x="43.1682%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (39 samples, 0.03%)</title><rect x="42.9182%" y="869" width="0.0260%" height="15" fill="rgb(247,209,9)" fg:x="64488" fg:w="39"/><text x="43.1682%" y="879.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (33 samples, 0.02%)</title><rect x="42.9222%" y="853" width="0.0220%" height="15" fill="rgb(228,71,26)" fg:x="64494" fg:w="33"/><text x="43.1722%" y="863.50"></text></g><g><title>G1CodeRootSet::nmethods_do (33 samples, 0.02%)</title><rect x="42.9222%" y="837" width="0.0220%" height="15" fill="rgb(222,145,49)" fg:x="64494" fg:w="33"/><text x="43.1722%" y="847.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (18 samples, 0.01%)</title><rect x="42.9441%" y="885" width="0.0120%" height="15" fill="rgb(218,121,17)" fg:x="64527" fg:w="18"/><text x="43.1941%" y="895.50"></text></g><g><title>G1CLDScanClosure::do_cld (18 samples, 0.01%)</title><rect x="42.9441%" y="869" width="0.0120%" height="15" fill="rgb(244,50,7)" fg:x="64527" fg:w="18"/><text x="43.1941%" y="879.50"></text></g><g><title>ClassLoaderData::oops_do (18 samples, 0.01%)</title><rect x="42.9441%" y="853" width="0.0120%" height="15" fill="rgb(246,229,37)" fg:x="64527" fg:w="18"/><text x="43.1941%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (17 samples, 0.01%)</title><rect x="42.9448%" y="837" width="0.0113%" height="15" fill="rgb(225,18,5)" fg:x="64528" fg:w="17"/><text x="43.1948%" y="847.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (17 samples, 0.01%)</title><rect x="42.9448%" y="821" width="0.0113%" height="15" fill="rgb(213,204,8)" fg:x="64528" fg:w="17"/><text x="43.1948%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (17 samples, 0.01%)</title><rect x="42.9448%" y="805" width="0.0113%" height="15" fill="rgb(238,103,6)" fg:x="64528" fg:w="17"/><text x="43.1948%" y="815.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (29 samples, 0.02%)</title><rect x="42.9681%" y="805" width="0.0193%" height="15" fill="rgb(222,25,35)" fg:x="64563" fg:w="29"/><text x="43.2181%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (23 samples, 0.02%)</title><rect x="42.9721%" y="789" width="0.0153%" height="15" fill="rgb(213,203,35)" fg:x="64569" fg:w="23"/><text x="43.2221%" y="799.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (50 samples, 0.03%)</title><rect x="42.9561%" y="869" width="0.0333%" height="15" fill="rgb(221,79,53)" fg:x="64545" fg:w="50"/><text x="43.2061%" y="879.50"></text></g><g><title>G1CLDScanClosure::do_cld (50 samples, 0.03%)</title><rect x="42.9561%" y="853" width="0.0333%" height="15" fill="rgb(243,200,35)" fg:x="64545" fg:w="50"/><text x="43.2061%" y="863.50"></text></g><g><title>ClassLoaderData::oops_do (50 samples, 0.03%)</title><rect x="42.9561%" y="837" width="0.0333%" height="15" fill="rgb(248,60,25)" fg:x="64545" fg:w="50"/><text x="43.2061%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (36 samples, 0.02%)</title><rect x="42.9654%" y="821" width="0.0240%" height="15" fill="rgb(227,53,46)" fg:x="64559" fg:w="36"/><text x="43.2154%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (37 samples, 0.02%)</title><rect x="43.0040%" y="773" width="0.0246%" height="15" fill="rgb(216,120,32)" fg:x="64617" fg:w="37"/><text x="43.2540%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (28 samples, 0.02%)</title><rect x="43.0100%" y="757" width="0.0186%" height="15" fill="rgb(220,134,1)" fg:x="64626" fg:w="28"/><text x="43.2600%" y="767.50"></text></g><g><title>InterpreterOopMap::iterate_oop (50 samples, 0.03%)</title><rect x="42.9974%" y="805" width="0.0333%" height="15" fill="rgb(237,168,5)" fg:x="64607" fg:w="50"/><text x="43.2474%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (50 samples, 0.03%)</title><rect x="42.9974%" y="789" width="0.0333%" height="15" fill="rgb(231,100,33)" fg:x="64607" fg:w="50"/><text x="43.2474%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (114 samples, 0.08%)</title><rect x="42.9561%" y="885" width="0.0759%" height="15" fill="rgb(236,177,47)" fg:x="64545" fg:w="114"/><text x="43.2061%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (64 samples, 0.04%)</title><rect x="42.9894%" y="869" width="0.0426%" height="15" fill="rgb(235,7,49)" fg:x="64595" fg:w="64"/><text x="43.2394%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (64 samples, 0.04%)</title><rect x="42.9894%" y="853" width="0.0426%" height="15" fill="rgb(232,119,22)" fg:x="64595" fg:w="64"/><text x="43.2394%" y="863.50"></text></g><g><title>JavaThread::oops_do (64 samples, 0.04%)</title><rect x="42.9894%" y="837" width="0.0426%" height="15" fill="rgb(254,73,53)" fg:x="64595" fg:w="64"/><text x="43.2394%" y="847.50"></text></g><g><title>frame::oops_interpreted_do (52 samples, 0.03%)</title><rect x="42.9974%" y="821" width="0.0346%" height="15" fill="rgb(251,35,20)" fg:x="64607" fg:w="52"/><text x="43.2474%" y="831.50"></text></g><g><title>G1ParTask::work (322 samples, 0.21%)</title><rect x="42.8303%" y="917" width="0.2143%" height="15" fill="rgb(241,119,20)" fg:x="64356" fg:w="322"/><text x="43.0803%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (151 samples, 0.10%)</title><rect x="42.9441%" y="901" width="0.1005%" height="15" fill="rgb(207,102,14)" fg:x="64527" fg:w="151"/><text x="43.1941%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.03%)</title><rect x="43.0746%" y="693" width="0.0260%" height="15" fill="rgb(248,201,50)" fg:x="64723" fg:w="39"/><text x="43.3246%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="43.0759%" y="677" width="0.0246%" height="15" fill="rgb(222,185,44)" fg:x="64725" fg:w="37"/><text x="43.3259%" y="687.50"></text></g><g><title>native_write_msr (37 samples, 0.02%)</title><rect x="43.0759%" y="661" width="0.0246%" height="15" fill="rgb(218,107,18)" fg:x="64725" fg:w="37"/><text x="43.3259%" y="671.50"></text></g><g><title>finish_task_switch (40 samples, 0.03%)</title><rect x="43.0746%" y="709" width="0.0266%" height="15" fill="rgb(237,177,39)" fg:x="64723" fg:w="40"/><text x="43.3246%" y="719.50"></text></g><g><title>do_syscall_64 (59 samples, 0.04%)</title><rect x="43.0693%" y="821" width="0.0393%" height="15" fill="rgb(246,69,6)" fg:x="64715" fg:w="59"/><text x="43.3193%" y="831.50"></text></g><g><title>__x64_sys_futex (59 samples, 0.04%)</title><rect x="43.0693%" y="805" width="0.0393%" height="15" fill="rgb(234,208,37)" fg:x="64715" fg:w="59"/><text x="43.3193%" y="815.50"></text></g><g><title>do_futex (59 samples, 0.04%)</title><rect x="43.0693%" y="789" width="0.0393%" height="15" fill="rgb(225,4,6)" fg:x="64715" fg:w="59"/><text x="43.3193%" y="799.50"></text></g><g><title>futex_wait (58 samples, 0.04%)</title><rect x="43.0699%" y="773" width="0.0386%" height="15" fill="rgb(233,45,0)" fg:x="64716" fg:w="58"/><text x="43.3199%" y="783.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.04%)</title><rect x="43.0706%" y="757" width="0.0379%" height="15" fill="rgb(226,136,5)" fg:x="64717" fg:w="57"/><text x="43.3206%" y="767.50"></text></g><g><title>schedule (57 samples, 0.04%)</title><rect x="43.0706%" y="741" width="0.0379%" height="15" fill="rgb(211,91,47)" fg:x="64717" fg:w="57"/><text x="43.3206%" y="751.50"></text></g><g><title>__schedule (56 samples, 0.04%)</title><rect x="43.0713%" y="725" width="0.0373%" height="15" fill="rgb(242,88,51)" fg:x="64718" fg:w="56"/><text x="43.3213%" y="735.50"></text></g><g><title>GangWorker::loop (434 samples, 0.29%)</title><rect x="42.8223%" y="933" width="0.2888%" height="15" fill="rgb(230,91,28)" fg:x="64344" fg:w="434"/><text x="43.0723%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (64 samples, 0.04%)</title><rect x="43.0686%" y="917" width="0.0426%" height="15" fill="rgb(254,186,29)" fg:x="64714" fg:w="64"/><text x="43.3186%" y="927.50"></text></g><g><title>PosixSemaphore::wait (63 samples, 0.04%)</title><rect x="43.0693%" y="901" width="0.0419%" height="15" fill="rgb(238,6,4)" fg:x="64715" fg:w="63"/><text x="43.3193%" y="911.50"></text></g><g><title>__new_sem_wait_slow (63 samples, 0.04%)</title><rect x="43.0693%" y="885" width="0.0419%" height="15" fill="rgb(221,151,16)" fg:x="64715" fg:w="63"/><text x="43.3193%" y="895.50"></text></g><g><title>do_futex_wait (63 samples, 0.04%)</title><rect x="43.0693%" y="869" width="0.0419%" height="15" fill="rgb(251,143,52)" fg:x="64715" fg:w="63"/><text x="43.3193%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (63 samples, 0.04%)</title><rect x="43.0693%" y="853" width="0.0419%" height="15" fill="rgb(206,90,15)" fg:x="64715" fg:w="63"/><text x="43.3193%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.04%)</title><rect x="43.0693%" y="837" width="0.0419%" height="15" fill="rgb(218,35,8)" fg:x="64715" fg:w="63"/><text x="43.3193%" y="847.50"></text></g><g><title>GC_Thread#2 (447 samples, 0.30%)</title><rect x="42.8144%" y="1013" width="0.2975%" height="15" fill="rgb(239,215,6)" fg:x="64332" fg:w="447"/><text x="43.0644%" y="1023.50"></text></g><g><title>__GI___clone (435 samples, 0.29%)</title><rect x="42.8223%" y="997" width="0.2895%" height="15" fill="rgb(245,116,39)" fg:x="64344" fg:w="435"/><text x="43.0723%" y="1007.50"></text></g><g><title>start_thread (435 samples, 0.29%)</title><rect x="42.8223%" y="981" width="0.2895%" height="15" fill="rgb(242,65,28)" fg:x="64344" fg:w="435"/><text x="43.0723%" y="991.50"></text></g><g><title>thread_native_entry (435 samples, 0.29%)</title><rect x="42.8223%" y="965" width="0.2895%" height="15" fill="rgb(252,132,53)" fg:x="64344" fg:w="435"/><text x="43.0723%" y="975.50"></text></g><g><title>Thread::call_run (435 samples, 0.29%)</title><rect x="42.8223%" y="949" width="0.2895%" height="15" fill="rgb(224,159,50)" fg:x="64344" fg:w="435"/><text x="43.0723%" y="959.50"></text></g><g><title>G1ParScanThreadState::trim_queue (46 samples, 0.03%)</title><rect x="43.1252%" y="885" width="0.0306%" height="15" fill="rgb(224,93,4)" fg:x="64799" fg:w="46"/><text x="43.3752%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (29 samples, 0.02%)</title><rect x="43.1365%" y="869" width="0.0193%" height="15" fill="rgb(208,81,34)" fg:x="64816" fg:w="29"/><text x="43.3865%" y="879.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (81 samples, 0.05%)</title><rect x="43.1192%" y="901" width="0.0539%" height="15" fill="rgb(233,92,54)" fg:x="64790" fg:w="81"/><text x="43.3692%" y="911.50"></text></g><g><title>SpinPause (23 samples, 0.02%)</title><rect x="43.1578%" y="885" width="0.0153%" height="15" fill="rgb(237,21,14)" fg:x="64848" fg:w="23"/><text x="43.4078%" y="895.50"></text></g><g><title>G1RemSet::scan_rem_set (16 samples, 0.01%)</title><rect x="43.1731%" y="901" width="0.0106%" height="15" fill="rgb(249,128,51)" fg:x="64871" fg:w="16"/><text x="43.4231%" y="911.50"></text></g><g><title>G1CollectionSet::iterate_from (16 samples, 0.01%)</title><rect x="43.1731%" y="885" width="0.0106%" height="15" fill="rgb(223,129,24)" fg:x="64871" fg:w="16"/><text x="43.4231%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (16 samples, 0.01%)</title><rect x="43.1731%" y="869" width="0.0106%" height="15" fill="rgb(231,168,25)" fg:x="64871" fg:w="16"/><text x="43.4231%" y="879.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (16 samples, 0.01%)</title><rect x="43.1731%" y="853" width="0.0106%" height="15" fill="rgb(224,39,20)" fg:x="64871" fg:w="16"/><text x="43.4231%" y="863.50"></text></g><g><title>G1CodeRootSet::nmethods_do (16 samples, 0.01%)</title><rect x="43.1731%" y="837" width="0.0106%" height="15" fill="rgb(225,152,53)" fg:x="64871" fg:w="16"/><text x="43.4231%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch<G1ScanEvacuatedObjClosure>::Table::oop_oop_iterate_backwards<InstanceKlass, unsigned int> (17 samples, 0.01%)</title><rect x="43.2310%" y="741" width="0.0113%" height="15" fill="rgb(252,17,24)" fg:x="64958" fg:w="17"/><text x="43.4810%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (71 samples, 0.05%)</title><rect x="43.2097%" y="773" width="0.0473%" height="15" fill="rgb(250,114,30)" fg:x="64926" fg:w="71"/><text x="43.4597%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (64 samples, 0.04%)</title><rect x="43.2143%" y="757" width="0.0426%" height="15" fill="rgb(229,5,4)" fg:x="64933" fg:w="64"/><text x="43.4643%" y="767.50"></text></g><g><title>InterpreterOopMap::iterate_oop (83 samples, 0.06%)</title><rect x="43.2030%" y="805" width="0.0552%" height="15" fill="rgb(225,176,49)" fg:x="64916" fg:w="83"/><text x="43.4530%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (82 samples, 0.05%)</title><rect x="43.2037%" y="789" width="0.0546%" height="15" fill="rgb(224,221,49)" fg:x="64917" fg:w="82"/><text x="43.4537%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (118 samples, 0.08%)</title><rect x="43.1871%" y="885" width="0.0785%" height="15" fill="rgb(253,169,27)" fg:x="64892" fg:w="118"/><text x="43.4371%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (118 samples, 0.08%)</title><rect x="43.1871%" y="869" width="0.0785%" height="15" fill="rgb(211,206,16)" fg:x="64892" fg:w="118"/><text x="43.4371%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (118 samples, 0.08%)</title><rect x="43.1871%" y="853" width="0.0785%" height="15" fill="rgb(244,87,35)" fg:x="64892" fg:w="118"/><text x="43.4371%" y="863.50"></text></g><g><title>JavaThread::oops_do (118 samples, 0.08%)</title><rect x="43.1871%" y="837" width="0.0785%" height="15" fill="rgb(246,28,10)" fg:x="64892" fg:w="118"/><text x="43.4371%" y="847.50"></text></g><g><title>frame::oops_interpreted_do (97 samples, 0.06%)</title><rect x="43.2010%" y="821" width="0.0646%" height="15" fill="rgb(229,12,44)" fg:x="64913" fg:w="97"/><text x="43.4510%" y="831.50"></text></g><g><title>G1ParTask::work (224 samples, 0.15%)</title><rect x="43.1192%" y="917" width="0.1491%" height="15" fill="rgb(210,145,37)" fg:x="64790" fg:w="224"/><text x="43.3692%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (127 samples, 0.08%)</title><rect x="43.1837%" y="901" width="0.0845%" height="15" fill="rgb(227,112,52)" fg:x="64887" fg:w="127"/><text x="43.4337%" y="911.50"></text></g><g><title>G1ParallelCleaningTask::work (16 samples, 0.01%)</title><rect x="43.2682%" y="917" width="0.0106%" height="15" fill="rgb(238,155,34)" fg:x="65014" fg:w="16"/><text x="43.5182%" y="927.50"></text></g><g><title>G1STWRefProcTaskProxy::work (20 samples, 0.01%)</title><rect x="43.2789%" y="917" width="0.0133%" height="15" fill="rgb(239,226,36)" fg:x="65030" fg:w="20"/><text x="43.5289%" y="927.50"></text></g><g><title>ParallelSPCleanupTask::work (23 samples, 0.02%)</title><rect x="43.2922%" y="917" width="0.0153%" height="15" fill="rgb(230,16,23)" fg:x="65050" fg:w="23"/><text x="43.5422%" y="927.50"></text></g><g><title>Threads::possibly_parallel_threads_do (18 samples, 0.01%)</title><rect x="43.2955%" y="901" width="0.0120%" height="15" fill="rgb(236,171,36)" fg:x="65055" fg:w="18"/><text x="43.5455%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.04%)</title><rect x="43.3135%" y="693" width="0.0379%" height="15" fill="rgb(221,22,14)" fg:x="65082" fg:w="57"/><text x="43.5635%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.04%)</title><rect x="43.3148%" y="677" width="0.0366%" height="15" fill="rgb(242,43,11)" fg:x="65084" fg:w="55"/><text x="43.5648%" y="687.50"></text></g><g><title>native_write_msr (55 samples, 0.04%)</title><rect x="43.3148%" y="661" width="0.0366%" height="15" fill="rgb(232,69,23)" fg:x="65084" fg:w="55"/><text x="43.5648%" y="671.50"></text></g><g><title>finish_task_switch (63 samples, 0.04%)</title><rect x="43.3128%" y="709" width="0.0419%" height="15" fill="rgb(216,180,54)" fg:x="65081" fg:w="63"/><text x="43.5628%" y="719.50"></text></g><g><title>do_syscall_64 (73 samples, 0.05%)</title><rect x="43.3095%" y="821" width="0.0486%" height="15" fill="rgb(216,5,24)" fg:x="65076" fg:w="73"/><text x="43.5595%" y="831.50"></text></g><g><title>__x64_sys_futex (73 samples, 0.05%)</title><rect x="43.3095%" y="805" width="0.0486%" height="15" fill="rgb(225,89,9)" fg:x="65076" fg:w="73"/><text x="43.5595%" y="815.50"></text></g><g><title>do_futex (73 samples, 0.05%)</title><rect x="43.3095%" y="789" width="0.0486%" height="15" fill="rgb(243,75,33)" fg:x="65076" fg:w="73"/><text x="43.5595%" y="799.50"></text></g><g><title>futex_wait (73 samples, 0.05%)</title><rect x="43.3095%" y="773" width="0.0486%" height="15" fill="rgb(247,141,45)" fg:x="65076" fg:w="73"/><text x="43.5595%" y="783.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.05%)</title><rect x="43.3102%" y="757" width="0.0479%" height="15" fill="rgb(232,177,36)" fg:x="65077" fg:w="72"/><text x="43.5602%" y="767.50"></text></g><g><title>schedule (72 samples, 0.05%)</title><rect x="43.3102%" y="741" width="0.0479%" height="15" fill="rgb(219,125,36)" fg:x="65077" fg:w="72"/><text x="43.5602%" y="751.50"></text></g><g><title>__schedule (72 samples, 0.05%)</title><rect x="43.3102%" y="725" width="0.0479%" height="15" fill="rgb(227,94,9)" fg:x="65077" fg:w="72"/><text x="43.5602%" y="735.50"></text></g><g><title>__GI___clone (369 samples, 0.25%)</title><rect x="43.1145%" y="997" width="0.2456%" height="15" fill="rgb(240,34,52)" fg:x="64783" fg:w="369"/><text x="43.3645%" y="1007.50"></text></g><g><title>start_thread (369 samples, 0.25%)</title><rect x="43.1145%" y="981" width="0.2456%" height="15" fill="rgb(216,45,12)" fg:x="64783" fg:w="369"/><text x="43.3645%" y="991.50"></text></g><g><title>thread_native_entry (369 samples, 0.25%)</title><rect x="43.1145%" y="965" width="0.2456%" height="15" fill="rgb(246,21,19)" fg:x="64783" fg:w="369"/><text x="43.3645%" y="975.50"></text></g><g><title>Thread::call_run (369 samples, 0.25%)</title><rect x="43.1145%" y="949" width="0.2456%" height="15" fill="rgb(213,98,42)" fg:x="64783" fg:w="369"/><text x="43.3645%" y="959.50"></text></g><g><title>GangWorker::loop (369 samples, 0.25%)</title><rect x="43.1145%" y="933" width="0.2456%" height="15" fill="rgb(250,136,47)" fg:x="64783" fg:w="369"/><text x="43.3645%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (77 samples, 0.05%)</title><rect x="43.3088%" y="917" width="0.0512%" height="15" fill="rgb(251,124,27)" fg:x="65075" fg:w="77"/><text x="43.5588%" y="927.50"></text></g><g><title>PosixSemaphore::wait (77 samples, 0.05%)</title><rect x="43.3088%" y="901" width="0.0512%" height="15" fill="rgb(229,180,14)" fg:x="65075" fg:w="77"/><text x="43.5588%" y="911.50"></text></g><g><title>__new_sem_wait_slow (77 samples, 0.05%)</title><rect x="43.3088%" y="885" width="0.0512%" height="15" fill="rgb(245,216,25)" fg:x="65075" fg:w="77"/><text x="43.5588%" y="895.50"></text></g><g><title>do_futex_wait (76 samples, 0.05%)</title><rect x="43.3095%" y="869" width="0.0506%" height="15" fill="rgb(251,43,5)" fg:x="65076" fg:w="76"/><text x="43.5595%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (76 samples, 0.05%)</title><rect x="43.3095%" y="853" width="0.0506%" height="15" fill="rgb(250,128,24)" fg:x="65076" fg:w="76"/><text x="43.5595%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.05%)</title><rect x="43.3095%" y="837" width="0.0506%" height="15" fill="rgb(217,117,27)" fg:x="65076" fg:w="76"/><text x="43.5595%" y="847.50"></text></g><g><title>GC_Thread#3 (374 samples, 0.25%)</title><rect x="43.1118%" y="1013" width="0.2489%" height="15" fill="rgb(245,147,4)" fg:x="64779" fg:w="374"/><text x="43.3618%" y="1023.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (29 samples, 0.02%)</title><rect x="43.3940%" y="869" width="0.0193%" height="15" fill="rgb(242,201,35)" fg:x="65203" fg:w="29"/><text x="43.6440%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue (58 samples, 0.04%)</title><rect x="43.3754%" y="885" width="0.0386%" height="15" fill="rgb(218,181,1)" fg:x="65175" fg:w="58"/><text x="43.6254%" y="895.50"></text></g><g><title>SpinPause (21 samples, 0.01%)</title><rect x="43.4140%" y="885" width="0.0140%" height="15" fill="rgb(222,6,29)" fg:x="65233" fg:w="21"/><text x="43.6640%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (95 samples, 0.06%)</title><rect x="43.3654%" y="901" width="0.0632%" height="15" fill="rgb(208,186,3)" fg:x="65160" fg:w="95"/><text x="43.6154%" y="911.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (25 samples, 0.02%)</title><rect x="43.4293%" y="821" width="0.0166%" height="15" fill="rgb(216,36,26)" fg:x="65256" fg:w="25"/><text x="43.6793%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (20 samples, 0.01%)</title><rect x="43.4326%" y="805" width="0.0133%" height="15" fill="rgb(248,201,23)" fg:x="65261" fg:w="20"/><text x="43.6826%" y="815.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (26 samples, 0.02%)</title><rect x="43.4293%" y="901" width="0.0173%" height="15" fill="rgb(251,170,31)" fg:x="65256" fg:w="26"/><text x="43.6793%" y="911.50"></text></g><g><title>G1RemSet::update_rem_set (26 samples, 0.02%)</title><rect x="43.4293%" y="885" width="0.0173%" height="15" fill="rgb(207,110,25)" fg:x="65256" fg:w="26"/><text x="43.6793%" y="895.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (26 samples, 0.02%)</title><rect x="43.4293%" y="869" width="0.0173%" height="15" fill="rgb(250,54,15)" fg:x="65256" fg:w="26"/><text x="43.6793%" y="879.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (26 samples, 0.02%)</title><rect x="43.4293%" y="853" width="0.0173%" height="15" fill="rgb(227,68,33)" fg:x="65256" fg:w="26"/><text x="43.6793%" y="863.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (26 samples, 0.02%)</title><rect x="43.4293%" y="837" width="0.0173%" height="15" fill="rgb(238,34,41)" fg:x="65256" fg:w="26"/><text x="43.6793%" y="847.50"></text></g><g><title>frame::oops_do_internal (32 samples, 0.02%)</title><rect x="43.4646%" y="821" width="0.0213%" height="15" fill="rgb(220,11,15)" fg:x="65309" fg:w="32"/><text x="43.7146%" y="831.50"></text></g><g><title>OopMapSet::oops_do (32 samples, 0.02%)</title><rect x="43.4646%" y="805" width="0.0213%" height="15" fill="rgb(246,111,35)" fg:x="65309" fg:w="32"/><text x="43.7146%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (32 samples, 0.02%)</title><rect x="43.4646%" y="789" width="0.0213%" height="15" fill="rgb(209,88,53)" fg:x="65309" fg:w="32"/><text x="43.7146%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (22 samples, 0.01%)</title><rect x="43.4712%" y="773" width="0.0146%" height="15" fill="rgb(231,185,47)" fg:x="65319" fg:w="22"/><text x="43.7212%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (20 samples, 0.01%)</title><rect x="43.4726%" y="757" width="0.0133%" height="15" fill="rgb(233,154,1)" fg:x="65321" fg:w="20"/><text x="43.7226%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (20 samples, 0.01%)</title><rect x="43.4859%" y="805" width="0.0133%" height="15" fill="rgb(225,15,46)" fg:x="65341" fg:w="20"/><text x="43.7359%" y="815.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (18 samples, 0.01%)</title><rect x="43.4872%" y="789" width="0.0120%" height="15" fill="rgb(211,135,41)" fg:x="65343" fg:w="18"/><text x="43.7372%" y="799.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (17 samples, 0.01%)</title><rect x="43.4879%" y="773" width="0.0113%" height="15" fill="rgb(208,54,0)" fg:x="65344" fg:w="17"/><text x="43.7379%" y="783.50"></text></g><g><title>frame::oops_interpreted_do (22 samples, 0.01%)</title><rect x="43.4859%" y="821" width="0.0146%" height="15" fill="rgb(244,136,14)" fg:x="65341" fg:w="22"/><text x="43.7359%" y="831.50"></text></g><g><title>G1RootProcessor::process_java_roots (74 samples, 0.05%)</title><rect x="43.4519%" y="885" width="0.0492%" height="15" fill="rgb(241,56,14)" fg:x="65290" fg:w="74"/><text x="43.7019%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (74 samples, 0.05%)</title><rect x="43.4519%" y="869" width="0.0492%" height="15" fill="rgb(205,80,24)" fg:x="65290" fg:w="74"/><text x="43.7019%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (74 samples, 0.05%)</title><rect x="43.4519%" y="853" width="0.0492%" height="15" fill="rgb(220,57,4)" fg:x="65290" fg:w="74"/><text x="43.7019%" y="863.50"></text></g><g><title>JavaThread::oops_do (74 samples, 0.05%)</title><rect x="43.4519%" y="837" width="0.0492%" height="15" fill="rgb(226,193,50)" fg:x="65290" fg:w="74"/><text x="43.7019%" y="847.50"></text></g><g><title>G1ParTask::work (218 samples, 0.15%)</title><rect x="43.3654%" y="917" width="0.1451%" height="15" fill="rgb(231,168,22)" fg:x="65160" fg:w="218"/><text x="43.6154%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (89 samples, 0.06%)</title><rect x="43.4513%" y="901" width="0.0592%" height="15" fill="rgb(254,215,14)" fg:x="65289" fg:w="89"/><text x="43.7013%" y="911.50"></text></g><g><title>G1STWRefProcTaskProxy::work (16 samples, 0.01%)</title><rect x="43.5191%" y="917" width="0.0106%" height="15" fill="rgb(211,115,16)" fg:x="65391" fg:w="16"/><text x="43.7691%" y="927.50"></text></g><g><title>ParallelSPCleanupTask::work (22 samples, 0.01%)</title><rect x="43.5305%" y="917" width="0.0146%" height="15" fill="rgb(236,210,16)" fg:x="65408" fg:w="22"/><text x="43.7805%" y="927.50"></text></g><g><title>Threads::possibly_parallel_threads_do (20 samples, 0.01%)</title><rect x="43.5318%" y="901" width="0.0133%" height="15" fill="rgb(221,94,12)" fg:x="65410" fg:w="20"/><text x="43.7818%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.02%)</title><rect x="43.5484%" y="693" width="0.0246%" height="15" fill="rgb(235,218,49)" fg:x="65435" fg:w="37"/><text x="43.7984%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="43.5484%" y="677" width="0.0246%" height="15" fill="rgb(217,114,14)" fg:x="65435" fg:w="37"/><text x="43.7984%" y="687.50"></text></g><g><title>native_write_msr (37 samples, 0.02%)</title><rect x="43.5484%" y="661" width="0.0246%" height="15" fill="rgb(216,145,22)" fg:x="65435" fg:w="37"/><text x="43.7984%" y="671.50"></text></g><g><title>finish_task_switch (39 samples, 0.03%)</title><rect x="43.5478%" y="709" width="0.0260%" height="15" fill="rgb(217,112,39)" fg:x="65434" fg:w="39"/><text x="43.7978%" y="719.50"></text></g><g><title>do_syscall_64 (50 samples, 0.03%)</title><rect x="43.5458%" y="821" width="0.0333%" height="15" fill="rgb(225,85,32)" fg:x="65431" fg:w="50"/><text x="43.7958%" y="831.50"></text></g><g><title>__x64_sys_futex (49 samples, 0.03%)</title><rect x="43.5464%" y="805" width="0.0326%" height="15" fill="rgb(245,209,47)" fg:x="65432" fg:w="49"/><text x="43.7964%" y="815.50"></text></g><g><title>do_futex (49 samples, 0.03%)</title><rect x="43.5464%" y="789" width="0.0326%" height="15" fill="rgb(218,220,15)" fg:x="65432" fg:w="49"/><text x="43.7964%" y="799.50"></text></g><g><title>futex_wait (48 samples, 0.03%)</title><rect x="43.5471%" y="773" width="0.0319%" height="15" fill="rgb(222,202,31)" fg:x="65433" fg:w="48"/><text x="43.7971%" y="783.50"></text></g><g><title>futex_wait_queue_me (48 samples, 0.03%)</title><rect x="43.5471%" y="757" width="0.0319%" height="15" fill="rgb(243,203,4)" fg:x="65433" fg:w="48"/><text x="43.7971%" y="767.50"></text></g><g><title>schedule (48 samples, 0.03%)</title><rect x="43.5471%" y="741" width="0.0319%" height="15" fill="rgb(237,92,17)" fg:x="65433" fg:w="48"/><text x="43.7971%" y="751.50"></text></g><g><title>__schedule (48 samples, 0.03%)</title><rect x="43.5471%" y="725" width="0.0319%" height="15" fill="rgb(231,119,7)" fg:x="65433" fg:w="48"/><text x="43.7971%" y="735.50"></text></g><g><title>__GI___clone (327 samples, 0.22%)</title><rect x="43.3634%" y="997" width="0.2176%" height="15" fill="rgb(237,82,41)" fg:x="65157" fg:w="327"/><text x="43.6134%" y="1007.50"></text></g><g><title>start_thread (327 samples, 0.22%)</title><rect x="43.3634%" y="981" width="0.2176%" height="15" fill="rgb(226,81,48)" fg:x="65157" fg:w="327"/><text x="43.6134%" y="991.50"></text></g><g><title>thread_native_entry (327 samples, 0.22%)</title><rect x="43.3634%" y="965" width="0.2176%" height="15" fill="rgb(234,70,51)" fg:x="65157" fg:w="327"/><text x="43.6134%" y="975.50"></text></g><g><title>Thread::call_run (327 samples, 0.22%)</title><rect x="43.3634%" y="949" width="0.2176%" height="15" fill="rgb(251,86,4)" fg:x="65157" fg:w="327"/><text x="43.6134%" y="959.50"></text></g><g><title>GangWorker::loop (327 samples, 0.22%)</title><rect x="43.3634%" y="933" width="0.2176%" height="15" fill="rgb(244,144,28)" fg:x="65157" fg:w="327"/><text x="43.6134%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (53 samples, 0.04%)</title><rect x="43.5458%" y="917" width="0.0353%" height="15" fill="rgb(232,161,39)" fg:x="65431" fg:w="53"/><text x="43.7958%" y="927.50"></text></g><g><title>PosixSemaphore::wait (53 samples, 0.04%)</title><rect x="43.5458%" y="901" width="0.0353%" height="15" fill="rgb(247,34,51)" fg:x="65431" fg:w="53"/><text x="43.7958%" y="911.50"></text></g><g><title>__new_sem_wait_slow (53 samples, 0.04%)</title><rect x="43.5458%" y="885" width="0.0353%" height="15" fill="rgb(225,132,2)" fg:x="65431" fg:w="53"/><text x="43.7958%" y="895.50"></text></g><g><title>do_futex_wait (53 samples, 0.04%)</title><rect x="43.5458%" y="869" width="0.0353%" height="15" fill="rgb(209,159,44)" fg:x="65431" fg:w="53"/><text x="43.7958%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (53 samples, 0.04%)</title><rect x="43.5458%" y="853" width="0.0353%" height="15" fill="rgb(251,214,1)" fg:x="65431" fg:w="53"/><text x="43.7958%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.04%)</title><rect x="43.5458%" y="837" width="0.0353%" height="15" fill="rgb(247,84,47)" fg:x="65431" fg:w="53"/><text x="43.7958%" y="847.50"></text></g><g><title>GC_Thread#4 (332 samples, 0.22%)</title><rect x="43.3608%" y="1013" width="0.2210%" height="15" fill="rgb(240,111,43)" fg:x="65153" fg:w="332"/><text x="43.6108%" y="1023.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (40 samples, 0.03%)</title><rect x="43.6117%" y="869" width="0.0266%" height="15" fill="rgb(215,214,35)" fg:x="65530" fg:w="40"/><text x="43.8617%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue (60 samples, 0.04%)</title><rect x="43.5990%" y="885" width="0.0399%" height="15" fill="rgb(248,207,23)" fg:x="65511" fg:w="60"/><text x="43.8490%" y="895.50"></text></g><g><title>SpinPause (38 samples, 0.03%)</title><rect x="43.6423%" y="885" width="0.0253%" height="15" fill="rgb(214,186,4)" fg:x="65576" fg:w="38"/><text x="43.8923%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (114 samples, 0.08%)</title><rect x="43.5924%" y="901" width="0.0759%" height="15" fill="rgb(220,133,22)" fg:x="65501" fg:w="114"/><text x="43.8424%" y="911.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (29 samples, 0.02%)</title><rect x="43.6682%" y="821" width="0.0193%" height="15" fill="rgb(239,134,19)" fg:x="65615" fg:w="29"/><text x="43.9182%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (26 samples, 0.02%)</title><rect x="43.6702%" y="805" width="0.0173%" height="15" fill="rgb(250,140,9)" fg:x="65618" fg:w="26"/><text x="43.9202%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (25 samples, 0.02%)</title><rect x="43.6709%" y="789" width="0.0166%" height="15" fill="rgb(225,59,14)" fg:x="65619" fg:w="25"/><text x="43.9209%" y="799.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (31 samples, 0.02%)</title><rect x="43.6682%" y="901" width="0.0206%" height="15" fill="rgb(214,152,51)" fg:x="65615" fg:w="31"/><text x="43.9182%" y="911.50"></text></g><g><title>G1RemSet::update_rem_set (31 samples, 0.02%)</title><rect x="43.6682%" y="885" width="0.0206%" height="15" fill="rgb(251,227,43)" fg:x="65615" fg:w="31"/><text x="43.9182%" y="895.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (31 samples, 0.02%)</title><rect x="43.6682%" y="869" width="0.0206%" height="15" fill="rgb(241,96,17)" fg:x="65615" fg:w="31"/><text x="43.9182%" y="879.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (31 samples, 0.02%)</title><rect x="43.6682%" y="853" width="0.0206%" height="15" fill="rgb(234,198,43)" fg:x="65615" fg:w="31"/><text x="43.9182%" y="863.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (31 samples, 0.02%)</title><rect x="43.6682%" y="837" width="0.0206%" height="15" fill="rgb(220,108,29)" fg:x="65615" fg:w="31"/><text x="43.9182%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (22 samples, 0.01%)</title><rect x="43.6889%" y="821" width="0.0146%" height="15" fill="rgb(226,163,33)" fg:x="65646" fg:w="22"/><text x="43.9389%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (19 samples, 0.01%)</title><rect x="43.6909%" y="805" width="0.0126%" height="15" fill="rgb(205,194,45)" fg:x="65649" fg:w="19"/><text x="43.9409%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (17 samples, 0.01%)</title><rect x="43.6922%" y="789" width="0.0113%" height="15" fill="rgb(206,143,44)" fg:x="65651" fg:w="17"/><text x="43.9422%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (23 samples, 0.02%)</title><rect x="43.6889%" y="837" width="0.0153%" height="15" fill="rgb(236,136,36)" fg:x="65646" fg:w="23"/><text x="43.9389%" y="847.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (24 samples, 0.02%)</title><rect x="43.6889%" y="853" width="0.0160%" height="15" fill="rgb(249,172,42)" fg:x="65646" fg:w="24"/><text x="43.9389%" y="863.50"></text></g><g><title>G1RemSet::scan_rem_set (36 samples, 0.02%)</title><rect x="43.6889%" y="901" width="0.0240%" height="15" fill="rgb(216,139,23)" fg:x="65646" fg:w="36"/><text x="43.9389%" y="911.50"></text></g><g><title>G1CollectionSet::iterate_from (36 samples, 0.02%)</title><rect x="43.6889%" y="885" width="0.0240%" height="15" fill="rgb(207,166,20)" fg:x="65646" fg:w="36"/><text x="43.9389%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (36 samples, 0.02%)</title><rect x="43.6889%" y="869" width="0.0240%" height="15" fill="rgb(210,209,22)" fg:x="65646" fg:w="36"/><text x="43.9389%" y="879.50"></text></g><g><title>JNIHandleBlock::oops_do (22 samples, 0.01%)</title><rect x="43.7241%" y="821" width="0.0146%" height="15" fill="rgb(232,118,20)" fg:x="65699" fg:w="22"/><text x="43.9741%" y="831.50"></text></g><g><title>G1RootProcessor::process_java_roots (57 samples, 0.04%)</title><rect x="43.7128%" y="885" width="0.0379%" height="15" fill="rgb(238,113,42)" fg:x="65682" fg:w="57"/><text x="43.9628%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (57 samples, 0.04%)</title><rect x="43.7128%" y="869" width="0.0379%" height="15" fill="rgb(231,42,5)" fg:x="65682" fg:w="57"/><text x="43.9628%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (57 samples, 0.04%)</title><rect x="43.7128%" y="853" width="0.0379%" height="15" fill="rgb(243,166,24)" fg:x="65682" fg:w="57"/><text x="43.9628%" y="863.50"></text></g><g><title>JavaThread::oops_do (57 samples, 0.04%)</title><rect x="43.7128%" y="837" width="0.0379%" height="15" fill="rgb(237,226,12)" fg:x="65682" fg:w="57"/><text x="43.9628%" y="847.50"></text></g><g><title>frame::oops_interpreted_do (17 samples, 0.01%)</title><rect x="43.7394%" y="821" width="0.0113%" height="15" fill="rgb(229,133,24)" fg:x="65722" fg:w="17"/><text x="43.9894%" y="831.50"></text></g><g><title>JNIHandles::oops_do (17 samples, 0.01%)</title><rect x="43.7507%" y="869" width="0.0113%" height="15" fill="rgb(238,33,43)" fg:x="65739" fg:w="17"/><text x="44.0007%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (17 samples, 0.01%)</title><rect x="43.7507%" y="853" width="0.0113%" height="15" fill="rgb(227,59,38)" fg:x="65739" fg:w="17"/><text x="44.0007%" y="863.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (16 samples, 0.01%)</title><rect x="43.7514%" y="837" width="0.0106%" height="15" fill="rgb(230,97,0)" fg:x="65740" fg:w="16"/><text x="44.0014%" y="847.50"></text></g><g><title>G1RootProcessor::process_vm_roots (29 samples, 0.02%)</title><rect x="43.7507%" y="885" width="0.0193%" height="15" fill="rgb(250,173,50)" fg:x="65739" fg:w="29"/><text x="44.0007%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (99 samples, 0.07%)</title><rect x="43.7128%" y="901" width="0.0659%" height="15" fill="rgb(240,15,50)" fg:x="65682" fg:w="99"/><text x="43.9628%" y="911.50"></text></g><g><title>G1ParTask::work (281 samples, 0.19%)</title><rect x="43.5924%" y="917" width="0.1870%" height="15" fill="rgb(221,93,22)" fg:x="65501" fg:w="281"/><text x="43.8424%" y="927.50"></text></g><g><title>G1STWRefProcTaskProxy::work (20 samples, 0.01%)</title><rect x="43.7893%" y="917" width="0.0133%" height="15" fill="rgb(245,180,53)" fg:x="65797" fg:w="20"/><text x="44.0393%" y="927.50"></text></g><g><title>RefProcPhase3Task::work (16 samples, 0.01%)</title><rect x="43.7920%" y="901" width="0.0106%" height="15" fill="rgb(231,88,51)" fg:x="65801" fg:w="16"/><text x="44.0420%" y="911.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (16 samples, 0.01%)</title><rect x="43.7920%" y="885" width="0.0106%" height="15" fill="rgb(240,58,21)" fg:x="65801" fg:w="16"/><text x="44.0420%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (16 samples, 0.01%)</title><rect x="43.7920%" y="869" width="0.0106%" height="15" fill="rgb(237,21,10)" fg:x="65801" fg:w="16"/><text x="44.0420%" y="879.50"></text></g><g><title>SpinPause (16 samples, 0.01%)</title><rect x="43.7920%" y="853" width="0.0106%" height="15" fill="rgb(218,43,11)" fg:x="65801" fg:w="16"/><text x="44.0420%" y="863.50"></text></g><g><title>ParallelSPCleanupTask::work (22 samples, 0.01%)</title><rect x="43.8040%" y="917" width="0.0146%" height="15" fill="rgb(218,221,29)" fg:x="65819" fg:w="22"/><text x="44.0540%" y="927.50"></text></g><g><title>Threads::possibly_parallel_threads_do (17 samples, 0.01%)</title><rect x="43.8073%" y="901" width="0.0113%" height="15" fill="rgb(214,118,42)" fg:x="65824" fg:w="17"/><text x="44.0573%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.03%)</title><rect x="43.8213%" y="693" width="0.0333%" height="15" fill="rgb(251,200,26)" fg:x="65845" fg:w="50"/><text x="44.0713%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.03%)</title><rect x="43.8226%" y="677" width="0.0319%" height="15" fill="rgb(237,101,39)" fg:x="65847" fg:w="48"/><text x="44.0726%" y="687.50"></text></g><g><title>native_write_msr (48 samples, 0.03%)</title><rect x="43.8226%" y="661" width="0.0319%" height="15" fill="rgb(251,117,11)" fg:x="65847" fg:w="48"/><text x="44.0726%" y="671.50"></text></g><g><title>finish_task_switch (53 samples, 0.04%)</title><rect x="43.8213%" y="709" width="0.0353%" height="15" fill="rgb(216,223,23)" fg:x="65845" fg:w="53"/><text x="44.0713%" y="719.50"></text></g><g><title>do_syscall_64 (60 samples, 0.04%)</title><rect x="43.8200%" y="821" width="0.0399%" height="15" fill="rgb(251,54,12)" fg:x="65843" fg:w="60"/><text x="44.0700%" y="831.50"></text></g><g><title>__x64_sys_futex (60 samples, 0.04%)</title><rect x="43.8200%" y="805" width="0.0399%" height="15" fill="rgb(254,176,54)" fg:x="65843" fg:w="60"/><text x="44.0700%" y="815.50"></text></g><g><title>do_futex (60 samples, 0.04%)</title><rect x="43.8200%" y="789" width="0.0399%" height="15" fill="rgb(210,32,8)" fg:x="65843" fg:w="60"/><text x="44.0700%" y="799.50"></text></g><g><title>futex_wait (59 samples, 0.04%)</title><rect x="43.8206%" y="773" width="0.0393%" height="15" fill="rgb(235,52,38)" fg:x="65844" fg:w="59"/><text x="44.0706%" y="783.50"></text></g><g><title>futex_wait_queue_me (59 samples, 0.04%)</title><rect x="43.8206%" y="757" width="0.0393%" height="15" fill="rgb(231,4,44)" fg:x="65844" fg:w="59"/><text x="44.0706%" y="767.50"></text></g><g><title>schedule (59 samples, 0.04%)</title><rect x="43.8206%" y="741" width="0.0393%" height="15" fill="rgb(249,2,32)" fg:x="65844" fg:w="59"/><text x="44.0706%" y="751.50"></text></g><g><title>__schedule (59 samples, 0.04%)</title><rect x="43.8206%" y="725" width="0.0393%" height="15" fill="rgb(224,65,26)" fg:x="65844" fg:w="59"/><text x="44.0706%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.04%)</title><rect x="43.8200%" y="837" width="0.0413%" height="15" fill="rgb(250,73,40)" fg:x="65843" fg:w="62"/><text x="44.0700%" y="847.50"></text></g><g><title>__GI___clone (414 samples, 0.28%)</title><rect x="43.5864%" y="997" width="0.2755%" height="15" fill="rgb(253,177,16)" fg:x="65492" fg:w="414"/><text x="43.8364%" y="1007.50"></text></g><g><title>start_thread (414 samples, 0.28%)</title><rect x="43.5864%" y="981" width="0.2755%" height="15" fill="rgb(217,32,34)" fg:x="65492" fg:w="414"/><text x="43.8364%" y="991.50"></text></g><g><title>thread_native_entry (414 samples, 0.28%)</title><rect x="43.5864%" y="965" width="0.2755%" height="15" fill="rgb(212,7,10)" fg:x="65492" fg:w="414"/><text x="43.8364%" y="975.50"></text></g><g><title>Thread::call_run (414 samples, 0.28%)</title><rect x="43.5864%" y="949" width="0.2755%" height="15" fill="rgb(245,89,8)" fg:x="65492" fg:w="414"/><text x="43.8364%" y="959.50"></text></g><g><title>GangWorker::loop (414 samples, 0.28%)</title><rect x="43.5864%" y="933" width="0.2755%" height="15" fill="rgb(237,16,53)" fg:x="65492" fg:w="414"/><text x="43.8364%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (64 samples, 0.04%)</title><rect x="43.8193%" y="917" width="0.0426%" height="15" fill="rgb(250,204,30)" fg:x="65842" fg:w="64"/><text x="44.0693%" y="927.50"></text></g><g><title>PosixSemaphore::wait (64 samples, 0.04%)</title><rect x="43.8193%" y="901" width="0.0426%" height="15" fill="rgb(208,77,27)" fg:x="65842" fg:w="64"/><text x="44.0693%" y="911.50"></text></g><g><title>__new_sem_wait_slow (63 samples, 0.04%)</title><rect x="43.8200%" y="885" width="0.0419%" height="15" fill="rgb(250,204,28)" fg:x="65843" fg:w="63"/><text x="44.0700%" y="895.50"></text></g><g><title>do_futex_wait (63 samples, 0.04%)</title><rect x="43.8200%" y="869" width="0.0419%" height="15" fill="rgb(244,63,21)" fg:x="65843" fg:w="63"/><text x="44.0700%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (63 samples, 0.04%)</title><rect x="43.8200%" y="853" width="0.0419%" height="15" fill="rgb(236,85,44)" fg:x="65843" fg:w="63"/><text x="44.0700%" y="863.50"></text></g><g><title>GC_Thread#5 (425 samples, 0.28%)</title><rect x="43.5817%" y="1013" width="0.2828%" height="15" fill="rgb(215,98,4)" fg:x="65485" fg:w="425"/><text x="43.8317%" y="1023.50"></text></g><g><title>G1ParScanThreadState::trim_queue (62 samples, 0.04%)</title><rect x="43.8839%" y="885" width="0.0413%" height="15" fill="rgb(235,38,11)" fg:x="65939" fg:w="62"/><text x="44.1339%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (39 samples, 0.03%)</title><rect x="43.8992%" y="869" width="0.0260%" height="15" fill="rgb(254,186,25)" fg:x="65962" fg:w="39"/><text x="44.1492%" y="879.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (87 samples, 0.06%)</title><rect x="43.8799%" y="901" width="0.0579%" height="15" fill="rgb(225,55,31)" fg:x="65933" fg:w="87"/><text x="44.1299%" y="911.50"></text></g><g><title>SpinPause (17 samples, 0.01%)</title><rect x="43.9264%" y="885" width="0.0113%" height="15" fill="rgb(211,15,21)" fg:x="66003" fg:w="17"/><text x="44.1764%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (20 samples, 0.01%)</title><rect x="43.9391%" y="853" width="0.0133%" height="15" fill="rgb(215,187,41)" fg:x="66022" fg:w="20"/><text x="44.1891%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (20 samples, 0.01%)</title><rect x="43.9391%" y="837" width="0.0133%" height="15" fill="rgb(248,69,32)" fg:x="66022" fg:w="20"/><text x="44.1891%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (20 samples, 0.01%)</title><rect x="43.9391%" y="821" width="0.0133%" height="15" fill="rgb(252,102,52)" fg:x="66022" fg:w="20"/><text x="44.1891%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (16 samples, 0.01%)</title><rect x="43.9418%" y="805" width="0.0106%" height="15" fill="rgb(253,140,32)" fg:x="66026" fg:w="16"/><text x="44.1918%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (33 samples, 0.02%)</title><rect x="43.9391%" y="901" width="0.0220%" height="15" fill="rgb(216,56,42)" fg:x="66022" fg:w="33"/><text x="44.1891%" y="911.50"></text></g><g><title>G1CollectionSet::iterate_from (33 samples, 0.02%)</title><rect x="43.9391%" y="885" width="0.0220%" height="15" fill="rgb(216,184,14)" fg:x="66022" fg:w="33"/><text x="44.1891%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (33 samples, 0.02%)</title><rect x="43.9391%" y="869" width="0.0220%" height="15" fill="rgb(237,187,27)" fg:x="66022" fg:w="33"/><text x="44.1891%" y="879.50"></text></g><g><title>G1ParCopyClosure<(G1Barrier)1, (G1Mark)0>::do_oop (16 samples, 0.01%)</title><rect x="43.9631%" y="821" width="0.0106%" height="15" fill="rgb(219,65,3)" fg:x="66058" fg:w="16"/><text x="44.2131%" y="831.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (67 samples, 0.04%)</title><rect x="43.9617%" y="869" width="0.0446%" height="15" fill="rgb(245,83,25)" fg:x="66056" fg:w="67"/><text x="44.2117%" y="879.50"></text></g><g><title>G1CLDScanClosure::do_cld (67 samples, 0.04%)</title><rect x="43.9617%" y="853" width="0.0446%" height="15" fill="rgb(214,205,45)" fg:x="66056" fg:w="67"/><text x="44.2117%" y="863.50"></text></g><g><title>ClassLoaderData::oops_do (67 samples, 0.04%)</title><rect x="43.9617%" y="837" width="0.0446%" height="15" fill="rgb(241,20,18)" fg:x="66056" fg:w="67"/><text x="44.2117%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (49 samples, 0.03%)</title><rect x="43.9737%" y="821" width="0.0326%" height="15" fill="rgb(232,163,23)" fg:x="66074" fg:w="49"/><text x="44.2237%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (40 samples, 0.03%)</title><rect x="43.9797%" y="805" width="0.0266%" height="15" fill="rgb(214,5,46)" fg:x="66083" fg:w="40"/><text x="44.2297%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (29 samples, 0.02%)</title><rect x="43.9870%" y="789" width="0.0193%" height="15" fill="rgb(229,78,17)" fg:x="66094" fg:w="29"/><text x="44.2370%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (82 samples, 0.05%)</title><rect x="43.9617%" y="885" width="0.0546%" height="15" fill="rgb(248,89,10)" fg:x="66056" fg:w="82"/><text x="44.2117%" y="895.50"></text></g><g><title>G1ParTask::work (227 samples, 0.15%)</title><rect x="43.8799%" y="917" width="0.1511%" height="15" fill="rgb(248,54,15)" fg:x="65933" fg:w="227"/><text x="44.1299%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (105 samples, 0.07%)</title><rect x="43.9611%" y="901" width="0.0699%" height="15" fill="rgb(223,116,6)" fg:x="66055" fg:w="105"/><text x="44.2111%" y="911.50"></text></g><g><title>G1STWRefProcTaskProxy::work (16 samples, 0.01%)</title><rect x="44.0383%" y="917" width="0.0106%" height="15" fill="rgb(205,125,38)" fg:x="66171" fg:w="16"/><text x="44.2883%" y="927.50"></text></g><g><title>ParallelSPCleanupTask::work (21 samples, 0.01%)</title><rect x="44.0489%" y="917" width="0.0140%" height="15" fill="rgb(251,78,38)" fg:x="66187" fg:w="21"/><text x="44.2989%" y="927.50"></text></g><g><title>Threads::possibly_parallel_threads_do (18 samples, 0.01%)</title><rect x="44.0509%" y="901" width="0.0120%" height="15" fill="rgb(253,78,28)" fg:x="66190" fg:w="18"/><text x="44.3009%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.03%)</title><rect x="44.0682%" y="693" width="0.0286%" height="15" fill="rgb(209,120,3)" fg:x="66216" fg:w="43"/><text x="44.3182%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.03%)</title><rect x="44.0682%" y="677" width="0.0286%" height="15" fill="rgb(238,229,9)" fg:x="66216" fg:w="43"/><text x="44.3182%" y="687.50"></text></g><g><title>native_write_msr (43 samples, 0.03%)</title><rect x="44.0682%" y="661" width="0.0286%" height="15" fill="rgb(253,159,18)" fg:x="66216" fg:w="43"/><text x="44.3182%" y="671.50"></text></g><g><title>finish_task_switch (46 samples, 0.03%)</title><rect x="44.0675%" y="709" width="0.0306%" height="15" fill="rgb(244,42,34)" fg:x="66215" fg:w="46"/><text x="44.3175%" y="719.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.04%)</title><rect x="44.0649%" y="757" width="0.0359%" height="15" fill="rgb(224,8,7)" fg:x="66211" fg:w="54"/><text x="44.3149%" y="767.50"></text></g><g><title>schedule (53 samples, 0.04%)</title><rect x="44.0655%" y="741" width="0.0353%" height="15" fill="rgb(210,201,45)" fg:x="66212" fg:w="53"/><text x="44.3155%" y="751.50"></text></g><g><title>__schedule (53 samples, 0.04%)</title><rect x="44.0655%" y="725" width="0.0353%" height="15" fill="rgb(252,185,21)" fg:x="66212" fg:w="53"/><text x="44.3155%" y="735.50"></text></g><g><title>do_syscall_64 (58 samples, 0.04%)</title><rect x="44.0642%" y="821" width="0.0386%" height="15" fill="rgb(223,131,1)" fg:x="66210" fg:w="58"/><text x="44.3142%" y="831.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.04%)</title><rect x="44.0642%" y="805" width="0.0386%" height="15" fill="rgb(245,141,16)" fg:x="66210" fg:w="58"/><text x="44.3142%" y="815.50"></text></g><g><title>do_futex (58 samples, 0.04%)</title><rect x="44.0642%" y="789" width="0.0386%" height="15" fill="rgb(229,55,45)" fg:x="66210" fg:w="58"/><text x="44.3142%" y="799.50"></text></g><g><title>futex_wait (57 samples, 0.04%)</title><rect x="44.0649%" y="773" width="0.0379%" height="15" fill="rgb(208,92,15)" fg:x="66211" fg:w="57"/><text x="44.3149%" y="783.50"></text></g><g><title>__GI___clone (353 samples, 0.23%)</title><rect x="43.8705%" y="997" width="0.2349%" height="15" fill="rgb(234,185,47)" fg:x="65919" fg:w="353"/><text x="44.1205%" y="1007.50"></text></g><g><title>start_thread (353 samples, 0.23%)</title><rect x="43.8705%" y="981" width="0.2349%" height="15" fill="rgb(253,104,50)" fg:x="65919" fg:w="353"/><text x="44.1205%" y="991.50"></text></g><g><title>thread_native_entry (353 samples, 0.23%)</title><rect x="43.8705%" y="965" width="0.2349%" height="15" fill="rgb(205,70,7)" fg:x="65919" fg:w="353"/><text x="44.1205%" y="975.50"></text></g><g><title>Thread::call_run (353 samples, 0.23%)</title><rect x="43.8705%" y="949" width="0.2349%" height="15" fill="rgb(240,178,43)" fg:x="65919" fg:w="353"/><text x="44.1205%" y="959.50"></text></g><g><title>GangWorker::loop (353 samples, 0.23%)</title><rect x="43.8705%" y="933" width="0.2349%" height="15" fill="rgb(214,112,2)" fg:x="65919" fg:w="353"/><text x="44.1205%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (62 samples, 0.04%)</title><rect x="44.0642%" y="917" width="0.0413%" height="15" fill="rgb(206,46,17)" fg:x="66210" fg:w="62"/><text x="44.3142%" y="927.50"></text></g><g><title>PosixSemaphore::wait (62 samples, 0.04%)</title><rect x="44.0642%" y="901" width="0.0413%" height="15" fill="rgb(225,220,16)" fg:x="66210" fg:w="62"/><text x="44.3142%" y="911.50"></text></g><g><title>__new_sem_wait_slow (62 samples, 0.04%)</title><rect x="44.0642%" y="885" width="0.0413%" height="15" fill="rgb(238,65,40)" fg:x="66210" fg:w="62"/><text x="44.3142%" y="895.50"></text></g><g><title>do_futex_wait (62 samples, 0.04%)</title><rect x="44.0642%" y="869" width="0.0413%" height="15" fill="rgb(230,151,21)" fg:x="66210" fg:w="62"/><text x="44.3142%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (62 samples, 0.04%)</title><rect x="44.0642%" y="853" width="0.0413%" height="15" fill="rgb(218,58,49)" fg:x="66210" fg:w="62"/><text x="44.3142%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.04%)</title><rect x="44.0642%" y="837" width="0.0413%" height="15" fill="rgb(219,179,14)" fg:x="66210" fg:w="62"/><text x="44.3142%" y="847.50"></text></g><g><title>GC_Thread#6 (365 samples, 0.24%)</title><rect x="43.8646%" y="1013" width="0.2429%" height="15" fill="rgb(223,72,1)" fg:x="65910" fg:w="365"/><text x="44.1146%" y="1023.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (58 samples, 0.04%)</title><rect x="44.1387%" y="869" width="0.0386%" height="15" fill="rgb(238,126,10)" fg:x="66322" fg:w="58"/><text x="44.3887%" y="879.50"></text></g><g><title>asm_exc_page_fault (22 samples, 0.01%)</title><rect x="44.1627%" y="853" width="0.0146%" height="15" fill="rgb(224,206,38)" fg:x="66358" fg:w="22"/><text x="44.4127%" y="863.50"></text></g><g><title>exc_page_fault (22 samples, 0.01%)</title><rect x="44.1627%" y="837" width="0.0146%" height="15" fill="rgb(212,201,54)" fg:x="66358" fg:w="22"/><text x="44.4127%" y="847.50"></text></g><g><title>do_user_addr_fault (22 samples, 0.01%)</title><rect x="44.1627%" y="821" width="0.0146%" height="15" fill="rgb(218,154,48)" fg:x="66358" fg:w="22"/><text x="44.4127%" y="831.50"></text></g><g><title>handle_mm_fault (22 samples, 0.01%)</title><rect x="44.1627%" y="805" width="0.0146%" height="15" fill="rgb(232,93,24)" fg:x="66358" fg:w="22"/><text x="44.4127%" y="815.50"></text></g><g><title>do_huge_pmd_anonymous_page (22 samples, 0.01%)</title><rect x="44.1627%" y="789" width="0.0146%" height="15" fill="rgb(245,30,21)" fg:x="66358" fg:w="22"/><text x="44.4127%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue (83 samples, 0.06%)</title><rect x="44.1248%" y="885" width="0.0552%" height="15" fill="rgb(242,148,29)" fg:x="66301" fg:w="83"/><text x="44.3748%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (133 samples, 0.09%)</title><rect x="44.1208%" y="901" width="0.0885%" height="15" fill="rgb(244,153,54)" fg:x="66295" fg:w="133"/><text x="44.3708%" y="911.50"></text></g><g><title>SpinPause (37 samples, 0.02%)</title><rect x="44.1847%" y="885" width="0.0246%" height="15" fill="rgb(252,87,22)" fg:x="66391" fg:w="37"/><text x="44.4347%" y="895.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (22 samples, 0.01%)</title><rect x="44.2093%" y="901" width="0.0146%" height="15" fill="rgb(210,51,29)" fg:x="66428" fg:w="22"/><text x="44.4593%" y="911.50"></text></g><g><title>G1RemSet::update_rem_set (22 samples, 0.01%)</title><rect x="44.2093%" y="885" width="0.0146%" height="15" fill="rgb(242,136,47)" fg:x="66428" fg:w="22"/><text x="44.4593%" y="895.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (22 samples, 0.01%)</title><rect x="44.2093%" y="869" width="0.0146%" height="15" fill="rgb(238,68,4)" fg:x="66428" fg:w="22"/><text x="44.4593%" y="879.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (22 samples, 0.01%)</title><rect x="44.2093%" y="853" width="0.0146%" height="15" fill="rgb(242,161,30)" fg:x="66428" fg:w="22"/><text x="44.4593%" y="863.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (22 samples, 0.01%)</title><rect x="44.2093%" y="837" width="0.0146%" height="15" fill="rgb(218,58,44)" fg:x="66428" fg:w="22"/><text x="44.4593%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (22 samples, 0.01%)</title><rect x="44.2093%" y="821" width="0.0146%" height="15" fill="rgb(252,125,32)" fg:x="66428" fg:w="22"/><text x="44.4593%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (16 samples, 0.01%)</title><rect x="44.2133%" y="805" width="0.0106%" height="15" fill="rgb(219,178,0)" fg:x="66434" fg:w="16"/><text x="44.4633%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (33 samples, 0.02%)</title><rect x="44.2239%" y="901" width="0.0220%" height="15" fill="rgb(213,152,7)" fg:x="66450" fg:w="33"/><text x="44.4739%" y="911.50"></text></g><g><title>G1CollectionSet::iterate_from (33 samples, 0.02%)</title><rect x="44.2239%" y="885" width="0.0220%" height="15" fill="rgb(249,109,34)" fg:x="66450" fg:w="33"/><text x="44.4739%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (33 samples, 0.02%)</title><rect x="44.2239%" y="869" width="0.0220%" height="15" fill="rgb(232,96,21)" fg:x="66450" fg:w="33"/><text x="44.4739%" y="879.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (18 samples, 0.01%)</title><rect x="44.2339%" y="853" width="0.0120%" height="15" fill="rgb(228,27,39)" fg:x="66465" fg:w="18"/><text x="44.4839%" y="863.50"></text></g><g><title>G1CodeRootSet::nmethods_do (18 samples, 0.01%)</title><rect x="44.2339%" y="837" width="0.0120%" height="15" fill="rgb(211,182,52)" fg:x="66465" fg:w="18"/><text x="44.4839%" y="847.50"></text></g><g><title>HandleArea::oops_do (22 samples, 0.01%)</title><rect x="44.2466%" y="821" width="0.0146%" height="15" fill="rgb(234,178,38)" fg:x="66484" fg:w="22"/><text x="44.4966%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (16 samples, 0.01%)</title><rect x="44.2632%" y="789" width="0.0106%" height="15" fill="rgb(221,111,3)" fg:x="66509" fg:w="16"/><text x="44.5132%" y="799.50"></text></g><g><title>JNIHandleBlock::oops_do (20 samples, 0.01%)</title><rect x="44.2612%" y="821" width="0.0133%" height="15" fill="rgb(228,175,21)" fg:x="66506" fg:w="20"/><text x="44.5112%" y="831.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (18 samples, 0.01%)</title><rect x="44.2625%" y="805" width="0.0120%" height="15" fill="rgb(228,174,43)" fg:x="66508" fg:w="18"/><text x="44.5125%" y="815.50"></text></g><g><title>G1RootProcessor::process_java_roots (56 samples, 0.04%)</title><rect x="44.2466%" y="885" width="0.0373%" height="15" fill="rgb(211,191,0)" fg:x="66484" fg:w="56"/><text x="44.4966%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (56 samples, 0.04%)</title><rect x="44.2466%" y="869" width="0.0373%" height="15" fill="rgb(253,117,3)" fg:x="66484" fg:w="56"/><text x="44.4966%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (56 samples, 0.04%)</title><rect x="44.2466%" y="853" width="0.0373%" height="15" fill="rgb(241,127,19)" fg:x="66484" fg:w="56"/><text x="44.4966%" y="863.50"></text></g><g><title>JavaThread::oops_do (56 samples, 0.04%)</title><rect x="44.2466%" y="837" width="0.0373%" height="15" fill="rgb(218,103,12)" fg:x="66484" fg:w="56"/><text x="44.4966%" y="847.50"></text></g><g><title>G1ParTask::work (268 samples, 0.18%)</title><rect x="44.1208%" y="917" width="0.1784%" height="15" fill="rgb(236,214,43)" fg:x="66295" fg:w="268"/><text x="44.3708%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (80 samples, 0.05%)</title><rect x="44.2459%" y="901" width="0.0532%" height="15" fill="rgb(244,144,19)" fg:x="66483" fg:w="80"/><text x="44.4959%" y="911.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (23 samples, 0.02%)</title><rect x="44.2838%" y="885" width="0.0153%" height="15" fill="rgb(246,188,10)" fg:x="66540" fg:w="23"/><text x="44.5338%" y="895.50"></text></g><g><title>G1STWRefProcTaskProxy::work (25 samples, 0.02%)</title><rect x="44.3005%" y="917" width="0.0166%" height="15" fill="rgb(212,193,33)" fg:x="66565" fg:w="25"/><text x="44.5505%" y="927.50"></text></g><g><title>RefProcPhase3Task::work (17 samples, 0.01%)</title><rect x="44.3058%" y="901" width="0.0113%" height="15" fill="rgb(241,51,29)" fg:x="66573" fg:w="17"/><text x="44.5558%" y="911.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (17 samples, 0.01%)</title><rect x="44.3058%" y="885" width="0.0113%" height="15" fill="rgb(211,58,19)" fg:x="66573" fg:w="17"/><text x="44.5558%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (17 samples, 0.01%)</title><rect x="44.3058%" y="869" width="0.0113%" height="15" fill="rgb(229,111,26)" fg:x="66573" fg:w="17"/><text x="44.5558%" y="879.50"></text></g><g><title>SpinPause (16 samples, 0.01%)</title><rect x="44.3065%" y="853" width="0.0106%" height="15" fill="rgb(213,115,40)" fg:x="66574" fg:w="16"/><text x="44.5565%" y="863.50"></text></g><g><title>ParallelSPCleanupTask::work (21 samples, 0.01%)</title><rect x="44.3178%" y="917" width="0.0140%" height="15" fill="rgb(209,56,44)" fg:x="66591" fg:w="21"/><text x="44.5678%" y="927.50"></text></g><g><title>Threads::possibly_parallel_threads_do (19 samples, 0.01%)</title><rect x="44.3191%" y="901" width="0.0126%" height="15" fill="rgb(230,108,32)" fg:x="66593" fg:w="19"/><text x="44.5691%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.04%)</title><rect x="44.3391%" y="693" width="0.0366%" height="15" fill="rgb(216,165,31)" fg:x="66623" fg:w="55"/><text x="44.5891%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.04%)</title><rect x="44.3397%" y="677" width="0.0359%" height="15" fill="rgb(218,122,21)" fg:x="66624" fg:w="54"/><text x="44.5897%" y="687.50"></text></g><g><title>native_write_msr (54 samples, 0.04%)</title><rect x="44.3397%" y="661" width="0.0359%" height="15" fill="rgb(223,224,47)" fg:x="66624" fg:w="54"/><text x="44.5897%" y="671.50"></text></g><g><title>finish_task_switch (58 samples, 0.04%)</title><rect x="44.3384%" y="709" width="0.0386%" height="15" fill="rgb(238,102,44)" fg:x="66622" fg:w="58"/><text x="44.5884%" y="719.50"></text></g><g><title>do_syscall_64 (66 samples, 0.04%)</title><rect x="44.3344%" y="821" width="0.0439%" height="15" fill="rgb(236,46,40)" fg:x="66616" fg:w="66"/><text x="44.5844%" y="831.50"></text></g><g><title>__x64_sys_futex (64 samples, 0.04%)</title><rect x="44.3357%" y="805" width="0.0426%" height="15" fill="rgb(247,202,50)" fg:x="66618" fg:w="64"/><text x="44.5857%" y="815.50"></text></g><g><title>do_futex (64 samples, 0.04%)</title><rect x="44.3357%" y="789" width="0.0426%" height="15" fill="rgb(209,99,20)" fg:x="66618" fg:w="64"/><text x="44.5857%" y="799.50"></text></g><g><title>futex_wait (64 samples, 0.04%)</title><rect x="44.3357%" y="773" width="0.0426%" height="15" fill="rgb(252,27,34)" fg:x="66618" fg:w="64"/><text x="44.5857%" y="783.50"></text></g><g><title>futex_wait_queue_me (64 samples, 0.04%)</title><rect x="44.3357%" y="757" width="0.0426%" height="15" fill="rgb(215,206,23)" fg:x="66618" fg:w="64"/><text x="44.5857%" y="767.50"></text></g><g><title>schedule (62 samples, 0.04%)</title><rect x="44.3371%" y="741" width="0.0413%" height="15" fill="rgb(212,135,36)" fg:x="66620" fg:w="62"/><text x="44.5871%" y="751.50"></text></g><g><title>__schedule (62 samples, 0.04%)</title><rect x="44.3371%" y="725" width="0.0413%" height="15" fill="rgb(240,189,1)" fg:x="66620" fg:w="62"/><text x="44.5871%" y="735.50"></text></g><g><title>__GI___clone (403 samples, 0.27%)</title><rect x="44.1121%" y="997" width="0.2682%" height="15" fill="rgb(242,56,20)" fg:x="66282" fg:w="403"/><text x="44.3621%" y="1007.50"></text></g><g><title>start_thread (403 samples, 0.27%)</title><rect x="44.1121%" y="981" width="0.2682%" height="15" fill="rgb(247,132,33)" fg:x="66282" fg:w="403"/><text x="44.3621%" y="991.50"></text></g><g><title>thread_native_entry (403 samples, 0.27%)</title><rect x="44.1121%" y="965" width="0.2682%" height="15" fill="rgb(208,149,11)" fg:x="66282" fg:w="403"/><text x="44.3621%" y="975.50"></text></g><g><title>Thread::call_run (403 samples, 0.27%)</title><rect x="44.1121%" y="949" width="0.2682%" height="15" fill="rgb(211,33,11)" fg:x="66282" fg:w="403"/><text x="44.3621%" y="959.50"></text></g><g><title>GangWorker::loop (403 samples, 0.27%)</title><rect x="44.1121%" y="933" width="0.2682%" height="15" fill="rgb(221,29,38)" fg:x="66282" fg:w="403"/><text x="44.3621%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (70 samples, 0.05%)</title><rect x="44.3337%" y="917" width="0.0466%" height="15" fill="rgb(206,182,49)" fg:x="66615" fg:w="70"/><text x="44.5837%" y="927.50"></text></g><g><title>PosixSemaphore::wait (70 samples, 0.05%)</title><rect x="44.3337%" y="901" width="0.0466%" height="15" fill="rgb(216,140,1)" fg:x="66615" fg:w="70"/><text x="44.5837%" y="911.50"></text></g><g><title>__new_sem_wait_slow (69 samples, 0.05%)</title><rect x="44.3344%" y="885" width="0.0459%" height="15" fill="rgb(232,57,40)" fg:x="66616" fg:w="69"/><text x="44.5844%" y="895.50"></text></g><g><title>do_futex_wait (69 samples, 0.05%)</title><rect x="44.3344%" y="869" width="0.0459%" height="15" fill="rgb(224,186,18)" fg:x="66616" fg:w="69"/><text x="44.5844%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (69 samples, 0.05%)</title><rect x="44.3344%" y="853" width="0.0459%" height="15" fill="rgb(215,121,11)" fg:x="66616" fg:w="69"/><text x="44.5844%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.05%)</title><rect x="44.3344%" y="837" width="0.0459%" height="15" fill="rgb(245,147,10)" fg:x="66616" fg:w="69"/><text x="44.5844%" y="847.50"></text></g><g><title>GC_Thread#7 (413 samples, 0.27%)</title><rect x="44.1075%" y="1013" width="0.2749%" height="15" fill="rgb(238,153,13)" fg:x="66275" fg:w="413"/><text x="44.3575%" y="1023.50"></text></g><g><title>JVM_WaitForReferencePendingList (16 samples, 0.01%)</title><rect x="44.3863%" y="981" width="0.0106%" height="15" fill="rgb(233,108,0)" fg:x="66694" fg:w="16"/><text x="44.6363%" y="991.50"></text></g><g><title>Reference_Handl (22 samples, 0.01%)</title><rect x="44.3837%" y="1013" width="0.0146%" height="15" fill="rgb(212,157,17)" fg:x="66690" fg:w="22"/><text x="44.6337%" y="1023.50"></text></g><g><title>[perf-943567.map] (22 samples, 0.01%)</title><rect x="44.3837%" y="997" width="0.0146%" height="15" fill="rgb(225,213,38)" fg:x="66690" fg:w="22"/><text x="44.6337%" y="1007.50"></text></g><g><title>InterpreterRuntime::_new (16 samples, 0.01%)</title><rect x="44.4396%" y="981" width="0.0106%" height="15" fill="rgb(248,16,11)" fg:x="66774" fg:w="16"/><text x="44.6896%" y="991.50"></text></g><g><title>[perf-943567.map] (93 samples, 0.06%)</title><rect x="44.4043%" y="997" width="0.0619%" height="15" fill="rgb(241,33,4)" fg:x="66721" fg:w="93"/><text x="44.6543%" y="1007.50"></text></g><g><title>Service_Thread (119 samples, 0.08%)</title><rect x="44.3990%" y="1013" width="0.0792%" height="15" fill="rgb(222,26,43)" fg:x="66713" fg:w="119"/><text x="44.6490%" y="1023.50"></text></g><g><title>__perf_event_task_sched_in (153 samples, 0.10%)</title><rect x="44.5460%" y="661" width="0.1018%" height="15" fill="rgb(243,29,36)" fg:x="66934" fg:w="153"/><text x="44.7960%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (149 samples, 0.10%)</title><rect x="44.5487%" y="645" width="0.0992%" height="15" fill="rgb(241,9,27)" fg:x="66938" fg:w="149"/><text x="44.7987%" y="655.50"></text></g><g><title>native_write_msr (148 samples, 0.10%)</title><rect x="44.5494%" y="629" width="0.0985%" height="15" fill="rgb(205,117,26)" fg:x="66939" fg:w="148"/><text x="44.7994%" y="639.50"></text></g><g><title>finish_task_switch (164 samples, 0.11%)</title><rect x="44.5447%" y="677" width="0.1091%" height="15" fill="rgb(209,80,39)" fg:x="66932" fg:w="164"/><text x="44.7947%" y="687.50"></text></g><g><title>futex_wait_queue_me (217 samples, 0.14%)</title><rect x="44.5214%" y="725" width="0.1444%" height="15" fill="rgb(239,155,6)" fg:x="66897" fg:w="217"/><text x="44.7714%" y="735.50"></text></g><g><title>schedule (204 samples, 0.14%)</title><rect x="44.5301%" y="709" width="0.1358%" height="15" fill="rgb(212,104,12)" fg:x="66910" fg:w="204"/><text x="44.7801%" y="719.50"></text></g><g><title>__schedule (203 samples, 0.14%)</title><rect x="44.5307%" y="693" width="0.1351%" height="15" fill="rgb(234,204,3)" fg:x="66911" fg:w="203"/><text x="44.7807%" y="703.50"></text></g><g><title>do_futex (228 samples, 0.15%)</title><rect x="44.5201%" y="757" width="0.1517%" height="15" fill="rgb(251,218,7)" fg:x="66895" fg:w="228"/><text x="44.7701%" y="767.50"></text></g><g><title>futex_wait (228 samples, 0.15%)</title><rect x="44.5201%" y="741" width="0.1517%" height="15" fill="rgb(221,81,32)" fg:x="66895" fg:w="228"/><text x="44.7701%" y="751.50"></text></g><g><title>do_syscall_64 (239 samples, 0.16%)</title><rect x="44.5154%" y="789" width="0.1591%" height="15" fill="rgb(214,152,26)" fg:x="66888" fg:w="239"/><text x="44.7654%" y="799.50"></text></g><g><title>__x64_sys_futex (236 samples, 0.16%)</title><rect x="44.5174%" y="773" width="0.1571%" height="15" fill="rgb(223,22,3)" fg:x="66891" fg:w="236"/><text x="44.7674%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (248 samples, 0.17%)</title><rect x="44.5154%" y="805" width="0.1650%" height="15" fill="rgb(207,174,7)" fg:x="66888" fg:w="248"/><text x="44.7654%" y="815.50"></text></g><g><title>__pthread_cond_timedwait (260 samples, 0.17%)</title><rect x="44.5088%" y="853" width="0.1730%" height="15" fill="rgb(224,19,52)" fg:x="66878" fg:w="260"/><text x="44.7588%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (260 samples, 0.17%)</title><rect x="44.5088%" y="837" width="0.1730%" height="15" fill="rgb(228,24,14)" fg:x="66878" fg:w="260"/><text x="44.7588%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (256 samples, 0.17%)</title><rect x="44.5114%" y="821" width="0.1704%" height="15" fill="rgb(230,153,43)" fg:x="66882" fg:w="256"/><text x="44.7614%" y="831.50"></text></g><g><title>Monitor::IWait (293 samples, 0.19%)</title><rect x="44.4948%" y="885" width="0.1950%" height="15" fill="rgb(231,106,12)" fg:x="66857" fg:w="293"/><text x="44.7448%" y="895.50"></text></g><g><title>os::PlatformEvent::park (288 samples, 0.19%)</title><rect x="44.4981%" y="869" width="0.1917%" height="15" fill="rgb(215,92,2)" fg:x="66862" fg:w="288"/><text x="44.7481%" y="879.50"></text></g><g><title>Monitor::wait (298 samples, 0.20%)</title><rect x="44.4921%" y="901" width="0.1983%" height="15" fill="rgb(249,143,25)" fg:x="66853" fg:w="298"/><text x="44.7421%" y="911.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (48 samples, 0.03%)</title><rect x="44.7031%" y="853" width="0.0319%" height="15" fill="rgb(252,7,35)" fg:x="67170" fg:w="48"/><text x="44.9531%" y="863.50"></text></g><g><title>NMethodSweeper::process_compiled_method (62 samples, 0.04%)</title><rect x="44.7011%" y="869" width="0.0413%" height="15" fill="rgb(216,69,40)" fg:x="67167" fg:w="62"/><text x="44.9511%" y="879.50"></text></g><g><title>NMethodSweeper::possibly_sweep (82 samples, 0.05%)</title><rect x="44.6905%" y="901" width="0.0546%" height="15" fill="rgb(240,36,33)" fg:x="67151" fg:w="82"/><text x="44.9405%" y="911.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (76 samples, 0.05%)</title><rect x="44.6945%" y="885" width="0.0506%" height="15" fill="rgb(231,128,14)" fg:x="67157" fg:w="76"/><text x="44.9445%" y="895.50"></text></g><g><title>__GI___clone (394 samples, 0.26%)</title><rect x="44.4842%" y="997" width="0.2622%" height="15" fill="rgb(245,143,14)" fg:x="66841" fg:w="394"/><text x="44.7342%" y="1007.50"></text></g><g><title>start_thread (394 samples, 0.26%)</title><rect x="44.4842%" y="981" width="0.2622%" height="15" fill="rgb(222,130,28)" fg:x="66841" fg:w="394"/><text x="44.7342%" y="991.50"></text></g><g><title>thread_native_entry (394 samples, 0.26%)</title><rect x="44.4842%" y="965" width="0.2622%" height="15" fill="rgb(212,10,48)" fg:x="66841" fg:w="394"/><text x="44.7342%" y="975.50"></text></g><g><title>Thread::call_run (394 samples, 0.26%)</title><rect x="44.4842%" y="949" width="0.2622%" height="15" fill="rgb(254,118,45)" fg:x="66841" fg:w="394"/><text x="44.7342%" y="959.50"></text></g><g><title>JavaThread::thread_main_inner (394 samples, 0.26%)</title><rect x="44.4842%" y="933" width="0.2622%" height="15" fill="rgb(228,6,45)" fg:x="66841" fg:w="394"/><text x="44.7342%" y="943.50"></text></g><g><title>NMethodSweeper::sweeper_loop (392 samples, 0.26%)</title><rect x="44.4855%" y="917" width="0.2609%" height="15" fill="rgb(241,18,35)" fg:x="66843" fg:w="392"/><text x="44.7355%" y="927.50"></text></g><g><title>Sweeper_thread (408 samples, 0.27%)</title><rect x="44.4782%" y="1013" width="0.2715%" height="15" fill="rgb(227,214,53)" fg:x="66832" fg:w="408"/><text x="44.7282%" y="1023.50"></text></g><g><title>JVM_Sleep (27 samples, 0.02%)</title><rect x="44.8149%" y="981" width="0.0180%" height="15" fill="rgb(224,107,51)" fg:x="67338" fg:w="27"/><text x="45.0649%" y="991.50"></text></g><g><title>os::sleep (27 samples, 0.02%)</title><rect x="44.8149%" y="965" width="0.0180%" height="15" fill="rgb(248,60,28)" fg:x="67338" fg:w="27"/><text x="45.0649%" y="975.50"></text></g><g><title>os::PlatformEvent::park (18 samples, 0.01%)</title><rect x="44.8209%" y="949" width="0.0120%" height="15" fill="rgb(249,101,23)" fg:x="67347" fg:w="18"/><text x="45.0709%" y="959.50"></text></g><g><title>__pthread_cond_timedwait (18 samples, 0.01%)</title><rect x="44.8209%" y="933" width="0.0120%" height="15" fill="rgb(228,51,19)" fg:x="67347" fg:w="18"/><text x="45.0709%" y="943.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="44.8216%" y="917" width="0.0113%" height="15" fill="rgb(213,20,6)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="927.50"></text></g><g><title>futex_abstimed_wait_cancelable (17 samples, 0.01%)</title><rect x="44.8216%" y="901" width="0.0113%" height="15" fill="rgb(212,124,10)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="44.8216%" y="885" width="0.0113%" height="15" fill="rgb(248,3,40)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="895.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="44.8216%" y="869" width="0.0113%" height="15" fill="rgb(223,178,23)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="879.50"></text></g><g><title>__x64_sys_futex (17 samples, 0.01%)</title><rect x="44.8216%" y="853" width="0.0113%" height="15" fill="rgb(240,132,45)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="863.50"></text></g><g><title>do_futex (17 samples, 0.01%)</title><rect x="44.8216%" y="837" width="0.0113%" height="15" fill="rgb(245,164,36)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="847.50"></text></g><g><title>futex_wait (17 samples, 0.01%)</title><rect x="44.8216%" y="821" width="0.0113%" height="15" fill="rgb(231,188,53)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="831.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="44.8222%" y="805" width="0.0106%" height="15" fill="rgb(237,198,39)" fg:x="67349" fg:w="16"/><text x="45.0722%" y="815.50"></text></g><g><title>get_cpu_load (19 samples, 0.01%)</title><rect x="44.8449%" y="981" width="0.0126%" height="15" fill="rgb(223,120,35)" fg:x="67383" fg:w="19"/><text x="45.0949%" y="991.50"></text></g><g><title>get_cpuload_internal (19 samples, 0.01%)</title><rect x="44.8449%" y="965" width="0.0126%" height="15" fill="rgb(253,107,49)" fg:x="67383" fg:w="19"/><text x="45.0949%" y="975.50"></text></g><g><title>get_totalticks (19 samples, 0.01%)</title><rect x="44.8449%" y="949" width="0.0126%" height="15" fill="rgb(216,44,31)" fg:x="67383" fg:w="19"/><text x="45.0949%" y="959.50"></text></g><g><title>[perf-943567.map] (154 samples, 0.10%)</title><rect x="44.7557%" y="997" width="0.1025%" height="15" fill="rgb(253,87,21)" fg:x="67249" fg:w="154"/><text x="45.0057%" y="1007.50"></text></g><g><title>Thread-0 (170 samples, 0.11%)</title><rect x="44.7497%" y="1013" width="0.1131%" height="15" fill="rgb(226,18,2)" fg:x="67240" fg:w="170"/><text x="44.9997%" y="1023.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="44.8728%" y="661" width="0.0126%" height="15" fill="rgb(216,8,46)" fg:x="67425" fg:w="19"/><text x="45.1228%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="44.8728%" y="645" width="0.0126%" height="15" fill="rgb(226,140,39)" fg:x="67425" fg:w="19"/><text x="45.1228%" y="655.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="44.8728%" y="629" width="0.0126%" height="15" fill="rgb(221,194,54)" fg:x="67425" fg:w="19"/><text x="45.1228%" y="639.50"></text></g><g><title>finish_task_switch (23 samples, 0.02%)</title><rect x="44.8708%" y="677" width="0.0153%" height="15" fill="rgb(213,92,11)" fg:x="67422" fg:w="23"/><text x="45.1208%" y="687.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="44.8702%" y="789" width="0.0186%" height="15" fill="rgb(229,162,46)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="799.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.02%)</title><rect x="44.8702%" y="773" width="0.0186%" height="15" fill="rgb(214,111,36)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="783.50"></text></g><g><title>do_futex (28 samples, 0.02%)</title><rect x="44.8702%" y="757" width="0.0186%" height="15" fill="rgb(207,6,21)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="767.50"></text></g><g><title>futex_wait (28 samples, 0.02%)</title><rect x="44.8702%" y="741" width="0.0186%" height="15" fill="rgb(213,127,38)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="751.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.02%)</title><rect x="44.8702%" y="725" width="0.0186%" height="15" fill="rgb(238,118,32)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="735.50"></text></g><g><title>schedule (28 samples, 0.02%)</title><rect x="44.8702%" y="709" width="0.0186%" height="15" fill="rgb(240,139,39)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="719.50"></text></g><g><title>__schedule (28 samples, 0.02%)</title><rect x="44.8702%" y="693" width="0.0186%" height="15" fill="rgb(235,10,37)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (32 samples, 0.02%)</title><rect x="44.8688%" y="853" width="0.0213%" height="15" fill="rgb(249,171,38)" fg:x="67419" fg:w="32"/><text x="45.1188%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (32 samples, 0.02%)</title><rect x="44.8688%" y="837" width="0.0213%" height="15" fill="rgb(242,144,32)" fg:x="67419" fg:w="32"/><text x="45.1188%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (30 samples, 0.02%)</title><rect x="44.8702%" y="821" width="0.0200%" height="15" fill="rgb(217,117,21)" fg:x="67421" fg:w="30"/><text x="45.1202%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.02%)</title><rect x="44.8702%" y="805" width="0.0200%" height="15" fill="rgb(249,87,1)" fg:x="67421" fg:w="30"/><text x="45.1202%" y="815.50"></text></g><g><title>VM_Periodic_Tas (43 samples, 0.03%)</title><rect x="44.8628%" y="1013" width="0.0286%" height="15" fill="rgb(248,196,48)" fg:x="67410" fg:w="43"/><text x="45.1128%" y="1023.50"></text></g><g><title>__GI___clone (38 samples, 0.03%)</title><rect x="44.8662%" y="997" width="0.0253%" height="15" fill="rgb(251,206,33)" fg:x="67415" fg:w="38"/><text x="45.1162%" y="1007.50"></text></g><g><title>start_thread (38 samples, 0.03%)</title><rect x="44.8662%" y="981" width="0.0253%" height="15" fill="rgb(232,141,28)" fg:x="67415" fg:w="38"/><text x="45.1162%" y="991.50"></text></g><g><title>thread_native_entry (38 samples, 0.03%)</title><rect x="44.8662%" y="965" width="0.0253%" height="15" fill="rgb(209,167,14)" fg:x="67415" fg:w="38"/><text x="45.1162%" y="975.50"></text></g><g><title>Thread::call_run (38 samples, 0.03%)</title><rect x="44.8662%" y="949" width="0.0253%" height="15" fill="rgb(225,11,50)" fg:x="67415" fg:w="38"/><text x="45.1162%" y="959.50"></text></g><g><title>WatcherThread::run (38 samples, 0.03%)</title><rect x="44.8662%" y="933" width="0.0253%" height="15" fill="rgb(209,50,20)" fg:x="67415" fg:w="38"/><text x="45.1162%" y="943.50"></text></g><g><title>WatcherThread::sleep (34 samples, 0.02%)</title><rect x="44.8688%" y="917" width="0.0226%" height="15" fill="rgb(212,17,46)" fg:x="67419" fg:w="34"/><text x="45.1188%" y="927.50"></text></g><g><title>Monitor::wait (34 samples, 0.02%)</title><rect x="44.8688%" y="901" width="0.0226%" height="15" fill="rgb(216,101,39)" fg:x="67419" fg:w="34"/><text x="45.1188%" y="911.50"></text></g><g><title>Monitor::IWait (34 samples, 0.02%)</title><rect x="44.8688%" y="885" width="0.0226%" height="15" fill="rgb(212,228,48)" fg:x="67419" fg:w="34"/><text x="45.1188%" y="895.50"></text></g><g><title>os::PlatformEvent::park (34 samples, 0.02%)</title><rect x="44.8688%" y="869" width="0.0226%" height="15" fill="rgb(250,6,50)" fg:x="67419" fg:w="34"/><text x="45.1188%" y="879.50"></text></g><g><title>[unknown] (57 samples, 0.04%)</title><rect x="44.9001%" y="997" width="0.0379%" height="15" fill="rgb(250,160,48)" fg:x="67466" fg:w="57"/><text x="45.1501%" y="1007.50"></text></g><g><title>vframe::sender (53 samples, 0.04%)</title><rect x="44.9028%" y="981" width="0.0353%" height="15" fill="rgb(244,216,33)" fg:x="67470" fg:w="53"/><text x="45.1528%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.02%)</title><rect x="44.9394%" y="933" width="0.0160%" height="15" fill="rgb(207,157,5)" fg:x="67525" fg:w="24"/><text x="45.1894%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="44.9394%" y="917" width="0.0160%" height="15" fill="rgb(228,199,8)" fg:x="67525" fg:w="24"/><text x="45.1894%" y="927.50"></text></g><g><title>native_write_msr (23 samples, 0.02%)</title><rect x="44.9400%" y="901" width="0.0153%" height="15" fill="rgb(227,80,20)" fg:x="67526" fg:w="23"/><text x="45.1900%" y="911.50"></text></g><g><title>ret_from_fork (25 samples, 0.02%)</title><rect x="44.9394%" y="981" width="0.0166%" height="15" fill="rgb(222,9,33)" fg:x="67525" fg:w="25"/><text x="45.1894%" y="991.50"></text></g><g><title>schedule_tail (25 samples, 0.02%)</title><rect x="44.9394%" y="965" width="0.0166%" height="15" fill="rgb(239,44,28)" fg:x="67525" fg:w="25"/><text x="45.1894%" y="975.50"></text></g><g><title>finish_task_switch (25 samples, 0.02%)</title><rect x="44.9394%" y="949" width="0.0166%" height="15" fill="rgb(249,187,43)" fg:x="67525" fg:w="25"/><text x="45.1894%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.05%)</title><rect x="44.9786%" y="661" width="0.0459%" height="15" fill="rgb(216,141,28)" fg:x="67584" fg:w="69"/><text x="45.2286%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.04%)</title><rect x="44.9806%" y="645" width="0.0439%" height="15" fill="rgb(230,154,53)" fg:x="67587" fg:w="66"/><text x="45.2306%" y="655.50"></text></g><g><title>native_write_msr (65 samples, 0.04%)</title><rect x="44.9813%" y="629" width="0.0433%" height="15" fill="rgb(227,82,4)" fg:x="67588" fg:w="65"/><text x="45.2313%" y="639.50"></text></g><g><title>finish_task_switch (74 samples, 0.05%)</title><rect x="44.9773%" y="677" width="0.0492%" height="15" fill="rgb(220,107,16)" fg:x="67582" fg:w="74"/><text x="45.2273%" y="687.50"></text></g><g><title>__pthread_cond_timedwait (81 samples, 0.05%)</title><rect x="44.9753%" y="853" width="0.0539%" height="15" fill="rgb(207,187,2)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (81 samples, 0.05%)</title><rect x="44.9753%" y="837" width="0.0539%" height="15" fill="rgb(210,162,52)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (81 samples, 0.05%)</title><rect x="44.9753%" y="821" width="0.0539%" height="15" fill="rgb(217,216,49)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.05%)</title><rect x="44.9753%" y="805" width="0.0539%" height="15" fill="rgb(218,146,49)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="815.50"></text></g><g><title>do_syscall_64 (81 samples, 0.05%)</title><rect x="44.9753%" y="789" width="0.0539%" height="15" fill="rgb(216,55,40)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="799.50"></text></g><g><title>__x64_sys_futex (81 samples, 0.05%)</title><rect x="44.9753%" y="773" width="0.0539%" height="15" fill="rgb(208,196,21)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="783.50"></text></g><g><title>do_futex (81 samples, 0.05%)</title><rect x="44.9753%" y="757" width="0.0539%" height="15" fill="rgb(242,117,42)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="767.50"></text></g><g><title>futex_wait (81 samples, 0.05%)</title><rect x="44.9753%" y="741" width="0.0539%" height="15" fill="rgb(210,11,23)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="751.50"></text></g><g><title>futex_wait_queue_me (81 samples, 0.05%)</title><rect x="44.9753%" y="725" width="0.0539%" height="15" fill="rgb(217,110,2)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="735.50"></text></g><g><title>schedule (81 samples, 0.05%)</title><rect x="44.9753%" y="709" width="0.0539%" height="15" fill="rgb(229,77,54)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="719.50"></text></g><g><title>__schedule (80 samples, 0.05%)</title><rect x="44.9760%" y="693" width="0.0532%" height="15" fill="rgb(218,53,16)" fg:x="67580" fg:w="80"/><text x="45.2260%" y="703.50"></text></g><g><title>Monitor::wait (83 samples, 0.06%)</title><rect x="44.9746%" y="901" width="0.0552%" height="15" fill="rgb(215,38,13)" fg:x="67578" fg:w="83"/><text x="45.2246%" y="911.50"></text></g><g><title>Monitor::IWait (83 samples, 0.06%)</title><rect x="44.9746%" y="885" width="0.0552%" height="15" fill="rgb(235,42,18)" fg:x="67578" fg:w="83"/><text x="45.2246%" y="895.50"></text></g><g><title>os::PlatformEvent::park (83 samples, 0.06%)</title><rect x="44.9746%" y="869" width="0.0552%" height="15" fill="rgb(219,66,54)" fg:x="67578" fg:w="83"/><text x="45.2246%" y="879.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="45.0632%" y="661" width="0.0140%" height="15" fill="rgb(222,205,4)" fg:x="67711" fg:w="21"/><text x="45.3132%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="45.0638%" y="645" width="0.0133%" height="15" fill="rgb(227,213,46)" fg:x="67712" fg:w="20"/><text x="45.3138%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="45.0638%" y="629" width="0.0133%" height="15" fill="rgb(250,145,42)" fg:x="67712" fg:w="20"/><text x="45.3138%" y="639.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="45.0638%" y="613" width="0.0133%" height="15" fill="rgb(219,15,2)" fg:x="67712" fg:w="20"/><text x="45.3138%" y="623.50"></text></g><g><title>Monitor::wait (28 samples, 0.02%)</title><rect x="45.0592%" y="885" width="0.0186%" height="15" fill="rgb(231,181,52)" fg:x="67705" fg:w="28"/><text x="45.3092%" y="895.50"></text></g><g><title>Monitor::IWait (28 samples, 0.02%)</title><rect x="45.0592%" y="869" width="0.0186%" height="15" fill="rgb(235,1,42)" fg:x="67705" fg:w="28"/><text x="45.3092%" y="879.50"></text></g><g><title>os::PlatformEvent::park (24 samples, 0.02%)</title><rect x="45.0618%" y="853" width="0.0160%" height="15" fill="rgb(249,88,27)" fg:x="67709" fg:w="24"/><text x="45.3118%" y="863.50"></text></g><g><title>__pthread_cond_wait (24 samples, 0.02%)</title><rect x="45.0618%" y="837" width="0.0160%" height="15" fill="rgb(235,145,16)" fg:x="67709" fg:w="24"/><text x="45.3118%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.02%)</title><rect x="45.0618%" y="821" width="0.0160%" height="15" fill="rgb(237,114,19)" fg:x="67709" fg:w="24"/><text x="45.3118%" y="831.50"></text></g><g><title>futex_wait_cancelable (23 samples, 0.02%)</title><rect x="45.0625%" y="805" width="0.0153%" height="15" fill="rgb(238,51,50)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="45.0625%" y="789" width="0.0153%" height="15" fill="rgb(205,194,25)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="799.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="45.0625%" y="773" width="0.0153%" height="15" fill="rgb(215,203,17)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="783.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="45.0625%" y="757" width="0.0153%" height="15" fill="rgb(233,112,49)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="767.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="45.0625%" y="741" width="0.0153%" height="15" fill="rgb(241,130,26)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="751.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="45.0625%" y="725" width="0.0153%" height="15" fill="rgb(252,223,19)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="735.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.02%)</title><rect x="45.0625%" y="709" width="0.0153%" height="15" fill="rgb(211,95,25)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="719.50"></text></g><g><title>schedule (23 samples, 0.02%)</title><rect x="45.0625%" y="693" width="0.0153%" height="15" fill="rgb(251,182,27)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="703.50"></text></g><g><title>__schedule (23 samples, 0.02%)</title><rect x="45.0625%" y="677" width="0.0153%" height="15" fill="rgb(238,24,4)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="687.50"></text></g><g><title>ttwu_do_activate (21 samples, 0.01%)</title><rect x="45.1097%" y="677" width="0.0140%" height="15" fill="rgb(224,220,25)" fg:x="67781" fg:w="21"/><text x="45.3597%" y="687.50"></text></g><g><title>PosixSemaphore::signal (57 samples, 0.04%)</title><rect x="45.0871%" y="837" width="0.0379%" height="15" fill="rgb(239,133,26)" fg:x="67747" fg:w="57"/><text x="45.3371%" y="847.50"></text></g><g><title>__new_sem_post (57 samples, 0.04%)</title><rect x="45.0871%" y="821" width="0.0379%" height="15" fill="rgb(211,94,48)" fg:x="67747" fg:w="57"/><text x="45.3371%" y="831.50"></text></g><g><title>futex_wake (57 samples, 0.04%)</title><rect x="45.0871%" y="805" width="0.0379%" height="15" fill="rgb(239,87,6)" fg:x="67747" fg:w="57"/><text x="45.3371%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.04%)</title><rect x="45.0878%" y="789" width="0.0373%" height="15" fill="rgb(227,62,0)" fg:x="67748" fg:w="56"/><text x="45.3378%" y="799.50"></text></g><g><title>do_syscall_64 (56 samples, 0.04%)</title><rect x="45.0878%" y="773" width="0.0373%" height="15" fill="rgb(211,226,4)" fg:x="67748" fg:w="56"/><text x="45.3378%" y="783.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.04%)</title><rect x="45.0878%" y="757" width="0.0373%" height="15" fill="rgb(253,38,52)" fg:x="67748" fg:w="56"/><text x="45.3378%" y="767.50"></text></g><g><title>do_futex (56 samples, 0.04%)</title><rect x="45.0878%" y="741" width="0.0373%" height="15" fill="rgb(229,126,40)" fg:x="67748" fg:w="56"/><text x="45.3378%" y="751.50"></text></g><g><title>futex_wake (55 samples, 0.04%)</title><rect x="45.0884%" y="725" width="0.0366%" height="15" fill="rgb(229,165,44)" fg:x="67749" fg:w="55"/><text x="45.3384%" y="735.50"></text></g><g><title>wake_up_q (44 samples, 0.03%)</title><rect x="45.0958%" y="709" width="0.0293%" height="15" fill="rgb(247,95,47)" fg:x="67760" fg:w="44"/><text x="45.3458%" y="719.50"></text></g><g><title>try_to_wake_up (44 samples, 0.03%)</title><rect x="45.0958%" y="693" width="0.0293%" height="15" fill="rgb(216,140,30)" fg:x="67760" fg:w="44"/><text x="45.3458%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.03%)</title><rect x="45.1277%" y="629" width="0.0319%" height="15" fill="rgb(246,214,8)" fg:x="67808" fg:w="48"/><text x="45.3777%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.03%)</title><rect x="45.1290%" y="613" width="0.0306%" height="15" fill="rgb(227,224,15)" fg:x="67810" fg:w="46"/><text x="45.3790%" y="623.50"></text></g><g><title>native_write_msr (44 samples, 0.03%)</title><rect x="45.1304%" y="597" width="0.0293%" height="15" fill="rgb(233,175,4)" fg:x="67812" fg:w="44"/><text x="45.3804%" y="607.50"></text></g><g><title>finish_task_switch (50 samples, 0.03%)</title><rect x="45.1277%" y="645" width="0.0333%" height="15" fill="rgb(221,66,45)" fg:x="67808" fg:w="50"/><text x="45.3777%" y="655.50"></text></g><g><title>futex_wait_queue_me (59 samples, 0.04%)</title><rect x="45.1264%" y="693" width="0.0393%" height="15" fill="rgb(221,178,18)" fg:x="67806" fg:w="59"/><text x="45.3764%" y="703.50"></text></g><g><title>schedule (59 samples, 0.04%)</title><rect x="45.1264%" y="677" width="0.0393%" height="15" fill="rgb(213,81,29)" fg:x="67806" fg:w="59"/><text x="45.3764%" y="687.50"></text></g><g><title>__schedule (59 samples, 0.04%)</title><rect x="45.1264%" y="661" width="0.0393%" height="15" fill="rgb(220,89,49)" fg:x="67806" fg:w="59"/><text x="45.3764%" y="671.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (128 samples, 0.09%)</title><rect x="45.0811%" y="885" width="0.0852%" height="15" fill="rgb(227,60,33)" fg:x="67738" fg:w="128"/><text x="45.3311%" y="895.50"></text></g><g><title>WorkGang::run_task (120 samples, 0.08%)</title><rect x="45.0865%" y="869" width="0.0799%" height="15" fill="rgb(205,113,12)" fg:x="67746" fg:w="120"/><text x="45.3365%" y="879.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (119 samples, 0.08%)</title><rect x="45.0871%" y="853" width="0.0792%" height="15" fill="rgb(211,32,1)" fg:x="67747" fg:w="119"/><text x="45.3371%" y="863.50"></text></g><g><title>PosixSemaphore::wait (62 samples, 0.04%)</title><rect x="45.1251%" y="837" width="0.0413%" height="15" fill="rgb(246,2,12)" fg:x="67804" fg:w="62"/><text x="45.3751%" y="847.50"></text></g><g><title>__new_sem_wait_slow (62 samples, 0.04%)</title><rect x="45.1251%" y="821" width="0.0413%" height="15" fill="rgb(243,37,27)" fg:x="67804" fg:w="62"/><text x="45.3751%" y="831.50"></text></g><g><title>do_futex_wait (62 samples, 0.04%)</title><rect x="45.1251%" y="805" width="0.0413%" height="15" fill="rgb(248,211,31)" fg:x="67804" fg:w="62"/><text x="45.3751%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (62 samples, 0.04%)</title><rect x="45.1251%" y="789" width="0.0413%" height="15" fill="rgb(242,146,47)" fg:x="67804" fg:w="62"/><text x="45.3751%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.04%)</title><rect x="45.1264%" y="773" width="0.0399%" height="15" fill="rgb(206,70,20)" fg:x="67806" fg:w="60"/><text x="45.3764%" y="783.50"></text></g><g><title>do_syscall_64 (60 samples, 0.04%)</title><rect x="45.1264%" y="757" width="0.0399%" height="15" fill="rgb(215,10,51)" fg:x="67806" fg:w="60"/><text x="45.3764%" y="767.50"></text></g><g><title>__x64_sys_futex (60 samples, 0.04%)</title><rect x="45.1264%" y="741" width="0.0399%" height="15" fill="rgb(243,178,53)" fg:x="67806" fg:w="60"/><text x="45.3764%" y="751.50"></text></g><g><title>do_futex (60 samples, 0.04%)</title><rect x="45.1264%" y="725" width="0.0399%" height="15" fill="rgb(233,221,20)" fg:x="67806" fg:w="60"/><text x="45.3764%" y="735.50"></text></g><g><title>futex_wait (60 samples, 0.04%)</title><rect x="45.1264%" y="709" width="0.0399%" height="15" fill="rgb(218,95,35)" fg:x="67806" fg:w="60"/><text x="45.3764%" y="719.50"></text></g><g><title>__GI___sched_yield (21 samples, 0.01%)</title><rect x="45.1723%" y="885" width="0.0140%" height="15" fill="rgb(229,13,5)" fg:x="67875" fg:w="21"/><text x="45.4223%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="45.1750%" y="869" width="0.0113%" height="15" fill="rgb(252,164,30)" fg:x="67879" fg:w="17"/><text x="45.4250%" y="879.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="45.1756%" y="853" width="0.0106%" height="15" fill="rgb(232,68,36)" fg:x="67880" fg:w="16"/><text x="45.4256%" y="863.50"></text></g><g><title>__x64_sys_sched_yield (16 samples, 0.01%)</title><rect x="45.1756%" y="837" width="0.0106%" height="15" fill="rgb(219,59,54)" fg:x="67880" fg:w="16"/><text x="45.4256%" y="847.50"></text></g><g><title>SafepointSynchronize::begin (242 samples, 0.16%)</title><rect x="45.0299%" y="901" width="0.1611%" height="15" fill="rgb(250,92,33)" fg:x="67661" fg:w="242"/><text x="45.2799%" y="911.50"></text></g><g><title>VM_CGC_Operation::doit (17 samples, 0.01%)</title><rect x="45.2129%" y="869" width="0.0113%" height="15" fill="rgb(229,162,54)" fg:x="67936" fg:w="17"/><text x="45.4629%" y="879.50"></text></g><g><title>G1ConcurrentMark::remark (17 samples, 0.01%)</title><rect x="45.2129%" y="853" width="0.0113%" height="15" fill="rgb(244,114,52)" fg:x="67936" fg:w="17"/><text x="45.4629%" y="863.50"></text></g><g><title>VM_CollectForMetadataAllocation::doit (16 samples, 0.01%)</title><rect x="45.2242%" y="869" width="0.0106%" height="15" fill="rgb(212,211,43)" fg:x="67953" fg:w="16"/><text x="45.4742%" y="879.50"></text></g><g><title>VM_CollectForMetadataAllocation::initiate_concurrent_GC (16 samples, 0.01%)</title><rect x="45.2242%" y="853" width="0.0106%" height="15" fill="rgb(226,147,8)" fg:x="67953" fg:w="16"/><text x="45.4742%" y="863.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (16 samples, 0.01%)</title><rect x="45.2242%" y="837" width="0.0106%" height="15" fill="rgb(226,23,13)" fg:x="67953" fg:w="16"/><text x="45.4742%" y="847.50"></text></g><g><title>CodeHeap::next_used (33 samples, 0.02%)</title><rect x="45.2415%" y="821" width="0.0220%" height="15" fill="rgb(240,63,4)" fg:x="67979" fg:w="33"/><text x="45.4915%" y="831.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (50 samples, 0.03%)</title><rect x="45.2349%" y="853" width="0.0333%" height="15" fill="rgb(221,1,32)" fg:x="67969" fg:w="50"/><text x="45.4849%" y="863.50"></text></g><g><title>CodeBlobIterator<CompiledMethod, CompiledMethodFilter>::next_alive (46 samples, 0.03%)</title><rect x="45.2375%" y="837" width="0.0306%" height="15" fill="rgb(242,117,10)" fg:x="67973" fg:w="46"/><text x="45.4875%" y="847.50"></text></g><g><title>VM_Deoptimize::doit (56 samples, 0.04%)</title><rect x="45.2349%" y="869" width="0.0373%" height="15" fill="rgb(249,172,44)" fg:x="67969" fg:w="56"/><text x="45.4849%" y="879.50"></text></g><g><title>VM_Operation::evaluate (132 samples, 0.09%)</title><rect x="45.2042%" y="885" width="0.0878%" height="15" fill="rgb(244,46,45)" fg:x="67923" fg:w="132"/><text x="45.4542%" y="895.50"></text></g><g><title>VMThread::evaluate_operation (136 samples, 0.09%)</title><rect x="45.2029%" y="901" width="0.0905%" height="15" fill="rgb(206,43,17)" fg:x="67921" fg:w="136"/><text x="45.4529%" y="911.50"></text></g><g><title>Thread::call_run (509 samples, 0.34%)</title><rect x="44.9580%" y="949" width="0.3388%" height="15" fill="rgb(239,218,39)" fg:x="67553" fg:w="509"/><text x="45.2080%" y="959.50"></text></g><g><title>VMThread::run (509 samples, 0.34%)</title><rect x="44.9580%" y="933" width="0.3388%" height="15" fill="rgb(208,169,54)" fg:x="67553" fg:w="509"/><text x="45.2080%" y="943.50"></text></g><g><title>VMThread::loop (508 samples, 0.34%)</title><rect x="44.9587%" y="917" width="0.3381%" height="15" fill="rgb(247,25,42)" fg:x="67554" fg:w="508"/><text x="45.2087%" y="927.50"></text></g><g><title>__GI___clone (541 samples, 0.36%)</title><rect x="44.9380%" y="997" width="0.3600%" height="15" fill="rgb(226,23,31)" fg:x="67523" fg:w="541"/><text x="45.1880%" y="1007.50"></text></g><g><title>start_thread (514 samples, 0.34%)</title><rect x="44.9560%" y="981" width="0.3421%" height="15" fill="rgb(247,16,28)" fg:x="67550" fg:w="514"/><text x="45.2060%" y="991.50"></text></g><g><title>thread_native_entry (513 samples, 0.34%)</title><rect x="44.9567%" y="965" width="0.3414%" height="15" fill="rgb(231,147,38)" fg:x="67551" fg:w="513"/><text x="45.2067%" y="975.50"></text></g><g><title>VM_Thread (615 samples, 0.41%)</title><rect x="44.8915%" y="1013" width="0.4093%" height="15" fill="rgb(253,81,48)" fg:x="67453" fg:w="615"/><text x="45.1415%" y="1023.50"></text></g><g><title>__perf_event_task_sched_in (103 samples, 0.07%)</title><rect x="45.4498%" y="837" width="0.0685%" height="15" fill="rgb(249,222,43)" fg:x="68292" fg:w="103"/><text x="45.6998%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (101 samples, 0.07%)</title><rect x="45.4512%" y="821" width="0.0672%" height="15" fill="rgb(221,3,27)" fg:x="68294" fg:w="101"/><text x="45.7012%" y="831.50"></text></g><g><title>native_write_msr (101 samples, 0.07%)</title><rect x="45.4512%" y="805" width="0.0672%" height="15" fill="rgb(228,180,5)" fg:x="68294" fg:w="101"/><text x="45.7012%" y="815.50"></text></g><g><title>finish_task_switch (113 samples, 0.08%)</title><rect x="45.4472%" y="853" width="0.0752%" height="15" fill="rgb(227,131,42)" fg:x="68288" fg:w="113"/><text x="45.6972%" y="863.50"></text></g><g><title>futex_wait (127 samples, 0.08%)</title><rect x="45.4398%" y="917" width="0.0845%" height="15" fill="rgb(212,3,39)" fg:x="68277" fg:w="127"/><text x="45.6898%" y="927.50"></text></g><g><title>futex_wait_queue_me (123 samples, 0.08%)</title><rect x="45.4425%" y="901" width="0.0819%" height="15" fill="rgb(226,45,5)" fg:x="68281" fg:w="123"/><text x="45.6925%" y="911.50"></text></g><g><title>schedule (122 samples, 0.08%)</title><rect x="45.4432%" y="885" width="0.0812%" height="15" fill="rgb(215,167,45)" fg:x="68282" fg:w="122"/><text x="45.6932%" y="895.50"></text></g><g><title>__schedule (121 samples, 0.08%)</title><rect x="45.4438%" y="869" width="0.0805%" height="15" fill="rgb(250,218,53)" fg:x="68283" fg:w="121"/><text x="45.6938%" y="879.50"></text></g><g><title>__x64_sys_futex (133 samples, 0.09%)</title><rect x="45.4392%" y="949" width="0.0885%" height="15" fill="rgb(207,140,0)" fg:x="68276" fg:w="133"/><text x="45.6892%" y="959.50"></text></g><g><title>do_futex (133 samples, 0.09%)</title><rect x="45.4392%" y="933" width="0.0885%" height="15" fill="rgb(238,133,51)" fg:x="68276" fg:w="133"/><text x="45.6892%" y="943.50"></text></g><g><title>finish_task_switch (31 samples, 0.02%)</title><rect x="45.5330%" y="869" width="0.0206%" height="15" fill="rgb(218,203,53)" fg:x="68417" fg:w="31"/><text x="45.7830%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (29 samples, 0.02%)</title><rect x="45.5343%" y="853" width="0.0193%" height="15" fill="rgb(226,184,25)" fg:x="68419" fg:w="29"/><text x="45.7843%" y="863.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="45.5350%" y="837" width="0.0186%" height="15" fill="rgb(231,121,21)" fg:x="68420" fg:w="28"/><text x="45.7850%" y="847.50"></text></g><g><title>native_write_msr (28 samples, 0.02%)</title><rect x="45.5350%" y="821" width="0.0186%" height="15" fill="rgb(251,14,34)" fg:x="68420" fg:w="28"/><text x="45.7850%" y="831.50"></text></g><g><title>__x64_sys_nanosleep (35 samples, 0.02%)</title><rect x="45.5310%" y="949" width="0.0233%" height="15" fill="rgb(249,193,11)" fg:x="68414" fg:w="35"/><text x="45.7810%" y="959.50"></text></g><g><title>hrtimer_nanosleep (35 samples, 0.02%)</title><rect x="45.5310%" y="933" width="0.0233%" height="15" fill="rgb(220,172,37)" fg:x="68414" fg:w="35"/><text x="45.7810%" y="943.50"></text></g><g><title>do_nanosleep (35 samples, 0.02%)</title><rect x="45.5310%" y="917" width="0.0233%" height="15" fill="rgb(231,229,43)" fg:x="68414" fg:w="35"/><text x="45.7810%" y="927.50"></text></g><g><title>schedule (34 samples, 0.02%)</title><rect x="45.5317%" y="901" width="0.0226%" height="15" fill="rgb(250,161,5)" fg:x="68415" fg:w="34"/><text x="45.7817%" y="911.50"></text></g><g><title>__schedule (34 samples, 0.02%)</title><rect x="45.5317%" y="885" width="0.0226%" height="15" fill="rgb(218,225,18)" fg:x="68415" fg:w="34"/><text x="45.7817%" y="895.50"></text></g><g><title>do_syscall_64 (203 samples, 0.14%)</title><rect x="45.4259%" y="965" width="0.1351%" height="15" fill="rgb(245,45,42)" fg:x="68256" fg:w="203"/><text x="45.6759%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (206 samples, 0.14%)</title><rect x="45.4259%" y="981" width="0.1371%" height="15" fill="rgb(211,115,1)" fg:x="68256" fg:w="206"/><text x="45.6759%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.03%)</title><rect x="45.5656%" y="933" width="0.0293%" height="15" fill="rgb(248,133,52)" fg:x="68466" fg:w="44"/><text x="45.8156%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (44 samples, 0.03%)</title><rect x="45.5656%" y="917" width="0.0293%" height="15" fill="rgb(238,100,21)" fg:x="68466" fg:w="44"/><text x="45.8156%" y="927.50"></text></g><g><title>native_write_msr (44 samples, 0.03%)</title><rect x="45.5656%" y="901" width="0.0293%" height="15" fill="rgb(247,144,11)" fg:x="68466" fg:w="44"/><text x="45.8156%" y="911.50"></text></g><g><title>ret_from_fork (48 samples, 0.03%)</title><rect x="45.5636%" y="981" width="0.0319%" height="15" fill="rgb(206,164,16)" fg:x="68463" fg:w="48"/><text x="45.8136%" y="991.50"></text></g><g><title>schedule_tail (48 samples, 0.03%)</title><rect x="45.5636%" y="965" width="0.0319%" height="15" fill="rgb(222,34,3)" fg:x="68463" fg:w="48"/><text x="45.8136%" y="975.50"></text></g><g><title>finish_task_switch (48 samples, 0.03%)</title><rect x="45.5636%" y="949" width="0.0319%" height="15" fill="rgb(248,82,4)" fg:x="68463" fg:w="48"/><text x="45.8136%" y="959.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (435 samples, 0.29%)</title><rect x="45.3067%" y="997" width="0.2895%" height="15" fill="rgb(228,81,46)" fg:x="68077" fg:w="435"/><text x="45.5567%" y="1007.50"></text></g><g><title>__libc_start_main (20 samples, 0.01%)</title><rect x="45.5982%" y="981" width="0.0133%" height="15" fill="rgb(227,67,47)" fg:x="68515" fg:w="20"/><text x="45.8482%" y="991.50"></text></g><g><title>_start (35 samples, 0.02%)</title><rect x="45.5982%" y="997" width="0.0233%" height="15" fill="rgb(215,93,53)" fg:x="68515" fg:w="35"/><text x="45.8482%" y="1007.50"></text></g><g><title>bazel (488 samples, 0.32%)</title><rect x="45.3054%" y="1013" width="0.3248%" height="15" fill="rgb(248,194,39)" fg:x="68075" fg:w="488"/><text x="45.5554%" y="1023.50"></text></g><g><title>[libstdc++.so.6.0.28] (16 samples, 0.01%)</title><rect x="45.6428%" y="933" width="0.0106%" height="15" fill="rgb(215,5,19)" fg:x="68582" fg:w="16"/><text x="45.8928%" y="943.50"></text></g><g><title>_dl_start_user (17 samples, 0.01%)</title><rect x="45.6428%" y="997" width="0.0113%" height="15" fill="rgb(226,215,51)" fg:x="68582" fg:w="17"/><text x="45.8928%" y="1007.50"></text></g><g><title>_dl_init (17 samples, 0.01%)</title><rect x="45.6428%" y="981" width="0.0113%" height="15" fill="rgb(225,56,26)" fg:x="68582" fg:w="17"/><text x="45.8928%" y="991.50"></text></g><g><title>call_init (17 samples, 0.01%)</title><rect x="45.6428%" y="965" width="0.0113%" height="15" fill="rgb(222,75,29)" fg:x="68582" fg:w="17"/><text x="45.8928%" y="975.50"></text></g><g><title>call_init (17 samples, 0.01%)</title><rect x="45.6428%" y="949" width="0.0113%" height="15" fill="rgb(236,139,6)" fg:x="68582" fg:w="17"/><text x="45.8928%" y="959.50"></text></g><g><title>RunfilesCreator::CreateRunfiles (21 samples, 0.01%)</title><rect x="45.6561%" y="949" width="0.0140%" height="15" fill="rgb(223,137,36)" fg:x="68602" fg:w="21"/><text x="45.9061%" y="959.50"></text></g><g><title>__libc_start_main (25 samples, 0.02%)</title><rect x="45.6541%" y="981" width="0.0166%" height="15" fill="rgb(226,99,2)" fg:x="68599" fg:w="25"/><text x="45.9041%" y="991.50"></text></g><g><title>main (22 samples, 0.01%)</title><rect x="45.6561%" y="965" width="0.0146%" height="15" fill="rgb(206,133,23)" fg:x="68602" fg:w="22"/><text x="45.9061%" y="975.50"></text></g><g><title>_dl_map_segments (23 samples, 0.02%)</title><rect x="45.6828%" y="837" width="0.0153%" height="15" fill="rgb(243,173,15)" fg:x="68642" fg:w="23"/><text x="45.9328%" y="847.50"></text></g><g><title>__mmap64 (19 samples, 0.01%)</title><rect x="45.6854%" y="821" width="0.0126%" height="15" fill="rgb(228,69,28)" fg:x="68646" fg:w="19"/><text x="45.9354%" y="831.50"></text></g><g><title>__mmap64 (19 samples, 0.01%)</title><rect x="45.6854%" y="805" width="0.0126%" height="15" fill="rgb(212,51,22)" fg:x="68646" fg:w="19"/><text x="45.9354%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="45.6854%" y="789" width="0.0126%" height="15" fill="rgb(227,113,0)" fg:x="68646" fg:w="19"/><text x="45.9354%" y="799.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="45.6854%" y="773" width="0.0126%" height="15" fill="rgb(252,84,27)" fg:x="68646" fg:w="19"/><text x="45.9354%" y="783.50"></text></g><g><title>ksys_mmap_pgoff (18 samples, 0.01%)</title><rect x="45.6861%" y="757" width="0.0120%" height="15" fill="rgb(223,145,39)" fg:x="68647" fg:w="18"/><text x="45.9361%" y="767.50"></text></g><g><title>vm_mmap_pgoff (18 samples, 0.01%)</title><rect x="45.6861%" y="741" width="0.0120%" height="15" fill="rgb(239,219,30)" fg:x="68647" fg:w="18"/><text x="45.9361%" y="751.50"></text></g><g><title>do_mmap (17 samples, 0.01%)</title><rect x="45.6868%" y="725" width="0.0113%" height="15" fill="rgb(224,196,39)" fg:x="68648" fg:w="17"/><text x="45.9368%" y="735.50"></text></g><g><title>mmap_region (17 samples, 0.01%)</title><rect x="45.6868%" y="709" width="0.0113%" height="15" fill="rgb(205,35,43)" fg:x="68648" fg:w="17"/><text x="45.9368%" y="719.50"></text></g><g><title>_dl_map_object_from_fd (30 samples, 0.02%)</title><rect x="45.6814%" y="853" width="0.0200%" height="15" fill="rgb(228,201,21)" fg:x="68640" fg:w="30"/><text x="45.9314%" y="863.50"></text></g><g><title>_dl_map_object_deps (48 samples, 0.03%)</title><rect x="45.6761%" y="917" width="0.0319%" height="15" fill="rgb(237,118,16)" fg:x="68632" fg:w="48"/><text x="45.9261%" y="927.50"></text></g><g><title>_dl_catch_exception (48 samples, 0.03%)</title><rect x="45.6761%" y="901" width="0.0319%" height="15" fill="rgb(241,17,19)" fg:x="68632" fg:w="48"/><text x="45.9261%" y="911.50"></text></g><g><title>openaux (48 samples, 0.03%)</title><rect x="45.6761%" y="885" width="0.0319%" height="15" fill="rgb(214,10,25)" fg:x="68632" fg:w="48"/><text x="45.9261%" y="895.50"></text></g><g><title>_dl_map_object (48 samples, 0.03%)</title><rect x="45.6761%" y="869" width="0.0319%" height="15" fill="rgb(238,37,29)" fg:x="68632" fg:w="48"/><text x="45.9261%" y="879.50"></text></g><g><title>dl_new_hash (33 samples, 0.02%)</title><rect x="45.7433%" y="853" width="0.0220%" height="15" fill="rgb(253,83,25)" fg:x="68733" fg:w="33"/><text x="45.9933%" y="863.50"></text></g><g><title>check_match (16 samples, 0.01%)</title><rect x="45.7833%" y="837" width="0.0106%" height="15" fill="rgb(234,192,12)" fg:x="68793" fg:w="16"/><text x="46.0333%" y="847.50"></text></g><g><title>_dl_lookup_symbol_x (85 samples, 0.06%)</title><rect x="45.7420%" y="869" width="0.0566%" height="15" fill="rgb(241,216,45)" fg:x="68731" fg:w="85"/><text x="45.9920%" y="879.50"></text></g><g><title>do_lookup_x (50 samples, 0.03%)</title><rect x="45.7653%" y="853" width="0.0333%" height="15" fill="rgb(242,22,33)" fg:x="68766" fg:w="50"/><text x="46.0153%" y="863.50"></text></g><g><title>elf_machine_rela (110 samples, 0.07%)</title><rect x="45.7260%" y="885" width="0.0732%" height="15" fill="rgb(231,105,49)" fg:x="68707" fg:w="110"/><text x="45.9760%" y="895.50"></text></g><g><title>_dl_relocate_object (142 samples, 0.09%)</title><rect x="45.7107%" y="917" width="0.0945%" height="15" fill="rgb(218,204,15)" fg:x="68684" fg:w="142"/><text x="45.9607%" y="927.50"></text></g><g><title>elf_dynamic_do_Rela (136 samples, 0.09%)</title><rect x="45.7147%" y="901" width="0.0905%" height="15" fill="rgb(235,138,41)" fg:x="68690" fg:w="136"/><text x="45.9647%" y="911.50"></text></g><g><title>[ld-2.31.so] (206 samples, 0.14%)</title><rect x="45.6708%" y="933" width="0.1371%" height="15" fill="rgb(246,0,9)" fg:x="68624" fg:w="206"/><text x="45.9208%" y="943.50"></text></g><g><title>_dl_start_final (213 samples, 0.14%)</title><rect x="45.6708%" y="965" width="0.1418%" height="15" fill="rgb(210,74,4)" fg:x="68624" fg:w="213"/><text x="45.9208%" y="975.50"></text></g><g><title>_dl_sysdep_start (213 samples, 0.14%)</title><rect x="45.6708%" y="949" width="0.1418%" height="15" fill="rgb(250,60,41)" fg:x="68624" fg:w="213"/><text x="45.9208%" y="959.50"></text></g><g><title>_dl_start (215 samples, 0.14%)</title><rect x="45.6708%" y="981" width="0.1431%" height="15" fill="rgb(220,115,12)" fg:x="68624" fg:w="215"/><text x="45.9208%" y="991.50"></text></g><g><title>_start (244 samples, 0.16%)</title><rect x="45.6541%" y="997" width="0.1624%" height="15" fill="rgb(237,100,13)" fg:x="68599" fg:w="244"/><text x="45.9041%" y="1007.50"></text></g><g><title>__x64_sys_execve (16 samples, 0.01%)</title><rect x="45.8219%" y="965" width="0.0106%" height="15" fill="rgb(213,55,26)" fg:x="68851" fg:w="16"/><text x="46.0719%" y="975.50"></text></g><g><title>do_execveat_common (16 samples, 0.01%)</title><rect x="45.8219%" y="949" width="0.0106%" height="15" fill="rgb(216,17,4)" fg:x="68851" fg:w="16"/><text x="46.0719%" y="959.50"></text></g><g><title>bprm_execve (16 samples, 0.01%)</title><rect x="45.8219%" y="933" width="0.0106%" height="15" fill="rgb(220,153,47)" fg:x="68851" fg:w="16"/><text x="46.0719%" y="943.50"></text></g><g><title>load_elf_binary (16 samples, 0.01%)</title><rect x="45.8219%" y="917" width="0.0106%" height="15" fill="rgb(215,131,9)" fg:x="68851" fg:w="16"/><text x="46.0719%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.02%)</title><rect x="45.8219%" y="997" width="0.0220%" height="15" fill="rgb(233,46,42)" fg:x="68851" fg:w="33"/><text x="46.0719%" y="1007.50"></text></g><g><title>do_syscall_64 (33 samples, 0.02%)</title><rect x="45.8219%" y="981" width="0.0220%" height="15" fill="rgb(226,86,7)" fg:x="68851" fg:w="33"/><text x="46.0719%" y="991.50"></text></g><g><title>__x64_sys_exit_group (17 samples, 0.01%)</title><rect x="45.8325%" y="965" width="0.0113%" height="15" fill="rgb(239,226,21)" fg:x="68867" fg:w="17"/><text x="46.0825%" y="975.50"></text></g><g><title>do_group_exit (17 samples, 0.01%)</title><rect x="45.8325%" y="949" width="0.0113%" height="15" fill="rgb(244,137,22)" fg:x="68867" fg:w="17"/><text x="46.0825%" y="959.50"></text></g><g><title>do_exit (17 samples, 0.01%)</title><rect x="45.8325%" y="933" width="0.0113%" height="15" fill="rgb(211,139,35)" fg:x="68867" fg:w="17"/><text x="46.0825%" y="943.50"></text></g><g><title>build-runfiles (321 samples, 0.21%)</title><rect x="45.6308%" y="1013" width="0.2136%" height="15" fill="rgb(214,62,50)" fg:x="68564" fg:w="321"/><text x="45.8808%" y="1023.50"></text></g><g><title>do_mmap (18 samples, 0.01%)</title><rect x="45.8824%" y="549" width="0.0120%" height="15" fill="rgb(212,113,44)" fg:x="68942" fg:w="18"/><text x="46.1324%" y="559.50"></text></g><g><title>mmap_region (18 samples, 0.01%)</title><rect x="45.8824%" y="533" width="0.0120%" height="15" fill="rgb(226,150,43)" fg:x="68942" fg:w="18"/><text x="46.1324%" y="543.50"></text></g><g><title>ksys_mmap_pgoff (19 samples, 0.01%)</title><rect x="45.8824%" y="581" width="0.0126%" height="15" fill="rgb(250,71,37)" fg:x="68942" fg:w="19"/><text x="46.1324%" y="591.50"></text></g><g><title>vm_mmap_pgoff (19 samples, 0.01%)</title><rect x="45.8824%" y="565" width="0.0126%" height="15" fill="rgb(219,76,19)" fg:x="68942" fg:w="19"/><text x="46.1324%" y="575.50"></text></g><g><title>_dl_map_segments (21 samples, 0.01%)</title><rect x="45.8824%" y="661" width="0.0140%" height="15" fill="rgb(250,39,11)" fg:x="68942" fg:w="21"/><text x="46.1324%" y="671.50"></text></g><g><title>__mmap64 (21 samples, 0.01%)</title><rect x="45.8824%" y="645" width="0.0140%" height="15" fill="rgb(230,64,31)" fg:x="68942" fg:w="21"/><text x="46.1324%" y="655.50"></text></g><g><title>__mmap64 (21 samples, 0.01%)</title><rect x="45.8824%" y="629" width="0.0140%" height="15" fill="rgb(208,222,23)" fg:x="68942" fg:w="21"/><text x="46.1324%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="45.8824%" y="613" width="0.0140%" height="15" fill="rgb(227,125,18)" fg:x="68942" fg:w="21"/><text x="46.1324%" y="623.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="45.8824%" y="597" width="0.0140%" height="15" fill="rgb(234,210,9)" fg:x="68942" fg:w="21"/><text x="46.1324%" y="607.50"></text></g><g><title>_dl_map_object_from_fd (25 samples, 0.02%)</title><rect x="45.8818%" y="677" width="0.0166%" height="15" fill="rgb(217,127,24)" fg:x="68941" fg:w="25"/><text x="46.1318%" y="687.50"></text></g><g><title>_dl_map_object (27 samples, 0.02%)</title><rect x="45.8818%" y="693" width="0.0180%" height="15" fill="rgb(239,141,48)" fg:x="68941" fg:w="27"/><text x="46.1318%" y="703.50"></text></g><g><title>__GI___nss_lookup (30 samples, 0.02%)</title><rect x="45.8818%" y="869" width="0.0200%" height="15" fill="rgb(227,109,8)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="879.50"></text></g><g><title>__GI___nss_lookup_function (30 samples, 0.02%)</title><rect x="45.8818%" y="853" width="0.0200%" height="15" fill="rgb(235,184,23)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="863.50"></text></g><g><title>nss_load_library (30 samples, 0.02%)</title><rect x="45.8818%" y="837" width="0.0200%" height="15" fill="rgb(227,226,48)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="847.50"></text></g><g><title>__GI___libc_dlopen_mode (30 samples, 0.02%)</title><rect x="45.8818%" y="821" width="0.0200%" height="15" fill="rgb(206,150,11)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="831.50"></text></g><g><title>dlerror_run (30 samples, 0.02%)</title><rect x="45.8818%" y="805" width="0.0200%" height="15" fill="rgb(254,2,33)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="815.50"></text></g><g><title>__GI__dl_catch_error (30 samples, 0.02%)</title><rect x="45.8818%" y="789" width="0.0200%" height="15" fill="rgb(243,160,20)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="799.50"></text></g><g><title>__GI__dl_catch_exception (30 samples, 0.02%)</title><rect x="45.8818%" y="773" width="0.0200%" height="15" fill="rgb(218,208,30)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="783.50"></text></g><g><title>do_dlopen (30 samples, 0.02%)</title><rect x="45.8818%" y="757" width="0.0200%" height="15" fill="rgb(224,120,49)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="767.50"></text></g><g><title>_dl_open (30 samples, 0.02%)</title><rect x="45.8818%" y="741" width="0.0200%" height="15" fill="rgb(246,12,2)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="751.50"></text></g><g><title>__GI__dl_catch_exception (30 samples, 0.02%)</title><rect x="45.8818%" y="725" width="0.0200%" height="15" fill="rgb(236,117,3)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="735.50"></text></g><g><title>dl_open_worker (30 samples, 0.02%)</title><rect x="45.8818%" y="709" width="0.0200%" height="15" fill="rgb(216,128,52)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="719.50"></text></g><g><title>getpwuid (42 samples, 0.03%)</title><rect x="45.8818%" y="901" width="0.0280%" height="15" fill="rgb(246,145,19)" fg:x="68941" fg:w="42"/><text x="46.1318%" y="911.50"></text></g><g><title>__getpwuid_r (42 samples, 0.03%)</title><rect x="45.8818%" y="885" width="0.0280%" height="15" fill="rgb(222,11,46)" fg:x="68941" fg:w="42"/><text x="46.1318%" y="895.50"></text></g><g><title>[bash] (50 samples, 0.03%)</title><rect x="45.8784%" y="917" width="0.0333%" height="15" fill="rgb(245,82,36)" fg:x="68936" fg:w="50"/><text x="46.1284%" y="927.50"></text></g><g><title>initialize_shell_variables (58 samples, 0.04%)</title><rect x="45.8784%" y="933" width="0.0386%" height="15" fill="rgb(250,73,51)" fg:x="68936" fg:w="58"/><text x="46.1284%" y="943.50"></text></g><g><title>[bash] (88 samples, 0.06%)</title><rect x="45.8684%" y="949" width="0.0586%" height="15" fill="rgb(221,189,23)" fg:x="68921" fg:w="88"/><text x="46.1184%" y="959.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="45.9416%" y="885" width="0.0133%" height="15" fill="rgb(210,33,7)" fg:x="69031" fg:w="20"/><text x="46.1916%" y="895.50"></text></g><g><title>execute_command (21 samples, 0.01%)</title><rect x="45.9416%" y="901" width="0.0140%" height="15" fill="rgb(210,107,22)" fg:x="69031" fg:w="21"/><text x="46.1916%" y="911.50"></text></g><g><title>execute_command (26 samples, 0.02%)</title><rect x="45.9403%" y="933" width="0.0173%" height="15" fill="rgb(222,116,37)" fg:x="69029" fg:w="26"/><text x="46.1903%" y="943.50"></text></g><g><title>execute_command_internal (26 samples, 0.02%)</title><rect x="45.9403%" y="917" width="0.0173%" height="15" fill="rgb(254,17,48)" fg:x="69029" fg:w="26"/><text x="46.1903%" y="927.50"></text></g><g><title>reader_loop (51 samples, 0.03%)</title><rect x="45.9403%" y="949" width="0.0339%" height="15" fill="rgb(224,36,32)" fg:x="69029" fg:w="51"/><text x="46.1903%" y="959.50"></text></g><g><title>read_command (25 samples, 0.02%)</title><rect x="45.9576%" y="933" width="0.0166%" height="15" fill="rgb(232,90,46)" fg:x="69055" fg:w="25"/><text x="46.2076%" y="943.50"></text></g><g><title>parse_command (25 samples, 0.02%)</title><rect x="45.9576%" y="917" width="0.0166%" height="15" fill="rgb(241,66,40)" fg:x="69055" fg:w="25"/><text x="46.2076%" y="927.50"></text></g><g><title>yyparse (25 samples, 0.02%)</title><rect x="45.9576%" y="901" width="0.0166%" height="15" fill="rgb(249,184,29)" fg:x="69055" fg:w="25"/><text x="46.2076%" y="911.50"></text></g><g><title>[bash] (21 samples, 0.01%)</title><rect x="45.9603%" y="885" width="0.0140%" height="15" fill="rgb(231,181,1)" fg:x="69059" fg:w="21"/><text x="46.2103%" y="895.50"></text></g><g><title>set_default_locale (25 samples, 0.02%)</title><rect x="45.9769%" y="949" width="0.0166%" height="15" fill="rgb(224,94,2)" fg:x="69084" fg:w="25"/><text x="46.2269%" y="959.50"></text></g><g><title>xmalloc (18 samples, 0.01%)</title><rect x="45.9816%" y="933" width="0.0120%" height="15" fill="rgb(229,170,15)" fg:x="69091" fg:w="18"/><text x="46.2316%" y="943.50"></text></g><g><title>malloc_hook_ini (17 samples, 0.01%)</title><rect x="45.9822%" y="917" width="0.0113%" height="15" fill="rgb(240,127,35)" fg:x="69092" fg:w="17"/><text x="46.2322%" y="927.50"></text></g><g><title>ptmalloc_init (17 samples, 0.01%)</title><rect x="45.9822%" y="901" width="0.0113%" height="15" fill="rgb(248,196,34)" fg:x="69092" fg:w="17"/><text x="46.2322%" y="911.50"></text></g><g><title>ptmalloc_init (17 samples, 0.01%)</title><rect x="45.9822%" y="885" width="0.0113%" height="15" fill="rgb(236,137,7)" fg:x="69092" fg:w="17"/><text x="46.2322%" y="895.50"></text></g><g><title>__GI__dl_addr (16 samples, 0.01%)</title><rect x="45.9829%" y="869" width="0.0106%" height="15" fill="rgb(235,127,16)" fg:x="69093" fg:w="16"/><text x="46.2329%" y="879.50"></text></g><g><title>__libc_start_main (196 samples, 0.13%)</title><rect x="45.8684%" y="981" width="0.1304%" height="15" fill="rgb(250,192,54)" fg:x="68921" fg:w="196"/><text x="46.1184%" y="991.50"></text></g><g><title>main (196 samples, 0.13%)</title><rect x="45.8684%" y="965" width="0.1304%" height="15" fill="rgb(218,98,20)" fg:x="68921" fg:w="196"/><text x="46.1184%" y="975.50"></text></g><g><title>_dl_map_segments (32 samples, 0.02%)</title><rect x="46.0035%" y="837" width="0.0213%" height="15" fill="rgb(230,176,47)" fg:x="69124" fg:w="32"/><text x="46.2535%" y="847.50"></text></g><g><title>__mmap64 (26 samples, 0.02%)</title><rect x="46.0075%" y="821" width="0.0173%" height="15" fill="rgb(244,2,33)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="831.50"></text></g><g><title>__mmap64 (26 samples, 0.02%)</title><rect x="46.0075%" y="805" width="0.0173%" height="15" fill="rgb(231,100,17)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="46.0075%" y="789" width="0.0173%" height="15" fill="rgb(245,23,12)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="799.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="46.0075%" y="773" width="0.0173%" height="15" fill="rgb(249,55,22)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="783.50"></text></g><g><title>ksys_mmap_pgoff (26 samples, 0.02%)</title><rect x="46.0075%" y="757" width="0.0173%" height="15" fill="rgb(207,134,9)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="767.50"></text></g><g><title>vm_mmap_pgoff (26 samples, 0.02%)</title><rect x="46.0075%" y="741" width="0.0173%" height="15" fill="rgb(218,134,0)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="751.50"></text></g><g><title>do_mmap (26 samples, 0.02%)</title><rect x="46.0075%" y="725" width="0.0173%" height="15" fill="rgb(213,212,33)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="735.50"></text></g><g><title>mmap_region (25 samples, 0.02%)</title><rect x="46.0082%" y="709" width="0.0166%" height="15" fill="rgb(252,106,18)" fg:x="69131" fg:w="25"/><text x="46.2582%" y="719.50"></text></g><g><title>_dl_map_object_from_fd (42 samples, 0.03%)</title><rect x="46.0022%" y="853" width="0.0280%" height="15" fill="rgb(208,126,42)" fg:x="69122" fg:w="42"/><text x="46.2522%" y="863.50"></text></g><g><title>_dl_map_object_deps (54 samples, 0.04%)</title><rect x="46.0009%" y="917" width="0.0359%" height="15" fill="rgb(246,175,29)" fg:x="69120" fg:w="54"/><text x="46.2509%" y="927.50"></text></g><g><title>_dl_catch_exception (53 samples, 0.04%)</title><rect x="46.0015%" y="901" width="0.0353%" height="15" fill="rgb(215,13,50)" fg:x="69121" fg:w="53"/><text x="46.2515%" y="911.50"></text></g><g><title>openaux (53 samples, 0.04%)</title><rect x="46.0015%" y="885" width="0.0353%" height="15" fill="rgb(216,172,15)" fg:x="69121" fg:w="53"/><text x="46.2515%" y="895.50"></text></g><g><title>_dl_map_object (53 samples, 0.04%)</title><rect x="46.0015%" y="869" width="0.0353%" height="15" fill="rgb(212,103,13)" fg:x="69121" fg:w="53"/><text x="46.2515%" y="879.50"></text></g><g><title>_dl_lookup_symbol_x (37 samples, 0.02%)</title><rect x="46.0648%" y="869" width="0.0246%" height="15" fill="rgb(231,171,36)" fg:x="69216" fg:w="37"/><text x="46.3148%" y="879.50"></text></g><g><title>do_lookup_x (28 samples, 0.02%)</title><rect x="46.0708%" y="853" width="0.0186%" height="15" fill="rgb(250,123,20)" fg:x="69225" fg:w="28"/><text x="46.3208%" y="863.50"></text></g><g><title>elf_machine_rela (48 samples, 0.03%)</title><rect x="46.0581%" y="885" width="0.0319%" height="15" fill="rgb(212,53,50)" fg:x="69206" fg:w="48"/><text x="46.3081%" y="895.50"></text></g><g><title>_dl_relocate_object (93 samples, 0.06%)</title><rect x="46.0395%" y="917" width="0.0619%" height="15" fill="rgb(243,54,12)" fg:x="69178" fg:w="93"/><text x="46.2895%" y="927.50"></text></g><g><title>elf_dynamic_do_Rela (82 samples, 0.05%)</title><rect x="46.0468%" y="901" width="0.0546%" height="15" fill="rgb(234,101,34)" fg:x="69189" fg:w="82"/><text x="46.2968%" y="911.50"></text></g><g><title>elf_machine_rela_relative (17 samples, 0.01%)</title><rect x="46.0901%" y="885" width="0.0113%" height="15" fill="rgb(254,67,22)" fg:x="69254" fg:w="17"/><text x="46.3401%" y="895.50"></text></g><g><title>[ld-2.31.so] (155 samples, 0.10%)</title><rect x="46.0002%" y="933" width="0.1032%" height="15" fill="rgb(250,35,47)" fg:x="69119" fg:w="155"/><text x="46.2502%" y="943.50"></text></g><g><title>_dl_start_final (161 samples, 0.11%)</title><rect x="45.9989%" y="965" width="0.1071%" height="15" fill="rgb(226,126,38)" fg:x="69117" fg:w="161"/><text x="46.2489%" y="975.50"></text></g><g><title>_dl_sysdep_start (160 samples, 0.11%)</title><rect x="45.9995%" y="949" width="0.1065%" height="15" fill="rgb(216,138,53)" fg:x="69118" fg:w="160"/><text x="46.2495%" y="959.50"></text></g><g><title>_dl_start (166 samples, 0.11%)</title><rect x="45.9989%" y="981" width="0.1105%" height="15" fill="rgb(246,199,43)" fg:x="69117" fg:w="166"/><text x="46.2489%" y="991.50"></text></g><g><title>_start (366 samples, 0.24%)</title><rect x="45.8678%" y="997" width="0.2436%" height="15" fill="rgb(232,125,11)" fg:x="68920" fg:w="366"/><text x="46.1178%" y="1007.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="46.1114%" y="997" width="0.0113%" height="15" fill="rgb(218,219,45)" fg:x="69286" fg:w="17"/><text x="46.3614%" y="1007.50"></text></g><g><title>begin_new_exec (24 samples, 0.02%)</title><rect x="46.1293%" y="901" width="0.0160%" height="15" fill="rgb(216,102,54)" fg:x="69313" fg:w="24"/><text x="46.3793%" y="911.50"></text></g><g><title>mmput (24 samples, 0.02%)</title><rect x="46.1293%" y="885" width="0.0160%" height="15" fill="rgb(250,228,7)" fg:x="69313" fg:w="24"/><text x="46.3793%" y="895.50"></text></g><g><title>exit_mmap (24 samples, 0.02%)</title><rect x="46.1293%" y="869" width="0.0160%" height="15" fill="rgb(226,125,25)" fg:x="69313" fg:w="24"/><text x="46.3793%" y="879.50"></text></g><g><title>elf_map (17 samples, 0.01%)</title><rect x="46.1453%" y="901" width="0.0113%" height="15" fill="rgb(224,165,27)" fg:x="69337" fg:w="17"/><text x="46.3953%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.04%)</title><rect x="46.1233%" y="997" width="0.0419%" height="15" fill="rgb(233,86,3)" fg:x="69304" fg:w="63"/><text x="46.3733%" y="1007.50"></text></g><g><title>do_syscall_64 (63 samples, 0.04%)</title><rect x="46.1233%" y="981" width="0.0419%" height="15" fill="rgb(228,116,20)" fg:x="69304" fg:w="63"/><text x="46.3733%" y="991.50"></text></g><g><title>__x64_sys_execve (63 samples, 0.04%)</title><rect x="46.1233%" y="965" width="0.0419%" height="15" fill="rgb(209,192,17)" fg:x="69304" fg:w="63"/><text x="46.3733%" y="975.50"></text></g><g><title>do_execveat_common (63 samples, 0.04%)</title><rect x="46.1233%" y="949" width="0.0419%" height="15" fill="rgb(224,88,34)" fg:x="69304" fg:w="63"/><text x="46.3733%" y="959.50"></text></g><g><title>bprm_execve (63 samples, 0.04%)</title><rect x="46.1233%" y="933" width="0.0419%" height="15" fill="rgb(233,38,6)" fg:x="69304" fg:w="63"/><text x="46.3733%" y="943.50"></text></g><g><title>load_elf_binary (63 samples, 0.04%)</title><rect x="46.1233%" y="917" width="0.0419%" height="15" fill="rgb(212,59,30)" fg:x="69304" fg:w="63"/><text x="46.3733%" y="927.50"></text></g><g><title>cc_wrapper.sh (483 samples, 0.32%)</title><rect x="45.8445%" y="1013" width="0.3214%" height="15" fill="rgb(213,80,3)" fg:x="68885" fg:w="483"/><text x="46.0945%" y="1023.50"></text></g><g><title>[[stack]] (18 samples, 0.01%)</title><rect x="46.1706%" y="997" width="0.0120%" height="15" fill="rgb(251,178,7)" fg:x="69375" fg:w="18"/><text x="46.4206%" y="1007.50"></text></g><g><title>filemap_map_pages (44 samples, 0.03%)</title><rect x="47.4158%" y="901" width="0.0293%" height="15" fill="rgb(213,154,26)" fg:x="71246" fg:w="44"/><text x="47.6658%" y="911.50"></text></g><g><title>handle_mm_fault (71 samples, 0.05%)</title><rect x="47.4045%" y="917" width="0.0473%" height="15" fill="rgb(238,165,49)" fg:x="71229" fg:w="71"/><text x="47.6545%" y="927.50"></text></g><g><title>asm_exc_page_fault (78 samples, 0.05%)</title><rect x="47.4011%" y="965" width="0.0519%" height="15" fill="rgb(248,91,46)" fg:x="71224" fg:w="78"/><text x="47.6511%" y="975.50"></text></g><g><title>exc_page_fault (77 samples, 0.05%)</title><rect x="47.4018%" y="949" width="0.0512%" height="15" fill="rgb(244,21,52)" fg:x="71225" fg:w="77"/><text x="47.6518%" y="959.50"></text></g><g><title>do_user_addr_fault (77 samples, 0.05%)</title><rect x="47.4018%" y="933" width="0.0512%" height="15" fill="rgb(247,122,20)" fg:x="71225" fg:w="77"/><text x="47.6518%" y="943.50"></text></g><g><title>[libc-2.31.so] (217 samples, 0.14%)</title><rect x="47.3140%" y="981" width="0.1444%" height="15" fill="rgb(218,27,9)" fg:x="71093" fg:w="217"/><text x="47.5640%" y="991.50"></text></g><g><title>filename_lookup (21 samples, 0.01%)</title><rect x="47.4597%" y="917" width="0.0140%" height="15" fill="rgb(246,7,6)" fg:x="71312" fg:w="21"/><text x="47.7097%" y="927.50"></text></g><g><title>path_lookupat (20 samples, 0.01%)</title><rect x="47.4604%" y="901" width="0.0133%" height="15" fill="rgb(227,135,54)" fg:x="71313" fg:w="20"/><text x="47.7104%" y="911.50"></text></g><g><title>__GI___access (33 samples, 0.02%)</title><rect x="47.4584%" y="981" width="0.0220%" height="15" fill="rgb(247,14,11)" fg:x="71310" fg:w="33"/><text x="47.7084%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.02%)</title><rect x="47.4584%" y="965" width="0.0220%" height="15" fill="rgb(206,149,34)" fg:x="71310" fg:w="33"/><text x="47.7084%" y="975.50"></text></g><g><title>do_syscall_64 (33 samples, 0.02%)</title><rect x="47.4584%" y="949" width="0.0220%" height="15" fill="rgb(227,228,4)" fg:x="71310" fg:w="33"/><text x="47.7084%" y="959.50"></text></g><g><title>do_faccessat (33 samples, 0.02%)</title><rect x="47.4584%" y="933" width="0.0220%" height="15" fill="rgb(238,218,28)" fg:x="71310" fg:w="33"/><text x="47.7084%" y="943.50"></text></g><g><title>filename_lookup (21 samples, 0.01%)</title><rect x="47.5269%" y="901" width="0.0140%" height="15" fill="rgb(252,86,40)" fg:x="71413" fg:w="21"/><text x="47.7769%" y="911.50"></text></g><g><title>path_lookupat (20 samples, 0.01%)</title><rect x="47.5276%" y="885" width="0.0133%" height="15" fill="rgb(251,225,11)" fg:x="71414" fg:w="20"/><text x="47.7776%" y="895.50"></text></g><g><title>__GI___readlink (31 samples, 0.02%)</title><rect x="47.5269%" y="981" width="0.0206%" height="15" fill="rgb(206,46,49)" fg:x="71413" fg:w="31"/><text x="47.7769%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="47.5269%" y="965" width="0.0206%" height="15" fill="rgb(245,128,24)" fg:x="71413" fg:w="31"/><text x="47.7769%" y="975.50"></text></g><g><title>do_syscall_64 (31 samples, 0.02%)</title><rect x="47.5269%" y="949" width="0.0206%" height="15" fill="rgb(219,177,34)" fg:x="71413" fg:w="31"/><text x="47.7769%" y="959.50"></text></g><g><title>__x64_sys_readlink (31 samples, 0.02%)</title><rect x="47.5269%" y="933" width="0.0206%" height="15" fill="rgb(218,60,48)" fg:x="71413" fg:w="31"/><text x="47.7769%" y="943.50"></text></g><g><title>do_readlinkat (31 samples, 0.02%)</title><rect x="47.5269%" y="917" width="0.0206%" height="15" fill="rgb(221,11,5)" fg:x="71413" fg:w="31"/><text x="47.7769%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (41 samples, 0.03%)</title><rect x="47.5575%" y="837" width="0.0273%" height="15" fill="rgb(220,148,13)" fg:x="71459" fg:w="41"/><text x="47.8075%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (41 samples, 0.03%)</title><rect x="47.5575%" y="821" width="0.0273%" height="15" fill="rgb(210,16,3)" fg:x="71459" fg:w="41"/><text x="47.8075%" y="831.50"></text></g><g><title>native_write_msr (41 samples, 0.03%)</title><rect x="47.5575%" y="805" width="0.0273%" height="15" fill="rgb(236,80,2)" fg:x="71459" fg:w="41"/><text x="47.8075%" y="815.50"></text></g><g><title>schedule (45 samples, 0.03%)</title><rect x="47.5562%" y="885" width="0.0299%" height="15" fill="rgb(239,129,19)" fg:x="71457" fg:w="45"/><text x="47.8062%" y="895.50"></text></g><g><title>__schedule (44 samples, 0.03%)</title><rect x="47.5569%" y="869" width="0.0293%" height="15" fill="rgb(220,106,35)" fg:x="71458" fg:w="44"/><text x="47.8069%" y="879.50"></text></g><g><title>finish_task_switch (44 samples, 0.03%)</title><rect x="47.5569%" y="853" width="0.0293%" height="15" fill="rgb(252,139,45)" fg:x="71458" fg:w="44"/><text x="47.8069%" y="863.50"></text></g><g><title>__GI___wait4 (60 samples, 0.04%)</title><rect x="47.5529%" y="981" width="0.0399%" height="15" fill="rgb(229,8,36)" fg:x="71452" fg:w="60"/><text x="47.8029%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.04%)</title><rect x="47.5529%" y="965" width="0.0399%" height="15" fill="rgb(230,126,33)" fg:x="71452" fg:w="60"/><text x="47.8029%" y="975.50"></text></g><g><title>do_syscall_64 (60 samples, 0.04%)</title><rect x="47.5529%" y="949" width="0.0399%" height="15" fill="rgb(239,140,21)" fg:x="71452" fg:w="60"/><text x="47.8029%" y="959.50"></text></g><g><title>__do_sys_wait4 (59 samples, 0.04%)</title><rect x="47.5535%" y="933" width="0.0393%" height="15" fill="rgb(254,104,9)" fg:x="71453" fg:w="59"/><text x="47.8035%" y="943.50"></text></g><g><title>kernel_wait4 (59 samples, 0.04%)</title><rect x="47.5535%" y="917" width="0.0393%" height="15" fill="rgb(239,52,14)" fg:x="71453" fg:w="59"/><text x="47.8035%" y="927.50"></text></g><g><title>do_wait (58 samples, 0.04%)</title><rect x="47.5542%" y="901" width="0.0386%" height="15" fill="rgb(208,227,44)" fg:x="71454" fg:w="58"/><text x="47.8042%" y="911.50"></text></g><g><title>filename_lookup (26 samples, 0.02%)</title><rect x="47.5975%" y="901" width="0.0173%" height="15" fill="rgb(246,18,19)" fg:x="71519" fg:w="26"/><text x="47.8475%" y="911.50"></text></g><g><title>path_lookupat (25 samples, 0.02%)</title><rect x="47.5981%" y="885" width="0.0166%" height="15" fill="rgb(235,228,25)" fg:x="71520" fg:w="25"/><text x="47.8481%" y="895.50"></text></g><g><title>__GI___xstat (52 samples, 0.03%)</title><rect x="47.5928%" y="981" width="0.0346%" height="15" fill="rgb(240,156,20)" fg:x="71512" fg:w="52"/><text x="47.8428%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.03%)</title><rect x="47.5948%" y="965" width="0.0326%" height="15" fill="rgb(224,8,20)" fg:x="71515" fg:w="49"/><text x="47.8448%" y="975.50"></text></g><g><title>do_syscall_64 (49 samples, 0.03%)</title><rect x="47.5948%" y="949" width="0.0326%" height="15" fill="rgb(214,12,52)" fg:x="71515" fg:w="49"/><text x="47.8448%" y="959.50"></text></g><g><title>__do_sys_newstat (49 samples, 0.03%)</title><rect x="47.5948%" y="933" width="0.0326%" height="15" fill="rgb(211,220,47)" fg:x="71515" fg:w="49"/><text x="47.8448%" y="943.50"></text></g><g><title>vfs_statx (47 samples, 0.03%)</title><rect x="47.5961%" y="917" width="0.0313%" height="15" fill="rgb(250,173,5)" fg:x="71517" fg:w="47"/><text x="47.8461%" y="927.50"></text></g><g><title>user_path_at_empty (17 samples, 0.01%)</title><rect x="47.6161%" y="901" width="0.0113%" height="15" fill="rgb(250,125,52)" fg:x="71547" fg:w="17"/><text x="47.8661%" y="911.50"></text></g><g><title>getname_flags.part.0 (17 samples, 0.01%)</title><rect x="47.6161%" y="885" width="0.0113%" height="15" fill="rgb(209,133,18)" fg:x="71547" fg:w="17"/><text x="47.8661%" y="895.50"></text></g><g><title>btrfs_create (16 samples, 0.01%)</title><rect x="47.6667%" y="869" width="0.0106%" height="15" fill="rgb(216,173,22)" fg:x="71623" fg:w="16"/><text x="47.9167%" y="879.50"></text></g><g><title>do_filp_open (49 samples, 0.03%)</title><rect x="47.6620%" y="901" width="0.0326%" height="15" fill="rgb(205,3,22)" fg:x="71616" fg:w="49"/><text x="47.9120%" y="911.50"></text></g><g><title>path_openat (48 samples, 0.03%)</title><rect x="47.6627%" y="885" width="0.0319%" height="15" fill="rgb(248,22,20)" fg:x="71617" fg:w="48"/><text x="47.9127%" y="895.50"></text></g><g><title>do_syscall_64 (54 samples, 0.04%)</title><rect x="47.6600%" y="949" width="0.0359%" height="15" fill="rgb(233,6,29)" fg:x="71613" fg:w="54"/><text x="47.9100%" y="959.50"></text></g><g><title>__x64_sys_openat (54 samples, 0.04%)</title><rect x="47.6600%" y="933" width="0.0359%" height="15" fill="rgb(240,22,54)" fg:x="71613" fg:w="54"/><text x="47.9100%" y="943.50"></text></g><g><title>do_sys_openat2 (54 samples, 0.04%)</title><rect x="47.6600%" y="917" width="0.0359%" height="15" fill="rgb(231,133,32)" fg:x="71613" fg:w="54"/><text x="47.9100%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.04%)</title><rect x="47.6600%" y="965" width="0.0366%" height="15" fill="rgb(248,193,4)" fg:x="71613" fg:w="55"/><text x="47.9100%" y="975.50"></text></g><g><title>__libc_open64 (56 samples, 0.04%)</title><rect x="47.6600%" y="981" width="0.0373%" height="15" fill="rgb(211,178,46)" fg:x="71613" fg:w="56"/><text x="47.9100%" y="991.50"></text></g><g><title>__GI___open64_nocancel (16 samples, 0.01%)</title><rect x="47.7193%" y="965" width="0.0106%" height="15" fill="rgb(224,5,42)" fg:x="71702" fg:w="16"/><text x="47.9693%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="47.7193%" y="949" width="0.0106%" height="15" fill="rgb(239,176,25)" fg:x="71702" fg:w="16"/><text x="47.9693%" y="959.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="47.7193%" y="933" width="0.0106%" height="15" fill="rgb(245,187,50)" fg:x="71702" fg:w="16"/><text x="47.9693%" y="943.50"></text></g><g><title>__x64_sys_openat (16 samples, 0.01%)</title><rect x="47.7193%" y="917" width="0.0106%" height="15" fill="rgb(248,24,15)" fg:x="71702" fg:w="16"/><text x="47.9693%" y="927.50"></text></g><g><title>do_sys_openat2 (16 samples, 0.01%)</title><rect x="47.7193%" y="901" width="0.0106%" height="15" fill="rgb(205,166,13)" fg:x="71702" fg:w="16"/><text x="47.9693%" y="911.50"></text></g><g><title>__opendir (18 samples, 0.01%)</title><rect x="47.7193%" y="981" width="0.0120%" height="15" fill="rgb(208,114,23)" fg:x="71702" fg:w="18"/><text x="47.9693%" y="991.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="47.7379%" y="933" width="0.0166%" height="15" fill="rgb(239,127,18)" fg:x="71730" fg:w="25"/><text x="47.9879%" y="943.50"></text></g><g><title>__x64_sys_futex (25 samples, 0.02%)</title><rect x="47.7379%" y="917" width="0.0166%" height="15" fill="rgb(219,154,28)" fg:x="71730" fg:w="25"/><text x="47.9879%" y="927.50"></text></g><g><title>do_futex (24 samples, 0.02%)</title><rect x="47.7386%" y="901" width="0.0160%" height="15" fill="rgb(225,157,23)" fg:x="71731" fg:w="24"/><text x="47.9886%" y="911.50"></text></g><g><title>futex_wake (24 samples, 0.02%)</title><rect x="47.7386%" y="885" width="0.0160%" height="15" fill="rgb(219,8,6)" fg:x="71731" fg:w="24"/><text x="47.9886%" y="895.50"></text></g><g><title>__pthread_once_slow (36 samples, 0.02%)</title><rect x="47.7312%" y="981" width="0.0240%" height="15" fill="rgb(212,47,6)" fg:x="71720" fg:w="36"/><text x="47.9812%" y="991.50"></text></g><g><title>futex_wake (33 samples, 0.02%)</title><rect x="47.7332%" y="965" width="0.0220%" height="15" fill="rgb(224,190,4)" fg:x="71723" fg:w="33"/><text x="47.9832%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="47.7372%" y="949" width="0.0180%" height="15" fill="rgb(239,183,29)" fg:x="71729" fg:w="27"/><text x="47.9872%" y="959.50"></text></g><g><title>[ld-2.31.so] (22 samples, 0.01%)</title><rect x="47.7599%" y="965" width="0.0146%" height="15" fill="rgb(213,57,7)" fg:x="71763" fg:w="22"/><text x="48.0099%" y="975.50"></text></g><g><title>_dl_lookup_symbol_x (22 samples, 0.01%)</title><rect x="47.7599%" y="949" width="0.0146%" height="15" fill="rgb(216,148,1)" fg:x="71763" fg:w="22"/><text x="48.0099%" y="959.50"></text></g><g><title>_dl_runtime_resolve_xsavec (31 samples, 0.02%)</title><rect x="47.7565%" y="981" width="0.0206%" height="15" fill="rgb(236,182,29)" fg:x="71758" fg:w="31"/><text x="48.0065%" y="991.50"></text></g><g><title>_int_free (26 samples, 0.02%)</title><rect x="47.7772%" y="981" width="0.0173%" height="15" fill="rgb(244,120,48)" fg:x="71789" fg:w="26"/><text x="48.0272%" y="991.50"></text></g><g><title>__alloc_pages_nodemask (17 samples, 0.01%)</title><rect x="47.8191%" y="901" width="0.0113%" height="15" fill="rgb(206,71,34)" fg:x="71852" fg:w="17"/><text x="48.0691%" y="911.50"></text></g><g><title>get_page_from_freelist (16 samples, 0.01%)</title><rect x="47.8198%" y="885" width="0.0106%" height="15" fill="rgb(242,32,6)" fg:x="71853" fg:w="16"/><text x="48.0698%" y="895.50"></text></g><g><title>alloc_pages_vma (19 samples, 0.01%)</title><rect x="47.8191%" y="917" width="0.0126%" height="15" fill="rgb(241,35,3)" fg:x="71852" fg:w="19"/><text x="48.0691%" y="927.50"></text></g><g><title>__mod_memcg_lruvec_state (30 samples, 0.02%)</title><rect x="47.9855%" y="869" width="0.0200%" height="15" fill="rgb(222,62,19)" fg:x="72102" fg:w="30"/><text x="48.2355%" y="879.50"></text></g><g><title>page_add_file_rmap (80 samples, 0.05%)</title><rect x="47.9555%" y="885" width="0.0532%" height="15" fill="rgb(223,110,41)" fg:x="72057" fg:w="80"/><text x="48.2055%" y="895.50"></text></g><g><title>alloc_set_pte (116 samples, 0.08%)</title><rect x="47.9356%" y="901" width="0.0772%" height="15" fill="rgb(208,224,4)" fg:x="72027" fg:w="116"/><text x="48.1856%" y="911.50"></text></g><g><title>unlock_page (24 samples, 0.02%)</title><rect x="48.0134%" y="901" width="0.0160%" height="15" fill="rgb(241,137,19)" fg:x="72144" fg:w="24"/><text x="48.2634%" y="911.50"></text></g><g><title>filemap_map_pages (312 samples, 0.21%)</title><rect x="47.8344%" y="917" width="0.2076%" height="15" fill="rgb(244,24,17)" fg:x="71875" fg:w="312"/><text x="48.0844%" y="927.50"></text></g><g><title>xas_find (19 samples, 0.01%)</title><rect x="48.0294%" y="901" width="0.0126%" height="15" fill="rgb(245,178,49)" fg:x="72168" fg:w="19"/><text x="48.2794%" y="911.50"></text></g><g><title>xas_load (18 samples, 0.01%)</title><rect x="48.0301%" y="885" width="0.0120%" height="15" fill="rgb(219,160,38)" fg:x="72169" fg:w="18"/><text x="48.2801%" y="895.50"></text></g><g><title>handle_mm_fault (393 samples, 0.26%)</title><rect x="47.8024%" y="933" width="0.2616%" height="15" fill="rgb(228,137,14)" fg:x="71827" fg:w="393"/><text x="48.0524%" y="943.50"></text></g><g><title>exc_page_fault (404 samples, 0.27%)</title><rect x="47.7965%" y="965" width="0.2689%" height="15" fill="rgb(237,134,11)" fg:x="71818" fg:w="404"/><text x="48.0465%" y="975.50"></text></g><g><title>do_user_addr_fault (402 samples, 0.27%)</title><rect x="47.7978%" y="949" width="0.2675%" height="15" fill="rgb(211,126,44)" fg:x="71820" fg:w="402"/><text x="48.0478%" y="959.50"></text></g><g><title>asm_exc_page_fault (409 samples, 0.27%)</title><rect x="47.7951%" y="981" width="0.2722%" height="15" fill="rgb(226,171,33)" fg:x="71816" fg:w="409"/><text x="48.0451%" y="991.50"></text></g><g><title>error_entry (31 samples, 0.02%)</title><rect x="48.0673%" y="981" width="0.0206%" height="15" fill="rgb(253,99,13)" fg:x="72225" fg:w="31"/><text x="48.3173%" y="991.50"></text></g><g><title>sync_regs (31 samples, 0.02%)</title><rect x="48.0673%" y="965" width="0.0206%" height="15" fill="rgb(244,48,7)" fg:x="72225" fg:w="31"/><text x="48.3173%" y="975.50"></text></g><g><title>alloc_pages_vma (20 samples, 0.01%)</title><rect x="48.1598%" y="869" width="0.0133%" height="15" fill="rgb(244,217,54)" fg:x="72364" fg:w="20"/><text x="48.4098%" y="879.50"></text></g><g><title>__alloc_pages_nodemask (16 samples, 0.01%)</title><rect x="48.1625%" y="853" width="0.0106%" height="15" fill="rgb(224,15,18)" fg:x="72368" fg:w="16"/><text x="48.4125%" y="863.50"></text></g><g><title>asm_exc_page_fault (45 samples, 0.03%)</title><rect x="48.1525%" y="933" width="0.0299%" height="15" fill="rgb(244,99,12)" fg:x="72353" fg:w="45"/><text x="48.4025%" y="943.50"></text></g><g><title>exc_page_fault (45 samples, 0.03%)</title><rect x="48.1525%" y="917" width="0.0299%" height="15" fill="rgb(233,226,8)" fg:x="72353" fg:w="45"/><text x="48.4025%" y="927.50"></text></g><g><title>do_user_addr_fault (45 samples, 0.03%)</title><rect x="48.1525%" y="901" width="0.0299%" height="15" fill="rgb(229,211,3)" fg:x="72353" fg:w="45"/><text x="48.4025%" y="911.50"></text></g><g><title>handle_mm_fault (43 samples, 0.03%)</title><rect x="48.1538%" y="885" width="0.0286%" height="15" fill="rgb(216,140,21)" fg:x="72355" fg:w="43"/><text x="48.4038%" y="895.50"></text></g><g><title>_int_malloc (133 samples, 0.09%)</title><rect x="48.1126%" y="949" width="0.0885%" height="15" fill="rgb(234,122,30)" fg:x="72293" fg:w="133"/><text x="48.3626%" y="959.50"></text></g><g><title>__GI___libc_malloc (166 samples, 0.11%)</title><rect x="48.0986%" y="965" width="0.1105%" height="15" fill="rgb(236,25,46)" fg:x="72272" fg:w="166"/><text x="48.3486%" y="975.50"></text></g><g><title>operator new (172 samples, 0.11%)</title><rect x="48.0973%" y="981" width="0.1145%" height="15" fill="rgb(217,52,54)" fg:x="72270" fg:w="172"/><text x="48.3473%" y="991.50"></text></g><g><title>[clang] (3,091 samples, 2.06%)</title><rect x="46.1846%" y="997" width="2.0571%" height="15" fill="rgb(222,29,26)" fg:x="69396" fg:w="3091"/><text x="46.4346%" y="1007.50">[..</text></g><g><title>__GI___libc_sigaction (22 samples, 0.01%)</title><rect x="48.2577%" y="965" width="0.0146%" height="15" fill="rgb(216,177,29)" fg:x="72511" fg:w="22"/><text x="48.5077%" y="975.50"></text></g><g><title>__spawni_child (37 samples, 0.02%)</title><rect x="48.2577%" y="981" width="0.0246%" height="15" fill="rgb(247,136,51)" fg:x="72511" fg:w="37"/><text x="48.5077%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (143 samples, 0.10%)</title><rect x="48.2929%" y="933" width="0.0952%" height="15" fill="rgb(231,47,47)" fg:x="72564" fg:w="143"/><text x="48.5429%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (141 samples, 0.09%)</title><rect x="48.2943%" y="917" width="0.0938%" height="15" fill="rgb(211,192,36)" fg:x="72566" fg:w="141"/><text x="48.5443%" y="927.50"></text></g><g><title>native_write_msr (141 samples, 0.09%)</title><rect x="48.2943%" y="901" width="0.0938%" height="15" fill="rgb(229,156,32)" fg:x="72566" fg:w="141"/><text x="48.5443%" y="911.50"></text></g><g><title>schedule_tail (156 samples, 0.10%)</title><rect x="48.2883%" y="965" width="0.1038%" height="15" fill="rgb(248,213,20)" fg:x="72557" fg:w="156"/><text x="48.5383%" y="975.50"></text></g><g><title>finish_task_switch (156 samples, 0.10%)</title><rect x="48.2883%" y="949" width="0.1038%" height="15" fill="rgb(217,64,7)" fg:x="72557" fg:w="156"/><text x="48.5383%" y="959.50"></text></g><g><title>__GI___clone (204 samples, 0.14%)</title><rect x="48.2570%" y="997" width="0.1358%" height="15" fill="rgb(232,142,8)" fg:x="72510" fg:w="204"/><text x="48.5070%" y="1007.50"></text></g><g><title>ret_from_fork (159 samples, 0.11%)</title><rect x="48.2869%" y="981" width="0.1058%" height="15" fill="rgb(224,92,44)" fg:x="72555" fg:w="159"/><text x="48.5369%" y="991.50"></text></g><g><title>[libstdc++.so.6.0.28] (19 samples, 0.01%)</title><rect x="48.3954%" y="933" width="0.0126%" height="15" fill="rgb(214,169,17)" fg:x="72718" fg:w="19"/><text x="48.6454%" y="943.50"></text></g><g><title>_dl_start_user (25 samples, 0.02%)</title><rect x="48.3941%" y="997" width="0.0166%" height="15" fill="rgb(210,59,37)" fg:x="72716" fg:w="25"/><text x="48.6441%" y="1007.50"></text></g><g><title>_dl_init (25 samples, 0.02%)</title><rect x="48.3941%" y="981" width="0.0166%" height="15" fill="rgb(214,116,48)" fg:x="72716" fg:w="25"/><text x="48.6441%" y="991.50"></text></g><g><title>call_init (23 samples, 0.02%)</title><rect x="48.3954%" y="965" width="0.0153%" height="15" fill="rgb(244,191,6)" fg:x="72718" fg:w="23"/><text x="48.6454%" y="975.50"></text></g><g><title>call_init (23 samples, 0.02%)</title><rect x="48.3954%" y="949" width="0.0153%" height="15" fill="rgb(241,50,52)" fg:x="72718" fg:w="23"/><text x="48.6454%" y="959.50"></text></g><g><title>__do_munmap (19 samples, 0.01%)</title><rect x="48.4260%" y="693" width="0.0126%" height="15" fill="rgb(236,75,39)" fg:x="72764" fg:w="19"/><text x="48.6760%" y="703.50"></text></g><g><title>do_mmap (39 samples, 0.03%)</title><rect x="48.4247%" y="725" width="0.0260%" height="15" fill="rgb(236,99,0)" fg:x="72762" fg:w="39"/><text x="48.6747%" y="735.50"></text></g><g><title>mmap_region (37 samples, 0.02%)</title><rect x="48.4260%" y="709" width="0.0246%" height="15" fill="rgb(207,202,15)" fg:x="72764" fg:w="37"/><text x="48.6760%" y="719.50"></text></g><g><title>ksys_mmap_pgoff (42 samples, 0.03%)</title><rect x="48.4240%" y="757" width="0.0280%" height="15" fill="rgb(233,207,14)" fg:x="72761" fg:w="42"/><text x="48.6740%" y="767.50"></text></g><g><title>vm_mmap_pgoff (41 samples, 0.03%)</title><rect x="48.4247%" y="741" width="0.0273%" height="15" fill="rgb(226,27,51)" fg:x="72762" fg:w="41"/><text x="48.6747%" y="751.50"></text></g><g><title>_dl_map_segments (53 samples, 0.04%)</title><rect x="48.4201%" y="837" width="0.0353%" height="15" fill="rgb(206,104,42)" fg:x="72755" fg:w="53"/><text x="48.6701%" y="847.50"></text></g><g><title>__mmap64 (47 samples, 0.03%)</title><rect x="48.4240%" y="821" width="0.0313%" height="15" fill="rgb(212,225,4)" fg:x="72761" fg:w="47"/><text x="48.6740%" y="831.50"></text></g><g><title>__mmap64 (47 samples, 0.03%)</title><rect x="48.4240%" y="805" width="0.0313%" height="15" fill="rgb(233,96,42)" fg:x="72761" fg:w="47"/><text x="48.6740%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.03%)</title><rect x="48.4240%" y="789" width="0.0313%" height="15" fill="rgb(229,21,32)" fg:x="72761" fg:w="47"/><text x="48.6740%" y="799.50"></text></g><g><title>do_syscall_64 (47 samples, 0.03%)</title><rect x="48.4240%" y="773" width="0.0313%" height="15" fill="rgb(226,216,24)" fg:x="72761" fg:w="47"/><text x="48.6740%" y="783.50"></text></g><g><title>_dl_map_object_from_fd (74 samples, 0.05%)</title><rect x="48.4201%" y="853" width="0.0492%" height="15" fill="rgb(221,163,17)" fg:x="72755" fg:w="74"/><text x="48.6701%" y="863.50"></text></g><g><title>do_filp_open (20 samples, 0.01%)</title><rect x="48.4720%" y="741" width="0.0133%" height="15" fill="rgb(216,216,42)" fg:x="72833" fg:w="20"/><text x="48.7220%" y="751.50"></text></g><g><title>path_openat (20 samples, 0.01%)</title><rect x="48.4720%" y="725" width="0.0133%" height="15" fill="rgb(240,118,7)" fg:x="72833" fg:w="20"/><text x="48.7220%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="48.4713%" y="805" width="0.0146%" height="15" fill="rgb(221,67,37)" fg:x="72832" fg:w="22"/><text x="48.7213%" y="815.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="48.4713%" y="789" width="0.0146%" height="15" fill="rgb(241,32,44)" fg:x="72832" fg:w="22"/><text x="48.7213%" y="799.50"></text></g><g><title>__x64_sys_openat (22 samples, 0.01%)</title><rect x="48.4713%" y="773" width="0.0146%" height="15" fill="rgb(235,204,43)" fg:x="72832" fg:w="22"/><text x="48.7213%" y="783.50"></text></g><g><title>do_sys_openat2 (22 samples, 0.01%)</title><rect x="48.4713%" y="757" width="0.0146%" height="15" fill="rgb(213,116,10)" fg:x="72832" fg:w="22"/><text x="48.7213%" y="767.50"></text></g><g><title>__GI___open64_nocancel (23 samples, 0.02%)</title><rect x="48.4713%" y="821" width="0.0153%" height="15" fill="rgb(239,15,48)" fg:x="72832" fg:w="23"/><text x="48.7213%" y="831.50"></text></g><g><title>open_path (28 samples, 0.02%)</title><rect x="48.4693%" y="853" width="0.0186%" height="15" fill="rgb(207,123,36)" fg:x="72829" fg:w="28"/><text x="48.7193%" y="863.50"></text></g><g><title>open_verify (25 samples, 0.02%)</title><rect x="48.4713%" y="837" width="0.0166%" height="15" fill="rgb(209,103,30)" fg:x="72832" fg:w="25"/><text x="48.7213%" y="847.50"></text></g><g><title>_dl_catch_exception (104 samples, 0.07%)</title><rect x="48.4194%" y="901" width="0.0692%" height="15" fill="rgb(238,100,19)" fg:x="72754" fg:w="104"/><text x="48.6694%" y="911.50"></text></g><g><title>openaux (104 samples, 0.07%)</title><rect x="48.4194%" y="885" width="0.0692%" height="15" fill="rgb(244,30,14)" fg:x="72754" fg:w="104"/><text x="48.6694%" y="895.50"></text></g><g><title>_dl_map_object (103 samples, 0.07%)</title><rect x="48.4201%" y="869" width="0.0685%" height="15" fill="rgb(249,174,6)" fg:x="72755" fg:w="103"/><text x="48.6701%" y="879.50"></text></g><g><title>_dl_map_object_deps (107 samples, 0.07%)</title><rect x="48.4194%" y="917" width="0.0712%" height="15" fill="rgb(235,213,41)" fg:x="72754" fg:w="107"/><text x="48.6694%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="48.4933%" y="869" width="0.0126%" height="15" fill="rgb(213,118,6)" fg:x="72865" fg:w="19"/><text x="48.7433%" y="879.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="48.4933%" y="853" width="0.0126%" height="15" fill="rgb(235,44,51)" fg:x="72865" fg:w="19"/><text x="48.7433%" y="863.50"></text></g><g><title>__x64_sys_mprotect (19 samples, 0.01%)</title><rect x="48.4933%" y="837" width="0.0126%" height="15" fill="rgb(217,9,53)" fg:x="72865" fg:w="19"/><text x="48.7433%" y="847.50"></text></g><g><title>do_mprotect_pkey (19 samples, 0.01%)</title><rect x="48.4933%" y="821" width="0.0126%" height="15" fill="rgb(237,172,34)" fg:x="72865" fg:w="19"/><text x="48.7433%" y="831.50"></text></g><g><title>mprotect_fixup (18 samples, 0.01%)</title><rect x="48.4939%" y="805" width="0.0120%" height="15" fill="rgb(206,206,11)" fg:x="72866" fg:w="18"/><text x="48.7439%" y="815.50"></text></g><g><title>_dl_protect_relro (21 samples, 0.01%)</title><rect x="48.4926%" y="901" width="0.0140%" height="15" fill="rgb(214,149,29)" fg:x="72864" fg:w="21"/><text x="48.7426%" y="911.50"></text></g><g><title>__mprotect (21 samples, 0.01%)</title><rect x="48.4926%" y="885" width="0.0140%" height="15" fill="rgb(208,123,3)" fg:x="72864" fg:w="21"/><text x="48.7426%" y="895.50"></text></g><g><title>dl_new_hash (56 samples, 0.04%)</title><rect x="48.5605%" y="853" width="0.0373%" height="15" fill="rgb(229,126,4)" fg:x="72966" fg:w="56"/><text x="48.8105%" y="863.50"></text></g><g><title>check_match (16 samples, 0.01%)</title><rect x="48.6676%" y="837" width="0.0106%" height="15" fill="rgb(222,92,36)" fg:x="73127" fg:w="16"/><text x="48.9176%" y="847.50"></text></g><g><title>_dl_lookup_symbol_x (183 samples, 0.12%)</title><rect x="48.5591%" y="869" width="0.1218%" height="15" fill="rgb(216,39,41)" fg:x="72964" fg:w="183"/><text x="48.8091%" y="879.50"></text></g><g><title>do_lookup_x (125 samples, 0.08%)</title><rect x="48.5977%" y="853" width="0.0832%" height="15" fill="rgb(253,127,28)" fg:x="73022" fg:w="125"/><text x="48.8477%" y="863.50"></text></g><g><title>alloc_pages_vma (22 samples, 0.01%)</title><rect x="48.7016%" y="805" width="0.0146%" height="15" fill="rgb(249,152,51)" fg:x="73178" fg:w="22"/><text x="48.9516%" y="815.50"></text></g><g><title>__alloc_pages_nodemask (22 samples, 0.01%)</title><rect x="48.7016%" y="789" width="0.0146%" height="15" fill="rgb(209,123,42)" fg:x="73178" fg:w="22"/><text x="48.9516%" y="799.50"></text></g><g><title>get_page_from_freelist (20 samples, 0.01%)</title><rect x="48.7029%" y="773" width="0.0133%" height="15" fill="rgb(241,118,22)" fg:x="73180" fg:w="20"/><text x="48.9529%" y="783.50"></text></g><g><title>copy_page (46 samples, 0.03%)</title><rect x="48.7182%" y="805" width="0.0306%" height="15" fill="rgb(208,25,7)" fg:x="73203" fg:w="46"/><text x="48.9682%" y="815.50"></text></g><g><title>exc_page_fault (133 samples, 0.09%)</title><rect x="48.6816%" y="853" width="0.0885%" height="15" fill="rgb(243,144,39)" fg:x="73148" fg:w="133"/><text x="48.9316%" y="863.50"></text></g><g><title>do_user_addr_fault (131 samples, 0.09%)</title><rect x="48.6829%" y="837" width="0.0872%" height="15" fill="rgb(250,50,5)" fg:x="73150" fg:w="131"/><text x="48.9329%" y="847.50"></text></g><g><title>handle_mm_fault (126 samples, 0.08%)</title><rect x="48.6863%" y="821" width="0.0839%" height="15" fill="rgb(207,67,11)" fg:x="73155" fg:w="126"/><text x="48.9363%" y="831.50"></text></g><g><title>asm_exc_page_fault (143 samples, 0.10%)</title><rect x="48.6809%" y="869" width="0.0952%" height="15" fill="rgb(245,204,40)" fg:x="73147" fg:w="143"/><text x="48.9309%" y="879.50"></text></g><g><title>elf_machine_rela (393 samples, 0.26%)</title><rect x="48.5205%" y="885" width="0.2616%" height="15" fill="rgb(238,228,24)" fg:x="72906" fg:w="393"/><text x="48.7705%" y="895.50"></text></g><g><title>elf_dynamic_do_Rela (419 samples, 0.28%)</title><rect x="48.5066%" y="901" width="0.2789%" height="15" fill="rgb(217,116,22)" fg:x="72885" fg:w="419"/><text x="48.7566%" y="911.50"></text></g><g><title>_dl_relocate_object (442 samples, 0.29%)</title><rect x="48.4926%" y="917" width="0.2942%" height="15" fill="rgb(234,98,12)" fg:x="72864" fg:w="442"/><text x="48.7426%" y="927.50"></text></g><g><title>[ld-2.31.so] (563 samples, 0.37%)</title><rect x="48.4154%" y="933" width="0.3747%" height="15" fill="rgb(242,170,50)" fg:x="72748" fg:w="563"/><text x="48.6654%" y="943.50"></text></g><g><title>_dl_start_final (568 samples, 0.38%)</title><rect x="48.4154%" y="965" width="0.3780%" height="15" fill="rgb(235,7,5)" fg:x="72748" fg:w="568"/><text x="48.6654%" y="975.50"></text></g><g><title>_dl_sysdep_start (568 samples, 0.38%)</title><rect x="48.4154%" y="949" width="0.3780%" height="15" fill="rgb(241,114,28)" fg:x="72748" fg:w="568"/><text x="48.6654%" y="959.50"></text></g><g><title>_dl_start (572 samples, 0.38%)</title><rect x="48.4154%" y="981" width="0.3807%" height="15" fill="rgb(246,112,42)" fg:x="72748" fg:w="572"/><text x="48.6654%" y="991.50"></text></g><g><title>_start (574 samples, 0.38%)</title><rect x="48.4147%" y="997" width="0.3820%" height="15" fill="rgb(248,228,14)" fg:x="72747" fg:w="574"/><text x="48.6647%" y="1007.50"></text></g><g><title>asm_exc_page_fault (170 samples, 0.11%)</title><rect x="48.7967%" y="997" width="0.1131%" height="15" fill="rgb(208,133,18)" fg:x="73321" fg:w="170"/><text x="49.0467%" y="1007.50"></text></g><g><title>free_unref_page_list (18 samples, 0.01%)</title><rect x="48.9405%" y="853" width="0.0120%" height="15" fill="rgb(207,35,49)" fg:x="73537" fg:w="18"/><text x="49.1905%" y="863.50"></text></g><g><title>tlb_finish_mmu (42 samples, 0.03%)</title><rect x="48.9258%" y="885" width="0.0280%" height="15" fill="rgb(205,68,36)" fg:x="73515" fg:w="42"/><text x="49.1758%" y="895.50"></text></g><g><title>release_pages (37 samples, 0.02%)</title><rect x="48.9292%" y="869" width="0.0246%" height="15" fill="rgb(245,62,40)" fg:x="73520" fg:w="37"/><text x="49.1792%" y="879.50"></text></g><g><title>__mod_lruvec_state (19 samples, 0.01%)</title><rect x="49.0749%" y="837" width="0.0126%" height="15" fill="rgb(228,27,24)" fg:x="73739" fg:w="19"/><text x="49.3249%" y="847.50"></text></g><g><title>__mod_memcg_lruvec_state (30 samples, 0.02%)</title><rect x="49.0876%" y="837" width="0.0200%" height="15" fill="rgb(253,19,12)" fg:x="73758" fg:w="30"/><text x="49.3376%" y="847.50"></text></g><g><title>page_remove_rmap (137 samples, 0.09%)</title><rect x="49.0263%" y="853" width="0.0912%" height="15" fill="rgb(232,28,20)" fg:x="73666" fg:w="137"/><text x="49.2763%" y="863.50"></text></g><g><title>free_pages_and_swap_cache (21 samples, 0.01%)</title><rect x="49.1175%" y="837" width="0.0140%" height="15" fill="rgb(218,35,51)" fg:x="73803" fg:w="21"/><text x="49.3675%" y="847.50"></text></g><g><title>tlb_flush_mmu (66 samples, 0.04%)</title><rect x="49.1175%" y="853" width="0.0439%" height="15" fill="rgb(212,90,40)" fg:x="73803" fg:w="66"/><text x="49.3675%" y="863.50"></text></g><g><title>release_pages (45 samples, 0.03%)</title><rect x="49.1315%" y="837" width="0.0299%" height="15" fill="rgb(220,172,12)" fg:x="73824" fg:w="45"/><text x="49.3815%" y="847.50"></text></g><g><title>mmput (375 samples, 0.25%)</title><rect x="48.9185%" y="917" width="0.2496%" height="15" fill="rgb(226,159,20)" fg:x="73504" fg:w="375"/><text x="49.1685%" y="927.50"></text></g><g><title>exit_mmap (375 samples, 0.25%)</title><rect x="48.9185%" y="901" width="0.2496%" height="15" fill="rgb(234,205,16)" fg:x="73504" fg:w="375"/><text x="49.1685%" y="911.50"></text></g><g><title>unmap_vmas (322 samples, 0.21%)</title><rect x="48.9538%" y="885" width="0.2143%" height="15" fill="rgb(207,9,39)" fg:x="73557" fg:w="322"/><text x="49.2038%" y="895.50"></text></g><g><title>unmap_page_range (322 samples, 0.21%)</title><rect x="48.9538%" y="869" width="0.2143%" height="15" fill="rgb(249,143,15)" fg:x="73557" fg:w="322"/><text x="49.2038%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (395 samples, 0.26%)</title><rect x="48.9099%" y="997" width="0.2629%" height="15" fill="rgb(253,133,29)" fg:x="73491" fg:w="395"/><text x="49.1599%" y="1007.50"></text></g><g><title>do_syscall_64 (395 samples, 0.26%)</title><rect x="48.9099%" y="981" width="0.2629%" height="15" fill="rgb(221,187,0)" fg:x="73491" fg:w="395"/><text x="49.1599%" y="991.50"></text></g><g><title>__x64_sys_exit_group (382 samples, 0.25%)</title><rect x="48.9185%" y="965" width="0.2542%" height="15" fill="rgb(205,204,26)" fg:x="73504" fg:w="382"/><text x="49.1685%" y="975.50"></text></g><g><title>do_group_exit (382 samples, 0.25%)</title><rect x="48.9185%" y="949" width="0.2542%" height="15" fill="rgb(224,68,54)" fg:x="73504" fg:w="382"/><text x="49.1685%" y="959.50"></text></g><g><title>do_exit (382 samples, 0.25%)</title><rect x="48.9185%" y="933" width="0.2542%" height="15" fill="rgb(209,67,4)" fg:x="73504" fg:w="382"/><text x="49.1685%" y="943.50"></text></g><g><title>clang (4,522 samples, 3.01%)</title><rect x="46.1659%" y="1013" width="3.0095%" height="15" fill="rgb(228,229,18)" fg:x="69368" fg:w="4522"/><text x="46.4159%" y="1023.50">cla..</text></g><g><title>cli-update-thre (23 samples, 0.02%)</title><rect x="49.1754%" y="1013" width="0.0153%" height="15" fill="rgb(231,89,13)" fg:x="73890" fg:w="23"/><text x="49.4254%" y="1023.50"></text></g><g><title>[perf-943567.map] (23 samples, 0.02%)</title><rect x="49.1754%" y="997" width="0.0153%" height="15" fill="rgb(210,182,18)" fg:x="73890" fg:w="23"/><text x="49.4254%" y="1007.50"></text></g><g><title>Monitor::wait (16 samples, 0.01%)</title><rect x="49.2513%" y="917" width="0.0106%" height="15" fill="rgb(240,105,2)" fg:x="74004" fg:w="16"/><text x="49.5013%" y="927.50"></text></g><g><title>JVM_IHashCode (18 samples, 0.01%)</title><rect x="49.2506%" y="981" width="0.0120%" height="15" fill="rgb(207,170,50)" fg:x="74003" fg:w="18"/><text x="49.5006%" y="991.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (18 samples, 0.01%)</title><rect x="49.2506%" y="965" width="0.0120%" height="15" fill="rgb(232,133,24)" fg:x="74003" fg:w="18"/><text x="49.5006%" y="975.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (18 samples, 0.01%)</title><rect x="49.2506%" y="949" width="0.0120%" height="15" fill="rgb(235,166,27)" fg:x="74003" fg:w="18"/><text x="49.5006%" y="959.50"></text></g><g><title>VMThread::execute (18 samples, 0.01%)</title><rect x="49.2506%" y="933" width="0.0120%" height="15" fill="rgb(209,19,13)" fg:x="74003" fg:w="18"/><text x="49.5006%" y="943.50"></text></g><g><title>[perf-943567.map] (116 samples, 0.08%)</title><rect x="49.1921%" y="997" width="0.0772%" height="15" fill="rgb(226,79,39)" fg:x="73915" fg:w="116"/><text x="49.4421%" y="1007.50"></text></g><g><title>__perf_event_task_sched_in (17 samples, 0.01%)</title><rect x="49.2713%" y="933" width="0.0113%" height="15" fill="rgb(222,163,10)" fg:x="74034" fg:w="17"/><text x="49.5213%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (17 samples, 0.01%)</title><rect x="49.2713%" y="917" width="0.0113%" height="15" fill="rgb(214,44,19)" fg:x="74034" fg:w="17"/><text x="49.5213%" y="927.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="49.2713%" y="901" width="0.0113%" height="15" fill="rgb(210,217,13)" fg:x="74034" fg:w="17"/><text x="49.5213%" y="911.50"></text></g><g><title>ret_from_fork (20 samples, 0.01%)</title><rect x="49.2706%" y="981" width="0.0133%" height="15" fill="rgb(237,61,54)" fg:x="74033" fg:w="20"/><text x="49.5206%" y="991.50"></text></g><g><title>schedule_tail (19 samples, 0.01%)</title><rect x="49.2713%" y="965" width="0.0126%" height="15" fill="rgb(226,184,24)" fg:x="74034" fg:w="19"/><text x="49.5213%" y="975.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="49.2713%" y="949" width="0.0126%" height="15" fill="rgb(223,226,4)" fg:x="74034" fg:w="19"/><text x="49.5213%" y="959.50"></text></g><g><title>__GI___clone (47 samples, 0.03%)</title><rect x="49.2706%" y="997" width="0.0313%" height="15" fill="rgb(210,26,41)" fg:x="74033" fg:w="47"/><text x="49.5206%" y="1007.50"></text></g><g><title>start_thread (27 samples, 0.02%)</title><rect x="49.2839%" y="981" width="0.0180%" height="15" fill="rgb(220,221,6)" fg:x="74053" fg:w="27"/><text x="49.5339%" y="991.50"></text></g><g><title>thread_native_entry (16 samples, 0.01%)</title><rect x="49.2912%" y="965" width="0.0106%" height="15" fill="rgb(225,89,49)" fg:x="74064" fg:w="16"/><text x="49.5412%" y="975.50"></text></g><g><title>find-action-loo (169 samples, 0.11%)</title><rect x="49.1907%" y="1013" width="0.1125%" height="15" fill="rgb(218,70,45)" fg:x="73913" fg:w="169"/><text x="49.4407%" y="1023.50"></text></g><g><title>[perf-943567.map] (41 samples, 0.03%)</title><rect x="49.3079%" y="997" width="0.0273%" height="15" fill="rgb(238,166,21)" fg:x="74089" fg:w="41"/><text x="49.5579%" y="1007.50"></text></g><g><title>globbing_pool-0 (59 samples, 0.04%)</title><rect x="49.3032%" y="1013" width="0.0393%" height="15" fill="rgb(224,141,44)" fg:x="74082" fg:w="59"/><text x="49.5532%" y="1023.50"></text></g><g><title>[libunix_jni.so] (30 samples, 0.02%)</title><rect x="49.3445%" y="997" width="0.0200%" height="15" fill="rgb(230,12,49)" fg:x="74144" fg:w="30"/><text x="49.5945%" y="1007.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.03%)</title><rect x="49.4549%" y="725" width="0.0280%" height="15" fill="rgb(212,174,12)" fg:x="74310" fg:w="42"/><text x="49.7049%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.03%)</title><rect x="49.4549%" y="709" width="0.0280%" height="15" fill="rgb(246,67,9)" fg:x="74310" fg:w="42"/><text x="49.7049%" y="719.50"></text></g><g><title>native_write_msr (42 samples, 0.03%)</title><rect x="49.4549%" y="693" width="0.0280%" height="15" fill="rgb(239,35,23)" fg:x="74310" fg:w="42"/><text x="49.7049%" y="703.50"></text></g><g><title>__pthread_cond_wait (45 samples, 0.03%)</title><rect x="49.4543%" y="917" width="0.0299%" height="15" fill="rgb(211,167,0)" fg:x="74309" fg:w="45"/><text x="49.7043%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (45 samples, 0.03%)</title><rect x="49.4543%" y="901" width="0.0299%" height="15" fill="rgb(225,119,45)" fg:x="74309" fg:w="45"/><text x="49.7043%" y="911.50"></text></g><g><title>futex_wait_cancelable (44 samples, 0.03%)</title><rect x="49.4549%" y="885" width="0.0293%" height="15" fill="rgb(210,162,6)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.03%)</title><rect x="49.4549%" y="869" width="0.0293%" height="15" fill="rgb(208,118,35)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="879.50"></text></g><g><title>do_syscall_64 (44 samples, 0.03%)</title><rect x="49.4549%" y="853" width="0.0293%" height="15" fill="rgb(239,4,53)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="863.50"></text></g><g><title>__x64_sys_futex (44 samples, 0.03%)</title><rect x="49.4549%" y="837" width="0.0293%" height="15" fill="rgb(213,130,21)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="847.50"></text></g><g><title>do_futex (44 samples, 0.03%)</title><rect x="49.4549%" y="821" width="0.0293%" height="15" fill="rgb(235,148,0)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="831.50"></text></g><g><title>futex_wait (44 samples, 0.03%)</title><rect x="49.4549%" y="805" width="0.0293%" height="15" fill="rgb(244,224,18)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="815.50"></text></g><g><title>futex_wait_queue_me (44 samples, 0.03%)</title><rect x="49.4549%" y="789" width="0.0293%" height="15" fill="rgb(211,214,4)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="799.50"></text></g><g><title>schedule (44 samples, 0.03%)</title><rect x="49.4549%" y="773" width="0.0293%" height="15" fill="rgb(206,119,25)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="783.50"></text></g><g><title>__schedule (44 samples, 0.03%)</title><rect x="49.4549%" y="757" width="0.0293%" height="15" fill="rgb(243,93,47)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="767.50"></text></g><g><title>finish_task_switch (44 samples, 0.03%)</title><rect x="49.4549%" y="741" width="0.0293%" height="15" fill="rgb(224,194,6)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="751.50"></text></g><g><title>Monitor::lock (48 samples, 0.03%)</title><rect x="49.4529%" y="965" width="0.0319%" height="15" fill="rgb(243,229,6)" fg:x="74307" fg:w="48"/><text x="49.7029%" y="975.50"></text></g><g><title>Monitor::ILock (48 samples, 0.03%)</title><rect x="49.4529%" y="949" width="0.0319%" height="15" fill="rgb(207,23,50)" fg:x="74307" fg:w="48"/><text x="49.7029%" y="959.50"></text></g><g><title>os::PlatformEvent::park (47 samples, 0.03%)</title><rect x="49.4536%" y="933" width="0.0313%" height="15" fill="rgb(253,192,32)" fg:x="74308" fg:w="47"/><text x="49.7036%" y="943.50"></text></g><g><title>JVM_StartThread (62 samples, 0.04%)</title><rect x="49.4496%" y="981" width="0.0413%" height="15" fill="rgb(213,21,6)" fg:x="74302" fg:w="62"/><text x="49.6996%" y="991.50"></text></g><g><title>Unsafe_Park (19 samples, 0.01%)</title><rect x="49.4929%" y="981" width="0.0126%" height="15" fill="rgb(243,151,13)" fg:x="74367" fg:w="19"/><text x="49.7429%" y="991.50"></text></g><g><title>Parker::park (19 samples, 0.01%)</title><rect x="49.4929%" y="965" width="0.0126%" height="15" fill="rgb(233,165,41)" fg:x="74367" fg:w="19"/><text x="49.7429%" y="975.50"></text></g><g><title>__pthread_cond_wait (18 samples, 0.01%)</title><rect x="49.4935%" y="949" width="0.0120%" height="15" fill="rgb(246,176,45)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (18 samples, 0.01%)</title><rect x="49.4935%" y="933" width="0.0120%" height="15" fill="rgb(217,170,52)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="943.50"></text></g><g><title>futex_wait_cancelable (18 samples, 0.01%)</title><rect x="49.4935%" y="917" width="0.0120%" height="15" fill="rgb(214,203,54)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="49.4935%" y="901" width="0.0120%" height="15" fill="rgb(248,215,49)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="911.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="49.4935%" y="885" width="0.0120%" height="15" fill="rgb(208,46,10)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="895.50"></text></g><g><title>__x64_sys_futex (18 samples, 0.01%)</title><rect x="49.4935%" y="869" width="0.0120%" height="15" fill="rgb(254,5,31)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="879.50"></text></g><g><title>do_futex (18 samples, 0.01%)</title><rect x="49.4935%" y="853" width="0.0120%" height="15" fill="rgb(222,104,33)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="863.50"></text></g><g><title>futex_wait (18 samples, 0.01%)</title><rect x="49.4935%" y="837" width="0.0120%" height="15" fill="rgb(248,49,16)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="847.50"></text></g><g><title>futex_wait_queue_me (18 samples, 0.01%)</title><rect x="49.4935%" y="821" width="0.0120%" height="15" fill="rgb(232,198,41)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="831.50"></text></g><g><title>schedule (17 samples, 0.01%)</title><rect x="49.4942%" y="805" width="0.0113%" height="15" fill="rgb(214,125,3)" fg:x="74369" fg:w="17"/><text x="49.7442%" y="815.50"></text></g><g><title>__schedule (17 samples, 0.01%)</title><rect x="49.4942%" y="789" width="0.0113%" height="15" fill="rgb(229,220,28)" fg:x="74369" fg:w="17"/><text x="49.7442%" y="799.50"></text></g><g><title>finish_task_switch (17 samples, 0.01%)</title><rect x="49.4942%" y="773" width="0.0113%" height="15" fill="rgb(222,64,37)" fg:x="74369" fg:w="17"/><text x="49.7442%" y="783.50"></text></g><g><title>[perf-943567.map] (218 samples, 0.15%)</title><rect x="49.3644%" y="997" width="0.1451%" height="15" fill="rgb(249,184,13)" fg:x="74174" fg:w="218"/><text x="49.6144%" y="1007.50"></text></g><g><title>Monitor::wait (16 samples, 0.01%)</title><rect x="49.5235%" y="949" width="0.0106%" height="15" fill="rgb(252,176,6)" fg:x="74413" fg:w="16"/><text x="49.7735%" y="959.50"></text></g><g><title>Monitor::IWait (16 samples, 0.01%)</title><rect x="49.5235%" y="933" width="0.0106%" height="15" fill="rgb(228,153,7)" fg:x="74413" fg:w="16"/><text x="49.7735%" y="943.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="49.5235%" y="917" width="0.0106%" height="15" fill="rgb(242,193,5)" fg:x="74413" fg:w="16"/><text x="49.7735%" y="927.50"></text></g><g><title>globbing_pool-1 (293 samples, 0.19%)</title><rect x="49.3425%" y="1013" width="0.1950%" height="15" fill="rgb(232,140,9)" fg:x="74141" fg:w="293"/><text x="49.5925%" y="1023.50"></text></g><g><title>__GI___clone (40 samples, 0.03%)</title><rect x="49.5108%" y="997" width="0.0266%" height="15" fill="rgb(213,222,16)" fg:x="74394" fg:w="40"/><text x="49.7608%" y="1007.50"></text></g><g><title>start_thread (21 samples, 0.01%)</title><rect x="49.5235%" y="981" width="0.0140%" height="15" fill="rgb(222,75,50)" fg:x="74413" fg:w="21"/><text x="49.7735%" y="991.50"></text></g><g><title>thread_native_entry (21 samples, 0.01%)</title><rect x="49.5235%" y="965" width="0.0140%" height="15" fill="rgb(205,180,2)" fg:x="74413" fg:w="21"/><text x="49.7735%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.02%)</title><rect x="49.5974%" y="725" width="0.0186%" height="15" fill="rgb(216,34,7)" fg:x="74524" fg:w="28"/><text x="49.8474%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="49.5974%" y="709" width="0.0186%" height="15" fill="rgb(253,16,32)" fg:x="74524" fg:w="28"/><text x="49.8474%" y="719.50"></text></g><g><title>native_write_msr (28 samples, 0.02%)</title><rect x="49.5974%" y="693" width="0.0186%" height="15" fill="rgb(208,97,28)" fg:x="74524" fg:w="28"/><text x="49.8474%" y="703.50"></text></g><g><title>finish_task_switch (29 samples, 0.02%)</title><rect x="49.5974%" y="741" width="0.0193%" height="15" fill="rgb(225,92,11)" fg:x="74524" fg:w="29"/><text x="49.8474%" y="751.50"></text></g><g><title>__pthread_cond_wait (31 samples, 0.02%)</title><rect x="49.5967%" y="917" width="0.0206%" height="15" fill="rgb(243,38,12)" fg:x="74523" fg:w="31"/><text x="49.8467%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (31 samples, 0.02%)</title><rect x="49.5967%" y="901" width="0.0206%" height="15" fill="rgb(208,139,16)" fg:x="74523" fg:w="31"/><text x="49.8467%" y="911.50"></text></g><g><title>futex_wait_cancelable (30 samples, 0.02%)</title><rect x="49.5974%" y="885" width="0.0200%" height="15" fill="rgb(227,24,9)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.02%)</title><rect x="49.5974%" y="869" width="0.0200%" height="15" fill="rgb(206,62,11)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="879.50"></text></g><g><title>do_syscall_64 (30 samples, 0.02%)</title><rect x="49.5974%" y="853" width="0.0200%" height="15" fill="rgb(228,134,27)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="863.50"></text></g><g><title>__x64_sys_futex (30 samples, 0.02%)</title><rect x="49.5974%" y="837" width="0.0200%" height="15" fill="rgb(205,55,33)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="847.50"></text></g><g><title>do_futex (30 samples, 0.02%)</title><rect x="49.5974%" y="821" width="0.0200%" height="15" fill="rgb(243,75,43)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="831.50"></text></g><g><title>futex_wait (30 samples, 0.02%)</title><rect x="49.5974%" y="805" width="0.0200%" height="15" fill="rgb(223,27,42)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="815.50"></text></g><g><title>futex_wait_queue_me (30 samples, 0.02%)</title><rect x="49.5974%" y="789" width="0.0200%" height="15" fill="rgb(232,189,33)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="799.50"></text></g><g><title>schedule (30 samples, 0.02%)</title><rect x="49.5974%" y="773" width="0.0200%" height="15" fill="rgb(210,9,39)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="783.50"></text></g><g><title>__schedule (30 samples, 0.02%)</title><rect x="49.5974%" y="757" width="0.0200%" height="15" fill="rgb(242,85,26)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="767.50"></text></g><g><title>Monitor::lock (32 samples, 0.02%)</title><rect x="49.5967%" y="965" width="0.0213%" height="15" fill="rgb(248,44,4)" fg:x="74523" fg:w="32"/><text x="49.8467%" y="975.50"></text></g><g><title>Monitor::ILock (32 samples, 0.02%)</title><rect x="49.5967%" y="949" width="0.0213%" height="15" fill="rgb(250,96,46)" fg:x="74523" fg:w="32"/><text x="49.8467%" y="959.50"></text></g><g><title>os::PlatformEvent::park (32 samples, 0.02%)</title><rect x="49.5967%" y="933" width="0.0213%" height="15" fill="rgb(229,116,26)" fg:x="74523" fg:w="32"/><text x="49.8467%" y="943.50"></text></g><g><title>JVM_StartThread (51 samples, 0.03%)</title><rect x="49.5934%" y="981" width="0.0339%" height="15" fill="rgb(246,94,34)" fg:x="74518" fg:w="51"/><text x="49.8434%" y="991.50"></text></g><g><title>finish_task_switch (16 samples, 0.01%)</title><rect x="49.6280%" y="773" width="0.0106%" height="15" fill="rgb(251,73,21)" fg:x="74570" fg:w="16"/><text x="49.8780%" y="783.50"></text></g><g><title>Unsafe_Park (19 samples, 0.01%)</title><rect x="49.6280%" y="981" width="0.0126%" height="15" fill="rgb(254,121,25)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="991.50"></text></g><g><title>Parker::park (19 samples, 0.01%)</title><rect x="49.6280%" y="965" width="0.0126%" height="15" fill="rgb(215,161,49)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="975.50"></text></g><g><title>__pthread_cond_wait (19 samples, 0.01%)</title><rect x="49.6280%" y="949" width="0.0126%" height="15" fill="rgb(221,43,13)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (19 samples, 0.01%)</title><rect x="49.6280%" y="933" width="0.0126%" height="15" fill="rgb(249,5,37)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="943.50"></text></g><g><title>futex_wait_cancelable (19 samples, 0.01%)</title><rect x="49.6280%" y="917" width="0.0126%" height="15" fill="rgb(226,25,44)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="49.6280%" y="901" width="0.0126%" height="15" fill="rgb(238,189,16)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="911.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="49.6280%" y="885" width="0.0126%" height="15" fill="rgb(251,186,8)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="895.50"></text></g><g><title>__x64_sys_futex (19 samples, 0.01%)</title><rect x="49.6280%" y="869" width="0.0126%" height="15" fill="rgb(254,34,31)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="879.50"></text></g><g><title>do_futex (19 samples, 0.01%)</title><rect x="49.6280%" y="853" width="0.0126%" height="15" fill="rgb(225,215,27)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="863.50"></text></g><g><title>futex_wait (19 samples, 0.01%)</title><rect x="49.6280%" y="837" width="0.0126%" height="15" fill="rgb(221,192,48)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="847.50"></text></g><g><title>futex_wait_queue_me (19 samples, 0.01%)</title><rect x="49.6280%" y="821" width="0.0126%" height="15" fill="rgb(219,137,20)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="831.50"></text></g><g><title>schedule (19 samples, 0.01%)</title><rect x="49.6280%" y="805" width="0.0126%" height="15" fill="rgb(219,84,11)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="815.50"></text></g><g><title>__schedule (19 samples, 0.01%)</title><rect x="49.6280%" y="789" width="0.0126%" height="15" fill="rgb(224,10,23)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="799.50"></text></g><g><title>[perf-943567.map] (145 samples, 0.10%)</title><rect x="49.5481%" y="997" width="0.0965%" height="15" fill="rgb(248,22,39)" fg:x="74450" fg:w="145"/><text x="49.7981%" y="1007.50"></text></g><g><title>__perf_event_task_sched_in (38 samples, 0.03%)</title><rect x="49.6493%" y="933" width="0.0253%" height="15" fill="rgb(212,154,20)" fg:x="74602" fg:w="38"/><text x="49.8993%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="49.6499%" y="917" width="0.0246%" height="15" fill="rgb(236,199,50)" fg:x="74603" fg:w="37"/><text x="49.8999%" y="927.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="49.6506%" y="901" width="0.0240%" height="15" fill="rgb(211,9,17)" fg:x="74604" fg:w="36"/><text x="49.9006%" y="911.50"></text></g><g><title>schedule_tail (42 samples, 0.03%)</title><rect x="49.6486%" y="965" width="0.0280%" height="15" fill="rgb(243,216,36)" fg:x="74601" fg:w="42"/><text x="49.8986%" y="975.50"></text></g><g><title>finish_task_switch (42 samples, 0.03%)</title><rect x="49.6486%" y="949" width="0.0280%" height="15" fill="rgb(250,2,10)" fg:x="74601" fg:w="42"/><text x="49.8986%" y="959.50"></text></g><g><title>ret_from_fork (44 samples, 0.03%)</title><rect x="49.6479%" y="981" width="0.0293%" height="15" fill="rgb(226,50,48)" fg:x="74600" fg:w="44"/><text x="49.8979%" y="991.50"></text></g><g><title>globbing_pool-2 (218 samples, 0.15%)</title><rect x="49.5375%" y="1013" width="0.1451%" height="15" fill="rgb(243,81,16)" fg:x="74434" fg:w="218"/><text x="49.7875%" y="1023.50"></text></g><g><title>__GI___clone (56 samples, 0.04%)</title><rect x="49.6453%" y="997" width="0.0373%" height="15" fill="rgb(250,14,2)" fg:x="74596" fg:w="56"/><text x="49.8953%" y="1007.50"></text></g><g><title>JVM_StartThread (20 samples, 0.01%)</title><rect x="49.7531%" y="981" width="0.0133%" height="15" fill="rgb(233,135,29)" fg:x="74758" fg:w="20"/><text x="50.0031%" y="991.50"></text></g><g><title>os::create_thread (16 samples, 0.01%)</title><rect x="49.7558%" y="965" width="0.0106%" height="15" fill="rgb(224,64,43)" fg:x="74762" fg:w="16"/><text x="50.0058%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.02%)</title><rect x="49.7684%" y="757" width="0.0220%" height="15" fill="rgb(238,84,13)" fg:x="74781" fg:w="33"/><text x="50.0184%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.02%)</title><rect x="49.7684%" y="741" width="0.0220%" height="15" fill="rgb(253,48,26)" fg:x="74781" fg:w="33"/><text x="50.0184%" y="751.50"></text></g><g><title>native_write_msr (33 samples, 0.02%)</title><rect x="49.7684%" y="725" width="0.0220%" height="15" fill="rgb(205,223,31)" fg:x="74781" fg:w="33"/><text x="50.0184%" y="735.50"></text></g><g><title>do_syscall_64 (40 samples, 0.03%)</title><rect x="49.7664%" y="885" width="0.0266%" height="15" fill="rgb(221,41,32)" fg:x="74778" fg:w="40"/><text x="50.0164%" y="895.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.03%)</title><rect x="49.7671%" y="869" width="0.0260%" height="15" fill="rgb(213,158,31)" fg:x="74779" fg:w="39"/><text x="50.0171%" y="879.50"></text></g><g><title>do_futex (39 samples, 0.03%)</title><rect x="49.7671%" y="853" width="0.0260%" height="15" fill="rgb(245,126,43)" fg:x="74779" fg:w="39"/><text x="50.0171%" y="863.50"></text></g><g><title>futex_wait (39 samples, 0.03%)</title><rect x="49.7671%" y="837" width="0.0260%" height="15" fill="rgb(227,7,22)" fg:x="74779" fg:w="39"/><text x="50.0171%" y="847.50"></text></g><g><title>futex_wait_queue_me (39 samples, 0.03%)</title><rect x="49.7671%" y="821" width="0.0260%" height="15" fill="rgb(252,90,44)" fg:x="74779" fg:w="39"/><text x="50.0171%" y="831.50"></text></g><g><title>schedule (39 samples, 0.03%)</title><rect x="49.7671%" y="805" width="0.0260%" height="15" fill="rgb(253,91,0)" fg:x="74779" fg:w="39"/><text x="50.0171%" y="815.50"></text></g><g><title>__schedule (39 samples, 0.03%)</title><rect x="49.7671%" y="789" width="0.0260%" height="15" fill="rgb(252,175,49)" fg:x="74779" fg:w="39"/><text x="50.0171%" y="799.50"></text></g><g><title>finish_task_switch (38 samples, 0.03%)</title><rect x="49.7677%" y="773" width="0.0253%" height="15" fill="rgb(246,150,1)" fg:x="74780" fg:w="38"/><text x="50.0177%" y="783.50"></text></g><g><title>Unsafe_Park (41 samples, 0.03%)</title><rect x="49.7664%" y="981" width="0.0273%" height="15" fill="rgb(241,192,25)" fg:x="74778" fg:w="41"/><text x="50.0164%" y="991.50"></text></g><g><title>Parker::park (41 samples, 0.03%)</title><rect x="49.7664%" y="965" width="0.0273%" height="15" fill="rgb(239,187,11)" fg:x="74778" fg:w="41"/><text x="50.0164%" y="975.50"></text></g><g><title>__pthread_cond_wait (41 samples, 0.03%)</title><rect x="49.7664%" y="949" width="0.0273%" height="15" fill="rgb(218,202,51)" fg:x="74778" fg:w="41"/><text x="50.0164%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (41 samples, 0.03%)</title><rect x="49.7664%" y="933" width="0.0273%" height="15" fill="rgb(225,176,8)" fg:x="74778" fg:w="41"/><text x="50.0164%" y="943.50"></text></g><g><title>futex_wait_cancelable (41 samples, 0.03%)</title><rect x="49.7664%" y="917" width="0.0273%" height="15" fill="rgb(219,122,41)" fg:x="74778" fg:w="41"/><text x="50.0164%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="49.7664%" y="901" width="0.0273%" height="15" fill="rgb(248,140,20)" fg:x="74778" fg:w="41"/><text x="50.0164%" y="911.50"></text></g><g><title>[perf-943567.map] (157 samples, 0.10%)</title><rect x="49.6939%" y="997" width="0.1045%" height="15" fill="rgb(245,41,37)" fg:x="74669" fg:w="157"/><text x="49.9439%" y="1007.50"></text></g><g><title>__GI___clone (20 samples, 0.01%)</title><rect x="49.7983%" y="997" width="0.0133%" height="15" fill="rgb(235,82,39)" fg:x="74826" fg:w="20"/><text x="50.0483%" y="1007.50"></text></g><g><title>globbing_pool-3 (195 samples, 0.13%)</title><rect x="49.6825%" y="1013" width="0.1298%" height="15" fill="rgb(230,108,42)" fg:x="74652" fg:w="195"/><text x="49.9325%" y="1023.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="49.8503%" y="757" width="0.0126%" height="15" fill="rgb(215,150,50)" fg:x="74904" fg:w="19"/><text x="50.1003%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="49.8503%" y="741" width="0.0126%" height="15" fill="rgb(233,212,5)" fg:x="74904" fg:w="19"/><text x="50.1003%" y="751.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="49.8503%" y="725" width="0.0126%" height="15" fill="rgb(245,80,22)" fg:x="74904" fg:w="19"/><text x="50.1003%" y="735.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="49.8496%" y="773" width="0.0140%" height="15" fill="rgb(238,129,16)" fg:x="74903" fg:w="21"/><text x="50.0996%" y="783.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="49.8489%" y="885" width="0.0153%" height="15" fill="rgb(240,19,0)" fg:x="74902" fg:w="23"/><text x="50.0989%" y="895.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="49.8489%" y="869" width="0.0153%" height="15" fill="rgb(232,42,35)" fg:x="74902" fg:w="23"/><text x="50.0989%" y="879.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="49.8489%" y="853" width="0.0153%" height="15" fill="rgb(223,130,24)" fg:x="74902" fg:w="23"/><text x="50.0989%" y="863.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="49.8489%" y="837" width="0.0153%" height="15" fill="rgb(237,16,22)" fg:x="74902" fg:w="23"/><text x="50.0989%" y="847.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.02%)</title><rect x="49.8489%" y="821" width="0.0153%" height="15" fill="rgb(248,192,20)" fg:x="74902" fg:w="23"/><text x="50.0989%" y="831.50"></text></g><g><title>schedule (23 samples, 0.02%)</title><rect x="49.8489%" y="805" width="0.0153%" height="15" fill="rgb(233,167,2)" fg:x="74902" fg:w="23"/><text x="50.0989%" y="815.50"></text></g><g><title>__schedule (22 samples, 0.01%)</title><rect x="49.8496%" y="789" width="0.0146%" height="15" fill="rgb(252,71,44)" fg:x="74903" fg:w="22"/><text x="50.0996%" y="799.50"></text></g><g><title>Unsafe_Park (24 samples, 0.02%)</title><rect x="49.8489%" y="981" width="0.0160%" height="15" fill="rgb(238,37,47)" fg:x="74902" fg:w="24"/><text x="50.0989%" y="991.50"></text></g><g><title>Parker::park (24 samples, 0.02%)</title><rect x="49.8489%" y="965" width="0.0160%" height="15" fill="rgb(214,202,54)" fg:x="74902" fg:w="24"/><text x="50.0989%" y="975.50"></text></g><g><title>__pthread_cond_wait (24 samples, 0.02%)</title><rect x="49.8489%" y="949" width="0.0160%" height="15" fill="rgb(254,165,40)" fg:x="74902" fg:w="24"/><text x="50.0989%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.02%)</title><rect x="49.8489%" y="933" width="0.0160%" height="15" fill="rgb(246,173,38)" fg:x="74902" fg:w="24"/><text x="50.0989%" y="943.50"></text></g><g><title>futex_wait_cancelable (24 samples, 0.02%)</title><rect x="49.8489%" y="917" width="0.0160%" height="15" fill="rgb(215,3,27)" fg:x="74902" fg:w="24"/><text x="50.0989%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="49.8489%" y="901" width="0.0160%" height="15" fill="rgb(239,169,51)" fg:x="74902" fg:w="24"/><text x="50.0989%" y="911.50"></text></g><g><title>[perf-943567.map] (68 samples, 0.05%)</title><rect x="49.8223%" y="997" width="0.0453%" height="15" fill="rgb(212,5,25)" fg:x="74862" fg:w="68"/><text x="50.0723%" y="1007.50"></text></g><g><title>tlb_flush_mmu (25 samples, 0.02%)</title><rect x="49.8869%" y="821" width="0.0166%" height="15" fill="rgb(243,45,17)" fg:x="74959" fg:w="25"/><text x="50.1369%" y="831.50"></text></g><g><title>release_pages (23 samples, 0.02%)</title><rect x="49.8882%" y="805" width="0.0153%" height="15" fill="rgb(242,97,9)" fg:x="74961" fg:w="23"/><text x="50.1382%" y="815.50"></text></g><g><title>globbing_pool-4 (138 samples, 0.09%)</title><rect x="49.8123%" y="1013" width="0.0918%" height="15" fill="rgb(228,71,31)" fg:x="74847" fg:w="138"/><text x="50.0623%" y="1023.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.03%)</title><rect x="49.8775%" y="997" width="0.0266%" height="15" fill="rgb(252,184,16)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="1007.50"></text></g><g><title>syscall_exit_to_user_mode (40 samples, 0.03%)</title><rect x="49.8775%" y="981" width="0.0266%" height="15" fill="rgb(236,169,46)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="991.50"></text></g><g><title>exit_to_user_mode_prepare (40 samples, 0.03%)</title><rect x="49.8775%" y="965" width="0.0266%" height="15" fill="rgb(207,17,47)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="975.50"></text></g><g><title>arch_do_signal (40 samples, 0.03%)</title><rect x="49.8775%" y="949" width="0.0266%" height="15" fill="rgb(206,201,28)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="959.50"></text></g><g><title>get_signal (40 samples, 0.03%)</title><rect x="49.8775%" y="933" width="0.0266%" height="15" fill="rgb(224,184,23)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="943.50"></text></g><g><title>do_group_exit (40 samples, 0.03%)</title><rect x="49.8775%" y="917" width="0.0266%" height="15" fill="rgb(208,139,48)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="927.50"></text></g><g><title>do_exit (40 samples, 0.03%)</title><rect x="49.8775%" y="901" width="0.0266%" height="15" fill="rgb(208,130,10)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="911.50"></text></g><g><title>mmput (40 samples, 0.03%)</title><rect x="49.8775%" y="885" width="0.0266%" height="15" fill="rgb(211,213,45)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="895.50"></text></g><g><title>exit_mmap (40 samples, 0.03%)</title><rect x="49.8775%" y="869" width="0.0266%" height="15" fill="rgb(235,100,30)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="879.50"></text></g><g><title>unmap_vmas (38 samples, 0.03%)</title><rect x="49.8789%" y="853" width="0.0253%" height="15" fill="rgb(206,144,31)" fg:x="74947" fg:w="38"/><text x="50.1289%" y="863.50"></text></g><g><title>unmap_page_range (38 samples, 0.03%)</title><rect x="49.8789%" y="837" width="0.0253%" height="15" fill="rgb(224,200,26)" fg:x="74947" fg:w="38"/><text x="50.1289%" y="847.50"></text></g><g><title>[perf-943567.map] (67 samples, 0.04%)</title><rect x="49.9135%" y="997" width="0.0446%" height="15" fill="rgb(247,104,53)" fg:x="74999" fg:w="67"/><text x="50.1635%" y="1007.50"></text></g><g><title>globbing_pool-5 (91 samples, 0.06%)</title><rect x="49.9042%" y="1013" width="0.0606%" height="15" fill="rgb(220,14,17)" fg:x="74985" fg:w="91"/><text x="50.1542%" y="1023.50"></text></g><g><title>Monitor::lock (16 samples, 0.01%)</title><rect x="49.9933%" y="965" width="0.0106%" height="15" fill="rgb(230,140,40)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="975.50"></text></g><g><title>Monitor::ILock (16 samples, 0.01%)</title><rect x="49.9933%" y="949" width="0.0106%" height="15" fill="rgb(229,2,41)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="959.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="49.9933%" y="933" width="0.0106%" height="15" fill="rgb(232,89,16)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="943.50"></text></g><g><title>__pthread_cond_wait (16 samples, 0.01%)</title><rect x="49.9933%" y="917" width="0.0106%" height="15" fill="rgb(247,59,52)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.01%)</title><rect x="49.9933%" y="901" width="0.0106%" height="15" fill="rgb(226,110,21)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="911.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.01%)</title><rect x="49.9933%" y="885" width="0.0106%" height="15" fill="rgb(224,176,43)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="49.9933%" y="869" width="0.0106%" height="15" fill="rgb(221,73,6)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="879.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="49.9933%" y="853" width="0.0106%" height="15" fill="rgb(232,78,19)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="863.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="49.9933%" y="837" width="0.0106%" height="15" fill="rgb(233,112,48)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="847.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="49.9933%" y="821" width="0.0106%" height="15" fill="rgb(243,131,47)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="831.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="49.9933%" y="805" width="0.0106%" height="15" fill="rgb(226,51,1)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="815.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="49.9933%" y="789" width="0.0106%" height="15" fill="rgb(247,58,7)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="799.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="49.9933%" y="773" width="0.0106%" height="15" fill="rgb(209,7,32)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="783.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="49.9933%" y="757" width="0.0106%" height="15" fill="rgb(209,39,41)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="767.50"></text></g><g><title>JVM_StartThread (24 samples, 0.02%)</title><rect x="49.9927%" y="981" width="0.0160%" height="15" fill="rgb(226,182,46)" fg:x="75118" fg:w="24"/><text x="50.2427%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="50.0093%" y="757" width="0.0140%" height="15" fill="rgb(230,219,10)" fg:x="75143" fg:w="21"/><text x="50.2593%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="50.0100%" y="741" width="0.0133%" height="15" fill="rgb(227,175,30)" fg:x="75144" fg:w="20"/><text x="50.2600%" y="751.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="50.0100%" y="725" width="0.0133%" height="15" fill="rgb(217,2,50)" fg:x="75144" fg:w="20"/><text x="50.2600%" y="735.50"></text></g><g><title>Unsafe_Park (24 samples, 0.02%)</title><rect x="50.0087%" y="981" width="0.0160%" height="15" fill="rgb(229,160,0)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="991.50"></text></g><g><title>Parker::park (24 samples, 0.02%)</title><rect x="50.0087%" y="965" width="0.0160%" height="15" fill="rgb(207,78,37)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="975.50"></text></g><g><title>__pthread_cond_wait (24 samples, 0.02%)</title><rect x="50.0087%" y="949" width="0.0160%" height="15" fill="rgb(225,57,0)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.02%)</title><rect x="50.0087%" y="933" width="0.0160%" height="15" fill="rgb(232,154,2)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="943.50"></text></g><g><title>futex_wait_cancelable (24 samples, 0.02%)</title><rect x="50.0087%" y="917" width="0.0160%" height="15" fill="rgb(241,212,25)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="50.0087%" y="901" width="0.0160%" height="15" fill="rgb(226,69,20)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="911.50"></text></g><g><title>do_syscall_64 (24 samples, 0.02%)</title><rect x="50.0087%" y="885" width="0.0160%" height="15" fill="rgb(247,184,54)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="895.50"></text></g><g><title>__x64_sys_futex (24 samples, 0.02%)</title><rect x="50.0087%" y="869" width="0.0160%" height="15" fill="rgb(210,145,0)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="879.50"></text></g><g><title>do_futex (24 samples, 0.02%)</title><rect x="50.0087%" y="853" width="0.0160%" height="15" fill="rgb(253,82,12)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="863.50"></text></g><g><title>futex_wait (24 samples, 0.02%)</title><rect x="50.0087%" y="837" width="0.0160%" height="15" fill="rgb(245,42,11)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="847.50"></text></g><g><title>futex_wait_queue_me (24 samples, 0.02%)</title><rect x="50.0087%" y="821" width="0.0160%" height="15" fill="rgb(219,147,32)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="831.50"></text></g><g><title>schedule (24 samples, 0.02%)</title><rect x="50.0087%" y="805" width="0.0160%" height="15" fill="rgb(246,12,7)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="815.50"></text></g><g><title>__schedule (24 samples, 0.02%)</title><rect x="50.0087%" y="789" width="0.0160%" height="15" fill="rgb(243,50,9)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="799.50"></text></g><g><title>finish_task_switch (24 samples, 0.02%)</title><rect x="50.0087%" y="773" width="0.0160%" height="15" fill="rgb(219,149,6)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="783.50"></text></g><g><title>[perf-943567.map] (83 samples, 0.06%)</title><rect x="49.9701%" y="997" width="0.0552%" height="15" fill="rgb(241,51,42)" fg:x="75084" fg:w="83"/><text x="50.2201%" y="1007.50"></text></g><g><title>__GI___clone (20 samples, 0.01%)</title><rect x="50.0253%" y="997" width="0.0133%" height="15" fill="rgb(226,128,27)" fg:x="75167" fg:w="20"/><text x="50.2753%" y="1007.50"></text></g><g><title>globbing_pool-6 (112 samples, 0.07%)</title><rect x="49.9647%" y="1013" width="0.0745%" height="15" fill="rgb(244,144,4)" fg:x="75076" fg:w="112"/><text x="50.2147%" y="1023.50"></text></g><g><title>JVM_StartThread (17 samples, 0.01%)</title><rect x="50.1091%" y="981" width="0.0113%" height="15" fill="rgb(221,4,13)" fg:x="75293" fg:w="17"/><text x="50.3591%" y="991.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="50.1258%" y="885" width="0.0106%" height="15" fill="rgb(208,170,28)" fg:x="75318" fg:w="16"/><text x="50.3758%" y="895.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="50.1258%" y="869" width="0.0106%" height="15" fill="rgb(226,131,13)" fg:x="75318" fg:w="16"/><text x="50.3758%" y="879.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="50.1258%" y="853" width="0.0106%" height="15" fill="rgb(215,72,41)" fg:x="75318" fg:w="16"/><text x="50.3758%" y="863.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="50.1258%" y="837" width="0.0106%" height="15" fill="rgb(243,108,20)" fg:x="75318" fg:w="16"/><text x="50.3758%" y="847.50"></text></g><g><title>__pthread_cond_wait (18 samples, 0.01%)</title><rect x="50.1251%" y="949" width="0.0120%" height="15" fill="rgb(230,189,17)" fg:x="75317" fg:w="18"/><text x="50.3751%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (18 samples, 0.01%)</title><rect x="50.1251%" y="933" width="0.0120%" height="15" fill="rgb(220,50,17)" fg:x="75317" fg:w="18"/><text x="50.3751%" y="943.50"></text></g><g><title>futex_wait_cancelable (18 samples, 0.01%)</title><rect x="50.1251%" y="917" width="0.0120%" height="15" fill="rgb(248,152,48)" fg:x="75317" fg:w="18"/><text x="50.3751%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="50.1258%" y="901" width="0.0113%" height="15" fill="rgb(244,91,11)" fg:x="75318" fg:w="17"/><text x="50.3758%" y="911.50"></text></g><g><title>Unsafe_Park (19 samples, 0.01%)</title><rect x="50.1251%" y="981" width="0.0126%" height="15" fill="rgb(220,157,5)" fg:x="75317" fg:w="19"/><text x="50.3751%" y="991.50"></text></g><g><title>Parker::park (19 samples, 0.01%)</title><rect x="50.1251%" y="965" width="0.0126%" height="15" fill="rgb(253,137,8)" fg:x="75317" fg:w="19"/><text x="50.3751%" y="975.50"></text></g><g><title>[perf-943567.map] (131 samples, 0.09%)</title><rect x="50.0519%" y="997" width="0.0872%" height="15" fill="rgb(217,137,51)" fg:x="75207" fg:w="131"/><text x="50.3019%" y="1007.50"></text></g><g><title>Monitor::wait (22 samples, 0.01%)</title><rect x="50.1464%" y="949" width="0.0146%" height="15" fill="rgb(218,209,53)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="959.50"></text></g><g><title>Monitor::IWait (22 samples, 0.01%)</title><rect x="50.1464%" y="933" width="0.0146%" height="15" fill="rgb(249,137,25)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="943.50"></text></g><g><title>os::PlatformEvent::park (22 samples, 0.01%)</title><rect x="50.1464%" y="917" width="0.0146%" height="15" fill="rgb(239,155,26)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="927.50"></text></g><g><title>__pthread_cond_wait (22 samples, 0.01%)</title><rect x="50.1464%" y="901" width="0.0146%" height="15" fill="rgb(227,85,46)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (22 samples, 0.01%)</title><rect x="50.1464%" y="885" width="0.0146%" height="15" fill="rgb(251,107,43)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="895.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.01%)</title><rect x="50.1464%" y="869" width="0.0146%" height="15" fill="rgb(234,170,33)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="50.1464%" y="853" width="0.0146%" height="15" fill="rgb(206,29,35)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="863.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="50.1464%" y="837" width="0.0146%" height="15" fill="rgb(227,138,25)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="847.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.01%)</title><rect x="50.1464%" y="821" width="0.0146%" height="15" fill="rgb(249,131,35)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="831.50"></text></g><g><title>do_futex (22 samples, 0.01%)</title><rect x="50.1464%" y="805" width="0.0146%" height="15" fill="rgb(239,6,40)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="815.50"></text></g><g><title>futex_wait (22 samples, 0.01%)</title><rect x="50.1464%" y="789" width="0.0146%" height="15" fill="rgb(246,136,47)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="799.50"></text></g><g><title>futex_wait_queue_me (22 samples, 0.01%)</title><rect x="50.1464%" y="773" width="0.0146%" height="15" fill="rgb(253,58,26)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="783.50"></text></g><g><title>schedule (22 samples, 0.01%)</title><rect x="50.1464%" y="757" width="0.0146%" height="15" fill="rgb(237,141,10)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="767.50"></text></g><g><title>__schedule (21 samples, 0.01%)</title><rect x="50.1471%" y="741" width="0.0140%" height="15" fill="rgb(234,156,12)" fg:x="75350" fg:w="21"/><text x="50.3971%" y="751.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="50.1471%" y="725" width="0.0140%" height="15" fill="rgb(243,224,36)" fg:x="75350" fg:w="21"/><text x="50.3971%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="50.1477%" y="709" width="0.0133%" height="15" fill="rgb(205,229,51)" fg:x="75351" fg:w="20"/><text x="50.3977%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="50.1477%" y="693" width="0.0133%" height="15" fill="rgb(223,189,4)" fg:x="75351" fg:w="20"/><text x="50.3977%" y="703.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="50.1477%" y="677" width="0.0133%" height="15" fill="rgb(249,167,54)" fg:x="75351" fg:w="20"/><text x="50.3977%" y="687.50"></text></g><g><title>__GI___clone (38 samples, 0.03%)</title><rect x="50.1398%" y="997" width="0.0253%" height="15" fill="rgb(218,34,28)" fg:x="75339" fg:w="38"/><text x="50.3898%" y="1007.50"></text></g><g><title>start_thread (29 samples, 0.02%)</title><rect x="50.1457%" y="981" width="0.0193%" height="15" fill="rgb(232,109,42)" fg:x="75348" fg:w="29"/><text x="50.3957%" y="991.50"></text></g><g><title>thread_native_entry (29 samples, 0.02%)</title><rect x="50.1457%" y="965" width="0.0193%" height="15" fill="rgb(248,214,46)" fg:x="75348" fg:w="29"/><text x="50.3957%" y="975.50"></text></g><g><title>globbing_pool-7 (190 samples, 0.13%)</title><rect x="50.0393%" y="1013" width="0.1264%" height="15" fill="rgb(244,216,40)" fg:x="75188" fg:w="190"/><text x="50.2893%" y="1023.50"></text></g><g><title>JVM_StartThread (17 samples, 0.01%)</title><rect x="50.1837%" y="981" width="0.0113%" height="15" fill="rgb(231,226,31)" fg:x="75405" fg:w="17"/><text x="50.4337%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (38 samples, 0.03%)</title><rect x="50.2030%" y="757" width="0.0253%" height="15" fill="rgb(238,38,43)" fg:x="75434" fg:w="38"/><text x="50.4530%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (38 samples, 0.03%)</title><rect x="50.2030%" y="741" width="0.0253%" height="15" fill="rgb(208,88,43)" fg:x="75434" fg:w="38"/><text x="50.4530%" y="751.50"></text></g><g><title>native_write_msr (38 samples, 0.03%)</title><rect x="50.2030%" y="725" width="0.0253%" height="15" fill="rgb(205,136,37)" fg:x="75434" fg:w="38"/><text x="50.4530%" y="735.50"></text></g><g><title>finish_task_switch (42 samples, 0.03%)</title><rect x="50.2017%" y="773" width="0.0280%" height="15" fill="rgb(237,34,14)" fg:x="75432" fg:w="42"/><text x="50.4517%" y="783.50"></text></g><g><title>do_syscall_64 (46 samples, 0.03%)</title><rect x="50.2010%" y="885" width="0.0306%" height="15" fill="rgb(236,193,44)" fg:x="75431" fg:w="46"/><text x="50.4510%" y="895.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.03%)</title><rect x="50.2010%" y="869" width="0.0306%" height="15" fill="rgb(231,48,10)" fg:x="75431" fg:w="46"/><text x="50.4510%" y="879.50"></text></g><g><title>do_futex (46 samples, 0.03%)</title><rect x="50.2010%" y="853" width="0.0306%" height="15" fill="rgb(213,141,34)" fg:x="75431" fg:w="46"/><text x="50.4510%" y="863.50"></text></g><g><title>futex_wait (46 samples, 0.03%)</title><rect x="50.2010%" y="837" width="0.0306%" height="15" fill="rgb(249,130,34)" fg:x="75431" fg:w="46"/><text x="50.4510%" y="847.50"></text></g><g><title>futex_wait_queue_me (45 samples, 0.03%)</title><rect x="50.2017%" y="821" width="0.0299%" height="15" fill="rgb(219,42,41)" fg:x="75432" fg:w="45"/><text x="50.4517%" y="831.50"></text></g><g><title>schedule (45 samples, 0.03%)</title><rect x="50.2017%" y="805" width="0.0299%" height="15" fill="rgb(224,100,54)" fg:x="75432" fg:w="45"/><text x="50.4517%" y="815.50"></text></g><g><title>__schedule (45 samples, 0.03%)</title><rect x="50.2017%" y="789" width="0.0299%" height="15" fill="rgb(229,200,27)" fg:x="75432" fg:w="45"/><text x="50.4517%" y="799.50"></text></g><g><title>Unsafe_Park (56 samples, 0.04%)</title><rect x="50.1950%" y="981" width="0.0373%" height="15" fill="rgb(217,118,10)" fg:x="75422" fg:w="56"/><text x="50.4450%" y="991.50"></text></g><g><title>Parker::park (56 samples, 0.04%)</title><rect x="50.1950%" y="965" width="0.0373%" height="15" fill="rgb(206,22,3)" fg:x="75422" fg:w="56"/><text x="50.4450%" y="975.50"></text></g><g><title>__pthread_cond_wait (47 samples, 0.03%)</title><rect x="50.2010%" y="949" width="0.0313%" height="15" fill="rgb(232,163,46)" fg:x="75431" fg:w="47"/><text x="50.4510%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (47 samples, 0.03%)</title><rect x="50.2010%" y="933" width="0.0313%" height="15" fill="rgb(206,95,13)" fg:x="75431" fg:w="47"/><text x="50.4510%" y="943.50"></text></g><g><title>futex_wait_cancelable (47 samples, 0.03%)</title><rect x="50.2010%" y="917" width="0.0313%" height="15" fill="rgb(253,154,18)" fg:x="75431" fg:w="47"/><text x="50.4510%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.03%)</title><rect x="50.2010%" y="901" width="0.0313%" height="15" fill="rgb(219,32,23)" fg:x="75431" fg:w="47"/><text x="50.4510%" y="911.50"></text></g><g><title>[perf-943567.map] (101 samples, 0.07%)</title><rect x="50.1684%" y="997" width="0.0672%" height="15" fill="rgb(230,191,45)" fg:x="75382" fg:w="101"/><text x="50.4184%" y="1007.50"></text></g><g><title>globbing_pool-8 (106 samples, 0.07%)</title><rect x="50.1657%" y="1013" width="0.0705%" height="15" fill="rgb(229,64,36)" fg:x="75378" fg:w="106"/><text x="50.4157%" y="1023.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="50.2496%" y="757" width="0.0140%" height="15" fill="rgb(205,129,25)" fg:x="75504" fg:w="21"/><text x="50.4996%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (21 samples, 0.01%)</title><rect x="50.2496%" y="741" width="0.0140%" height="15" fill="rgb(254,112,7)" fg:x="75504" fg:w="21"/><text x="50.4996%" y="751.50"></text></g><g><title>native_write_msr (21 samples, 0.01%)</title><rect x="50.2496%" y="725" width="0.0140%" height="15" fill="rgb(226,53,48)" fg:x="75504" fg:w="21"/><text x="50.4996%" y="735.50"></text></g><g><title>finish_task_switch (24 samples, 0.02%)</title><rect x="50.2489%" y="773" width="0.0160%" height="15" fill="rgb(214,153,38)" fg:x="75503" fg:w="24"/><text x="50.4989%" y="783.50"></text></g><g><title>Unsafe_Park (28 samples, 0.02%)</title><rect x="50.2476%" y="981" width="0.0186%" height="15" fill="rgb(243,101,7)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="991.50"></text></g><g><title>Parker::park (28 samples, 0.02%)</title><rect x="50.2476%" y="965" width="0.0186%" height="15" fill="rgb(240,140,22)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="975.50"></text></g><g><title>__pthread_cond_wait (28 samples, 0.02%)</title><rect x="50.2476%" y="949" width="0.0186%" height="15" fill="rgb(235,114,2)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (28 samples, 0.02%)</title><rect x="50.2476%" y="933" width="0.0186%" height="15" fill="rgb(242,59,12)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="943.50"></text></g><g><title>futex_wait_cancelable (28 samples, 0.02%)</title><rect x="50.2476%" y="917" width="0.0186%" height="15" fill="rgb(252,134,9)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="50.2476%" y="901" width="0.0186%" height="15" fill="rgb(236,4,44)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="911.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="50.2476%" y="885" width="0.0186%" height="15" fill="rgb(254,172,41)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="895.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.02%)</title><rect x="50.2476%" y="869" width="0.0186%" height="15" fill="rgb(244,63,20)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="879.50"></text></g><g><title>do_futex (28 samples, 0.02%)</title><rect x="50.2476%" y="853" width="0.0186%" height="15" fill="rgb(250,73,31)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="863.50"></text></g><g><title>futex_wait (28 samples, 0.02%)</title><rect x="50.2476%" y="837" width="0.0186%" height="15" fill="rgb(241,38,36)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="847.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.02%)</title><rect x="50.2476%" y="821" width="0.0186%" height="15" fill="rgb(245,211,2)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="831.50"></text></g><g><title>schedule (28 samples, 0.02%)</title><rect x="50.2476%" y="805" width="0.0186%" height="15" fill="rgb(206,120,28)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="815.50"></text></g><g><title>__schedule (27 samples, 0.02%)</title><rect x="50.2482%" y="789" width="0.0180%" height="15" fill="rgb(211,59,34)" fg:x="75502" fg:w="27"/><text x="50.4982%" y="799.50"></text></g><g><title>[perf-943567.map] (43 samples, 0.03%)</title><rect x="50.2389%" y="997" width="0.0286%" height="15" fill="rgb(233,168,5)" fg:x="75488" fg:w="43"/><text x="50.4889%" y="1007.50"></text></g><g><title>globbing_pool-9 (49 samples, 0.03%)</title><rect x="50.2363%" y="1013" width="0.0326%" height="15" fill="rgb(234,33,13)" fg:x="75484" fg:w="49"/><text x="50.4863%" y="1023.50"></text></g><g><title>[anon] (248 samples, 0.17%)</title><rect x="50.2742%" y="997" width="0.1650%" height="15" fill="rgb(231,150,26)" fg:x="75541" fg:w="248"/><text x="50.5242%" y="1007.50"></text></g><g><title>[libunix_jni.so] (16 samples, 0.01%)</title><rect x="50.4392%" y="997" width="0.0106%" height="15" fill="rgb(217,191,4)" fg:x="75789" fg:w="16"/><text x="50.6892%" y="1007.50"></text></g><g><title>ClassFileParser::parse_constant_pool (38 samples, 0.03%)</title><rect x="51.7603%" y="837" width="0.0253%" height="15" fill="rgb(246,198,38)" fg:x="77774" fg:w="38"/><text x="52.0103%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (37 samples, 0.02%)</title><rect x="51.7610%" y="821" width="0.0246%" height="15" fill="rgb(245,64,37)" fg:x="77775" fg:w="37"/><text x="52.0110%" y="831.50"></text></g><g><title>SymbolTable::lookup_only (31 samples, 0.02%)</title><rect x="51.7650%" y="805" width="0.0206%" height="15" fill="rgb(250,30,36)" fg:x="77781" fg:w="31"/><text x="52.0150%" y="815.50"></text></g><g><title>ClassFileParser::ClassFileParser (62 samples, 0.04%)</title><rect x="51.7596%" y="869" width="0.0413%" height="15" fill="rgb(217,86,53)" fg:x="77773" fg:w="62"/><text x="52.0096%" y="879.50"></text></g><g><title>ClassFileParser::parse_stream (62 samples, 0.04%)</title><rect x="51.7596%" y="853" width="0.0413%" height="15" fill="rgb(228,157,16)" fg:x="77773" fg:w="62"/><text x="52.0096%" y="863.50"></text></g><g><title>KlassFactory::create_from_stream (21 samples, 0.01%)</title><rect x="51.8142%" y="789" width="0.0140%" height="15" fill="rgb(217,59,31)" fg:x="77855" fg:w="21"/><text x="52.0642%" y="799.50"></text></g><g><title>ClassLoader::load_class (25 samples, 0.02%)</title><rect x="51.8122%" y="805" width="0.0166%" height="15" fill="rgb(237,138,41)" fg:x="77852" fg:w="25"/><text x="52.0622%" y="815.50"></text></g><g><title>ClassLoader::load_class (123 samples, 0.08%)</title><rect x="51.7477%" y="901" width="0.0819%" height="15" fill="rgb(227,91,49)" fg:x="77755" fg:w="123"/><text x="51.9977%" y="911.50"></text></g><g><title>KlassFactory::create_from_stream (105 samples, 0.07%)</title><rect x="51.7596%" y="885" width="0.0699%" height="15" fill="rgb(247,21,44)" fg:x="77773" fg:w="105"/><text x="52.0096%" y="895.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (29 samples, 0.02%)</title><rect x="51.8102%" y="869" width="0.0193%" height="15" fill="rgb(219,210,51)" fg:x="77849" fg:w="29"/><text x="52.0602%" y="879.50"></text></g><g><title>SystemDictionary::resolve_super_or_fail (27 samples, 0.02%)</title><rect x="51.8116%" y="853" width="0.0180%" height="15" fill="rgb(209,140,6)" fg:x="77851" fg:w="27"/><text x="52.0616%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (26 samples, 0.02%)</title><rect x="51.8122%" y="837" width="0.0173%" height="15" fill="rgb(221,188,24)" fg:x="77852" fg:w="26"/><text x="52.0622%" y="847.50"></text></g><g><title>SystemDictionary::load_instance_class (26 samples, 0.02%)</title><rect x="51.8122%" y="821" width="0.0173%" height="15" fill="rgb(232,154,20)" fg:x="77852" fg:w="26"/><text x="52.0622%" y="831.50"></text></g><g><title>ConstantPool::klass_at_impl (156 samples, 0.10%)</title><rect x="51.7377%" y="965" width="0.1038%" height="15" fill="rgb(244,137,50)" fg:x="77740" fg:w="156"/><text x="51.9877%" y="975.50"></text></g><g><title>SystemDictionary::resolve_or_fail (152 samples, 0.10%)</title><rect x="51.7403%" y="949" width="0.1012%" height="15" fill="rgb(225,185,43)" fg:x="77744" fg:w="152"/><text x="51.9903%" y="959.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (152 samples, 0.10%)</title><rect x="51.7403%" y="933" width="0.1012%" height="15" fill="rgb(213,205,38)" fg:x="77744" fg:w="152"/><text x="51.9903%" y="943.50"></text></g><g><title>SystemDictionary::load_instance_class (141 samples, 0.09%)</title><rect x="51.7477%" y="917" width="0.0938%" height="15" fill="rgb(236,73,12)" fg:x="77755" fg:w="141"/><text x="51.9977%" y="927.50"></text></g><g><title>InstanceKlass::link_class_impl (28 samples, 0.02%)</title><rect x="51.8462%" y="933" width="0.0186%" height="15" fill="rgb(235,219,13)" fg:x="77903" fg:w="28"/><text x="52.0962%" y="943.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (30 samples, 0.02%)</title><rect x="51.8661%" y="885" width="0.0200%" height="15" fill="rgb(218,59,36)" fg:x="77933" fg:w="30"/><text x="52.1161%" y="895.50"></text></g><g><title>Method::link_method (33 samples, 0.02%)</title><rect x="51.8648%" y="917" width="0.0220%" height="15" fill="rgb(205,110,39)" fg:x="77931" fg:w="33"/><text x="52.1148%" y="927.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (32 samples, 0.02%)</title><rect x="51.8655%" y="901" width="0.0213%" height="15" fill="rgb(218,206,42)" fg:x="77932" fg:w="32"/><text x="52.1155%" y="911.50"></text></g><g><title>InstanceKlass::link_methods (34 samples, 0.02%)</title><rect x="51.8648%" y="933" width="0.0226%" height="15" fill="rgb(248,125,24)" fg:x="77931" fg:w="34"/><text x="52.1148%" y="943.50"></text></g><g><title>Rewriter::rewrite_bytecodes (33 samples, 0.02%)</title><rect x="51.8981%" y="901" width="0.0220%" height="15" fill="rgb(242,28,27)" fg:x="77981" fg:w="33"/><text x="52.1481%" y="911.50"></text></g><g><title>Rewriter::scan_method (19 samples, 0.01%)</title><rect x="51.9074%" y="885" width="0.0126%" height="15" fill="rgb(216,228,15)" fg:x="77995" fg:w="19"/><text x="52.1574%" y="895.50"></text></g><g><title>Rewriter::rewrite (48 samples, 0.03%)</title><rect x="51.8888%" y="933" width="0.0319%" height="15" fill="rgb(235,116,46)" fg:x="77967" fg:w="48"/><text x="52.1388%" y="943.50"></text></g><g><title>Rewriter::Rewriter (47 samples, 0.03%)</title><rect x="51.8894%" y="917" width="0.0313%" height="15" fill="rgb(224,18,32)" fg:x="77968" fg:w="47"/><text x="52.1394%" y="927.50"></text></g><g><title>InstanceKlass::link_class_impl (139 samples, 0.09%)</title><rect x="51.8462%" y="949" width="0.0925%" height="15" fill="rgb(252,5,12)" fg:x="77903" fg:w="139"/><text x="52.0962%" y="959.50"></text></g><g><title>InstanceKlass::initialize_impl (145 samples, 0.10%)</title><rect x="51.8442%" y="965" width="0.0965%" height="15" fill="rgb(251,36,5)" fg:x="77900" fg:w="145"/><text x="52.0942%" y="975.50"></text></g><g><title>InterpreterRuntime::_new (316 samples, 0.21%)</title><rect x="51.7363%" y="981" width="0.2103%" height="15" fill="rgb(217,53,14)" fg:x="77738" fg:w="316"/><text x="51.9863%" y="991.50"></text></g><g><title>InterpreterRuntime::anewarray (34 samples, 0.02%)</title><rect x="51.9467%" y="981" width="0.0226%" height="15" fill="rgb(215,86,45)" fg:x="78054" fg:w="34"/><text x="52.1967%" y="991.50"></text></g><g><title>InterpreterRuntime::build_method_counters (21 samples, 0.01%)</title><rect x="51.9699%" y="981" width="0.0140%" height="15" fill="rgb(242,169,11)" fg:x="78089" fg:w="21"/><text x="52.2199%" y="991.50"></text></g><g><title>Method::build_method_counters (17 samples, 0.01%)</title><rect x="51.9726%" y="965" width="0.0113%" height="15" fill="rgb(211,213,45)" fg:x="78093" fg:w="17"/><text x="52.2226%" y="975.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (56 samples, 0.04%)</title><rect x="51.9839%" y="981" width="0.0373%" height="15" fill="rgb(205,88,11)" fg:x="78110" fg:w="56"/><text x="52.2339%" y="991.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (56 samples, 0.04%)</title><rect x="51.9839%" y="965" width="0.0373%" height="15" fill="rgb(252,69,26)" fg:x="78110" fg:w="56"/><text x="52.2339%" y="975.50"></text></g><g><title>TieredThresholdPolicy::event (47 samples, 0.03%)</title><rect x="51.9899%" y="949" width="0.0313%" height="15" fill="rgb(246,123,37)" fg:x="78119" fg:w="47"/><text x="52.2399%" y="959.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (43 samples, 0.03%)</title><rect x="51.9926%" y="933" width="0.0286%" height="15" fill="rgb(212,205,5)" fg:x="78123" fg:w="43"/><text x="52.2426%" y="943.50"></text></g><g><title>InterpreterRuntime::ldc (24 samples, 0.02%)</title><rect x="52.0212%" y="981" width="0.0160%" height="15" fill="rgb(253,148,0)" fg:x="78166" fg:w="24"/><text x="52.2712%" y="991.50"></text></g><g><title>ClassLoader::load_class (21 samples, 0.01%)</title><rect x="52.0744%" y="869" width="0.0140%" height="15" fill="rgb(239,22,4)" fg:x="78246" fg:w="21"/><text x="52.3244%" y="879.50"></text></g><g><title>KlassFactory::create_from_stream (18 samples, 0.01%)</title><rect x="52.0764%" y="853" width="0.0120%" height="15" fill="rgb(226,26,53)" fg:x="78249" fg:w="18"/><text x="52.3264%" y="863.50"></text></g><g><title>ConstantPool::klass_ref_at (29 samples, 0.02%)</title><rect x="52.0704%" y="933" width="0.0193%" height="15" fill="rgb(225,229,45)" fg:x="78240" fg:w="29"/><text x="52.3204%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_fail (27 samples, 0.02%)</title><rect x="52.0718%" y="917" width="0.0180%" height="15" fill="rgb(220,60,37)" fg:x="78242" fg:w="27"/><text x="52.3218%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (25 samples, 0.02%)</title><rect x="52.0731%" y="901" width="0.0166%" height="15" fill="rgb(217,180,35)" fg:x="78244" fg:w="25"/><text x="52.3231%" y="911.50"></text></g><g><title>SystemDictionary::load_instance_class (23 samples, 0.02%)</title><rect x="52.0744%" y="885" width="0.0153%" height="15" fill="rgb(229,7,53)" fg:x="78246" fg:w="23"/><text x="52.3244%" y="895.50"></text></g><g><title>InstanceKlass::find_local_field (19 samples, 0.01%)</title><rect x="52.0917%" y="901" width="0.0126%" height="15" fill="rgb(254,137,3)" fg:x="78272" fg:w="19"/><text x="52.3417%" y="911.50"></text></g><g><title>InstanceKlass::find_field (22 samples, 0.01%)</title><rect x="52.0904%" y="917" width="0.0146%" height="15" fill="rgb(215,140,41)" fg:x="78270" fg:w="22"/><text x="52.3404%" y="927.50"></text></g><g><title>Rewriter::rewrite (16 samples, 0.01%)</title><rect x="52.1117%" y="885" width="0.0106%" height="15" fill="rgb(250,80,15)" fg:x="78302" fg:w="16"/><text x="52.3617%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (33 samples, 0.02%)</title><rect x="52.1057%" y="901" width="0.0220%" height="15" fill="rgb(252,191,6)" fg:x="78293" fg:w="33"/><text x="52.3557%" y="911.50"></text></g><g><title>InstanceKlass::initialize_impl (35 samples, 0.02%)</title><rect x="52.1050%" y="917" width="0.0233%" height="15" fill="rgb(246,217,18)" fg:x="78292" fg:w="35"/><text x="52.3550%" y="927.50"></text></g><g><title>LinkResolver::resolve_field (63 samples, 0.04%)</title><rect x="52.0897%" y="933" width="0.0419%" height="15" fill="rgb(223,93,7)" fg:x="78269" fg:w="63"/><text x="52.3397%" y="943.50"></text></g><g><title>LinkResolver::resolve_field_access (96 samples, 0.06%)</title><rect x="52.0691%" y="949" width="0.0639%" height="15" fill="rgb(225,55,52)" fg:x="78238" fg:w="96"/><text x="52.3191%" y="959.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (111 samples, 0.07%)</title><rect x="52.0625%" y="965" width="0.0739%" height="15" fill="rgb(240,31,24)" fg:x="78228" fg:w="111"/><text x="52.3125%" y="975.50"></text></g><g><title>ClassFileParser::parse_constant_pool (35 samples, 0.02%)</title><rect x="52.1756%" y="805" width="0.0233%" height="15" fill="rgb(205,56,52)" fg:x="78398" fg:w="35"/><text x="52.4256%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (35 samples, 0.02%)</title><rect x="52.1756%" y="789" width="0.0233%" height="15" fill="rgb(246,146,12)" fg:x="78398" fg:w="35"/><text x="52.4256%" y="799.50"></text></g><g><title>SymbolTable::lookup_only (27 samples, 0.02%)</title><rect x="52.1809%" y="773" width="0.0180%" height="15" fill="rgb(239,84,36)" fg:x="78406" fg:w="27"/><text x="52.4309%" y="783.50"></text></g><g><title>ClassFileParser::ClassFileParser (44 samples, 0.03%)</title><rect x="52.1756%" y="837" width="0.0293%" height="15" fill="rgb(207,41,40)" fg:x="78398" fg:w="44"/><text x="52.4256%" y="847.50"></text></g><g><title>ClassFileParser::parse_stream (44 samples, 0.03%)</title><rect x="52.1756%" y="821" width="0.0293%" height="15" fill="rgb(241,179,25)" fg:x="78398" fg:w="44"/><text x="52.4256%" y="831.50"></text></g><g><title>ClassLoader::load_class (54 samples, 0.04%)</title><rect x="52.1743%" y="869" width="0.0359%" height="15" fill="rgb(210,0,34)" fg:x="78396" fg:w="54"/><text x="52.4243%" y="879.50"></text></g><g><title>KlassFactory::create_from_stream (52 samples, 0.03%)</title><rect x="52.1756%" y="853" width="0.0346%" height="15" fill="rgb(225,217,29)" fg:x="78398" fg:w="52"/><text x="52.4256%" y="863.50"></text></g><g><title>ConstantPool::klass_ref_at (78 samples, 0.05%)</title><rect x="52.1603%" y="933" width="0.0519%" height="15" fill="rgb(216,191,38)" fg:x="78375" fg:w="78"/><text x="52.4103%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_fail (68 samples, 0.05%)</title><rect x="52.1669%" y="917" width="0.0453%" height="15" fill="rgb(232,140,52)" fg:x="78385" fg:w="68"/><text x="52.4169%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (67 samples, 0.04%)</title><rect x="52.1676%" y="901" width="0.0446%" height="15" fill="rgb(223,158,51)" fg:x="78386" fg:w="67"/><text x="52.4176%" y="911.50"></text></g><g><title>SystemDictionary::load_instance_class (59 samples, 0.04%)</title><rect x="52.1729%" y="885" width="0.0393%" height="15" fill="rgb(235,29,51)" fg:x="78394" fg:w="59"/><text x="52.4229%" y="895.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (23 samples, 0.02%)</title><rect x="52.2195%" y="933" width="0.0153%" height="15" fill="rgb(215,181,18)" fg:x="78464" fg:w="23"/><text x="52.4695%" y="943.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (23 samples, 0.02%)</title><rect x="52.2421%" y="917" width="0.0153%" height="15" fill="rgb(227,125,34)" fg:x="78498" fg:w="23"/><text x="52.4921%" y="927.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (41 samples, 0.03%)</title><rect x="52.2348%" y="933" width="0.0273%" height="15" fill="rgb(230,197,49)" fg:x="78487" fg:w="41"/><text x="52.4848%" y="943.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (16 samples, 0.01%)</title><rect x="52.2714%" y="837" width="0.0106%" height="15" fill="rgb(239,141,16)" fg:x="78542" fg:w="16"/><text x="52.5214%" y="847.50"></text></g><g><title>InstanceKlass::link_methods (17 samples, 0.01%)</title><rect x="52.2714%" y="885" width="0.0113%" height="15" fill="rgb(225,105,43)" fg:x="78542" fg:w="17"/><text x="52.5214%" y="895.50"></text></g><g><title>Method::link_method (17 samples, 0.01%)</title><rect x="52.2714%" y="869" width="0.0113%" height="15" fill="rgb(214,131,14)" fg:x="78542" fg:w="17"/><text x="52.5214%" y="879.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (17 samples, 0.01%)</title><rect x="52.2714%" y="853" width="0.0113%" height="15" fill="rgb(229,177,11)" fg:x="78542" fg:w="17"/><text x="52.5214%" y="863.50"></text></g><g><title>Rewriter::rewrite_bytecodes (27 samples, 0.02%)</title><rect x="52.2874%" y="853" width="0.0180%" height="15" fill="rgb(231,180,14)" fg:x="78566" fg:w="27"/><text x="52.5374%" y="863.50"></text></g><g><title>Rewriter::scan_method (16 samples, 0.01%)</title><rect x="52.2947%" y="837" width="0.0106%" height="15" fill="rgb(232,88,2)" fg:x="78577" fg:w="16"/><text x="52.5447%" y="847.50"></text></g><g><title>Rewriter::rewrite (35 samples, 0.02%)</title><rect x="52.2834%" y="885" width="0.0233%" height="15" fill="rgb(205,220,8)" fg:x="78560" fg:w="35"/><text x="52.5334%" y="895.50"></text></g><g><title>Rewriter::Rewriter (34 samples, 0.02%)</title><rect x="52.2841%" y="869" width="0.0226%" height="15" fill="rgb(225,23,53)" fg:x="78561" fg:w="34"/><text x="52.5341%" y="879.50"></text></g><g><title>InstanceKlass::link_class_impl (73 samples, 0.05%)</title><rect x="52.2648%" y="901" width="0.0486%" height="15" fill="rgb(213,62,29)" fg:x="78532" fg:w="73"/><text x="52.5148%" y="911.50"></text></g><g><title>InstanceKlass::initialize_impl (75 samples, 0.05%)</title><rect x="52.2641%" y="917" width="0.0499%" height="15" fill="rgb(227,75,7)" fg:x="78531" fg:w="75"/><text x="52.5141%" y="927.50"></text></g><g><title>LinkResolver::resolve_method (17 samples, 0.01%)</title><rect x="52.3154%" y="917" width="0.0113%" height="15" fill="rgb(207,105,14)" fg:x="78608" fg:w="17"/><text x="52.5654%" y="927.50"></text></g><g><title>LinkResolver::resolve_static_call (98 samples, 0.07%)</title><rect x="52.2621%" y="933" width="0.0652%" height="15" fill="rgb(245,62,29)" fg:x="78528" fg:w="98"/><text x="52.5121%" y="943.50"></text></g><g><title>LinkResolver::resolve_invoke (261 samples, 0.17%)</title><rect x="52.1596%" y="949" width="0.1737%" height="15" fill="rgb(236,202,4)" fg:x="78374" fg:w="261"/><text x="52.4096%" y="959.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (308 samples, 0.20%)</title><rect x="52.1363%" y="965" width="0.2050%" height="15" fill="rgb(250,67,1)" fg:x="78339" fg:w="308"/><text x="52.3863%" y="975.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (31 samples, 0.02%)</title><rect x="52.3446%" y="901" width="0.0206%" height="15" fill="rgb(253,115,44)" fg:x="78652" fg:w="31"/><text x="52.5946%" y="911.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (31 samples, 0.02%)</title><rect x="52.3446%" y="885" width="0.0206%" height="15" fill="rgb(251,139,18)" fg:x="78652" fg:w="31"/><text x="52.5946%" y="895.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (21 samples, 0.01%)</title><rect x="52.3513%" y="869" width="0.0140%" height="15" fill="rgb(218,22,32)" fg:x="78662" fg:w="21"/><text x="52.6013%" y="879.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (42 samples, 0.03%)</title><rect x="52.3446%" y="917" width="0.0280%" height="15" fill="rgb(243,53,5)" fg:x="78652" fg:w="42"/><text x="52.5946%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (61 samples, 0.04%)</title><rect x="52.3413%" y="965" width="0.0406%" height="15" fill="rgb(227,56,16)" fg:x="78647" fg:w="61"/><text x="52.5913%" y="975.50"></text></g><g><title>LinkResolver::resolve_invoke (57 samples, 0.04%)</title><rect x="52.3440%" y="949" width="0.0379%" height="15" fill="rgb(245,53,0)" fg:x="78651" fg:w="57"/><text x="52.5940%" y="959.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (57 samples, 0.04%)</title><rect x="52.3440%" y="933" width="0.0379%" height="15" fill="rgb(216,170,35)" fg:x="78651" fg:w="57"/><text x="52.5940%" y="943.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (489 samples, 0.33%)</title><rect x="52.0591%" y="981" width="0.3254%" height="15" fill="rgb(211,200,8)" fg:x="78223" fg:w="489"/><text x="52.3091%" y="991.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (31 samples, 0.02%)</title><rect x="52.3859%" y="965" width="0.0206%" height="15" fill="rgb(228,204,44)" fg:x="78714" fg:w="31"/><text x="52.6359%" y="975.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (30 samples, 0.02%)</title><rect x="52.3866%" y="949" width="0.0200%" height="15" fill="rgb(214,121,17)" fg:x="78715" fg:w="30"/><text x="52.6366%" y="959.50"></text></g><g><title>ConstantPool::string_at_impl (27 samples, 0.02%)</title><rect x="52.3886%" y="933" width="0.0180%" height="15" fill="rgb(233,64,38)" fg:x="78718" fg:w="27"/><text x="52.6386%" y="943.50"></text></g><g><title>StringTable::intern (25 samples, 0.02%)</title><rect x="52.3899%" y="917" width="0.0166%" height="15" fill="rgb(253,54,19)" fg:x="78720" fg:w="25"/><text x="52.6399%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (34 samples, 0.02%)</title><rect x="52.3846%" y="981" width="0.0226%" height="15" fill="rgb(253,94,18)" fg:x="78712" fg:w="34"/><text x="52.6346%" y="991.50"></text></g><g><title>JVM_FindLoadedClass (32 samples, 0.02%)</title><rect x="52.4325%" y="981" width="0.0213%" height="15" fill="rgb(227,57,52)" fg:x="78784" fg:w="32"/><text x="52.6825%" y="991.50"></text></g><g><title>InstanceKlass::link_class_impl (18 samples, 0.01%)</title><rect x="52.4584%" y="949" width="0.0120%" height="15" fill="rgb(230,228,50)" fg:x="78823" fg:w="18"/><text x="52.7084%" y="959.50"></text></g><g><title>JVM_GetClassDeclaredConstructors (21 samples, 0.01%)</title><rect x="52.4584%" y="981" width="0.0140%" height="15" fill="rgb(217,205,27)" fg:x="78823" fg:w="21"/><text x="52.7084%" y="991.50"></text></g><g><title>get_class_declared_methods_helper (21 samples, 0.01%)</title><rect x="52.4584%" y="965" width="0.0140%" height="15" fill="rgb(252,71,50)" fg:x="78823" fg:w="21"/><text x="52.7084%" y="975.50"></text></g><g><title>get_parameter_types (22 samples, 0.01%)</title><rect x="52.4897%" y="933" width="0.0146%" height="15" fill="rgb(209,86,4)" fg:x="78870" fg:w="22"/><text x="52.7397%" y="943.50"></text></g><g><title>JVM_GetClassDeclaredMethods (40 samples, 0.03%)</title><rect x="52.4784%" y="981" width="0.0266%" height="15" fill="rgb(229,94,0)" fg:x="78853" fg:w="40"/><text x="52.7284%" y="991.50"></text></g><g><title>get_class_declared_methods_helper (40 samples, 0.03%)</title><rect x="52.4784%" y="965" width="0.0266%" height="15" fill="rgb(252,223,21)" fg:x="78853" fg:w="40"/><text x="52.7284%" y="975.50"></text></g><g><title>Reflection::new_method (30 samples, 0.02%)</title><rect x="52.4851%" y="949" width="0.0200%" height="15" fill="rgb(230,210,4)" fg:x="78863" fg:w="30"/><text x="52.7351%" y="959.50"></text></g><g><title>JVM_InitClassName (23 samples, 0.02%)</title><rect x="52.5077%" y="981" width="0.0153%" height="15" fill="rgb(240,149,38)" fg:x="78897" fg:w="23"/><text x="52.7577%" y="991.50"></text></g><g><title>java_lang_Class::name (21 samples, 0.01%)</title><rect x="52.5090%" y="965" width="0.0140%" height="15" fill="rgb(254,105,20)" fg:x="78899" fg:w="21"/><text x="52.7590%" y="975.50"></text></g><g><title>__pthread_cond_wait (27 samples, 0.02%)</title><rect x="52.5403%" y="917" width="0.0180%" height="15" fill="rgb(253,87,46)" fg:x="78946" fg:w="27"/><text x="52.7903%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.02%)</title><rect x="52.5403%" y="901" width="0.0180%" height="15" fill="rgb(253,116,33)" fg:x="78946" fg:w="27"/><text x="52.7903%" y="911.50"></text></g><g><title>futex_wait_cancelable (27 samples, 0.02%)</title><rect x="52.5403%" y="885" width="0.0180%" height="15" fill="rgb(229,198,5)" fg:x="78946" fg:w="27"/><text x="52.7903%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="52.5403%" y="869" width="0.0180%" height="15" fill="rgb(242,38,37)" fg:x="78946" fg:w="27"/><text x="52.7903%" y="879.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="52.5403%" y="853" width="0.0180%" height="15" fill="rgb(242,69,53)" fg:x="78946" fg:w="27"/><text x="52.7903%" y="863.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.02%)</title><rect x="52.5403%" y="837" width="0.0180%" height="15" fill="rgb(249,80,16)" fg:x="78946" fg:w="27"/><text x="52.7903%" y="847.50"></text></g><g><title>do_futex (26 samples, 0.02%)</title><rect x="52.5410%" y="821" width="0.0173%" height="15" fill="rgb(206,128,11)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="831.50"></text></g><g><title>futex_wait (26 samples, 0.02%)</title><rect x="52.5410%" y="805" width="0.0173%" height="15" fill="rgb(212,35,20)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="815.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.02%)</title><rect x="52.5410%" y="789" width="0.0173%" height="15" fill="rgb(236,79,13)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="799.50"></text></g><g><title>schedule (26 samples, 0.02%)</title><rect x="52.5410%" y="773" width="0.0173%" height="15" fill="rgb(233,123,3)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="783.50"></text></g><g><title>__schedule (26 samples, 0.02%)</title><rect x="52.5410%" y="757" width="0.0173%" height="15" fill="rgb(214,93,52)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="767.50"></text></g><g><title>finish_task_switch (26 samples, 0.02%)</title><rect x="52.5410%" y="741" width="0.0173%" height="15" fill="rgb(251,37,40)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.02%)</title><rect x="52.5410%" y="725" width="0.0173%" height="15" fill="rgb(227,80,54)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.02%)</title><rect x="52.5416%" y="709" width="0.0166%" height="15" fill="rgb(254,48,11)" fg:x="78948" fg:w="25"/><text x="52.7916%" y="719.50"></text></g><g><title>native_write_msr (25 samples, 0.02%)</title><rect x="52.5416%" y="693" width="0.0166%" height="15" fill="rgb(235,193,26)" fg:x="78948" fg:w="25"/><text x="52.7916%" y="703.50"></text></g><g><title>JVM_MonitorWait (32 samples, 0.02%)</title><rect x="52.5383%" y="981" width="0.0213%" height="15" fill="rgb(229,99,21)" fg:x="78943" fg:w="32"/><text x="52.7883%" y="991.50"></text></g><g><title>ObjectSynchronizer::wait (32 samples, 0.02%)</title><rect x="52.5383%" y="965" width="0.0213%" height="15" fill="rgb(211,140,41)" fg:x="78943" fg:w="32"/><text x="52.7883%" y="975.50"></text></g><g><title>ObjectMonitor::wait (31 samples, 0.02%)</title><rect x="52.5390%" y="949" width="0.0206%" height="15" fill="rgb(240,227,30)" fg:x="78944" fg:w="31"/><text x="52.7890%" y="959.50"></text></g><g><title>os::PlatformEvent::park (29 samples, 0.02%)</title><rect x="52.5403%" y="933" width="0.0193%" height="15" fill="rgb(215,224,45)" fg:x="78946" fg:w="29"/><text x="52.7903%" y="943.50"></text></g><g><title>Java_java_io_RandomAccessFile_seek0 (19 samples, 0.01%)</title><rect x="52.5696%" y="981" width="0.0126%" height="15" fill="rgb(206,123,31)" fg:x="78990" fg:w="19"/><text x="52.8196%" y="991.50"></text></g><g><title>SymbolTable::add (44 samples, 0.03%)</title><rect x="52.6381%" y="837" width="0.0293%" height="15" fill="rgb(210,138,16)" fg:x="79093" fg:w="44"/><text x="52.8881%" y="847.50"></text></g><g><title>SymbolTable::basic_add (42 samples, 0.03%)</title><rect x="52.6395%" y="821" width="0.0280%" height="15" fill="rgb(228,57,28)" fg:x="79095" fg:w="42"/><text x="52.8895%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (518 samples, 0.34%)</title><rect x="52.6188%" y="853" width="0.3447%" height="15" fill="rgb(242,170,10)" fg:x="79064" fg:w="518"/><text x="52.8688%" y="863.50"></text></g><g><title>SymbolTable::lookup_only (445 samples, 0.30%)</title><rect x="52.6674%" y="837" width="0.2962%" height="15" fill="rgb(228,214,39)" fg:x="79137" fg:w="445"/><text x="52.9174%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool (547 samples, 0.36%)</title><rect x="52.6042%" y="869" width="0.3640%" height="15" fill="rgb(218,179,33)" fg:x="79042" fg:w="547"/><text x="52.8542%" y="879.50"></text></g><g><title>ClassFileParser::copy_localvariable_table (24 samples, 0.02%)</title><rect x="53.0048%" y="837" width="0.0160%" height="15" fill="rgb(235,193,39)" fg:x="79644" fg:w="24"/><text x="53.2548%" y="847.50"></text></g><g><title>ConstMethod::allocate (28 samples, 0.02%)</title><rect x="53.0301%" y="821" width="0.0186%" height="15" fill="rgb(219,221,36)" fg:x="79682" fg:w="28"/><text x="53.2801%" y="831.50"></text></g><g><title>Metaspace::allocate (19 samples, 0.01%)</title><rect x="53.0361%" y="805" width="0.0126%" height="15" fill="rgb(248,218,19)" fg:x="79691" fg:w="19"/><text x="53.2861%" y="815.50"></text></g><g><title>Method::allocate (43 samples, 0.03%)</title><rect x="53.0295%" y="837" width="0.0286%" height="15" fill="rgb(205,50,9)" fg:x="79681" fg:w="43"/><text x="53.2795%" y="847.50"></text></g><g><title>ClassFileParser::parse_method (139 samples, 0.09%)</title><rect x="52.9815%" y="853" width="0.0925%" height="15" fill="rgb(238,81,28)" fg:x="79609" fg:w="139"/><text x="53.2315%" y="863.50"></text></g><g><title>ClassFileParser::parse_methods (140 samples, 0.09%)</title><rect x="52.9815%" y="869" width="0.0932%" height="15" fill="rgb(235,110,19)" fg:x="79609" fg:w="140"/><text x="53.2315%" y="879.50"></text></g><g><title>[libc-2.31.so] (16 samples, 0.01%)</title><rect x="53.0767%" y="837" width="0.0106%" height="15" fill="rgb(214,7,14)" fg:x="79752" fg:w="16"/><text x="53.3267%" y="847.50"></text></g><g><title>asm_exc_page_fault (16 samples, 0.01%)</title><rect x="53.0767%" y="821" width="0.0106%" height="15" fill="rgb(211,77,3)" fg:x="79752" fg:w="16"/><text x="53.3267%" y="831.50"></text></g><g><title>ConstantPool::allocate (23 samples, 0.02%)</title><rect x="53.0754%" y="869" width="0.0153%" height="15" fill="rgb(229,5,9)" fg:x="79750" fg:w="23"/><text x="53.3254%" y="879.50"></text></g><g><title>Metaspace::allocate (22 samples, 0.01%)</title><rect x="53.0760%" y="853" width="0.0146%" height="15" fill="rgb(225,90,11)" fg:x="79751" fg:w="22"/><text x="53.3260%" y="863.50"></text></g><g><title>ClassFileParser::parse_stream (739 samples, 0.49%)</title><rect x="52.5995%" y="885" width="0.4918%" height="15" fill="rgb(242,56,8)" fg:x="79035" fg:w="739"/><text x="52.8495%" y="895.50"></text></g><g><title>ClassFileParser::ClassFileParser (742 samples, 0.49%)</title><rect x="52.5982%" y="901" width="0.4938%" height="15" fill="rgb(249,212,39)" fg:x="79033" fg:w="742"/><text x="52.8482%" y="911.50"></text></g><g><title>InstanceKlass::find_method (28 samples, 0.02%)</title><rect x="53.1280%" y="837" width="0.0186%" height="15" fill="rgb(236,90,9)" fg:x="79829" fg:w="28"/><text x="53.3780%" y="847.50"></text></g><g><title>InstanceKlass::find_method_index (27 samples, 0.02%)</title><rect x="53.1286%" y="821" width="0.0180%" height="15" fill="rgb(206,88,35)" fg:x="79830" fg:w="27"/><text x="53.3786%" y="831.50"></text></g><g><title>HierarchyVisitor<FindMethodsByErasedSig>::run (95 samples, 0.06%)</title><rect x="53.1087%" y="853" width="0.0632%" height="15" fill="rgb(205,126,30)" fg:x="79800" fg:w="95"/><text x="53.3587%" y="863.50"></text></g><g><title>resource_allocate_bytes (36 samples, 0.02%)</title><rect x="53.1479%" y="837" width="0.0240%" height="15" fill="rgb(230,176,12)" fg:x="79859" fg:w="36"/><text x="53.3979%" y="847.50"></text></g><g><title>DefaultMethods::generate_default_methods (129 samples, 0.09%)</title><rect x="53.0973%" y="869" width="0.0859%" height="15" fill="rgb(243,19,9)" fg:x="79783" fg:w="129"/><text x="53.3473%" y="879.50"></text></g><g><title>ClassFileParser::fill_instance_klass (169 samples, 0.11%)</title><rect x="53.0920%" y="885" width="0.1125%" height="15" fill="rgb(245,171,17)" fg:x="79775" fg:w="169"/><text x="53.3420%" y="895.50"></text></g><g><title>ClassFileParser::create_instance_klass (184 samples, 0.12%)</title><rect x="53.0920%" y="901" width="0.1225%" height="15" fill="rgb(227,52,21)" fg:x="79775" fg:w="184"/><text x="53.3420%" y="911.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (43 samples, 0.03%)</title><rect x="53.2145%" y="901" width="0.0286%" height="15" fill="rgb(238,69,14)" fg:x="79959" fg:w="43"/><text x="53.4645%" y="911.50"></text></g><g><title>klassVtable::compute_vtable_size_and_num_mirandas (17 samples, 0.01%)</title><rect x="53.2318%" y="885" width="0.0113%" height="15" fill="rgb(241,156,39)" fg:x="79985" fg:w="17"/><text x="53.4818%" y="895.50"></text></g><g><title>KlassFactory::create_from_stream (971 samples, 0.65%)</title><rect x="52.5982%" y="917" width="0.6462%" height="15" fill="rgb(212,227,28)" fg:x="79033" fg:w="971"/><text x="52.8482%" y="927.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (30 samples, 0.02%)</title><rect x="53.2444%" y="917" width="0.0200%" height="15" fill="rgb(209,118,27)" fg:x="80004" fg:w="30"/><text x="53.4944%" y="927.50"></text></g><g><title>SystemDictionary::define_instance_class (27 samples, 0.02%)</title><rect x="53.2464%" y="901" width="0.0180%" height="15" fill="rgb(226,102,5)" fg:x="80007" fg:w="27"/><text x="53.4964%" y="911.50"></text></g><g><title>JVM_DefineClassWithSource (1,023 samples, 0.68%)</title><rect x="52.5869%" y="965" width="0.6808%" height="15" fill="rgb(223,34,3)" fg:x="79016" fg:w="1023"/><text x="52.8369%" y="975.50"></text></g><g><title>jvm_define_class_common (1,023 samples, 0.68%)</title><rect x="52.5869%" y="949" width="0.6808%" height="15" fill="rgb(221,81,38)" fg:x="79016" fg:w="1023"/><text x="52.8369%" y="959.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,008 samples, 0.67%)</title><rect x="52.5969%" y="933" width="0.6708%" height="15" fill="rgb(236,219,28)" fg:x="79031" fg:w="1008"/><text x="52.8469%" y="943.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,053 samples, 0.70%)</title><rect x="52.5862%" y="981" width="0.7008%" height="15" fill="rgb(213,200,14)" fg:x="79015" fg:w="1053"/><text x="52.8362%" y="991.50"></text></g><g><title>ClassFileParser::parse_constant_pool (16 samples, 0.01%)</title><rect x="53.3090%" y="837" width="0.0106%" height="15" fill="rgb(240,33,19)" fg:x="80101" fg:w="16"/><text x="53.5590%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (16 samples, 0.01%)</title><rect x="53.3090%" y="821" width="0.0106%" height="15" fill="rgb(233,113,27)" fg:x="80101" fg:w="16"/><text x="53.5590%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (24 samples, 0.02%)</title><rect x="53.3083%" y="869" width="0.0160%" height="15" fill="rgb(220,221,18)" fg:x="80100" fg:w="24"/><text x="53.5583%" y="879.50"></text></g><g><title>ClassFileParser::parse_stream (24 samples, 0.02%)</title><rect x="53.3083%" y="853" width="0.0160%" height="15" fill="rgb(238,92,8)" fg:x="80100" fg:w="24"/><text x="53.5583%" y="863.50"></text></g><g><title>KlassFactory::create_from_stream (29 samples, 0.02%)</title><rect x="53.3083%" y="885" width="0.0193%" height="15" fill="rgb(222,164,16)" fg:x="80100" fg:w="29"/><text x="53.5583%" y="895.50"></text></g><g><title>ClassLoader::load_class (48 samples, 0.03%)</title><rect x="53.2983%" y="901" width="0.0319%" height="15" fill="rgb(241,119,3)" fg:x="80085" fg:w="48"/><text x="53.5483%" y="911.50"></text></g><g><title>JVM_FindClassFromBootLoader (77 samples, 0.05%)</title><rect x="53.2883%" y="965" width="0.0512%" height="15" fill="rgb(241,44,8)" fg:x="80070" fg:w="77"/><text x="53.5383%" y="975.50"></text></g><g><title>SystemDictionary::resolve_or_null (72 samples, 0.05%)</title><rect x="53.2917%" y="949" width="0.0479%" height="15" fill="rgb(230,36,40)" fg:x="80075" fg:w="72"/><text x="53.5417%" y="959.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (72 samples, 0.05%)</title><rect x="53.2917%" y="933" width="0.0479%" height="15" fill="rgb(243,16,36)" fg:x="80075" fg:w="72"/><text x="53.5417%" y="943.50"></text></g><g><title>SystemDictionary::load_instance_class (62 samples, 0.04%)</title><rect x="53.2983%" y="917" width="0.0413%" height="15" fill="rgb(231,4,26)" fg:x="80085" fg:w="62"/><text x="53.5483%" y="927.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (90 samples, 0.06%)</title><rect x="53.2870%" y="981" width="0.0599%" height="15" fill="rgb(240,9,31)" fg:x="80068" fg:w="90"/><text x="53.5370%" y="991.50"></text></g><g><title>Java_java_lang_Class_forName0 (23 samples, 0.02%)</title><rect x="53.3469%" y="981" width="0.0153%" height="15" fill="rgb(207,173,15)" fg:x="80158" fg:w="23"/><text x="53.5969%" y="991.50"></text></g><g><title>MHN_resolve_Mem (24 samples, 0.02%)</title><rect x="53.3769%" y="981" width="0.0160%" height="15" fill="rgb(224,192,53)" fg:x="80203" fg:w="24"/><text x="53.6269%" y="991.50"></text></g><g><title>MethodHandles::resolve_MemberName (23 samples, 0.02%)</title><rect x="53.3775%" y="965" width="0.0153%" height="15" fill="rgb(223,67,28)" fg:x="80204" fg:w="23"/><text x="53.6275%" y="975.50"></text></g><g><title>ClassFileParser::ClassFileParser (29 samples, 0.02%)</title><rect x="53.4421%" y="933" width="0.0193%" height="15" fill="rgb(211,20,47)" fg:x="80301" fg:w="29"/><text x="53.6921%" y="943.50"></text></g><g><title>ClassFileParser::parse_stream (29 samples, 0.02%)</title><rect x="53.4421%" y="917" width="0.0193%" height="15" fill="rgb(240,228,2)" fg:x="80301" fg:w="29"/><text x="53.6921%" y="927.50"></text></g><g><title>KlassFactory::create_from_stream (41 samples, 0.03%)</title><rect x="53.4421%" y="949" width="0.0273%" height="15" fill="rgb(248,151,12)" fg:x="80301" fg:w="41"/><text x="53.6921%" y="959.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (63 samples, 0.04%)</title><rect x="53.4288%" y="981" width="0.0419%" height="15" fill="rgb(244,8,39)" fg:x="80281" fg:w="63"/><text x="53.6788%" y="991.50"></text></g><g><title>SystemDictionary::parse_stream (61 samples, 0.04%)</title><rect x="53.4301%" y="965" width="0.0406%" height="15" fill="rgb(222,26,8)" fg:x="80283" fg:w="61"/><text x="53.6801%" y="975.50"></text></g><g><title>[perf-943567.map] (4,580 samples, 3.05%)</title><rect x="50.4499%" y="997" width="3.0481%" height="15" fill="rgb(213,106,44)" fg:x="75805" fg:w="4580"/><text x="50.6999%" y="1007.50">[pe..</text></g><g><title>SharedRuntime::find_callee_info_helper (26 samples, 0.02%)</title><rect x="53.5266%" y="965" width="0.0173%" height="15" fill="rgb(214,129,20)" fg:x="80428" fg:w="26"/><text x="53.7766%" y="975.50"></text></g><g><title>frame::sender (16 samples, 0.01%)</title><rect x="53.5333%" y="949" width="0.0106%" height="15" fill="rgb(212,32,13)" fg:x="80438" fg:w="16"/><text x="53.7833%" y="959.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (40 samples, 0.03%)</title><rect x="53.5193%" y="981" width="0.0266%" height="15" fill="rgb(208,168,33)" fg:x="80417" fg:w="40"/><text x="53.7693%" y="991.50"></text></g><g><title>copy_page_to_iter (17 samples, 0.01%)</title><rect x="53.5765%" y="821" width="0.0113%" height="15" fill="rgb(231,207,8)" fg:x="80503" fg:w="17"/><text x="53.8265%" y="831.50"></text></g><g><title>generic_file_buffered_read (39 samples, 0.03%)</title><rect x="53.5752%" y="837" width="0.0260%" height="15" fill="rgb(235,219,23)" fg:x="80501" fg:w="39"/><text x="53.8252%" y="847.50"></text></g><g><title>new_sync_read (43 samples, 0.03%)</title><rect x="53.5732%" y="853" width="0.0286%" height="15" fill="rgb(226,216,26)" fg:x="80498" fg:w="43"/><text x="53.8232%" y="863.50"></text></g><g><title>ksys_read (52 samples, 0.03%)</title><rect x="53.5685%" y="885" width="0.0346%" height="15" fill="rgb(239,137,16)" fg:x="80491" fg:w="52"/><text x="53.8185%" y="895.50"></text></g><g><title>vfs_read (46 samples, 0.03%)</title><rect x="53.5725%" y="869" width="0.0306%" height="15" fill="rgb(207,12,36)" fg:x="80497" fg:w="46"/><text x="53.8225%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.04%)</title><rect x="53.5685%" y="917" width="0.0353%" height="15" fill="rgb(210,214,24)" fg:x="80491" fg:w="53"/><text x="53.8185%" y="927.50"></text></g><g><title>do_syscall_64 (53 samples, 0.04%)</title><rect x="53.5685%" y="901" width="0.0353%" height="15" fill="rgb(206,56,30)" fg:x="80491" fg:w="53"/><text x="53.8185%" y="911.50"></text></g><g><title>handleRead (60 samples, 0.04%)</title><rect x="53.5645%" y="965" width="0.0399%" height="15" fill="rgb(228,143,26)" fg:x="80485" fg:w="60"/><text x="53.8145%" y="975.50"></text></g><g><title>__libc_read (59 samples, 0.04%)</title><rect x="53.5652%" y="949" width="0.0393%" height="15" fill="rgb(216,218,46)" fg:x="80486" fg:w="59"/><text x="53.8152%" y="959.50"></text></g><g><title>__libc_read (59 samples, 0.04%)</title><rect x="53.5652%" y="933" width="0.0393%" height="15" fill="rgb(206,6,19)" fg:x="80486" fg:w="59"/><text x="53.8152%" y="943.50"></text></g><g><title>readBytes (69 samples, 0.05%)</title><rect x="53.5639%" y="981" width="0.0459%" height="15" fill="rgb(239,177,51)" fg:x="80484" fg:w="69"/><text x="53.8139%" y="991.50"></text></g><g><title>[unknown] (172 samples, 0.11%)</title><rect x="53.4980%" y="997" width="0.1145%" height="15" fill="rgb(216,55,25)" fg:x="80385" fg:w="172"/><text x="53.7480%" y="1007.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="53.6138%" y="981" width="0.0106%" height="15" fill="rgb(231,163,29)" fg:x="80559" fg:w="16"/><text x="53.8638%" y="991.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="53.6138%" y="965" width="0.0106%" height="15" fill="rgb(232,149,50)" fg:x="80559" fg:w="16"/><text x="53.8638%" y="975.50"></text></g><g><title>__do_sys_clone (16 samples, 0.01%)</title><rect x="53.6138%" y="949" width="0.0106%" height="15" fill="rgb(223,142,48)" fg:x="80559" fg:w="16"/><text x="53.8638%" y="959.50"></text></g><g><title>kernel_clone (16 samples, 0.01%)</title><rect x="53.6138%" y="933" width="0.0106%" height="15" fill="rgb(245,83,23)" fg:x="80559" fg:w="16"/><text x="53.8638%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (221 samples, 0.15%)</title><rect x="53.6318%" y="933" width="0.1471%" height="15" fill="rgb(224,63,2)" fg:x="80586" fg:w="221"/><text x="53.8818%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (215 samples, 0.14%)</title><rect x="53.6357%" y="917" width="0.1431%" height="15" fill="rgb(218,65,53)" fg:x="80592" fg:w="215"/><text x="53.8857%" y="927.50"></text></g><g><title>native_write_msr (213 samples, 0.14%)</title><rect x="53.6371%" y="901" width="0.1418%" height="15" fill="rgb(221,84,29)" fg:x="80594" fg:w="213"/><text x="53.8871%" y="911.50"></text></g><g><title>schedule_tail (237 samples, 0.16%)</title><rect x="53.6278%" y="965" width="0.1577%" height="15" fill="rgb(234,0,32)" fg:x="80580" fg:w="237"/><text x="53.8778%" y="975.50"></text></g><g><title>finish_task_switch (236 samples, 0.16%)</title><rect x="53.6284%" y="949" width="0.1571%" height="15" fill="rgb(206,20,16)" fg:x="80581" fg:w="236"/><text x="53.8784%" y="959.50"></text></g><g><title>ret_from_fork (244 samples, 0.16%)</title><rect x="53.6244%" y="981" width="0.1624%" height="15" fill="rgb(244,172,18)" fg:x="80575" fg:w="244"/><text x="53.8744%" y="991.50"></text></g><g><title>SystemDictionary::initialize_preloaded_classes (21 samples, 0.01%)</title><rect x="53.7961%" y="869" width="0.0140%" height="15" fill="rgb(254,133,1)" fg:x="80833" fg:w="21"/><text x="54.0461%" y="879.50"></text></g><g><title>SystemDictionary::initialize_wk_klasses_until (21 samples, 0.01%)</title><rect x="53.7961%" y="853" width="0.0140%" height="15" fill="rgb(222,206,41)" fg:x="80833" fg:w="21"/><text x="54.0461%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (21 samples, 0.01%)</title><rect x="53.7961%" y="837" width="0.0140%" height="15" fill="rgb(212,3,42)" fg:x="80833" fg:w="21"/><text x="54.0461%" y="847.50"></text></g><g><title>SystemDictionary::load_instance_class (21 samples, 0.01%)</title><rect x="53.7961%" y="821" width="0.0140%" height="15" fill="rgb(241,11,4)" fg:x="80833" fg:w="21"/><text x="54.0461%" y="831.50"></text></g><g><title>ClassLoader::load_class (21 samples, 0.01%)</title><rect x="53.7961%" y="805" width="0.0140%" height="15" fill="rgb(205,19,26)" fg:x="80833" fg:w="21"/><text x="54.0461%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (20 samples, 0.01%)</title><rect x="53.7968%" y="789" width="0.0133%" height="15" fill="rgb(210,179,32)" fg:x="80834" fg:w="20"/><text x="54.0468%" y="799.50"></text></g><g><title>universe2_init (24 samples, 0.02%)</title><rect x="53.7955%" y="901" width="0.0160%" height="15" fill="rgb(227,116,49)" fg:x="80832" fg:w="24"/><text x="54.0455%" y="911.50"></text></g><g><title>Universe::genesis (24 samples, 0.02%)</title><rect x="53.7955%" y="885" width="0.0160%" height="15" fill="rgb(211,146,6)" fg:x="80832" fg:w="24"/><text x="54.0455%" y="895.50"></text></g><g><title>init_globals (48 samples, 0.03%)</title><rect x="53.7901%" y="917" width="0.0319%" height="15" fill="rgb(219,44,39)" fg:x="80824" fg:w="48"/><text x="54.0401%" y="927.50"></text></g><g><title>JNI_CreateJavaVM (54 samples, 0.04%)</title><rect x="53.7868%" y="949" width="0.0359%" height="15" fill="rgb(234,128,11)" fg:x="80819" fg:w="54"/><text x="54.0368%" y="959.50"></text></g><g><title>Threads::create_vm (54 samples, 0.04%)</title><rect x="53.7868%" y="933" width="0.0359%" height="15" fill="rgb(220,183,53)" fg:x="80819" fg:w="54"/><text x="54.0368%" y="943.50"></text></g><g><title>JavaMain (55 samples, 0.04%)</title><rect x="53.7868%" y="965" width="0.0366%" height="15" fill="rgb(213,219,32)" fg:x="80819" fg:w="55"/><text x="54.0368%" y="975.50"></text></g><g><title>Monitor::wait (17 samples, 0.01%)</title><rect x="53.8268%" y="949" width="0.0113%" height="15" fill="rgb(232,156,16)" fg:x="80879" fg:w="17"/><text x="54.0768%" y="959.50"></text></g><g><title>Monitor::IWait (17 samples, 0.01%)</title><rect x="53.8268%" y="933" width="0.0113%" height="15" fill="rgb(246,135,34)" fg:x="80879" fg:w="17"/><text x="54.0768%" y="943.50"></text></g><g><title>Thread::call_run (21 samples, 0.01%)</title><rect x="53.8381%" y="949" width="0.0140%" height="15" fill="rgb(241,99,0)" fg:x="80896" fg:w="21"/><text x="54.0881%" y="959.50"></text></g><g><title>JavaThread::run (21 samples, 0.01%)</title><rect x="53.8381%" y="933" width="0.0140%" height="15" fill="rgb(222,103,45)" fg:x="80896" fg:w="21"/><text x="54.0881%" y="943.50"></text></g><g><title>pthread_getattr_np (17 samples, 0.01%)</title><rect x="53.8527%" y="917" width="0.0113%" height="15" fill="rgb(212,57,4)" fg:x="80918" fg:w="17"/><text x="54.1027%" y="927.50"></text></g><g><title>os::current_stack_base (18 samples, 0.01%)</title><rect x="53.8527%" y="933" width="0.0120%" height="15" fill="rgb(215,68,47)" fg:x="80918" fg:w="18"/><text x="54.1027%" y="943.50"></text></g><g><title>Thread::record_stack_base_and_size (20 samples, 0.01%)</title><rect x="53.8520%" y="949" width="0.0133%" height="15" fill="rgb(230,84,2)" fg:x="80917" fg:w="20"/><text x="54.1020%" y="959.50"></text></g><g><title>__GI___clone (381 samples, 0.25%)</title><rect x="53.6125%" y="997" width="0.2536%" height="15" fill="rgb(220,102,14)" fg:x="80557" fg:w="381"/><text x="53.8625%" y="1007.50"></text></g><g><title>start_thread (119 samples, 0.08%)</title><rect x="53.7868%" y="981" width="0.0792%" height="15" fill="rgb(240,10,32)" fg:x="80819" fg:w="119"/><text x="54.0368%" y="991.50"></text></g><g><title>thread_native_entry (59 samples, 0.04%)</title><rect x="53.8268%" y="965" width="0.0393%" height="15" fill="rgb(215,47,27)" fg:x="80879" fg:w="59"/><text x="54.0768%" y="975.50"></text></g><g><title>java (5,428 samples, 3.61%)</title><rect x="50.2689%" y="1013" width="3.6125%" height="15" fill="rgb(233,188,43)" fg:x="75533" fg:w="5428"/><text x="50.5189%" y="1023.50">java</text></g><g><title>[[heap]] (32 samples, 0.02%)</title><rect x="53.8813%" y="997" width="0.0213%" height="15" fill="rgb(253,190,1)" fg:x="80961" fg:w="32"/><text x="54.1313%" y="1007.50"></text></g><g><title>filemap_map_pages (27 samples, 0.02%)</title><rect x="54.6300%" y="901" width="0.0180%" height="15" fill="rgb(206,114,52)" fg:x="82086" fg:w="27"/><text x="54.8800%" y="911.50"></text></g><g><title>asm_exc_page_fault (34 samples, 0.02%)</title><rect x="54.6260%" y="965" width="0.0226%" height="15" fill="rgb(233,120,37)" fg:x="82080" fg:w="34"/><text x="54.8760%" y="975.50"></text></g><g><title>exc_page_fault (34 samples, 0.02%)</title><rect x="54.6260%" y="949" width="0.0226%" height="15" fill="rgb(214,52,39)" fg:x="82080" fg:w="34"/><text x="54.8760%" y="959.50"></text></g><g><title>do_user_addr_fault (34 samples, 0.02%)</title><rect x="54.6260%" y="933" width="0.0226%" height="15" fill="rgb(223,80,29)" fg:x="82080" fg:w="34"/><text x="54.8760%" y="943.50"></text></g><g><title>handle_mm_fault (31 samples, 0.02%)</title><rect x="54.6280%" y="917" width="0.0206%" height="15" fill="rgb(230,101,40)" fg:x="82083" fg:w="31"/><text x="54.8780%" y="927.50"></text></g><g><title>[libc-2.31.so] (130 samples, 0.09%)</title><rect x="54.5635%" y="981" width="0.0865%" height="15" fill="rgb(219,211,8)" fg:x="81986" fg:w="130"/><text x="54.8135%" y="991.50"></text></g><g><title>__GI___access (21 samples, 0.01%)</title><rect x="54.6500%" y="981" width="0.0140%" height="15" fill="rgb(252,126,28)" fg:x="82116" fg:w="21"/><text x="54.9000%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="54.6500%" y="965" width="0.0140%" height="15" fill="rgb(215,56,38)" fg:x="82116" fg:w="21"/><text x="54.9000%" y="975.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="54.6500%" y="949" width="0.0140%" height="15" fill="rgb(249,55,44)" fg:x="82116" fg:w="21"/><text x="54.9000%" y="959.50"></text></g><g><title>do_faccessat (21 samples, 0.01%)</title><rect x="54.6500%" y="933" width="0.0140%" height="15" fill="rgb(220,221,32)" fg:x="82116" fg:w="21"/><text x="54.9000%" y="943.50"></text></g><g><title>__GI___libc_free (19 samples, 0.01%)</title><rect x="54.6660%" y="981" width="0.0126%" height="15" fill="rgb(212,216,41)" fg:x="82140" fg:w="19"/><text x="54.9160%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (197 samples, 0.13%)</title><rect x="54.7971%" y="805" width="0.1311%" height="15" fill="rgb(228,213,43)" fg:x="82337" fg:w="197"/><text x="55.0471%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (194 samples, 0.13%)</title><rect x="54.7991%" y="789" width="0.1291%" height="15" fill="rgb(211,31,26)" fg:x="82340" fg:w="194"/><text x="55.0491%" y="799.50"></text></g><g><title>native_write_msr (194 samples, 0.13%)</title><rect x="54.7991%" y="773" width="0.1291%" height="15" fill="rgb(229,202,19)" fg:x="82340" fg:w="194"/><text x="55.0491%" y="783.50"></text></g><g><title>finish_task_switch (208 samples, 0.14%)</title><rect x="54.7904%" y="821" width="0.1384%" height="15" fill="rgb(229,105,46)" fg:x="82327" fg:w="208"/><text x="55.0404%" y="831.50"></text></g><g><title>futex_wait_queue_me (243 samples, 0.16%)</title><rect x="54.7745%" y="869" width="0.1617%" height="15" fill="rgb(235,108,1)" fg:x="82303" fg:w="243"/><text x="55.0245%" y="879.50"></text></g><g><title>schedule (238 samples, 0.16%)</title><rect x="54.7778%" y="853" width="0.1584%" height="15" fill="rgb(245,111,35)" fg:x="82308" fg:w="238"/><text x="55.0278%" y="863.50"></text></g><g><title>__schedule (236 samples, 0.16%)</title><rect x="54.7791%" y="837" width="0.1571%" height="15" fill="rgb(219,185,31)" fg:x="82310" fg:w="236"/><text x="55.0291%" y="847.50"></text></g><g><title>do_syscall_64 (279 samples, 0.19%)</title><rect x="54.7658%" y="933" width="0.1857%" height="15" fill="rgb(214,4,43)" fg:x="82290" fg:w="279"/><text x="55.0158%" y="943.50"></text></g><g><title>__x64_sys_futex (279 samples, 0.19%)</title><rect x="54.7658%" y="917" width="0.1857%" height="15" fill="rgb(235,227,40)" fg:x="82290" fg:w="279"/><text x="55.0158%" y="927.50"></text></g><g><title>do_futex (277 samples, 0.18%)</title><rect x="54.7671%" y="901" width="0.1843%" height="15" fill="rgb(230,88,30)" fg:x="82292" fg:w="277"/><text x="55.0171%" y="911.50"></text></g><g><title>futex_wait (270 samples, 0.18%)</title><rect x="54.7718%" y="885" width="0.1797%" height="15" fill="rgb(216,217,1)" fg:x="82299" fg:w="270"/><text x="55.0218%" y="895.50"></text></g><g><title>futex_wait_setup (23 samples, 0.02%)</title><rect x="54.9362%" y="869" width="0.0153%" height="15" fill="rgb(248,139,50)" fg:x="82546" fg:w="23"/><text x="55.1862%" y="879.50"></text></g><g><title>__GI___pthread_mutex_lock (382 samples, 0.25%)</title><rect x="54.7006%" y="981" width="0.2542%" height="15" fill="rgb(233,1,21)" fg:x="82192" fg:w="382"/><text x="54.9506%" y="991.50"></text></g><g><title>__lll_lock_wait (293 samples, 0.19%)</title><rect x="54.7598%" y="965" width="0.1950%" height="15" fill="rgb(215,183,12)" fg:x="82281" fg:w="293"/><text x="55.0098%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (285 samples, 0.19%)</title><rect x="54.7651%" y="949" width="0.1897%" height="15" fill="rgb(229,104,42)" fg:x="82289" fg:w="285"/><text x="55.0151%" y="959.50"></text></g><g><title>do_filp_open (20 samples, 0.01%)</title><rect x="54.9941%" y="901" width="0.0133%" height="15" fill="rgb(243,34,48)" fg:x="82633" fg:w="20"/><text x="55.2441%" y="911.50"></text></g><g><title>path_openat (20 samples, 0.01%)</title><rect x="54.9941%" y="885" width="0.0133%" height="15" fill="rgb(239,11,44)" fg:x="82633" fg:w="20"/><text x="55.2441%" y="895.50"></text></g><g><title>__libc_open64 (25 samples, 0.02%)</title><rect x="54.9927%" y="981" width="0.0166%" height="15" fill="rgb(231,98,35)" fg:x="82631" fg:w="25"/><text x="55.2427%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="54.9927%" y="965" width="0.0166%" height="15" fill="rgb(233,28,25)" fg:x="82631" fg:w="25"/><text x="55.2427%" y="975.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="54.9927%" y="949" width="0.0166%" height="15" fill="rgb(234,123,11)" fg:x="82631" fg:w="25"/><text x="55.2427%" y="959.50"></text></g><g><title>__x64_sys_openat (25 samples, 0.02%)</title><rect x="54.9927%" y="933" width="0.0166%" height="15" fill="rgb(220,69,3)" fg:x="82631" fg:w="25"/><text x="55.2427%" y="943.50"></text></g><g><title>do_sys_openat2 (25 samples, 0.02%)</title><rect x="54.9927%" y="917" width="0.0166%" height="15" fill="rgb(214,64,36)" fg:x="82631" fg:w="25"/><text x="55.2427%" y="927.50"></text></g><g><title>ttwu_do_activate (25 samples, 0.02%)</title><rect x="55.1505%" y="853" width="0.0166%" height="15" fill="rgb(211,138,32)" fg:x="82868" fg:w="25"/><text x="55.4005%" y="863.50"></text></g><g><title>__x64_sys_futex (173 samples, 0.12%)</title><rect x="55.0600%" y="933" width="0.1151%" height="15" fill="rgb(213,118,47)" fg:x="82732" fg:w="173"/><text x="55.3100%" y="943.50"></text></g><g><title>do_futex (171 samples, 0.11%)</title><rect x="55.0613%" y="917" width="0.1138%" height="15" fill="rgb(243,124,49)" fg:x="82734" fg:w="171"/><text x="55.3113%" y="927.50"></text></g><g><title>futex_wake (165 samples, 0.11%)</title><rect x="55.0653%" y="901" width="0.1098%" height="15" fill="rgb(221,30,28)" fg:x="82740" fg:w="165"/><text x="55.3153%" y="911.50"></text></g><g><title>wake_up_q (102 samples, 0.07%)</title><rect x="55.1072%" y="885" width="0.0679%" height="15" fill="rgb(246,37,13)" fg:x="82803" fg:w="102"/><text x="55.3572%" y="895.50"></text></g><g><title>try_to_wake_up (99 samples, 0.07%)</title><rect x="55.1092%" y="869" width="0.0659%" height="15" fill="rgb(249,66,14)" fg:x="82806" fg:w="99"/><text x="55.3592%" y="879.50"></text></g><g><title>do_syscall_64 (181 samples, 0.12%)</title><rect x="55.0573%" y="949" width="0.1205%" height="15" fill="rgb(213,166,5)" fg:x="82728" fg:w="181"/><text x="55.3073%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (193 samples, 0.13%)</title><rect x="55.0540%" y="965" width="0.1284%" height="15" fill="rgb(221,66,24)" fg:x="82723" fg:w="193"/><text x="55.3040%" y="975.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (259 samples, 0.17%)</title><rect x="55.0147%" y="981" width="0.1724%" height="15" fill="rgb(210,132,17)" fg:x="82664" fg:w="259"/><text x="55.2647%" y="991.50"></text></g><g><title>__pthread_once_slow (16 samples, 0.01%)</title><rect x="55.1871%" y="981" width="0.0106%" height="15" fill="rgb(243,202,5)" fg:x="82923" fg:w="16"/><text x="55.4371%" y="991.50"></text></g><g><title>_dl_runtime_resolve_xsavec (17 samples, 0.01%)</title><rect x="55.1977%" y="981" width="0.0113%" height="15" fill="rgb(233,70,48)" fg:x="82939" fg:w="17"/><text x="55.4477%" y="991.50"></text></g><g><title>_int_free (76 samples, 0.05%)</title><rect x="55.2090%" y="981" width="0.0506%" height="15" fill="rgb(238,41,26)" fg:x="82956" fg:w="76"/><text x="55.4590%" y="991.50"></text></g><g><title>__alloc_pages_nodemask (16 samples, 0.01%)</title><rect x="55.2756%" y="901" width="0.0106%" height="15" fill="rgb(241,19,31)" fg:x="83056" fg:w="16"/><text x="55.5256%" y="911.50"></text></g><g><title>alloc_pages_vma (17 samples, 0.01%)</title><rect x="55.2756%" y="917" width="0.0113%" height="15" fill="rgb(214,76,10)" fg:x="83056" fg:w="17"/><text x="55.5256%" y="927.50"></text></g><g><title>alloc_set_pte (34 samples, 0.02%)</title><rect x="55.3242%" y="901" width="0.0226%" height="15" fill="rgb(254,202,22)" fg:x="83129" fg:w="34"/><text x="55.5742%" y="911.50"></text></g><g><title>page_add_file_rmap (22 samples, 0.01%)</title><rect x="55.3322%" y="885" width="0.0146%" height="15" fill="rgb(214,72,24)" fg:x="83141" fg:w="22"/><text x="55.5822%" y="895.50"></text></g><g><title>filemap_map_pages (107 samples, 0.07%)</title><rect x="55.2869%" y="917" width="0.0712%" height="15" fill="rgb(221,92,46)" fg:x="83073" fg:w="107"/><text x="55.5369%" y="927.50"></text></g><g><title>handle_mm_fault (168 samples, 0.11%)</title><rect x="55.2636%" y="933" width="0.1118%" height="15" fill="rgb(246,13,50)" fg:x="83038" fg:w="168"/><text x="55.5136%" y="943.50"></text></g><g><title>do_user_addr_fault (174 samples, 0.12%)</title><rect x="55.2610%" y="949" width="0.1158%" height="15" fill="rgb(240,165,38)" fg:x="83034" fg:w="174"/><text x="55.5110%" y="959.50"></text></g><g><title>exc_page_fault (176 samples, 0.12%)</title><rect x="55.2603%" y="965" width="0.1171%" height="15" fill="rgb(241,24,51)" fg:x="83033" fg:w="176"/><text x="55.5103%" y="975.50"></text></g><g><title>asm_exc_page_fault (179 samples, 0.12%)</title><rect x="55.2596%" y="981" width="0.1191%" height="15" fill="rgb(227,51,44)" fg:x="83032" fg:w="179"/><text x="55.5096%" y="991.50"></text></g><g><title>asm_exc_page_fault (29 samples, 0.02%)</title><rect x="55.4573%" y="933" width="0.0193%" height="15" fill="rgb(231,121,3)" fg:x="83329" fg:w="29"/><text x="55.7073%" y="943.50"></text></g><g><title>exc_page_fault (28 samples, 0.02%)</title><rect x="55.4579%" y="917" width="0.0186%" height="15" fill="rgb(245,3,41)" fg:x="83330" fg:w="28"/><text x="55.7079%" y="927.50"></text></g><g><title>do_user_addr_fault (28 samples, 0.02%)</title><rect x="55.4579%" y="901" width="0.0186%" height="15" fill="rgb(214,13,26)" fg:x="83330" fg:w="28"/><text x="55.7079%" y="911.50"></text></g><g><title>handle_mm_fault (24 samples, 0.02%)</title><rect x="55.4606%" y="885" width="0.0160%" height="15" fill="rgb(252,75,11)" fg:x="83334" fg:w="24"/><text x="55.7106%" y="895.50"></text></g><g><title>_int_malloc (99 samples, 0.07%)</title><rect x="55.4247%" y="949" width="0.0659%" height="15" fill="rgb(218,226,17)" fg:x="83280" fg:w="99"/><text x="55.6747%" y="959.50"></text></g><g><title>tcache_get (27 samples, 0.02%)</title><rect x="55.4906%" y="949" width="0.0180%" height="15" fill="rgb(248,89,38)" fg:x="83379" fg:w="27"/><text x="55.7406%" y="959.50"></text></g><g><title>[libc-2.31.so] (20 samples, 0.01%)</title><rect x="55.5099%" y="869" width="0.0133%" height="15" fill="rgb(237,73,46)" fg:x="83408" fg:w="20"/><text x="55.7599%" y="879.50"></text></g><g><title>__GI___mprotect (19 samples, 0.01%)</title><rect x="55.5105%" y="853" width="0.0126%" height="15" fill="rgb(242,78,33)" fg:x="83409" fg:w="19"/><text x="55.7605%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="55.5112%" y="837" width="0.0120%" height="15" fill="rgb(235,60,3)" fg:x="83410" fg:w="18"/><text x="55.7612%" y="847.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="55.5112%" y="821" width="0.0120%" height="15" fill="rgb(216,172,19)" fg:x="83410" fg:w="18"/><text x="55.7612%" y="831.50"></text></g><g><title>__x64_sys_mprotect (18 samples, 0.01%)</title><rect x="55.5112%" y="805" width="0.0120%" height="15" fill="rgb(227,6,42)" fg:x="83410" fg:w="18"/><text x="55.7612%" y="815.50"></text></g><g><title>do_mprotect_pkey (18 samples, 0.01%)</title><rect x="55.5112%" y="789" width="0.0120%" height="15" fill="rgb(223,207,42)" fg:x="83410" fg:w="18"/><text x="55.7612%" y="799.50"></text></g><g><title>mprotect_fixup (16 samples, 0.01%)</title><rect x="55.5125%" y="773" width="0.0106%" height="15" fill="rgb(246,138,30)" fg:x="83412" fg:w="16"/><text x="55.7625%" y="783.50"></text></g><g><title>perf_iterate_sb (17 samples, 0.01%)</title><rect x="55.5371%" y="725" width="0.0113%" height="15" fill="rgb(251,199,47)" fg:x="83449" fg:w="17"/><text x="55.7871%" y="735.50"></text></g><g><title>perf_event_mmap (20 samples, 0.01%)</title><rect x="55.5358%" y="741" width="0.0133%" height="15" fill="rgb(228,218,44)" fg:x="83447" fg:w="20"/><text x="55.7858%" y="751.50"></text></g><g><title>do_mmap (54 samples, 0.04%)</title><rect x="55.5245%" y="773" width="0.0359%" height="15" fill="rgb(220,68,6)" fg:x="83430" fg:w="54"/><text x="55.7745%" y="783.50"></text></g><g><title>mmap_region (40 samples, 0.03%)</title><rect x="55.5338%" y="757" width="0.0266%" height="15" fill="rgb(240,60,26)" fg:x="83444" fg:w="40"/><text x="55.7838%" y="767.50"></text></g><g><title>__GI___mmap64 (62 samples, 0.04%)</title><rect x="55.5232%" y="853" width="0.0413%" height="15" fill="rgb(211,200,19)" fg:x="83428" fg:w="62"/><text x="55.7732%" y="863.50"></text></g><g><title>__GI___mmap64 (62 samples, 0.04%)</title><rect x="55.5232%" y="837" width="0.0413%" height="15" fill="rgb(242,145,30)" fg:x="83428" fg:w="62"/><text x="55.7732%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.04%)</title><rect x="55.5232%" y="821" width="0.0413%" height="15" fill="rgb(225,64,13)" fg:x="83428" fg:w="62"/><text x="55.7732%" y="831.50"></text></g><g><title>do_syscall_64 (62 samples, 0.04%)</title><rect x="55.5232%" y="805" width="0.0413%" height="15" fill="rgb(218,103,35)" fg:x="83428" fg:w="62"/><text x="55.7732%" y="815.50"></text></g><g><title>vm_mmap_pgoff (60 samples, 0.04%)</title><rect x="55.5245%" y="789" width="0.0399%" height="15" fill="rgb(216,93,46)" fg:x="83430" fg:w="60"/><text x="55.7745%" y="799.50"></text></g><g><title>__do_munmap (16 samples, 0.01%)</title><rect x="55.5644%" y="773" width="0.0106%" height="15" fill="rgb(225,159,27)" fg:x="83490" fg:w="16"/><text x="55.8144%" y="783.50"></text></g><g><title>__vm_munmap (20 samples, 0.01%)</title><rect x="55.5644%" y="789" width="0.0133%" height="15" fill="rgb(225,204,11)" fg:x="83490" fg:w="20"/><text x="55.8144%" y="799.50"></text></g><g><title>__GI_munmap (21 samples, 0.01%)</title><rect x="55.5644%" y="853" width="0.0140%" height="15" fill="rgb(205,56,4)" fg:x="83490" fg:w="21"/><text x="55.8144%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="55.5644%" y="837" width="0.0140%" height="15" fill="rgb(206,6,35)" fg:x="83490" fg:w="21"/><text x="55.8144%" y="847.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="55.5644%" y="821" width="0.0140%" height="15" fill="rgb(247,73,52)" fg:x="83490" fg:w="21"/><text x="55.8144%" y="831.50"></text></g><g><title>__x64_sys_munmap (21 samples, 0.01%)</title><rect x="55.5644%" y="805" width="0.0140%" height="15" fill="rgb(246,97,4)" fg:x="83490" fg:w="21"/><text x="55.8144%" y="815.50"></text></g><g><title>__GI___libc_malloc (291 samples, 0.19%)</title><rect x="55.3967%" y="965" width="0.1937%" height="15" fill="rgb(212,37,15)" fg:x="83238" fg:w="291"/><text x="55.6467%" y="975.50"></text></g><g><title>tcache_init (123 samples, 0.08%)</title><rect x="55.5085%" y="949" width="0.0819%" height="15" fill="rgb(208,130,40)" fg:x="83406" fg:w="123"/><text x="55.7585%" y="959.50"></text></g><g><title>tcache_init (123 samples, 0.08%)</title><rect x="55.5085%" y="933" width="0.0819%" height="15" fill="rgb(236,55,29)" fg:x="83406" fg:w="123"/><text x="55.7585%" y="943.50"></text></g><g><title>arena_get2 (123 samples, 0.08%)</title><rect x="55.5085%" y="917" width="0.0819%" height="15" fill="rgb(209,156,45)" fg:x="83406" fg:w="123"/><text x="55.7585%" y="927.50"></text></g><g><title>arena_get2 (122 samples, 0.08%)</title><rect x="55.5092%" y="901" width="0.0812%" height="15" fill="rgb(249,107,4)" fg:x="83407" fg:w="122"/><text x="55.7592%" y="911.50"></text></g><g><title>_int_new_arena (122 samples, 0.08%)</title><rect x="55.5092%" y="885" width="0.0812%" height="15" fill="rgb(227,7,13)" fg:x="83407" fg:w="122"/><text x="55.7592%" y="895.50"></text></g><g><title>new_heap (101 samples, 0.07%)</title><rect x="55.5232%" y="869" width="0.0672%" height="15" fill="rgb(250,129,14)" fg:x="83428" fg:w="101"/><text x="55.7732%" y="879.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="55.5791%" y="853" width="0.0113%" height="15" fill="rgb(229,92,13)" fg:x="83512" fg:w="17"/><text x="55.8291%" y="863.50"></text></g><g><title>exc_page_fault (17 samples, 0.01%)</title><rect x="55.5791%" y="837" width="0.0113%" height="15" fill="rgb(245,98,39)" fg:x="83512" fg:w="17"/><text x="55.8291%" y="847.50"></text></g><g><title>do_user_addr_fault (17 samples, 0.01%)</title><rect x="55.5791%" y="821" width="0.0113%" height="15" fill="rgb(234,135,48)" fg:x="83512" fg:w="17"/><text x="55.8291%" y="831.50"></text></g><g><title>handle_mm_fault (17 samples, 0.01%)</title><rect x="55.5791%" y="805" width="0.0113%" height="15" fill="rgb(230,98,28)" fg:x="83512" fg:w="17"/><text x="55.8291%" y="815.50"></text></g><g><title>operator new (306 samples, 0.20%)</title><rect x="55.3947%" y="981" width="0.2036%" height="15" fill="rgb(223,121,0)" fg:x="83235" fg:w="306"/><text x="55.6447%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="55.6110%" y="933" width="0.0126%" height="15" fill="rgb(234,173,33)" fg:x="83560" fg:w="19"/><text x="55.8610%" y="943.50"></text></g><g><title>__pthread_cond_broadcast (21 samples, 0.01%)</title><rect x="55.6104%" y="965" width="0.0140%" height="15" fill="rgb(245,47,8)" fg:x="83559" fg:w="21"/><text x="55.8604%" y="975.50"></text></g><g><title>futex_wake (21 samples, 0.01%)</title><rect x="55.6104%" y="949" width="0.0140%" height="15" fill="rgb(205,17,20)" fg:x="83559" fg:w="21"/><text x="55.8604%" y="959.50"></text></g><g><title>std::condition_variable::notify_all (23 samples, 0.02%)</title><rect x="55.6104%" y="981" width="0.0153%" height="15" fill="rgb(232,151,16)" fg:x="83559" fg:w="23"/><text x="55.8604%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (115 samples, 0.08%)</title><rect x="55.6616%" y="757" width="0.0765%" height="15" fill="rgb(208,30,32)" fg:x="83636" fg:w="115"/><text x="55.9116%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (112 samples, 0.07%)</title><rect x="55.6636%" y="741" width="0.0745%" height="15" fill="rgb(254,26,3)" fg:x="83639" fg:w="112"/><text x="55.9136%" y="751.50"></text></g><g><title>native_write_msr (110 samples, 0.07%)</title><rect x="55.6649%" y="725" width="0.0732%" height="15" fill="rgb(240,177,30)" fg:x="83641" fg:w="110"/><text x="55.9149%" y="735.50"></text></g><g><title>finish_task_switch (118 samples, 0.08%)</title><rect x="55.6609%" y="773" width="0.0785%" height="15" fill="rgb(248,76,44)" fg:x="83635" fg:w="118"/><text x="55.9109%" y="783.50"></text></g><g><title>futex_wait_queue_me (162 samples, 0.11%)</title><rect x="55.6450%" y="821" width="0.1078%" height="15" fill="rgb(241,186,54)" fg:x="83611" fg:w="162"/><text x="55.8950%" y="831.50"></text></g><g><title>schedule (155 samples, 0.10%)</title><rect x="55.6496%" y="805" width="0.1032%" height="15" fill="rgb(249,171,29)" fg:x="83618" fg:w="155"/><text x="55.8996%" y="815.50"></text></g><g><title>__schedule (155 samples, 0.10%)</title><rect x="55.6496%" y="789" width="0.1032%" height="15" fill="rgb(237,151,44)" fg:x="83618" fg:w="155"/><text x="55.8996%" y="799.50"></text></g><g><title>do_syscall_64 (172 samples, 0.11%)</title><rect x="55.6410%" y="885" width="0.1145%" height="15" fill="rgb(228,174,30)" fg:x="83605" fg:w="172"/><text x="55.8910%" y="895.50"></text></g><g><title>__x64_sys_futex (172 samples, 0.11%)</title><rect x="55.6410%" y="869" width="0.1145%" height="15" fill="rgb(252,14,37)" fg:x="83605" fg:w="172"/><text x="55.8910%" y="879.50"></text></g><g><title>do_futex (172 samples, 0.11%)</title><rect x="55.6410%" y="853" width="0.1145%" height="15" fill="rgb(207,111,40)" fg:x="83605" fg:w="172"/><text x="55.8910%" y="863.50"></text></g><g><title>futex_wait (171 samples, 0.11%)</title><rect x="55.6416%" y="837" width="0.1138%" height="15" fill="rgb(248,171,54)" fg:x="83606" fg:w="171"/><text x="55.8916%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (175 samples, 0.12%)</title><rect x="55.6403%" y="901" width="0.1165%" height="15" fill="rgb(211,127,2)" fg:x="83604" fg:w="175"/><text x="55.8903%" y="911.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (182 samples, 0.12%)</title><rect x="55.6363%" y="949" width="0.1211%" height="15" fill="rgb(236,87,47)" fg:x="83598" fg:w="182"/><text x="55.8863%" y="959.50"></text></g><g><title>futex_wait_simple (176 samples, 0.12%)</title><rect x="55.6403%" y="933" width="0.1171%" height="15" fill="rgb(223,190,45)" fg:x="83604" fg:w="176"/><text x="55.8903%" y="943.50"></text></g><g><title>futex_wait (176 samples, 0.12%)</title><rect x="55.6403%" y="917" width="0.1171%" height="15" fill="rgb(215,5,16)" fg:x="83604" fg:w="176"/><text x="55.8903%" y="927.50"></text></g><g><title>mark_wake_futex (38 samples, 0.03%)</title><rect x="55.7920%" y="853" width="0.0253%" height="15" fill="rgb(252,82,33)" fg:x="83832" fg:w="38"/><text x="56.0420%" y="863.50"></text></g><g><title>_raw_spin_lock (23 samples, 0.02%)</title><rect x="55.8360%" y="821" width="0.0153%" height="15" fill="rgb(247,213,44)" fg:x="83898" fg:w="23"/><text x="56.0860%" y="831.50"></text></g><g><title>native_queued_spin_lock_slowpath (19 samples, 0.01%)</title><rect x="55.8386%" y="805" width="0.0126%" height="15" fill="rgb(205,196,44)" fg:x="83902" fg:w="19"/><text x="56.0886%" y="815.50"></text></g><g><title>select_task_rq_fair (79 samples, 0.05%)</title><rect x="55.8606%" y="821" width="0.0526%" height="15" fill="rgb(237,96,54)" fg:x="83935" fg:w="79"/><text x="56.1106%" y="831.50"></text></g><g><title>update_cfs_rq_h_load (32 samples, 0.02%)</title><rect x="55.8919%" y="805" width="0.0213%" height="15" fill="rgb(230,113,34)" fg:x="83982" fg:w="32"/><text x="56.1419%" y="815.50"></text></g><g><title>enqueue_entity (84 samples, 0.06%)</title><rect x="55.9278%" y="789" width="0.0559%" height="15" fill="rgb(221,224,12)" fg:x="84036" fg:w="84"/><text x="56.1778%" y="799.50"></text></g><g><title>update_load_avg (27 samples, 0.02%)</title><rect x="55.9657%" y="773" width="0.0180%" height="15" fill="rgb(219,112,44)" fg:x="84093" fg:w="27"/><text x="56.2157%" y="783.50"></text></g><g><title>enqueue_task_fair (98 samples, 0.07%)</title><rect x="55.9198%" y="805" width="0.0652%" height="15" fill="rgb(210,31,13)" fg:x="84024" fg:w="98"/><text x="56.1698%" y="815.50"></text></g><g><title>ttwu_do_activate (200 samples, 0.13%)</title><rect x="55.9152%" y="821" width="0.1331%" height="15" fill="rgb(230,25,16)" fg:x="84017" fg:w="200"/><text x="56.1652%" y="831.50"></text></g><g><title>psi_task_change (95 samples, 0.06%)</title><rect x="55.9850%" y="805" width="0.0632%" height="15" fill="rgb(246,108,53)" fg:x="84122" fg:w="95"/><text x="56.2350%" y="815.50"></text></g><g><title>psi_group_change (85 samples, 0.06%)</title><rect x="55.9917%" y="789" width="0.0566%" height="15" fill="rgb(241,172,50)" fg:x="84132" fg:w="85"/><text x="56.2417%" y="799.50"></text></g><g><title>record_times (19 samples, 0.01%)</title><rect x="56.0356%" y="773" width="0.0126%" height="15" fill="rgb(235,141,10)" fg:x="84198" fg:w="19"/><text x="56.2856%" y="783.50"></text></g><g><title>do_syscall_64 (449 samples, 0.30%)</title><rect x="55.7681%" y="917" width="0.2988%" height="15" fill="rgb(220,174,43)" fg:x="83796" fg:w="449"/><text x="56.0181%" y="927.50"></text></g><g><title>__x64_sys_futex (446 samples, 0.30%)</title><rect x="55.7701%" y="901" width="0.2968%" height="15" fill="rgb(215,181,40)" fg:x="83799" fg:w="446"/><text x="56.0201%" y="911.50"></text></g><g><title>do_futex (443 samples, 0.29%)</title><rect x="55.7721%" y="885" width="0.2948%" height="15" fill="rgb(230,97,2)" fg:x="83802" fg:w="443"/><text x="56.0221%" y="895.50"></text></g><g><title>futex_wake (439 samples, 0.29%)</title><rect x="55.7747%" y="869" width="0.2922%" height="15" fill="rgb(211,25,27)" fg:x="83806" fg:w="439"/><text x="56.0247%" y="879.50"></text></g><g><title>wake_up_q (374 samples, 0.25%)</title><rect x="55.8180%" y="853" width="0.2489%" height="15" fill="rgb(230,87,26)" fg:x="83871" fg:w="374"/><text x="56.0680%" y="863.50"></text></g><g><title>try_to_wake_up (361 samples, 0.24%)</title><rect x="55.8266%" y="837" width="0.2403%" height="15" fill="rgb(227,160,17)" fg:x="83884" fg:w="361"/><text x="56.0766%" y="847.50"></text></g><g><title>std::condition_variable::notify_one (664 samples, 0.44%)</title><rect x="55.6257%" y="981" width="0.4419%" height="15" fill="rgb(244,85,34)" fg:x="83582" fg:w="664"/><text x="55.8757%" y="991.50"></text></g><g><title>__pthread_cond_signal (663 samples, 0.44%)</title><rect x="55.6263%" y="965" width="0.4412%" height="15" fill="rgb(207,70,0)" fg:x="83583" fg:w="663"/><text x="55.8763%" y="975.50"></text></g><g><title>futex_wake (463 samples, 0.31%)</title><rect x="55.7594%" y="949" width="0.3081%" height="15" fill="rgb(223,129,7)" fg:x="83783" fg:w="463"/><text x="56.0094%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (452 samples, 0.30%)</title><rect x="55.7667%" y="933" width="0.3008%" height="15" fill="rgb(246,105,7)" fg:x="83794" fg:w="452"/><text x="56.0167%" y="943.50"></text></g><g><title>__condvar_confirm_wakeup (17 samples, 0.01%)</title><rect x="56.1108%" y="933" width="0.0113%" height="15" fill="rgb(215,154,42)" fg:x="84311" fg:w="17"/><text x="56.3608%" y="943.50"></text></g><g><title>mark_wake_futex (27 samples, 0.02%)</title><rect x="56.1987%" y="821" width="0.0180%" height="15" fill="rgb(220,215,30)" fg:x="84443" fg:w="27"/><text x="56.4487%" y="831.50"></text></g><g><title>select_task_rq_fair (48 samples, 0.03%)</title><rect x="56.2406%" y="789" width="0.0319%" height="15" fill="rgb(228,81,51)" fg:x="84506" fg:w="48"/><text x="56.4906%" y="799.50"></text></g><g><title>update_cfs_rq_h_load (21 samples, 0.01%)</title><rect x="56.2586%" y="773" width="0.0140%" height="15" fill="rgb(247,71,54)" fg:x="84533" fg:w="21"/><text x="56.5086%" y="783.50"></text></g><g><title>enqueue_entity (50 samples, 0.03%)</title><rect x="56.2845%" y="757" width="0.0333%" height="15" fill="rgb(234,176,34)" fg:x="84572" fg:w="50"/><text x="56.5345%" y="767.50"></text></g><g><title>enqueue_task_fair (65 samples, 0.04%)</title><rect x="56.2752%" y="773" width="0.0433%" height="15" fill="rgb(241,103,54)" fg:x="84558" fg:w="65"/><text x="56.5252%" y="783.50"></text></g><g><title>ttwu_do_activate (143 samples, 0.10%)</title><rect x="56.2725%" y="789" width="0.0952%" height="15" fill="rgb(228,22,34)" fg:x="84554" fg:w="143"/><text x="56.5225%" y="799.50"></text></g><g><title>psi_task_change (74 samples, 0.05%)</title><rect x="56.3185%" y="773" width="0.0492%" height="15" fill="rgb(241,179,48)" fg:x="84623" fg:w="74"/><text x="56.5685%" y="783.50"></text></g><g><title>psi_group_change (59 samples, 0.04%)</title><rect x="56.3284%" y="757" width="0.0393%" height="15" fill="rgb(235,167,37)" fg:x="84638" fg:w="59"/><text x="56.5784%" y="767.50"></text></g><g><title>do_syscall_64 (346 samples, 0.23%)</title><rect x="56.1601%" y="885" width="0.2303%" height="15" fill="rgb(213,109,30)" fg:x="84385" fg:w="346"/><text x="56.4101%" y="895.50"></text></g><g><title>__x64_sys_futex (339 samples, 0.23%)</title><rect x="56.1647%" y="869" width="0.2256%" height="15" fill="rgb(222,172,16)" fg:x="84392" fg:w="339"/><text x="56.4147%" y="879.50"></text></g><g><title>do_futex (337 samples, 0.22%)</title><rect x="56.1661%" y="853" width="0.2243%" height="15" fill="rgb(233,192,5)" fg:x="84394" fg:w="337"/><text x="56.4161%" y="863.50"></text></g><g><title>futex_wake (333 samples, 0.22%)</title><rect x="56.1687%" y="837" width="0.2216%" height="15" fill="rgb(247,189,41)" fg:x="84398" fg:w="333"/><text x="56.4187%" y="847.50"></text></g><g><title>wake_up_q (259 samples, 0.17%)</title><rect x="56.2180%" y="821" width="0.1724%" height="15" fill="rgb(218,134,47)" fg:x="84472" fg:w="259"/><text x="56.4680%" y="831.50"></text></g><g><title>try_to_wake_up (252 samples, 0.17%)</title><rect x="56.2226%" y="805" width="0.1677%" height="15" fill="rgb(216,29,3)" fg:x="84479" fg:w="252"/><text x="56.4726%" y="815.50"></text></g><g><title>update_rq_clock (17 samples, 0.01%)</title><rect x="56.3790%" y="789" width="0.0113%" height="15" fill="rgb(246,140,12)" fg:x="84714" fg:w="17"/><text x="56.6290%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (351 samples, 0.23%)</title><rect x="56.1574%" y="901" width="0.2336%" height="15" fill="rgb(230,136,11)" fg:x="84381" fg:w="351"/><text x="56.4074%" y="911.50"></text></g><g><title>__condvar_dec_grefs (405 samples, 0.27%)</title><rect x="56.1221%" y="933" width="0.2695%" height="15" fill="rgb(247,22,47)" fg:x="84328" fg:w="405"/><text x="56.3721%" y="943.50"></text></g><g><title>futex_wake (365 samples, 0.24%)</title><rect x="56.1488%" y="917" width="0.2429%" height="15" fill="rgb(218,84,22)" fg:x="84368" fg:w="365"/><text x="56.3988%" y="927.50"></text></g><g><title>_raw_spin_lock (16 samples, 0.01%)</title><rect x="56.4469%" y="837" width="0.0106%" height="15" fill="rgb(216,87,39)" fg:x="84816" fg:w="16"/><text x="56.6969%" y="847.50"></text></g><g><title>__x64_sys_futex (78 samples, 0.05%)</title><rect x="56.4230%" y="885" width="0.0519%" height="15" fill="rgb(221,178,8)" fg:x="84780" fg:w="78"/><text x="56.6730%" y="895.50"></text></g><g><title>do_futex (77 samples, 0.05%)</title><rect x="56.4236%" y="869" width="0.0512%" height="15" fill="rgb(230,42,11)" fg:x="84781" fg:w="77"/><text x="56.6736%" y="879.50"></text></g><g><title>futex_wake (74 samples, 0.05%)</title><rect x="56.4256%" y="853" width="0.0492%" height="15" fill="rgb(237,229,4)" fg:x="84784" fg:w="74"/><text x="56.6756%" y="863.50"></text></g><g><title>do_syscall_64 (84 samples, 0.06%)</title><rect x="56.4203%" y="901" width="0.0559%" height="15" fill="rgb(222,31,33)" fg:x="84776" fg:w="84"/><text x="56.6703%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (91 samples, 0.06%)</title><rect x="56.4163%" y="917" width="0.0606%" height="15" fill="rgb(210,17,39)" fg:x="84770" fg:w="91"/><text x="56.6663%" y="927.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (119 samples, 0.08%)</title><rect x="56.4010%" y="933" width="0.0792%" height="15" fill="rgb(244,93,20)" fg:x="84747" fg:w="119"/><text x="56.6510%" y="943.50"></text></g><g><title>__pthread_disable_asynccancel (34 samples, 0.02%)</title><rect x="56.5015%" y="917" width="0.0226%" height="15" fill="rgb(210,40,47)" fg:x="84898" fg:w="34"/><text x="56.7515%" y="927.50"></text></g><g><title>plist_add (30 samples, 0.02%)</title><rect x="56.6778%" y="821" width="0.0200%" height="15" fill="rgb(239,211,47)" fg:x="85163" fg:w="30"/><text x="56.9278%" y="831.50"></text></g><g><title>__list_add_valid (17 samples, 0.01%)</title><rect x="56.6865%" y="805" width="0.0113%" height="15" fill="rgb(251,223,49)" fg:x="85176" fg:w="17"/><text x="56.9365%" y="815.50"></text></g><g><title>__perf_event_task_sched_out (25 samples, 0.02%)</title><rect x="56.7584%" y="789" width="0.0166%" height="15" fill="rgb(221,149,5)" fg:x="85284" fg:w="25"/><text x="57.0084%" y="799.50"></text></g><g><title>update_cfs_group (27 samples, 0.02%)</title><rect x="56.8283%" y="757" width="0.0180%" height="15" fill="rgb(219,224,51)" fg:x="85389" fg:w="27"/><text x="57.0783%" y="767.50"></text></g><g><title>__calc_delta (17 samples, 0.01%)</title><rect x="56.8689%" y="741" width="0.0113%" height="15" fill="rgb(223,7,8)" fg:x="85450" fg:w="17"/><text x="57.1189%" y="751.50"></text></g><g><title>cpuacct_charge (19 samples, 0.01%)</title><rect x="56.8842%" y="741" width="0.0126%" height="15" fill="rgb(241,217,22)" fg:x="85473" fg:w="19"/><text x="57.1342%" y="751.50"></text></g><g><title>update_curr (80 samples, 0.05%)</title><rect x="56.8462%" y="757" width="0.0532%" height="15" fill="rgb(248,209,0)" fg:x="85416" fg:w="80"/><text x="57.0962%" y="767.50"></text></g><g><title>__update_load_avg_cfs_rq (18 samples, 0.01%)</title><rect x="56.9181%" y="741" width="0.0120%" height="15" fill="rgb(217,205,4)" fg:x="85524" fg:w="18"/><text x="57.1681%" y="751.50"></text></g><g><title>__update_load_avg_se (26 samples, 0.02%)</title><rect x="56.9301%" y="741" width="0.0173%" height="15" fill="rgb(228,124,39)" fg:x="85542" fg:w="26"/><text x="57.1801%" y="751.50"></text></g><g><title>dequeue_entity (214 samples, 0.14%)</title><rect x="56.8063%" y="773" width="0.1424%" height="15" fill="rgb(250,116,42)" fg:x="85356" fg:w="214"/><text x="57.0563%" y="783.50"></text></g><g><title>update_load_avg (74 samples, 0.05%)</title><rect x="56.8995%" y="757" width="0.0492%" height="15" fill="rgb(223,202,9)" fg:x="85496" fg:w="74"/><text x="57.1495%" y="767.50"></text></g><g><title>dequeue_task_fair (252 samples, 0.17%)</title><rect x="56.7843%" y="789" width="0.1677%" height="15" fill="rgb(242,222,40)" fg:x="85323" fg:w="252"/><text x="57.0343%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (7,364 samples, 4.90%)</title><rect x="57.0519%" y="773" width="4.9009%" height="15" fill="rgb(229,99,46)" fg:x="85725" fg:w="7364"/><text x="57.3019%" y="783.50">__perf..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (7,305 samples, 4.86%)</title><rect x="57.0911%" y="757" width="4.8616%" height="15" fill="rgb(225,56,46)" fg:x="85784" fg:w="7305"/><text x="57.3411%" y="767.50">__inte..</text></g><g><title>native_write_msr (7,277 samples, 4.84%)</title><rect x="57.1098%" y="741" width="4.8430%" height="15" fill="rgb(227,94,5)" fg:x="85812" fg:w="7277"/><text x="57.3598%" y="751.50">native..</text></g><g><title>enqueue_task_fair (20 samples, 0.01%)</title><rect x="62.0280%" y="549" width="0.0133%" height="15" fill="rgb(205,112,38)" fg:x="93202" fg:w="20"/><text x="62.2780%" y="559.50"></text></g><g><title>enqueue_entity (19 samples, 0.01%)</title><rect x="62.0286%" y="533" width="0.0126%" height="15" fill="rgb(231,133,46)" fg:x="93203" fg:w="19"/><text x="62.2786%" y="543.50"></text></g><g><title>ttwu_do_activate (31 samples, 0.02%)</title><rect x="62.0266%" y="565" width="0.0206%" height="15" fill="rgb(217,16,9)" fg:x="93200" fg:w="31"/><text x="62.2766%" y="575.50"></text></g><g><title>__wake_up_common (59 samples, 0.04%)</title><rect x="62.0087%" y="613" width="0.0393%" height="15" fill="rgb(249,173,9)" fg:x="93173" fg:w="59"/><text x="62.2587%" y="623.50"></text></g><g><title>pollwake (54 samples, 0.04%)</title><rect x="62.0120%" y="597" width="0.0359%" height="15" fill="rgb(205,163,53)" fg:x="93178" fg:w="54"/><text x="62.2620%" y="607.50"></text></g><g><title>try_to_wake_up (53 samples, 0.04%)</title><rect x="62.0127%" y="581" width="0.0353%" height="15" fill="rgb(217,54,41)" fg:x="93179" fg:w="53"/><text x="62.2627%" y="591.50"></text></g><g><title>irq_work_run (69 samples, 0.05%)</title><rect x="62.0040%" y="709" width="0.0459%" height="15" fill="rgb(228,216,12)" fg:x="93166" fg:w="69"/><text x="62.2540%" y="719.50"></text></g><g><title>irq_work_run_list (69 samples, 0.05%)</title><rect x="62.0040%" y="693" width="0.0459%" height="15" fill="rgb(244,228,15)" fg:x="93166" fg:w="69"/><text x="62.2540%" y="703.50"></text></g><g><title>irq_work_single (68 samples, 0.05%)</title><rect x="62.0047%" y="677" width="0.0453%" height="15" fill="rgb(221,176,53)" fg:x="93167" fg:w="68"/><text x="62.2547%" y="687.50"></text></g><g><title>perf_pending_event (67 samples, 0.04%)</title><rect x="62.0054%" y="661" width="0.0446%" height="15" fill="rgb(205,94,34)" fg:x="93168" fg:w="67"/><text x="62.2554%" y="671.50"></text></g><g><title>perf_event_wakeup (65 samples, 0.04%)</title><rect x="62.0067%" y="645" width="0.0433%" height="15" fill="rgb(213,110,48)" fg:x="93170" fg:w="65"/><text x="62.2567%" y="655.50"></text></g><g><title>__wake_up_common_lock (63 samples, 0.04%)</title><rect x="62.0080%" y="629" width="0.0419%" height="15" fill="rgb(236,142,28)" fg:x="93172" fg:w="63"/><text x="62.2580%" y="639.50"></text></g><g><title>asm_call_sysvec_on_stack (86 samples, 0.06%)</title><rect x="61.9940%" y="741" width="0.0572%" height="15" fill="rgb(225,135,29)" fg:x="93151" fg:w="86"/><text x="62.2440%" y="751.50"></text></g><g><title>__sysvec_irq_work (72 samples, 0.05%)</title><rect x="62.0034%" y="725" width="0.0479%" height="15" fill="rgb(252,45,31)" fg:x="93165" fg:w="72"/><text x="62.2534%" y="735.50"></text></g><g><title>asm_sysvec_irq_work (139 samples, 0.09%)</title><rect x="61.9621%" y="773" width="0.0925%" height="15" fill="rgb(211,187,50)" fg:x="93103" fg:w="139"/><text x="62.2121%" y="783.50"></text></g><g><title>sysvec_irq_work (99 samples, 0.07%)</title><rect x="61.9887%" y="757" width="0.0659%" height="15" fill="rgb(229,109,7)" fg:x="93143" fg:w="99"/><text x="62.2387%" y="767.50"></text></g><g><title>finish_task_switch (7,676 samples, 5.11%)</title><rect x="56.9520%" y="789" width="5.1085%" height="15" fill="rgb(251,131,51)" fg:x="85575" fg:w="7676"/><text x="57.2020%" y="799.50">finish..</text></g><g><title>load_balance (17 samples, 0.01%)</title><rect x="62.0772%" y="757" width="0.0113%" height="15" fill="rgb(251,180,35)" fg:x="93276" fg:w="17"/><text x="62.3272%" y="767.50"></text></g><g><title>newidle_balance (39 samples, 0.03%)</title><rect x="62.0633%" y="773" width="0.0260%" height="15" fill="rgb(211,46,32)" fg:x="93255" fg:w="39"/><text x="62.3133%" y="783.50"></text></g><g><title>pick_next_task_fair (46 samples, 0.03%)</title><rect x="62.0606%" y="789" width="0.0306%" height="15" fill="rgb(248,123,17)" fg:x="93251" fg:w="46"/><text x="62.3106%" y="799.50"></text></g><g><title>pick_next_task_idle (20 samples, 0.01%)</title><rect x="62.0912%" y="789" width="0.0133%" height="15" fill="rgb(227,141,18)" fg:x="93297" fg:w="20"/><text x="62.3412%" y="799.50"></text></g><g><title>psi_task_change (190 samples, 0.13%)</title><rect x="62.1045%" y="789" width="0.1264%" height="15" fill="rgb(216,102,9)" fg:x="93317" fg:w="190"/><text x="62.3545%" y="799.50"></text></g><g><title>psi_group_change (166 samples, 0.11%)</title><rect x="62.1205%" y="773" width="0.1105%" height="15" fill="rgb(253,47,13)" fg:x="93341" fg:w="166"/><text x="62.3705%" y="783.50"></text></g><g><title>record_times (44 samples, 0.03%)</title><rect x="62.2017%" y="757" width="0.0293%" height="15" fill="rgb(226,93,23)" fg:x="93463" fg:w="44"/><text x="62.4517%" y="767.50"></text></g><g><title>sched_clock_cpu (36 samples, 0.02%)</title><rect x="62.2070%" y="741" width="0.0240%" height="15" fill="rgb(247,104,17)" fg:x="93471" fg:w="36"/><text x="62.4570%" y="751.50"></text></g><g><title>sched_clock (29 samples, 0.02%)</title><rect x="62.2117%" y="725" width="0.0193%" height="15" fill="rgb(233,203,26)" fg:x="93478" fg:w="29"/><text x="62.4617%" y="735.50"></text></g><g><title>native_sched_clock (28 samples, 0.02%)</title><rect x="62.2123%" y="709" width="0.0186%" height="15" fill="rgb(244,98,49)" fg:x="93479" fg:w="28"/><text x="62.4623%" y="719.50"></text></g><g><title>futex_wait_queue_me (8,428 samples, 5.61%)</title><rect x="56.6412%" y="837" width="5.6090%" height="15" fill="rgb(235,134,22)" fg:x="85108" fg:w="8428"/><text x="56.8912%" y="847.50">futex_w..</text></g><g><title>schedule (8,343 samples, 5.55%)</title><rect x="56.6978%" y="821" width="5.5524%" height="15" fill="rgb(221,70,32)" fg:x="85193" fg:w="8343"/><text x="56.9478%" y="831.50">schedule</text></g><g><title>__schedule (8,317 samples, 5.54%)</title><rect x="56.7151%" y="805" width="5.5351%" height="15" fill="rgb(238,15,50)" fg:x="85219" fg:w="8317"/><text x="56.9651%" y="815.50">__sched..</text></g><g><title>update_rq_clock (18 samples, 0.01%)</title><rect x="62.2383%" y="789" width="0.0120%" height="15" fill="rgb(215,221,48)" fg:x="93518" fg:w="18"/><text x="62.4883%" y="799.50"></text></g><g><title>__get_user_nocheck_4 (18 samples, 0.01%)</title><rect x="62.2815%" y="821" width="0.0120%" height="15" fill="rgb(236,73,3)" fg:x="93583" fg:w="18"/><text x="62.5315%" y="831.50"></text></g><g><title>__x64_sys_futex (8,651 samples, 5.76%)</title><rect x="56.5574%" y="885" width="5.7574%" height="15" fill="rgb(250,107,11)" fg:x="84982" fg:w="8651"/><text x="56.8074%" y="895.50">__x64_s..</text></g><g><title>do_futex (8,627 samples, 5.74%)</title><rect x="56.5734%" y="869" width="5.7415%" height="15" fill="rgb(242,39,14)" fg:x="85006" fg:w="8627"/><text x="56.8234%" y="879.50">do_futex</text></g><g><title>futex_wait (8,594 samples, 5.72%)</title><rect x="56.5953%" y="853" width="5.7195%" height="15" fill="rgb(248,164,37)" fg:x="85039" fg:w="8594"/><text x="56.8453%" y="863.50">futex_w..</text></g><g><title>futex_wait_setup (97 samples, 0.06%)</title><rect x="62.2503%" y="837" width="0.0646%" height="15" fill="rgb(217,60,12)" fg:x="93536" fg:w="97"/><text x="62.5003%" y="847.50"></text></g><g><title>do_syscall_64 (8,669 samples, 5.77%)</title><rect x="56.5481%" y="901" width="5.7694%" height="15" fill="rgb(240,125,29)" fg:x="84968" fg:w="8669"/><text x="56.7981%" y="911.50">do_sysc..</text></g><g><title>entry_SYSCALL_64_after_hwframe (8,823 samples, 5.87%)</title><rect x="56.5381%" y="917" width="5.8719%" height="15" fill="rgb(208,207,28)" fg:x="84953" fg:w="8823"/><text x="56.7881%" y="927.50">entry_S..</text></g><g><title>syscall_exit_to_user_mode (139 samples, 0.09%)</title><rect x="62.3175%" y="901" width="0.0925%" height="15" fill="rgb(209,159,27)" fg:x="93637" fg:w="139"/><text x="62.5675%" y="911.50"></text></g><g><title>exit_to_user_mode_prepare (130 samples, 0.09%)</title><rect x="62.3235%" y="885" width="0.0865%" height="15" fill="rgb(251,176,53)" fg:x="93646" fg:w="130"/><text x="62.5735%" y="895.50"></text></g><g><title>switch_fpu_return (119 samples, 0.08%)</title><rect x="62.3308%" y="869" width="0.0792%" height="15" fill="rgb(211,85,7)" fg:x="93657" fg:w="119"/><text x="62.5808%" y="879.50"></text></g><g><title>copy_kernel_to_fpregs (88 samples, 0.06%)</title><rect x="62.3514%" y="853" width="0.0586%" height="15" fill="rgb(216,64,54)" fg:x="93688" fg:w="88"/><text x="62.6014%" y="863.50"></text></g><g><title>__pthread_cond_wait (9,529 samples, 6.34%)</title><rect x="56.0782%" y="965" width="6.3418%" height="15" fill="rgb(217,54,24)" fg:x="84262" fg:w="9529"/><text x="56.3282%" y="975.50">__pthrea..</text></g><g><title>__pthread_cond_wait_common (9,529 samples, 6.34%)</title><rect x="56.0782%" y="949" width="6.3418%" height="15" fill="rgb(208,206,53)" fg:x="84262" fg:w="9529"/><text x="56.3282%" y="959.50">__pthrea..</text></g><g><title>futex_wait_cancelable (8,923 samples, 5.94%)</title><rect x="56.4815%" y="933" width="5.9385%" height="15" fill="rgb(251,74,39)" fg:x="84868" fg:w="8923"/><text x="56.7315%" y="943.50">futex_wa..</text></g><g><title>__perf_event_task_sched_in (145 samples, 0.10%)</title><rect x="62.4706%" y="789" width="0.0965%" height="15" fill="rgb(226,47,5)" fg:x="93867" fg:w="145"/><text x="62.7206%" y="799.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (143 samples, 0.10%)</title><rect x="62.4719%" y="773" width="0.0952%" height="15" fill="rgb(234,111,33)" fg:x="93869" fg:w="143"/><text x="62.7219%" y="783.50"></text></g><g><title>native_write_msr (142 samples, 0.09%)</title><rect x="62.4725%" y="757" width="0.0945%" height="15" fill="rgb(251,14,10)" fg:x="93870" fg:w="142"/><text x="62.7225%" y="767.50"></text></g><g><title>finish_task_switch (156 samples, 0.10%)</title><rect x="62.4652%" y="805" width="0.1038%" height="15" fill="rgb(232,43,0)" fg:x="93859" fg:w="156"/><text x="62.7152%" y="815.50"></text></g><g><title>futex_wait_queue_me (208 samples, 0.14%)</title><rect x="62.4439%" y="853" width="0.1384%" height="15" fill="rgb(222,68,43)" fg:x="93827" fg:w="208"/><text x="62.6939%" y="863.50"></text></g><g><title>schedule (202 samples, 0.13%)</title><rect x="62.4479%" y="837" width="0.1344%" height="15" fill="rgb(217,24,23)" fg:x="93833" fg:w="202"/><text x="62.6979%" y="847.50"></text></g><g><title>__schedule (199 samples, 0.13%)</title><rect x="62.4499%" y="821" width="0.1324%" height="15" fill="rgb(229,209,14)" fg:x="93836" fg:w="199"/><text x="62.6999%" y="831.50"></text></g><g><title>do_syscall_64 (241 samples, 0.16%)</title><rect x="62.4373%" y="917" width="0.1604%" height="15" fill="rgb(250,149,48)" fg:x="93817" fg:w="241"/><text x="62.6873%" y="927.50"></text></g><g><title>__x64_sys_futex (240 samples, 0.16%)</title><rect x="62.4379%" y="901" width="0.1597%" height="15" fill="rgb(210,120,37)" fg:x="93818" fg:w="240"/><text x="62.6879%" y="911.50"></text></g><g><title>do_futex (240 samples, 0.16%)</title><rect x="62.4379%" y="885" width="0.1597%" height="15" fill="rgb(210,21,8)" fg:x="93818" fg:w="240"/><text x="62.6879%" y="895.50"></text></g><g><title>futex_wait (237 samples, 0.16%)</title><rect x="62.4399%" y="869" width="0.1577%" height="15" fill="rgb(243,145,7)" fg:x="93821" fg:w="237"/><text x="62.6899%" y="879.50"></text></g><g><title>futex_wait_setup (23 samples, 0.02%)</title><rect x="62.5824%" y="853" width="0.0153%" height="15" fill="rgb(238,178,32)" fg:x="94035" fg:w="23"/><text x="62.8324%" y="863.50"></text></g><g><title>__pthread_mutex_cond_lock (270 samples, 0.18%)</title><rect x="62.4200%" y="965" width="0.1797%" height="15" fill="rgb(222,4,10)" fg:x="93791" fg:w="270"/><text x="62.6700%" y="975.50"></text></g><g><title>__lll_lock_wait (254 samples, 0.17%)</title><rect x="62.4306%" y="949" width="0.1690%" height="15" fill="rgb(239,7,37)" fg:x="93807" fg:w="254"/><text x="62.6806%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (245 samples, 0.16%)</title><rect x="62.4366%" y="933" width="0.1631%" height="15" fill="rgb(215,31,37)" fg:x="93816" fg:w="245"/><text x="62.6866%" y="943.50"></text></g><g><title>std::condition_variable::wait (9,819 samples, 6.53%)</title><rect x="56.0676%" y="981" width="6.5348%" height="15" fill="rgb(224,83,33)" fg:x="84246" fg:w="9819"/><text x="56.3176%" y="991.50">std::cond..</text></g><g><title>alloc_pages_vma (38 samples, 0.03%)</title><rect x="62.6096%" y="853" width="0.0253%" height="15" fill="rgb(239,55,3)" fg:x="94076" fg:w="38"/><text x="62.8596%" y="863.50"></text></g><g><title>__alloc_pages_nodemask (38 samples, 0.03%)</title><rect x="62.6096%" y="837" width="0.0253%" height="15" fill="rgb(247,92,11)" fg:x="94076" fg:w="38"/><text x="62.8596%" y="847.50"></text></g><g><title>get_page_from_freelist (38 samples, 0.03%)</title><rect x="62.6096%" y="821" width="0.0253%" height="15" fill="rgb(239,200,7)" fg:x="94076" fg:w="38"/><text x="62.8596%" y="831.50"></text></g><g><title>prep_new_page (37 samples, 0.02%)</title><rect x="62.6103%" y="805" width="0.0246%" height="15" fill="rgb(227,115,8)" fg:x="94077" fg:w="37"/><text x="62.8603%" y="815.50"></text></g><g><title>kernel_init_free_pages (37 samples, 0.02%)</title><rect x="62.6103%" y="789" width="0.0246%" height="15" fill="rgb(215,189,27)" fg:x="94077" fg:w="37"/><text x="62.8603%" y="799.50"></text></g><g><title>clear_page_erms (37 samples, 0.02%)</title><rect x="62.6103%" y="773" width="0.0246%" height="15" fill="rgb(251,216,39)" fg:x="94077" fg:w="37"/><text x="62.8603%" y="783.50"></text></g><g><title>do_huge_pmd_anonymous_page (58 samples, 0.04%)</title><rect x="62.6090%" y="869" width="0.0386%" height="15" fill="rgb(207,29,47)" fg:x="94075" fg:w="58"/><text x="62.8590%" y="879.50"></text></g><g><title>clear_huge_page (19 samples, 0.01%)</title><rect x="62.6349%" y="853" width="0.0126%" height="15" fill="rgb(210,71,34)" fg:x="94114" fg:w="19"/><text x="62.8849%" y="863.50"></text></g><g><title>clear_subpage (19 samples, 0.01%)</title><rect x="62.6349%" y="837" width="0.0126%" height="15" fill="rgb(253,217,51)" fg:x="94114" fg:w="19"/><text x="62.8849%" y="847.50"></text></g><g><title>clear_page_erms (17 samples, 0.01%)</title><rect x="62.6363%" y="821" width="0.0113%" height="15" fill="rgb(222,117,46)" fg:x="94116" fg:w="17"/><text x="62.8863%" y="831.50"></text></g><g><title>handle_mm_fault (62 samples, 0.04%)</title><rect x="62.6070%" y="885" width="0.0413%" height="15" fill="rgb(226,132,6)" fg:x="94072" fg:w="62"/><text x="62.8570%" y="895.50"></text></g><g><title>asm_exc_page_fault (63 samples, 0.04%)</title><rect x="62.6070%" y="933" width="0.0419%" height="15" fill="rgb(254,145,51)" fg:x="94072" fg:w="63"/><text x="62.8570%" y="943.50"></text></g><g><title>exc_page_fault (63 samples, 0.04%)</title><rect x="62.6070%" y="917" width="0.0419%" height="15" fill="rgb(231,199,27)" fg:x="94072" fg:w="63"/><text x="62.8570%" y="927.50"></text></g><g><title>do_user_addr_fault (63 samples, 0.04%)</title><rect x="62.6070%" y="901" width="0.0419%" height="15" fill="rgb(245,158,14)" fg:x="94072" fg:w="63"/><text x="62.8570%" y="911.50"></text></g><g><title>allocate_stack (75 samples, 0.05%)</title><rect x="62.6023%" y="949" width="0.0499%" height="15" fill="rgb(240,113,14)" fg:x="94065" fg:w="75"/><text x="62.8523%" y="959.50"></text></g><g><title>__pthread_create_2_1 (77 samples, 0.05%)</title><rect x="62.6023%" y="965" width="0.0512%" height="15" fill="rgb(210,20,13)" fg:x="94065" fg:w="77"/><text x="62.8523%" y="975.50"></text></g><g><title>[ld.lld] (13,123 samples, 8.73%)</title><rect x="53.9206%" y="997" width="8.7336%" height="15" fill="rgb(241,144,13)" fg:x="81020" fg:w="13123"/><text x="54.1706%" y="1007.50">[ld.lld]</text></g><g><title>std::thread::_M_start_thread (78 samples, 0.05%)</title><rect x="62.6023%" y="981" width="0.0519%" height="15" fill="rgb(235,43,34)" fg:x="94065" fg:w="78"/><text x="62.8523%" y="991.50"></text></g><g><title>__vmalloc_node_range (16 samples, 0.01%)</title><rect x="62.6616%" y="885" width="0.0106%" height="15" fill="rgb(208,36,20)" fg:x="94154" fg:w="16"/><text x="62.9116%" y="895.50"></text></g><g><title>inherit_task_group.isra.0 (25 samples, 0.02%)</title><rect x="62.6802%" y="869" width="0.0166%" height="15" fill="rgb(239,204,10)" fg:x="94182" fg:w="25"/><text x="62.9302%" y="879.50"></text></g><g><title>inherit_event.constprop.0 (24 samples, 0.02%)</title><rect x="62.6809%" y="853" width="0.0160%" height="15" fill="rgb(217,84,43)" fg:x="94183" fg:w="24"/><text x="62.9309%" y="863.50"></text></g><g><title>perf_event_alloc (23 samples, 0.02%)</title><rect x="62.6815%" y="837" width="0.0153%" height="15" fill="rgb(241,170,50)" fg:x="94184" fg:w="23"/><text x="62.9315%" y="847.50"></text></g><g><title>perf_event_init_task (27 samples, 0.02%)</title><rect x="62.6802%" y="885" width="0.0180%" height="15" fill="rgb(226,205,29)" fg:x="94182" fg:w="27"/><text x="62.9302%" y="895.50"></text></g><g><title>copy_process (61 samples, 0.04%)</title><rect x="62.6596%" y="901" width="0.0406%" height="15" fill="rgb(233,113,1)" fg:x="94151" fg:w="61"/><text x="62.9096%" y="911.50"></text></g><g><title>__do_sys_clone (65 samples, 0.04%)</title><rect x="62.6589%" y="933" width="0.0433%" height="15" fill="rgb(253,98,13)" fg:x="94150" fg:w="65"/><text x="62.9089%" y="943.50"></text></g><g><title>kernel_clone (65 samples, 0.04%)</title><rect x="62.6589%" y="917" width="0.0433%" height="15" fill="rgb(211,115,12)" fg:x="94150" fg:w="65"/><text x="62.9089%" y="927.50"></text></g><g><title>__GI___clone (66 samples, 0.04%)</title><rect x="62.6589%" y="981" width="0.0439%" height="15" fill="rgb(208,12,16)" fg:x="94150" fg:w="66"/><text x="62.9089%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.04%)</title><rect x="62.6589%" y="965" width="0.0439%" height="15" fill="rgb(237,193,54)" fg:x="94150" fg:w="66"/><text x="62.9089%" y="975.50"></text></g><g><title>do_syscall_64 (66 samples, 0.04%)</title><rect x="62.6589%" y="949" width="0.0439%" height="15" fill="rgb(243,22,42)" fg:x="94150" fg:w="66"/><text x="62.9089%" y="959.50"></text></g><g><title>[unknown] (90 samples, 0.06%)</title><rect x="62.6562%" y="997" width="0.0599%" height="15" fill="rgb(233,151,36)" fg:x="94146" fg:w="90"/><text x="62.9062%" y="1007.50"></text></g><g><title>__perf_event_task_sched_in (1,257 samples, 0.84%)</title><rect x="62.7467%" y="933" width="0.8366%" height="15" fill="rgb(237,57,45)" fg:x="94282" fg:w="1257"/><text x="62.9967%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,232 samples, 0.82%)</title><rect x="62.7634%" y="917" width="0.8199%" height="15" fill="rgb(221,88,17)" fg:x="94307" fg:w="1232"/><text x="63.0134%" y="927.50"></text></g><g><title>native_write_msr (1,230 samples, 0.82%)</title><rect x="62.7647%" y="901" width="0.8186%" height="15" fill="rgb(230,79,15)" fg:x="94309" fg:w="1230"/><text x="63.0147%" y="911.50"></text></g><g><title>asm_sysvec_irq_work (22 samples, 0.01%)</title><rect x="63.5860%" y="933" width="0.0146%" height="15" fill="rgb(213,57,13)" fg:x="95543" fg:w="22"/><text x="63.8360%" y="943.50"></text></g><g><title>sysvec_irq_work (17 samples, 0.01%)</title><rect x="63.5893%" y="917" width="0.0113%" height="15" fill="rgb(222,116,39)" fg:x="95548" fg:w="17"/><text x="63.8393%" y="927.50"></text></g><g><title>asm_call_sysvec_on_stack (17 samples, 0.01%)</title><rect x="63.5893%" y="901" width="0.0113%" height="15" fill="rgb(245,107,2)" fg:x="95548" fg:w="17"/><text x="63.8393%" y="911.50"></text></g><g><title>schedule_tail (1,314 samples, 0.87%)</title><rect x="62.7274%" y="965" width="0.8745%" height="15" fill="rgb(238,1,10)" fg:x="94253" fg:w="1314"/><text x="62.9774%" y="975.50"></text></g><g><title>finish_task_switch (1,309 samples, 0.87%)</title><rect x="62.7308%" y="949" width="0.8712%" height="15" fill="rgb(249,4,48)" fg:x="94258" fg:w="1309"/><text x="62.9808%" y="959.50"></text></g><g><title>ret_from_fork (1,334 samples, 0.89%)</title><rect x="62.7221%" y="981" width="0.8878%" height="15" fill="rgb(223,151,18)" fg:x="94245" fg:w="1334"/><text x="62.9721%" y="991.50"></text></g><g><title>__libc_thread_freeres (23 samples, 0.02%)</title><rect x="63.6239%" y="965" width="0.0153%" height="15" fill="rgb(227,65,43)" fg:x="95600" fg:w="23"/><text x="63.8739%" y="975.50"></text></g><g><title>flush_tlb_mm_range (33 samples, 0.02%)</title><rect x="63.6585%" y="837" width="0.0220%" height="15" fill="rgb(218,40,45)" fg:x="95652" fg:w="33"/><text x="63.9085%" y="847.50"></text></g><g><title>smp_call_function_many_cond (31 samples, 0.02%)</title><rect x="63.6598%" y="821" width="0.0206%" height="15" fill="rgb(252,121,31)" fg:x="95654" fg:w="31"/><text x="63.9098%" y="831.50"></text></g><g><title>tlb_finish_mmu (36 samples, 0.02%)</title><rect x="63.6578%" y="853" width="0.0240%" height="15" fill="rgb(219,158,43)" fg:x="95651" fg:w="36"/><text x="63.9078%" y="863.50"></text></g><g><title>advise_stack_range (72 samples, 0.05%)</title><rect x="63.6512%" y="965" width="0.0479%" height="15" fill="rgb(231,162,42)" fg:x="95641" fg:w="72"/><text x="63.9012%" y="975.50"></text></g><g><title>__GI_madvise (70 samples, 0.05%)</title><rect x="63.6525%" y="949" width="0.0466%" height="15" fill="rgb(217,179,25)" fg:x="95643" fg:w="70"/><text x="63.9025%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.05%)</title><rect x="63.6532%" y="933" width="0.0459%" height="15" fill="rgb(206,212,31)" fg:x="95644" fg:w="69"/><text x="63.9032%" y="943.50"></text></g><g><title>do_syscall_64 (69 samples, 0.05%)</title><rect x="63.6532%" y="917" width="0.0459%" height="15" fill="rgb(235,144,12)" fg:x="95644" fg:w="69"/><text x="63.9032%" y="927.50"></text></g><g><title>__x64_sys_madvise (69 samples, 0.05%)</title><rect x="63.6532%" y="901" width="0.0459%" height="15" fill="rgb(213,51,10)" fg:x="95644" fg:w="69"/><text x="63.9032%" y="911.50"></text></g><g><title>do_madvise.part.0 (69 samples, 0.05%)</title><rect x="63.6532%" y="885" width="0.0459%" height="15" fill="rgb(231,145,14)" fg:x="95644" fg:w="69"/><text x="63.9032%" y="895.50"></text></g><g><title>zap_page_range (66 samples, 0.04%)</title><rect x="63.6552%" y="869" width="0.0439%" height="15" fill="rgb(235,15,28)" fg:x="95647" fg:w="66"/><text x="63.9052%" y="879.50"></text></g><g><title>unmap_page_range (25 samples, 0.02%)</title><rect x="63.6825%" y="853" width="0.0166%" height="15" fill="rgb(237,206,10)" fg:x="95688" fg:w="25"/><text x="63.9325%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="63.7004%" y="965" width="0.0106%" height="15" fill="rgb(236,227,27)" fg:x="95715" fg:w="16"/><text x="63.9504%" y="975.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="63.7004%" y="949" width="0.0106%" height="15" fill="rgb(246,83,35)" fg:x="95715" fg:w="16"/><text x="63.9504%" y="959.50"></text></g><g><title>__GI___clone (1,496 samples, 1.00%)</title><rect x="62.7161%" y="997" width="0.9956%" height="15" fill="rgb(220,136,24)" fg:x="94236" fg:w="1496"/><text x="62.9661%" y="1007.50"></text></g><g><title>start_thread (153 samples, 0.10%)</title><rect x="63.6099%" y="981" width="0.1018%" height="15" fill="rgb(217,3,25)" fg:x="95579" fg:w="153"/><text x="63.8599%" y="991.50"></text></g><g><title>__split_vma (18 samples, 0.01%)</title><rect x="63.7324%" y="677" width="0.0120%" height="15" fill="rgb(239,24,14)" fg:x="95763" fg:w="18"/><text x="63.9824%" y="687.50"></text></g><g><title>__do_munmap (21 samples, 0.01%)</title><rect x="63.7324%" y="693" width="0.0140%" height="15" fill="rgb(244,16,53)" fg:x="95763" fg:w="21"/><text x="63.9824%" y="703.50"></text></g><g><title>do_mmap (34 samples, 0.02%)</title><rect x="63.7304%" y="725" width="0.0226%" height="15" fill="rgb(208,175,44)" fg:x="95760" fg:w="34"/><text x="63.9804%" y="735.50"></text></g><g><title>mmap_region (33 samples, 0.02%)</title><rect x="63.7310%" y="709" width="0.0220%" height="15" fill="rgb(252,18,48)" fg:x="95761" fg:w="33"/><text x="63.9810%" y="719.50"></text></g><g><title>ksys_mmap_pgoff (35 samples, 0.02%)</title><rect x="63.7304%" y="757" width="0.0233%" height="15" fill="rgb(234,199,32)" fg:x="95760" fg:w="35"/><text x="63.9804%" y="767.50"></text></g><g><title>vm_mmap_pgoff (35 samples, 0.02%)</title><rect x="63.7304%" y="741" width="0.0233%" height="15" fill="rgb(225,77,54)" fg:x="95760" fg:w="35"/><text x="63.9804%" y="751.50"></text></g><g><title>_dl_map_segments (41 samples, 0.03%)</title><rect x="63.7271%" y="837" width="0.0273%" height="15" fill="rgb(225,42,25)" fg:x="95755" fg:w="41"/><text x="63.9771%" y="847.50"></text></g><g><title>__mmap64 (36 samples, 0.02%)</title><rect x="63.7304%" y="821" width="0.0240%" height="15" fill="rgb(242,227,46)" fg:x="95760" fg:w="36"/><text x="63.9804%" y="831.50"></text></g><g><title>__mmap64 (36 samples, 0.02%)</title><rect x="63.7304%" y="805" width="0.0240%" height="15" fill="rgb(246,197,35)" fg:x="95760" fg:w="36"/><text x="63.9804%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="63.7304%" y="789" width="0.0240%" height="15" fill="rgb(215,159,26)" fg:x="95760" fg:w="36"/><text x="63.9804%" y="799.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="63.7304%" y="773" width="0.0240%" height="15" fill="rgb(212,194,50)" fg:x="95760" fg:w="36"/><text x="63.9804%" y="783.50"></text></g><g><title>_dl_map_object_from_fd (62 samples, 0.04%)</title><rect x="63.7257%" y="853" width="0.0413%" height="15" fill="rgb(246,132,1)" fg:x="95753" fg:w="62"/><text x="63.9757%" y="863.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="63.7710%" y="789" width="0.0113%" height="15" fill="rgb(217,71,7)" fg:x="95821" fg:w="17"/><text x="64.0210%" y="799.50"></text></g><g><title>__x64_sys_openat (17 samples, 0.01%)</title><rect x="63.7710%" y="773" width="0.0113%" height="15" fill="rgb(252,59,32)" fg:x="95821" fg:w="17"/><text x="64.0210%" y="783.50"></text></g><g><title>do_sys_openat2 (17 samples, 0.01%)</title><rect x="63.7710%" y="757" width="0.0113%" height="15" fill="rgb(253,204,25)" fg:x="95821" fg:w="17"/><text x="64.0210%" y="767.50"></text></g><g><title>open_path (25 samples, 0.02%)</title><rect x="63.7670%" y="853" width="0.0166%" height="15" fill="rgb(232,21,16)" fg:x="95815" fg:w="25"/><text x="64.0170%" y="863.50"></text></g><g><title>open_verify (19 samples, 0.01%)</title><rect x="63.7710%" y="837" width="0.0126%" height="15" fill="rgb(248,90,29)" fg:x="95821" fg:w="19"/><text x="64.0210%" y="847.50"></text></g><g><title>__GI___open64_nocancel (19 samples, 0.01%)</title><rect x="63.7710%" y="821" width="0.0126%" height="15" fill="rgb(249,223,7)" fg:x="95821" fg:w="19"/><text x="64.0210%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="63.7710%" y="805" width="0.0126%" height="15" fill="rgb(231,119,42)" fg:x="95821" fg:w="19"/><text x="64.0210%" y="815.50"></text></g><g><title>_dl_catch_exception (91 samples, 0.06%)</title><rect x="63.7244%" y="901" width="0.0606%" height="15" fill="rgb(215,41,35)" fg:x="95751" fg:w="91"/><text x="63.9744%" y="911.50"></text></g><g><title>openaux (90 samples, 0.06%)</title><rect x="63.7251%" y="885" width="0.0599%" height="15" fill="rgb(220,44,45)" fg:x="95752" fg:w="90"/><text x="63.9751%" y="895.50"></text></g><g><title>_dl_map_object (90 samples, 0.06%)</title><rect x="63.7251%" y="869" width="0.0599%" height="15" fill="rgb(253,197,36)" fg:x="95752" fg:w="90"/><text x="63.9751%" y="879.50"></text></g><g><title>_dl_map_object_deps (95 samples, 0.06%)</title><rect x="63.7244%" y="917" width="0.0632%" height="15" fill="rgb(245,225,54)" fg:x="95751" fg:w="95"/><text x="63.9744%" y="927.50"></text></g><g><title>dl_new_hash (34 samples, 0.02%)</title><rect x="63.8236%" y="853" width="0.0226%" height="15" fill="rgb(239,94,37)" fg:x="95900" fg:w="34"/><text x="64.0736%" y="863.50"></text></g><g><title>_dl_lookup_symbol_x (105 samples, 0.07%)</title><rect x="63.8216%" y="869" width="0.0699%" height="15" fill="rgb(242,217,10)" fg:x="95897" fg:w="105"/><text x="64.0716%" y="879.50"></text></g><g><title>do_lookup_x (68 samples, 0.05%)</title><rect x="63.8462%" y="853" width="0.0453%" height="15" fill="rgb(250,193,7)" fg:x="95934" fg:w="68"/><text x="64.0962%" y="863.50"></text></g><g><title>exc_page_fault (23 samples, 0.02%)</title><rect x="63.8914%" y="853" width="0.0153%" height="15" fill="rgb(230,104,19)" fg:x="96002" fg:w="23"/><text x="64.1414%" y="863.50"></text></g><g><title>do_user_addr_fault (23 samples, 0.02%)</title><rect x="63.8914%" y="837" width="0.0153%" height="15" fill="rgb(230,181,4)" fg:x="96002" fg:w="23"/><text x="64.1414%" y="847.50"></text></g><g><title>handle_mm_fault (22 samples, 0.01%)</title><rect x="63.8921%" y="821" width="0.0146%" height="15" fill="rgb(216,219,49)" fg:x="96003" fg:w="22"/><text x="64.1421%" y="831.50"></text></g><g><title>asm_exc_page_fault (24 samples, 0.02%)</title><rect x="63.8914%" y="869" width="0.0160%" height="15" fill="rgb(254,144,0)" fg:x="96002" fg:w="24"/><text x="64.1414%" y="879.50"></text></g><g><title>elf_machine_rela (158 samples, 0.11%)</title><rect x="63.8043%" y="885" width="0.1052%" height="15" fill="rgb(205,209,38)" fg:x="95871" fg:w="158"/><text x="64.0543%" y="895.50"></text></g><g><title>elf_dynamic_do_Rela (176 samples, 0.12%)</title><rect x="63.7976%" y="901" width="0.1171%" height="15" fill="rgb(240,21,42)" fg:x="95861" fg:w="176"/><text x="64.0476%" y="911.50"></text></g><g><title>_dl_relocate_object (182 samples, 0.12%)</title><rect x="63.7943%" y="917" width="0.1211%" height="15" fill="rgb(241,132,3)" fg:x="95856" fg:w="182"/><text x="64.0443%" y="927.50"></text></g><g><title>[ld-2.31.so] (297 samples, 0.20%)</title><rect x="63.7217%" y="933" width="0.1977%" height="15" fill="rgb(225,14,2)" fg:x="95747" fg:w="297"/><text x="63.9717%" y="943.50"></text></g><g><title>_dl_start (299 samples, 0.20%)</title><rect x="63.7217%" y="981" width="0.1990%" height="15" fill="rgb(210,141,35)" fg:x="95747" fg:w="299"/><text x="63.9717%" y="991.50"></text></g><g><title>_dl_start_final (299 samples, 0.20%)</title><rect x="63.7217%" y="965" width="0.1990%" height="15" fill="rgb(251,14,44)" fg:x="95747" fg:w="299"/><text x="63.9717%" y="975.50"></text></g><g><title>_dl_sysdep_start (299 samples, 0.20%)</title><rect x="63.7217%" y="949" width="0.1990%" height="15" fill="rgb(247,48,18)" fg:x="95747" fg:w="299"/><text x="63.9717%" y="959.50"></text></g><g><title>_start (301 samples, 0.20%)</title><rect x="63.7217%" y="997" width="0.2003%" height="15" fill="rgb(225,0,40)" fg:x="95747" fg:w="301"/><text x="63.9717%" y="1007.50"></text></g><g><title>asm_exc_page_fault (79 samples, 0.05%)</title><rect x="63.9221%" y="997" width="0.0526%" height="15" fill="rgb(221,31,33)" fg:x="96048" fg:w="79"/><text x="64.1721%" y="1007.50"></text></g><g><title>__x64_sys_execve (23 samples, 0.02%)</title><rect x="63.9826%" y="965" width="0.0153%" height="15" fill="rgb(237,42,40)" fg:x="96139" fg:w="23"/><text x="64.2326%" y="975.50"></text></g><g><title>do_execveat_common (23 samples, 0.02%)</title><rect x="63.9826%" y="949" width="0.0153%" height="15" fill="rgb(233,51,29)" fg:x="96139" fg:w="23"/><text x="64.2326%" y="959.50"></text></g><g><title>bprm_execve (23 samples, 0.02%)</title><rect x="63.9826%" y="933" width="0.0153%" height="15" fill="rgb(226,58,20)" fg:x="96139" fg:w="23"/><text x="64.2326%" y="943.50"></text></g><g><title>load_elf_binary (23 samples, 0.02%)</title><rect x="63.9826%" y="917" width="0.0153%" height="15" fill="rgb(208,98,7)" fg:x="96139" fg:w="23"/><text x="64.2326%" y="927.50"></text></g><g><title>page_remove_rmap (37 samples, 0.02%)</title><rect x="64.0399%" y="853" width="0.0246%" height="15" fill="rgb(228,143,44)" fg:x="96225" fg:w="37"/><text x="64.2899%" y="863.50"></text></g><g><title>tlb_flush_mmu (30 samples, 0.02%)</title><rect x="64.0645%" y="853" width="0.0200%" height="15" fill="rgb(246,55,38)" fg:x="96262" fg:w="30"/><text x="64.3145%" y="863.50"></text></g><g><title>release_pages (20 samples, 0.01%)</title><rect x="64.0711%" y="837" width="0.0133%" height="15" fill="rgb(247,87,16)" fg:x="96272" fg:w="20"/><text x="64.3211%" y="847.50"></text></g><g><title>unmap_page_range (113 samples, 0.08%)</title><rect x="64.0132%" y="869" width="0.0752%" height="15" fill="rgb(234,129,42)" fg:x="96185" fg:w="113"/><text x="64.2632%" y="879.50"></text></g><g><title>__x64_sys_exit_group (134 samples, 0.09%)</title><rect x="63.9999%" y="965" width="0.0892%" height="15" fill="rgb(220,82,16)" fg:x="96165" fg:w="134"/><text x="64.2499%" y="975.50"></text></g><g><title>do_group_exit (134 samples, 0.09%)</title><rect x="63.9999%" y="949" width="0.0892%" height="15" fill="rgb(211,88,4)" fg:x="96165" fg:w="134"/><text x="64.2499%" y="959.50"></text></g><g><title>do_exit (134 samples, 0.09%)</title><rect x="63.9999%" y="933" width="0.0892%" height="15" fill="rgb(248,151,21)" fg:x="96165" fg:w="134"/><text x="64.2499%" y="943.50"></text></g><g><title>mmput (128 samples, 0.09%)</title><rect x="64.0039%" y="917" width="0.0852%" height="15" fill="rgb(238,163,6)" fg:x="96171" fg:w="128"/><text x="64.2539%" y="927.50"></text></g><g><title>exit_mmap (128 samples, 0.09%)</title><rect x="64.0039%" y="901" width="0.0852%" height="15" fill="rgb(209,183,11)" fg:x="96171" fg:w="128"/><text x="64.2539%" y="911.50"></text></g><g><title>unmap_vmas (114 samples, 0.08%)</title><rect x="64.0132%" y="885" width="0.0759%" height="15" fill="rgb(219,37,20)" fg:x="96185" fg:w="114"/><text x="64.2632%" y="895.50"></text></g><g><title>do_syscall_64 (183 samples, 0.12%)</title><rect x="63.9826%" y="981" width="0.1218%" height="15" fill="rgb(210,158,4)" fg:x="96139" fg:w="183"/><text x="64.2326%" y="991.50"></text></g><g><title>page_remove_rmap (47 samples, 0.03%)</title><rect x="64.1417%" y="821" width="0.0313%" height="15" fill="rgb(221,167,53)" fg:x="96378" fg:w="47"/><text x="64.3917%" y="831.50"></text></g><g><title>tlb_flush_mmu (33 samples, 0.02%)</title><rect x="64.1730%" y="821" width="0.0220%" height="15" fill="rgb(237,151,45)" fg:x="96425" fg:w="33"/><text x="64.4230%" y="831.50"></text></g><g><title>release_pages (24 samples, 0.02%)</title><rect x="64.1789%" y="805" width="0.0160%" height="15" fill="rgb(231,39,3)" fg:x="96434" fg:w="24"/><text x="64.4289%" y="815.50"></text></g><g><title>mmput (138 samples, 0.09%)</title><rect x="64.1051%" y="885" width="0.0918%" height="15" fill="rgb(212,167,28)" fg:x="96323" fg:w="138"/><text x="64.3551%" y="895.50"></text></g><g><title>exit_mmap (138 samples, 0.09%)</title><rect x="64.1051%" y="869" width="0.0918%" height="15" fill="rgb(232,178,8)" fg:x="96323" fg:w="138"/><text x="64.3551%" y="879.50"></text></g><g><title>unmap_vmas (128 samples, 0.09%)</title><rect x="64.1117%" y="853" width="0.0852%" height="15" fill="rgb(225,151,20)" fg:x="96333" fg:w="128"/><text x="64.3617%" y="863.50"></text></g><g><title>unmap_page_range (128 samples, 0.09%)</title><rect x="64.1117%" y="837" width="0.0852%" height="15" fill="rgb(238,3,37)" fg:x="96333" fg:w="128"/><text x="64.3617%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (335 samples, 0.22%)</title><rect x="63.9753%" y="997" width="0.2229%" height="15" fill="rgb(251,147,42)" fg:x="96128" fg:w="335"/><text x="64.2253%" y="1007.50"></text></g><g><title>syscall_exit_to_user_mode (141 samples, 0.09%)</title><rect x="64.1044%" y="981" width="0.0938%" height="15" fill="rgb(208,173,10)" fg:x="96322" fg:w="141"/><text x="64.3544%" y="991.50"></text></g><g><title>exit_to_user_mode_prepare (141 samples, 0.09%)</title><rect x="64.1044%" y="965" width="0.0938%" height="15" fill="rgb(246,225,4)" fg:x="96322" fg:w="141"/><text x="64.3544%" y="975.50"></text></g><g><title>arch_do_signal (141 samples, 0.09%)</title><rect x="64.1044%" y="949" width="0.0938%" height="15" fill="rgb(248,102,6)" fg:x="96322" fg:w="141"/><text x="64.3544%" y="959.50"></text></g><g><title>get_signal (141 samples, 0.09%)</title><rect x="64.1044%" y="933" width="0.0938%" height="15" fill="rgb(232,6,21)" fg:x="96322" fg:w="141"/><text x="64.3544%" y="943.50"></text></g><g><title>do_group_exit (141 samples, 0.09%)</title><rect x="64.1044%" y="917" width="0.0938%" height="15" fill="rgb(221,179,22)" fg:x="96322" fg:w="141"/><text x="64.3544%" y="927.50"></text></g><g><title>do_exit (141 samples, 0.09%)</title><rect x="64.1044%" y="901" width="0.0938%" height="15" fill="rgb(252,50,20)" fg:x="96322" fg:w="141"/><text x="64.3544%" y="911.50"></text></g><g><title>ld.lld (15,530 samples, 10.34%)</title><rect x="53.8813%" y="1013" width="10.3356%" height="15" fill="rgb(222,56,38)" fg:x="80961" fg:w="15530"/><text x="54.1313%" y="1023.50">ld.lld</text></g><g><title>[[heap]] (33 samples, 0.02%)</title><rect x="64.2169%" y="997" width="0.0220%" height="15" fill="rgb(206,193,29)" fg:x="96491" fg:w="33"/><text x="64.4669%" y="1007.50"></text></g><g><title>[bash] (21 samples, 0.01%)</title><rect x="64.2388%" y="981" width="0.0140%" height="15" fill="rgb(239,192,45)" fg:x="96524" fg:w="21"/><text x="64.4888%" y="991.50"></text></g><g><title>[[stack]] (26 samples, 0.02%)</title><rect x="64.2388%" y="997" width="0.0173%" height="15" fill="rgb(254,18,36)" fg:x="96524" fg:w="26"/><text x="64.4888%" y="1007.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="64.2608%" y="997" width="0.0126%" height="15" fill="rgb(221,127,11)" fg:x="96557" fg:w="19"/><text x="64.5108%" y="1007.50"></text></g><g><title>arch_fork (20 samples, 0.01%)</title><rect x="64.2908%" y="165" width="0.0133%" height="15" fill="rgb(234,146,35)" fg:x="96602" fg:w="20"/><text x="64.5408%" y="175.50"></text></g><g><title>ret_from_fork (20 samples, 0.01%)</title><rect x="64.2908%" y="149" width="0.0133%" height="15" fill="rgb(254,201,37)" fg:x="96602" fg:w="20"/><text x="64.5408%" y="159.50"></text></g><g><title>schedule_tail (20 samples, 0.01%)</title><rect x="64.2908%" y="133" width="0.0133%" height="15" fill="rgb(211,202,23)" fg:x="96602" fg:w="20"/><text x="64.5408%" y="143.50"></text></g><g><title>finish_task_switch (17 samples, 0.01%)</title><rect x="64.2927%" y="117" width="0.0113%" height="15" fill="rgb(237,91,2)" fg:x="96605" fg:w="17"/><text x="64.5427%" y="127.50"></text></g><g><title>__perf_event_task_sched_in (17 samples, 0.01%)</title><rect x="64.2927%" y="101" width="0.0113%" height="15" fill="rgb(226,228,36)" fg:x="96605" fg:w="17"/><text x="64.5427%" y="111.50"></text></g><g><title>[bash] (22 samples, 0.01%)</title><rect x="64.2908%" y="213" width="0.0146%" height="15" fill="rgb(213,63,50)" fg:x="96602" fg:w="22"/><text x="64.5408%" y="223.50"></text></g><g><title>make_child (22 samples, 0.01%)</title><rect x="64.2908%" y="197" width="0.0146%" height="15" fill="rgb(235,194,19)" fg:x="96602" fg:w="22"/><text x="64.5408%" y="207.50"></text></g><g><title>__libc_fork (22 samples, 0.01%)</title><rect x="64.2908%" y="181" width="0.0146%" height="15" fill="rgb(207,204,18)" fg:x="96602" fg:w="22"/><text x="64.5408%" y="191.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="64.2894%" y="869" width="0.0166%" height="15" fill="rgb(248,8,7)" fg:x="96600" fg:w="25"/><text x="64.5394%" y="879.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.2894%" y="853" width="0.0166%" height="15" fill="rgb(223,145,47)" fg:x="96600" fg:w="25"/><text x="64.5394%" y="863.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.2894%" y="837" width="0.0166%" height="15" fill="rgb(228,84,11)" fg:x="96600" fg:w="25"/><text x="64.5394%" y="847.50"></text></g><g><title>execute_command_internal (24 samples, 0.02%)</title><rect x="64.2901%" y="821" width="0.0160%" height="15" fill="rgb(218,76,45)" fg:x="96601" fg:w="24"/><text x="64.5401%" y="831.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="805" width="0.0153%" height="15" fill="rgb(223,80,15)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="815.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="789" width="0.0153%" height="15" fill="rgb(219,218,33)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="799.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="773" width="0.0153%" height="15" fill="rgb(208,51,11)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="783.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="757" width="0.0153%" height="15" fill="rgb(229,165,39)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="767.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="741" width="0.0153%" height="15" fill="rgb(241,100,24)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="751.50"></text></g><g><title>evalstring (23 samples, 0.02%)</title><rect x="64.2908%" y="725" width="0.0153%" height="15" fill="rgb(228,14,23)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="735.50"></text></g><g><title>parse_and_execute (23 samples, 0.02%)</title><rect x="64.2908%" y="709" width="0.0153%" height="15" fill="rgb(247,116,52)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="719.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="693" width="0.0153%" height="15" fill="rgb(216,149,33)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="703.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="677" width="0.0153%" height="15" fill="rgb(238,142,29)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="687.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="661" width="0.0153%" height="15" fill="rgb(224,83,40)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="671.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="645" width="0.0153%" height="15" fill="rgb(234,165,11)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="655.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="629" width="0.0153%" height="15" fill="rgb(215,96,23)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="639.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="613" width="0.0153%" height="15" fill="rgb(233,179,26)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="623.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="597" width="0.0153%" height="15" fill="rgb(225,129,33)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="607.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="581" width="0.0153%" height="15" fill="rgb(237,49,13)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="591.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="565" width="0.0153%" height="15" fill="rgb(211,3,31)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="575.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="549" width="0.0153%" height="15" fill="rgb(216,152,19)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="559.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="533" width="0.0153%" height="15" fill="rgb(251,121,35)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="543.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="517" width="0.0153%" height="15" fill="rgb(210,217,47)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="527.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="501" width="0.0153%" height="15" fill="rgb(244,116,22)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="511.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="485" width="0.0153%" height="15" fill="rgb(228,17,21)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="495.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="469" width="0.0153%" height="15" fill="rgb(240,149,34)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="479.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="453" width="0.0153%" height="15" fill="rgb(208,125,47)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="463.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="437" width="0.0153%" height="15" fill="rgb(249,186,39)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="447.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="421" width="0.0153%" height="15" fill="rgb(240,220,33)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="431.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="405" width="0.0153%" height="15" fill="rgb(243,110,23)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="415.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="389" width="0.0153%" height="15" fill="rgb(219,163,46)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="399.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="373" width="0.0153%" height="15" fill="rgb(216,126,30)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="383.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="357" width="0.0153%" height="15" fill="rgb(208,139,11)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="367.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="341" width="0.0153%" height="15" fill="rgb(213,118,36)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="351.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="325" width="0.0153%" height="15" fill="rgb(226,43,17)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="335.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="309" width="0.0153%" height="15" fill="rgb(254,217,4)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="319.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="293" width="0.0153%" height="15" fill="rgb(210,134,47)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="303.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="277" width="0.0153%" height="15" fill="rgb(237,24,49)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="287.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="261" width="0.0153%" height="15" fill="rgb(251,39,46)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="271.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="245" width="0.0153%" height="15" fill="rgb(251,220,3)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="255.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="229" width="0.0153%" height="15" fill="rgb(228,105,12)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="239.50"></text></g><g><title>execute_command (28 samples, 0.02%)</title><rect x="64.2894%" y="917" width="0.0186%" height="15" fill="rgb(215,196,1)" fg:x="96600" fg:w="28"/><text x="64.5394%" y="927.50"></text></g><g><title>execute_command_internal (28 samples, 0.02%)</title><rect x="64.2894%" y="901" width="0.0186%" height="15" fill="rgb(214,33,39)" fg:x="96600" fg:w="28"/><text x="64.5394%" y="911.50"></text></g><g><title>[bash] (28 samples, 0.02%)</title><rect x="64.2894%" y="885" width="0.0186%" height="15" fill="rgb(220,19,52)" fg:x="96600" fg:w="28"/><text x="64.5394%" y="895.50"></text></g><g><title>[bash] (52 samples, 0.03%)</title><rect x="64.2741%" y="981" width="0.0346%" height="15" fill="rgb(221,78,38)" fg:x="96577" fg:w="52"/><text x="64.5241%" y="991.50"></text></g><g><title>execute_command_internal (33 samples, 0.02%)</title><rect x="64.2868%" y="965" width="0.0220%" height="15" fill="rgb(253,30,16)" fg:x="96596" fg:w="33"/><text x="64.5368%" y="975.50"></text></g><g><title>execute_command_internal (29 samples, 0.02%)</title><rect x="64.2894%" y="949" width="0.0193%" height="15" fill="rgb(242,65,0)" fg:x="96600" fg:w="29"/><text x="64.5394%" y="959.50"></text></g><g><title>[bash] (29 samples, 0.02%)</title><rect x="64.2894%" y="933" width="0.0193%" height="15" fill="rgb(235,201,12)" fg:x="96600" fg:w="29"/><text x="64.5394%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.03%)</title><rect x="64.3467%" y="197" width="0.0260%" height="15" fill="rgb(233,161,9)" fg:x="96686" fg:w="39"/><text x="64.5967%" y="207.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.03%)</title><rect x="64.3467%" y="181" width="0.0260%" height="15" fill="rgb(241,207,41)" fg:x="96686" fg:w="39"/><text x="64.5967%" y="191.50"></text></g><g><title>native_write_msr (39 samples, 0.03%)</title><rect x="64.3467%" y="165" width="0.0260%" height="15" fill="rgb(212,69,46)" fg:x="96686" fg:w="39"/><text x="64.5967%" y="175.50"></text></g><g><title>__libc_fork (56 samples, 0.04%)</title><rect x="64.3360%" y="277" width="0.0373%" height="15" fill="rgb(239,69,45)" fg:x="96670" fg:w="56"/><text x="64.5860%" y="287.50"></text></g><g><title>arch_fork (55 samples, 0.04%)</title><rect x="64.3367%" y="261" width="0.0366%" height="15" fill="rgb(242,117,48)" fg:x="96671" fg:w="55"/><text x="64.5867%" y="271.50"></text></g><g><title>ret_from_fork (48 samples, 0.03%)</title><rect x="64.3413%" y="245" width="0.0319%" height="15" fill="rgb(228,41,36)" fg:x="96678" fg:w="48"/><text x="64.5913%" y="255.50"></text></g><g><title>schedule_tail (48 samples, 0.03%)</title><rect x="64.3413%" y="229" width="0.0319%" height="15" fill="rgb(212,3,32)" fg:x="96678" fg:w="48"/><text x="64.5913%" y="239.50"></text></g><g><title>finish_task_switch (43 samples, 0.03%)</title><rect x="64.3447%" y="213" width="0.0286%" height="15" fill="rgb(233,41,49)" fg:x="96683" fg:w="43"/><text x="64.5947%" y="223.50"></text></g><g><title>make_child (60 samples, 0.04%)</title><rect x="64.3347%" y="293" width="0.0399%" height="15" fill="rgb(252,170,49)" fg:x="96668" fg:w="60"/><text x="64.5847%" y="303.50"></text></g><g><title>execute_command (65 samples, 0.04%)</title><rect x="64.3327%" y="949" width="0.0433%" height="15" fill="rgb(229,53,26)" fg:x="96665" fg:w="65"/><text x="64.5827%" y="959.50"></text></g><g><title>execute_command_internal (65 samples, 0.04%)</title><rect x="64.3327%" y="933" width="0.0433%" height="15" fill="rgb(217,157,12)" fg:x="96665" fg:w="65"/><text x="64.5827%" y="943.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="917" width="0.0413%" height="15" fill="rgb(227,17,9)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="927.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="901" width="0.0413%" height="15" fill="rgb(218,84,12)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="911.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="885" width="0.0413%" height="15" fill="rgb(212,79,24)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="895.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="869" width="0.0413%" height="15" fill="rgb(217,222,37)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="879.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="853" width="0.0413%" height="15" fill="rgb(246,208,8)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="863.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="837" width="0.0413%" height="15" fill="rgb(244,133,10)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="847.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="821" width="0.0413%" height="15" fill="rgb(209,219,41)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="831.50"></text></g><g><title>execute_command (62 samples, 0.04%)</title><rect x="64.3347%" y="805" width="0.0413%" height="15" fill="rgb(253,175,45)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="815.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="789" width="0.0413%" height="15" fill="rgb(235,100,37)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="799.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="773" width="0.0413%" height="15" fill="rgb(225,87,19)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="783.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="757" width="0.0413%" height="15" fill="rgb(217,152,17)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="767.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="741" width="0.0413%" height="15" fill="rgb(235,72,13)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="751.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="725" width="0.0413%" height="15" fill="rgb(233,140,18)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="735.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="709" width="0.0413%" height="15" fill="rgb(207,212,28)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="719.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="693" width="0.0413%" height="15" fill="rgb(220,130,25)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="703.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="677" width="0.0413%" height="15" fill="rgb(205,55,34)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="687.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="661" width="0.0413%" height="15" fill="rgb(237,54,35)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="671.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="645" width="0.0413%" height="15" fill="rgb(208,67,23)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="655.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="629" width="0.0413%" height="15" fill="rgb(206,207,50)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="639.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="613" width="0.0413%" height="15" fill="rgb(213,211,42)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="623.50"></text></g><g><title>execute_command (62 samples, 0.04%)</title><rect x="64.3347%" y="597" width="0.0413%" height="15" fill="rgb(252,197,50)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="607.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="581" width="0.0413%" height="15" fill="rgb(251,211,41)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="591.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="565" width="0.0413%" height="15" fill="rgb(229,211,5)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="575.50"></text></g><g><title>execute_command (62 samples, 0.04%)</title><rect x="64.3347%" y="549" width="0.0413%" height="15" fill="rgb(239,36,31)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="559.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="533" width="0.0413%" height="15" fill="rgb(248,67,31)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="543.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="517" width="0.0413%" height="15" fill="rgb(249,55,44)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="527.50"></text></g><g><title>execute_command (62 samples, 0.04%)</title><rect x="64.3347%" y="501" width="0.0413%" height="15" fill="rgb(216,82,12)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="511.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="485" width="0.0413%" height="15" fill="rgb(242,174,1)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="495.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="469" width="0.0413%" height="15" fill="rgb(208,120,29)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="479.50"></text></g><g><title>execute_command (62 samples, 0.04%)</title><rect x="64.3347%" y="453" width="0.0413%" height="15" fill="rgb(221,105,43)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="463.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="437" width="0.0413%" height="15" fill="rgb(234,124,22)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="447.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="421" width="0.0413%" height="15" fill="rgb(212,23,30)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="431.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="405" width="0.0413%" height="15" fill="rgb(219,122,53)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="415.50"></text></g><g><title>expand_words (62 samples, 0.04%)</title><rect x="64.3347%" y="389" width="0.0413%" height="15" fill="rgb(248,84,24)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="399.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="373" width="0.0413%" height="15" fill="rgb(245,115,18)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="383.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="357" width="0.0413%" height="15" fill="rgb(227,176,51)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="367.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="341" width="0.0413%" height="15" fill="rgb(229,63,42)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="351.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="325" width="0.0413%" height="15" fill="rgb(247,202,24)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="335.50"></text></g><g><title>command_substitute (62 samples, 0.04%)</title><rect x="64.3347%" y="309" width="0.0413%" height="15" fill="rgb(244,173,20)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="319.50"></text></g><g><title>sched_exec (18 samples, 0.01%)</title><rect x="64.3946%" y="181" width="0.0120%" height="15" fill="rgb(242,81,47)" fg:x="96758" fg:w="18"/><text x="64.6446%" y="191.50"></text></g><g><title>stop_one_cpu (18 samples, 0.01%)</title><rect x="64.3946%" y="165" width="0.0120%" height="15" fill="rgb(231,185,54)" fg:x="96758" fg:w="18"/><text x="64.6446%" y="175.50"></text></g><g><title>_cond_resched (18 samples, 0.01%)</title><rect x="64.3946%" y="149" width="0.0120%" height="15" fill="rgb(243,55,32)" fg:x="96758" fg:w="18"/><text x="64.6446%" y="159.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="64.3946%" y="133" width="0.0120%" height="15" fill="rgb(208,167,19)" fg:x="96758" fg:w="18"/><text x="64.6446%" y="143.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="64.3946%" y="117" width="0.0120%" height="15" fill="rgb(231,72,35)" fg:x="96758" fg:w="18"/><text x="64.6446%" y="127.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="64.3946%" y="101" width="0.0120%" height="15" fill="rgb(250,173,51)" fg:x="96758" fg:w="18"/><text x="64.6446%" y="111.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (16 samples, 0.01%)</title><rect x="64.3959%" y="85" width="0.0106%" height="15" fill="rgb(209,5,22)" fg:x="96760" fg:w="16"/><text x="64.6459%" y="95.50"></text></g><g><title>bprm_execve (25 samples, 0.02%)</title><rect x="64.3926%" y="197" width="0.0166%" height="15" fill="rgb(250,174,19)" fg:x="96755" fg:w="25"/><text x="64.6426%" y="207.50"></text></g><g><title>shell_execve (28 samples, 0.02%)</title><rect x="64.3919%" y="293" width="0.0186%" height="15" fill="rgb(217,3,49)" fg:x="96754" fg:w="28"/><text x="64.6419%" y="303.50"></text></g><g><title>__GI_execve (28 samples, 0.02%)</title><rect x="64.3919%" y="277" width="0.0186%" height="15" fill="rgb(218,225,5)" fg:x="96754" fg:w="28"/><text x="64.6419%" y="287.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="64.3919%" y="261" width="0.0186%" height="15" fill="rgb(236,89,11)" fg:x="96754" fg:w="28"/><text x="64.6419%" y="271.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="64.3919%" y="245" width="0.0186%" height="15" fill="rgb(206,33,28)" fg:x="96754" fg:w="28"/><text x="64.6419%" y="255.50"></text></g><g><title>__x64_sys_execve (28 samples, 0.02%)</title><rect x="64.3919%" y="229" width="0.0186%" height="15" fill="rgb(241,56,42)" fg:x="96754" fg:w="28"/><text x="64.6419%" y="239.50"></text></g><g><title>do_execveat_common (28 samples, 0.02%)</title><rect x="64.3919%" y="213" width="0.0186%" height="15" fill="rgb(222,44,11)" fg:x="96754" fg:w="28"/><text x="64.6419%" y="223.50"></text></g><g><title>[bash] (41 samples, 0.03%)</title><rect x="64.3853%" y="309" width="0.0273%" height="15" fill="rgb(234,111,20)" fg:x="96744" fg:w="41"/><text x="64.6353%" y="319.50"></text></g><g><title>[bash] (126 samples, 0.08%)</title><rect x="64.3314%" y="965" width="0.0839%" height="15" fill="rgb(237,77,6)" fg:x="96663" fg:w="126"/><text x="64.5814%" y="975.50"></text></g><g><title>execute_command_internal (59 samples, 0.04%)</title><rect x="64.3759%" y="949" width="0.0393%" height="15" fill="rgb(235,111,23)" fg:x="96730" fg:w="59"/><text x="64.6259%" y="959.50"></text></g><g><title>execute_command_internal (51 samples, 0.03%)</title><rect x="64.3813%" y="933" width="0.0339%" height="15" fill="rgb(251,135,29)" fg:x="96738" fg:w="51"/><text x="64.6313%" y="943.50"></text></g><g><title>[bash] (51 samples, 0.03%)</title><rect x="64.3813%" y="917" width="0.0339%" height="15" fill="rgb(217,57,1)" fg:x="96738" fg:w="51"/><text x="64.6313%" y="927.50"></text></g><g><title>execute_command (51 samples, 0.03%)</title><rect x="64.3813%" y="901" width="0.0339%" height="15" fill="rgb(249,119,31)" fg:x="96738" fg:w="51"/><text x="64.6313%" y="911.50"></text></g><g><title>execute_command_internal (51 samples, 0.03%)</title><rect x="64.3813%" y="885" width="0.0339%" height="15" fill="rgb(233,164,33)" fg:x="96738" fg:w="51"/><text x="64.6313%" y="895.50"></text></g><g><title>[bash] (51 samples, 0.03%)</title><rect x="64.3813%" y="869" width="0.0339%" height="15" fill="rgb(250,217,43)" fg:x="96738" fg:w="51"/><text x="64.6313%" y="879.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="853" width="0.0299%" height="15" fill="rgb(232,154,50)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="863.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="837" width="0.0299%" height="15" fill="rgb(227,190,8)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="847.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="821" width="0.0299%" height="15" fill="rgb(209,217,32)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="831.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="805" width="0.0299%" height="15" fill="rgb(243,203,50)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="815.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="789" width="0.0299%" height="15" fill="rgb(232,152,27)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="799.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="773" width="0.0299%" height="15" fill="rgb(240,34,29)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="783.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="757" width="0.0299%" height="15" fill="rgb(215,185,52)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="767.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="741" width="0.0299%" height="15" fill="rgb(240,89,49)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="751.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="725" width="0.0299%" height="15" fill="rgb(225,12,52)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="735.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="709" width="0.0299%" height="15" fill="rgb(239,128,45)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="719.50"></text></g><g><title>execute_command (45 samples, 0.03%)</title><rect x="64.3853%" y="693" width="0.0299%" height="15" fill="rgb(211,78,47)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="703.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="677" width="0.0299%" height="15" fill="rgb(232,31,21)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="687.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="661" width="0.0299%" height="15" fill="rgb(222,168,14)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="671.50"></text></g><g><title>execute_command (45 samples, 0.03%)</title><rect x="64.3853%" y="645" width="0.0299%" height="15" fill="rgb(209,128,24)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="655.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="629" width="0.0299%" height="15" fill="rgb(249,35,13)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="639.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="613" width="0.0299%" height="15" fill="rgb(218,7,2)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="623.50"></text></g><g><title>execute_command (45 samples, 0.03%)</title><rect x="64.3853%" y="597" width="0.0299%" height="15" fill="rgb(238,107,27)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="607.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="581" width="0.0299%" height="15" fill="rgb(217,88,38)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="591.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="565" width="0.0299%" height="15" fill="rgb(230,207,0)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="575.50"></text></g><g><title>execute_command (45 samples, 0.03%)</title><rect x="64.3853%" y="549" width="0.0299%" height="15" fill="rgb(249,64,54)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="559.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="533" width="0.0299%" height="15" fill="rgb(231,7,11)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="543.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="517" width="0.0299%" height="15" fill="rgb(205,149,21)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="527.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="501" width="0.0299%" height="15" fill="rgb(215,126,34)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="511.50"></text></g><g><title>expand_words (45 samples, 0.03%)</title><rect x="64.3853%" y="485" width="0.0299%" height="15" fill="rgb(241,132,45)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="495.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="469" width="0.0299%" height="15" fill="rgb(252,69,32)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="479.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="453" width="0.0299%" height="15" fill="rgb(232,204,19)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="463.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="437" width="0.0299%" height="15" fill="rgb(249,15,47)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="447.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="421" width="0.0299%" height="15" fill="rgb(209,227,23)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="431.50"></text></g><g><title>command_substitute (45 samples, 0.03%)</title><rect x="64.3853%" y="405" width="0.0299%" height="15" fill="rgb(248,92,24)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="415.50"></text></g><g><title>parse_and_execute (45 samples, 0.03%)</title><rect x="64.3853%" y="389" width="0.0299%" height="15" fill="rgb(247,59,2)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="399.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="373" width="0.0299%" height="15" fill="rgb(221,30,5)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="383.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="357" width="0.0299%" height="15" fill="rgb(208,108,53)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="367.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="341" width="0.0299%" height="15" fill="rgb(211,183,26)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="351.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="325" width="0.0299%" height="15" fill="rgb(232,132,4)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="335.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.04%)</title><rect x="64.4392%" y="245" width="0.0446%" height="15" fill="rgb(253,128,37)" fg:x="96825" fg:w="67"/><text x="64.6892%" y="255.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.04%)</title><rect x="64.4398%" y="229" width="0.0439%" height="15" fill="rgb(221,58,24)" fg:x="96826" fg:w="66"/><text x="64.6898%" y="239.50"></text></g><g><title>native_write_msr (66 samples, 0.04%)</title><rect x="64.4398%" y="213" width="0.0439%" height="15" fill="rgb(230,54,45)" fg:x="96826" fg:w="66"/><text x="64.6898%" y="223.50"></text></g><g><title>arch_fork (97 samples, 0.06%)</title><rect x="64.4205%" y="309" width="0.0646%" height="15" fill="rgb(254,21,18)" fg:x="96797" fg:w="97"/><text x="64.6705%" y="319.50"></text></g><g><title>ret_from_fork (83 samples, 0.06%)</title><rect x="64.4298%" y="293" width="0.0552%" height="15" fill="rgb(221,108,0)" fg:x="96811" fg:w="83"/><text x="64.6798%" y="303.50"></text></g><g><title>schedule_tail (83 samples, 0.06%)</title><rect x="64.4298%" y="277" width="0.0552%" height="15" fill="rgb(206,95,1)" fg:x="96811" fg:w="83"/><text x="64.6798%" y="287.50"></text></g><g><title>finish_task_switch (75 samples, 0.05%)</title><rect x="64.4352%" y="261" width="0.0499%" height="15" fill="rgb(237,52,5)" fg:x="96819" fg:w="75"/><text x="64.6852%" y="271.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="869" width="0.0705%" height="15" fill="rgb(218,150,34)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="879.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="853" width="0.0705%" height="15" fill="rgb(235,194,28)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="863.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="837" width="0.0705%" height="15" fill="rgb(245,92,18)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="847.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="821" width="0.0705%" height="15" fill="rgb(253,203,53)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="831.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="805" width="0.0705%" height="15" fill="rgb(249,185,47)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="815.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="789" width="0.0705%" height="15" fill="rgb(252,194,52)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="799.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="773" width="0.0705%" height="15" fill="rgb(210,53,36)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="783.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="757" width="0.0705%" height="15" fill="rgb(237,37,25)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="767.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="741" width="0.0705%" height="15" fill="rgb(242,116,27)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="751.50"></text></g><g><title>execute_command (106 samples, 0.07%)</title><rect x="64.4172%" y="725" width="0.0705%" height="15" fill="rgb(213,185,26)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="735.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="709" width="0.0705%" height="15" fill="rgb(225,204,8)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="719.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="693" width="0.0705%" height="15" fill="rgb(254,111,37)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="703.50"></text></g><g><title>execute_command (106 samples, 0.07%)</title><rect x="64.4172%" y="677" width="0.0705%" height="15" fill="rgb(242,35,9)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="687.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="661" width="0.0705%" height="15" fill="rgb(232,138,49)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="671.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="645" width="0.0705%" height="15" fill="rgb(247,56,4)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="655.50"></text></g><g><title>execute_command (106 samples, 0.07%)</title><rect x="64.4172%" y="629" width="0.0705%" height="15" fill="rgb(226,179,17)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="639.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="613" width="0.0705%" height="15" fill="rgb(216,163,45)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="623.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="597" width="0.0705%" height="15" fill="rgb(211,157,3)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="607.50"></text></g><g><title>execute_command (106 samples, 0.07%)</title><rect x="64.4172%" y="581" width="0.0705%" height="15" fill="rgb(234,44,20)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="591.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="565" width="0.0705%" height="15" fill="rgb(254,138,23)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="575.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="549" width="0.0705%" height="15" fill="rgb(206,119,39)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="559.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="533" width="0.0705%" height="15" fill="rgb(231,105,52)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="543.50"></text></g><g><title>expand_words (106 samples, 0.07%)</title><rect x="64.4172%" y="517" width="0.0705%" height="15" fill="rgb(250,20,5)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="527.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="501" width="0.0705%" height="15" fill="rgb(215,198,30)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="511.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="485" width="0.0705%" height="15" fill="rgb(246,142,8)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="495.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="469" width="0.0705%" height="15" fill="rgb(243,26,38)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="479.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="453" width="0.0705%" height="15" fill="rgb(205,133,28)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="463.50"></text></g><g><title>command_substitute (106 samples, 0.07%)</title><rect x="64.4172%" y="437" width="0.0705%" height="15" fill="rgb(212,34,0)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="447.50"></text></g><g><title>parse_and_execute (106 samples, 0.07%)</title><rect x="64.4172%" y="421" width="0.0705%" height="15" fill="rgb(251,226,22)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="431.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="405" width="0.0705%" height="15" fill="rgb(252,119,9)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="415.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="389" width="0.0705%" height="15" fill="rgb(213,150,50)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="399.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="373" width="0.0705%" height="15" fill="rgb(212,24,39)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="383.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="357" width="0.0705%" height="15" fill="rgb(213,46,39)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="367.50"></text></g><g><title>make_child (101 samples, 0.07%)</title><rect x="64.4205%" y="341" width="0.0672%" height="15" fill="rgb(239,106,12)" fg:x="96797" fg:w="101"/><text x="64.6705%" y="351.50"></text></g><g><title>__libc_fork (101 samples, 0.07%)</title><rect x="64.4205%" y="325" width="0.0672%" height="15" fill="rgb(249,229,21)" fg:x="96797" fg:w="101"/><text x="64.6705%" y="335.50"></text></g><g><title>execute_command (110 samples, 0.07%)</title><rect x="64.4152%" y="933" width="0.0732%" height="15" fill="rgb(212,158,3)" fg:x="96789" fg:w="110"/><text x="64.6652%" y="943.50"></text></g><g><title>execute_command_internal (110 samples, 0.07%)</title><rect x="64.4152%" y="917" width="0.0732%" height="15" fill="rgb(253,26,48)" fg:x="96789" fg:w="110"/><text x="64.6652%" y="927.50"></text></g><g><title>[bash] (110 samples, 0.07%)</title><rect x="64.4152%" y="901" width="0.0732%" height="15" fill="rgb(238,178,20)" fg:x="96789" fg:w="110"/><text x="64.6652%" y="911.50"></text></g><g><title>execute_command_internal (107 samples, 0.07%)</title><rect x="64.4172%" y="885" width="0.0712%" height="15" fill="rgb(208,86,15)" fg:x="96792" fg:w="107"/><text x="64.6672%" y="895.50"></text></g><g><title>execute_command_internal (237 samples, 0.16%)</title><rect x="64.3314%" y="981" width="0.1577%" height="15" fill="rgb(239,42,53)" fg:x="96663" fg:w="237"/><text x="64.5814%" y="991.50"></text></g><g><title>execute_command_internal (111 samples, 0.07%)</title><rect x="64.4152%" y="965" width="0.0739%" height="15" fill="rgb(245,226,8)" fg:x="96789" fg:w="111"/><text x="64.6652%" y="975.50"></text></g><g><title>[bash] (111 samples, 0.07%)</title><rect x="64.4152%" y="949" width="0.0739%" height="15" fill="rgb(216,176,32)" fg:x="96789" fg:w="111"/><text x="64.6652%" y="959.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="64.4931%" y="197" width="0.0180%" height="15" fill="rgb(231,186,21)" fg:x="96906" fg:w="27"/><text x="64.7431%" y="207.50"></text></g><g><title>ksys_read (27 samples, 0.02%)</title><rect x="64.4931%" y="181" width="0.0180%" height="15" fill="rgb(205,95,49)" fg:x="96906" fg:w="27"/><text x="64.7431%" y="191.50"></text></g><g><title>vfs_read (27 samples, 0.02%)</title><rect x="64.4931%" y="165" width="0.0180%" height="15" fill="rgb(217,145,8)" fg:x="96906" fg:w="27"/><text x="64.7431%" y="175.50"></text></g><g><title>new_sync_read (27 samples, 0.02%)</title><rect x="64.4931%" y="149" width="0.0180%" height="15" fill="rgb(239,144,48)" fg:x="96906" fg:w="27"/><text x="64.7431%" y="159.50"></text></g><g><title>pipe_read (27 samples, 0.02%)</title><rect x="64.4931%" y="133" width="0.0180%" height="15" fill="rgb(214,189,23)" fg:x="96906" fg:w="27"/><text x="64.7431%" y="143.50"></text></g><g><title>schedule (26 samples, 0.02%)</title><rect x="64.4937%" y="117" width="0.0173%" height="15" fill="rgb(229,157,17)" fg:x="96907" fg:w="26"/><text x="64.7437%" y="127.50"></text></g><g><title>__schedule (26 samples, 0.02%)</title><rect x="64.4937%" y="101" width="0.0173%" height="15" fill="rgb(230,5,48)" fg:x="96907" fg:w="26"/><text x="64.7437%" y="111.50"></text></g><g><title>finish_task_switch (26 samples, 0.02%)</title><rect x="64.4937%" y="85" width="0.0173%" height="15" fill="rgb(224,156,48)" fg:x="96907" fg:w="26"/><text x="64.7437%" y="95.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="64.4944%" y="69" width="0.0166%" height="15" fill="rgb(223,14,29)" fg:x="96908" fg:w="25"/><text x="64.7444%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="64.4951%" y="53" width="0.0160%" height="15" fill="rgb(229,96,36)" fg:x="96909" fg:w="24"/><text x="64.7451%" y="63.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="64.4951%" y="37" width="0.0160%" height="15" fill="rgb(231,102,53)" fg:x="96909" fg:w="24"/><text x="64.7451%" y="47.50"></text></g><g><title>main (32 samples, 0.02%)</title><rect x="64.4904%" y="981" width="0.0213%" height="15" fill="rgb(210,77,38)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="991.50"></text></g><g><title>reader_loop (32 samples, 0.02%)</title><rect x="64.4904%" y="965" width="0.0213%" height="15" fill="rgb(235,131,6)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="975.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="949" width="0.0213%" height="15" fill="rgb(252,55,38)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="959.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="933" width="0.0213%" height="15" fill="rgb(246,38,14)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="943.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="917" width="0.0213%" height="15" fill="rgb(242,27,5)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="927.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="901" width="0.0213%" height="15" fill="rgb(228,65,35)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="911.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="885" width="0.0213%" height="15" fill="rgb(245,93,11)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="895.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="869" width="0.0213%" height="15" fill="rgb(213,1,31)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="879.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="853" width="0.0213%" height="15" fill="rgb(237,205,14)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="863.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="837" width="0.0213%" height="15" fill="rgb(232,118,45)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="847.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="821" width="0.0213%" height="15" fill="rgb(218,5,6)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="831.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="805" width="0.0213%" height="15" fill="rgb(251,87,51)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="815.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="789" width="0.0213%" height="15" fill="rgb(207,225,20)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="799.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="773" width="0.0213%" height="15" fill="rgb(222,78,54)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="783.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="757" width="0.0213%" height="15" fill="rgb(232,85,16)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="767.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="741" width="0.0213%" height="15" fill="rgb(244,25,33)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="751.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="725" width="0.0213%" height="15" fill="rgb(233,24,36)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="735.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="709" width="0.0213%" height="15" fill="rgb(253,49,54)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="719.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="693" width="0.0213%" height="15" fill="rgb(245,12,22)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="703.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="677" width="0.0213%" height="15" fill="rgb(253,141,28)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="687.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="661" width="0.0213%" height="15" fill="rgb(225,207,27)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="671.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="645" width="0.0213%" height="15" fill="rgb(220,84,2)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="655.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="629" width="0.0213%" height="15" fill="rgb(224,37,37)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="639.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="613" width="0.0213%" height="15" fill="rgb(220,143,18)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="623.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="597" width="0.0213%" height="15" fill="rgb(210,88,33)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="607.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="581" width="0.0213%" height="15" fill="rgb(219,87,51)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="591.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="565" width="0.0213%" height="15" fill="rgb(211,7,35)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="575.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="549" width="0.0213%" height="15" fill="rgb(232,77,2)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="559.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="533" width="0.0213%" height="15" fill="rgb(249,94,25)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="543.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="517" width="0.0213%" height="15" fill="rgb(215,112,2)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="527.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="501" width="0.0213%" height="15" fill="rgb(226,115,48)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="511.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="485" width="0.0213%" height="15" fill="rgb(249,196,10)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="495.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="469" width="0.0213%" height="15" fill="rgb(237,109,14)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="479.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="453" width="0.0213%" height="15" fill="rgb(217,103,53)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="463.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="437" width="0.0213%" height="15" fill="rgb(244,137,9)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="447.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="421" width="0.0213%" height="15" fill="rgb(227,201,3)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="431.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="405" width="0.0213%" height="15" fill="rgb(243,94,6)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="415.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="389" width="0.0213%" height="15" fill="rgb(235,118,5)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="399.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="373" width="0.0213%" height="15" fill="rgb(247,10,30)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="383.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="357" width="0.0213%" height="15" fill="rgb(205,26,28)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="367.50"></text></g><g><title>expand_words (32 samples, 0.02%)</title><rect x="64.4904%" y="341" width="0.0213%" height="15" fill="rgb(206,99,35)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="351.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="325" width="0.0213%" height="15" fill="rgb(238,130,40)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="335.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="309" width="0.0213%" height="15" fill="rgb(224,126,31)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="319.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="293" width="0.0213%" height="15" fill="rgb(254,105,17)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="303.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="277" width="0.0213%" height="15" fill="rgb(216,87,36)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="287.50"></text></g><g><title>command_substitute (32 samples, 0.02%)</title><rect x="64.4904%" y="261" width="0.0213%" height="15" fill="rgb(240,21,12)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="271.50"></text></g><g><title>zread (28 samples, 0.02%)</title><rect x="64.4931%" y="245" width="0.0186%" height="15" fill="rgb(245,192,34)" fg:x="96906" fg:w="28"/><text x="64.7431%" y="255.50"></text></g><g><title>__GI___libc_read (28 samples, 0.02%)</title><rect x="64.4931%" y="229" width="0.0186%" height="15" fill="rgb(226,100,49)" fg:x="96906" fg:w="28"/><text x="64.7431%" y="239.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="64.4931%" y="213" width="0.0186%" height="15" fill="rgb(245,188,27)" fg:x="96906" fg:w="28"/><text x="64.7431%" y="223.50"></text></g><g><title>[unknown] (375 samples, 0.25%)</title><rect x="64.2741%" y="997" width="0.2496%" height="15" fill="rgb(212,170,8)" fg:x="96577" fg:w="375"/><text x="64.5241%" y="1007.50"></text></g><g><title>dispose_command (16 samples, 0.01%)</title><rect x="64.5363%" y="757" width="0.0106%" height="15" fill="rgb(217,113,29)" fg:x="96971" fg:w="16"/><text x="64.7863%" y="767.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="64.5343%" y="917" width="0.0133%" height="15" fill="rgb(237,30,3)" fg:x="96968" fg:w="20"/><text x="64.7843%" y="927.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="64.5343%" y="901" width="0.0133%" height="15" fill="rgb(227,19,28)" fg:x="96968" fg:w="20"/><text x="64.7843%" y="911.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.5350%" y="885" width="0.0126%" height="15" fill="rgb(239,172,45)" fg:x="96969" fg:w="19"/><text x="64.7850%" y="895.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.5350%" y="869" width="0.0126%" height="15" fill="rgb(254,55,39)" fg:x="96969" fg:w="19"/><text x="64.7850%" y="879.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.5350%" y="853" width="0.0126%" height="15" fill="rgb(249,208,12)" fg:x="96969" fg:w="19"/><text x="64.7850%" y="863.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.5350%" y="837" width="0.0126%" height="15" fill="rgb(240,52,13)" fg:x="96969" fg:w="19"/><text x="64.7850%" y="847.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.5350%" y="821" width="0.0126%" height="15" fill="rgb(252,149,13)" fg:x="96969" fg:w="19"/><text x="64.7850%" y="831.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="64.5357%" y="805" width="0.0120%" height="15" fill="rgb(232,81,48)" fg:x="96970" fg:w="18"/><text x="64.7857%" y="815.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="64.5357%" y="789" width="0.0120%" height="15" fill="rgb(222,144,2)" fg:x="96970" fg:w="18"/><text x="64.7857%" y="799.50"></text></g><g><title>dispose_command (17 samples, 0.01%)</title><rect x="64.5363%" y="773" width="0.0113%" height="15" fill="rgb(216,81,32)" fg:x="96971" fg:w="17"/><text x="64.7863%" y="783.50"></text></g><g><title>dispose_command (21 samples, 0.01%)</title><rect x="64.5343%" y="933" width="0.0140%" height="15" fill="rgb(244,78,51)" fg:x="96968" fg:w="21"/><text x="64.7843%" y="943.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.5630%" y="853" width="0.0166%" height="15" fill="rgb(217,66,21)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="863.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.5630%" y="837" width="0.0166%" height="15" fill="rgb(247,101,42)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="847.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.5630%" y="821" width="0.0166%" height="15" fill="rgb(227,81,39)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="831.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.5630%" y="805" width="0.0166%" height="15" fill="rgb(220,223,44)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="815.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.5630%" y="789" width="0.0166%" height="15" fill="rgb(205,218,2)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="799.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.5630%" y="773" width="0.0166%" height="15" fill="rgb(212,207,28)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="783.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.5630%" y="757" width="0.0166%" height="15" fill="rgb(224,12,41)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="767.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="64.5630%" y="741" width="0.0166%" height="15" fill="rgb(216,118,12)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="751.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.5630%" y="725" width="0.0166%" height="15" fill="rgb(252,97,46)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="735.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.5630%" y="709" width="0.0166%" height="15" fill="rgb(244,206,19)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.04%)</title><rect x="64.5962%" y="757" width="0.0379%" height="15" fill="rgb(231,84,31)" fg:x="97061" fg:w="57"/><text x="64.8462%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (57 samples, 0.04%)</title><rect x="64.5962%" y="741" width="0.0379%" height="15" fill="rgb(244,133,0)" fg:x="97061" fg:w="57"/><text x="64.8462%" y="751.50"></text></g><g><title>native_write_msr (57 samples, 0.04%)</title><rect x="64.5962%" y="725" width="0.0379%" height="15" fill="rgb(223,15,50)" fg:x="97061" fg:w="57"/><text x="64.8462%" y="735.50"></text></g><g><title>arch_fork (80 samples, 0.05%)</title><rect x="64.5823%" y="821" width="0.0532%" height="15" fill="rgb(250,118,49)" fg:x="97040" fg:w="80"/><text x="64.8323%" y="831.50"></text></g><g><title>ret_from_fork (72 samples, 0.05%)</title><rect x="64.5876%" y="805" width="0.0479%" height="15" fill="rgb(248,25,38)" fg:x="97048" fg:w="72"/><text x="64.8376%" y="815.50"></text></g><g><title>schedule_tail (72 samples, 0.05%)</title><rect x="64.5876%" y="789" width="0.0479%" height="15" fill="rgb(215,70,14)" fg:x="97048" fg:w="72"/><text x="64.8376%" y="799.50"></text></g><g><title>finish_task_switch (66 samples, 0.04%)</title><rect x="64.5916%" y="773" width="0.0439%" height="15" fill="rgb(215,28,15)" fg:x="97054" fg:w="66"/><text x="64.8416%" y="783.50"></text></g><g><title>__libc_fork (83 samples, 0.06%)</title><rect x="64.5809%" y="837" width="0.0552%" height="15" fill="rgb(243,6,28)" fg:x="97038" fg:w="83"/><text x="64.8309%" y="847.50"></text></g><g><title>make_child (85 samples, 0.06%)</title><rect x="64.5809%" y="853" width="0.0566%" height="15" fill="rgb(222,130,1)" fg:x="97038" fg:w="85"/><text x="64.8309%" y="863.50"></text></g><g><title>execute_command (142 samples, 0.09%)</title><rect x="64.5543%" y="885" width="0.0945%" height="15" fill="rgb(236,166,44)" fg:x="96998" fg:w="142"/><text x="64.8043%" y="895.50"></text></g><g><title>execute_command_internal (142 samples, 0.09%)</title><rect x="64.5543%" y="869" width="0.0945%" height="15" fill="rgb(221,108,14)" fg:x="96998" fg:w="142"/><text x="64.8043%" y="879.50"></text></g><g><title>wait_for (16 samples, 0.01%)</title><rect x="64.6382%" y="853" width="0.0106%" height="15" fill="rgb(252,3,45)" fg:x="97124" fg:w="16"/><text x="64.8882%" y="863.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.6488%" y="885" width="0.0133%" height="15" fill="rgb(237,68,30)" fg:x="97140" fg:w="20"/><text x="64.8988%" y="895.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.6488%" y="869" width="0.0133%" height="15" fill="rgb(211,79,22)" fg:x="97140" fg:w="20"/><text x="64.8988%" y="879.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.6488%" y="853" width="0.0133%" height="15" fill="rgb(252,185,21)" fg:x="97140" fg:w="20"/><text x="64.8988%" y="863.50"></text></g><g><title>[bash] (169 samples, 0.11%)</title><rect x="64.5503%" y="901" width="0.1125%" height="15" fill="rgb(225,189,26)" fg:x="96992" fg:w="169"/><text x="64.8003%" y="911.50"></text></g><g><title>copy_command (23 samples, 0.02%)</title><rect x="64.6821%" y="421" width="0.0153%" height="15" fill="rgb(241,30,40)" fg:x="97190" fg:w="23"/><text x="64.9321%" y="431.50"></text></g><g><title>copy_command (20 samples, 0.01%)</title><rect x="64.6841%" y="405" width="0.0133%" height="15" fill="rgb(235,215,44)" fg:x="97193" fg:w="20"/><text x="64.9341%" y="415.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="64.6867%" y="389" width="0.0106%" height="15" fill="rgb(205,8,29)" fg:x="97197" fg:w="16"/><text x="64.9367%" y="399.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="64.6821%" y="453" width="0.0160%" height="15" fill="rgb(241,137,42)" fg:x="97190" fg:w="24"/><text x="64.9321%" y="463.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="64.6821%" y="437" width="0.0160%" height="15" fill="rgb(237,155,2)" fg:x="97190" fg:w="24"/><text x="64.9321%" y="447.50"></text></g><g><title>copy_command (25 samples, 0.02%)</title><rect x="64.6821%" y="469" width="0.0166%" height="15" fill="rgb(245,29,42)" fg:x="97190" fg:w="25"/><text x="64.9321%" y="479.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="64.6814%" y="485" width="0.0180%" height="15" fill="rgb(234,101,35)" fg:x="97189" fg:w="27"/><text x="64.9314%" y="495.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="64.6807%" y="517" width="0.0193%" height="15" fill="rgb(228,64,37)" fg:x="97188" fg:w="29"/><text x="64.9307%" y="527.50"></text></g><g><title>copy_command (28 samples, 0.02%)</title><rect x="64.6814%" y="501" width="0.0186%" height="15" fill="rgb(217,214,36)" fg:x="97189" fg:w="28"/><text x="64.9314%" y="511.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="64.6807%" y="533" width="0.0200%" height="15" fill="rgb(243,70,3)" fg:x="97188" fg:w="30"/><text x="64.9307%" y="543.50"></text></g><g><title>copy_command (33 samples, 0.02%)</title><rect x="64.6807%" y="549" width="0.0220%" height="15" fill="rgb(253,158,52)" fg:x="97188" fg:w="33"/><text x="64.9307%" y="559.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="64.6807%" y="565" width="0.0226%" height="15" fill="rgb(234,111,54)" fg:x="97188" fg:w="34"/><text x="64.9307%" y="575.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="64.6807%" y="581" width="0.0233%" height="15" fill="rgb(217,70,32)" fg:x="97188" fg:w="35"/><text x="64.9307%" y="591.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="64.6807%" y="613" width="0.0246%" height="15" fill="rgb(234,18,33)" fg:x="97188" fg:w="37"/><text x="64.9307%" y="623.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="64.6807%" y="597" width="0.0246%" height="15" fill="rgb(234,12,49)" fg:x="97188" fg:w="37"/><text x="64.9307%" y="607.50"></text></g><g><title>copy_command (39 samples, 0.03%)</title><rect x="64.6807%" y="629" width="0.0260%" height="15" fill="rgb(236,10,21)" fg:x="97188" fg:w="39"/><text x="64.9307%" y="639.50"></text></g><g><title>copy_command (41 samples, 0.03%)</title><rect x="64.6801%" y="645" width="0.0273%" height="15" fill="rgb(248,182,45)" fg:x="97187" fg:w="41"/><text x="64.9301%" y="655.50"></text></g><g><title>copy_command (42 samples, 0.03%)</title><rect x="64.6801%" y="677" width="0.0280%" height="15" fill="rgb(217,95,36)" fg:x="97187" fg:w="42"/><text x="64.9301%" y="687.50"></text></g><g><title>copy_command (42 samples, 0.03%)</title><rect x="64.6801%" y="661" width="0.0280%" height="15" fill="rgb(212,110,31)" fg:x="97187" fg:w="42"/><text x="64.9301%" y="671.50"></text></g><g><title>copy_command (45 samples, 0.03%)</title><rect x="64.6801%" y="693" width="0.0299%" height="15" fill="rgb(206,32,53)" fg:x="97187" fg:w="45"/><text x="64.9301%" y="703.50"></text></g><g><title>copy_command (47 samples, 0.03%)</title><rect x="64.6801%" y="709" width="0.0313%" height="15" fill="rgb(246,141,37)" fg:x="97187" fg:w="47"/><text x="64.9301%" y="719.50"></text></g><g><title>copy_command (48 samples, 0.03%)</title><rect x="64.6801%" y="725" width="0.0319%" height="15" fill="rgb(219,16,7)" fg:x="97187" fg:w="48"/><text x="64.9301%" y="735.50"></text></g><g><title>copy_command (63 samples, 0.04%)</title><rect x="64.6714%" y="741" width="0.0419%" height="15" fill="rgb(230,205,45)" fg:x="97174" fg:w="63"/><text x="64.9214%" y="751.50"></text></g><g><title>copy_command (65 samples, 0.04%)</title><rect x="64.6708%" y="757" width="0.0433%" height="15" fill="rgb(231,43,49)" fg:x="97173" fg:w="65"/><text x="64.9208%" y="767.50"></text></g><g><title>copy_command (66 samples, 0.04%)</title><rect x="64.6708%" y="773" width="0.0439%" height="15" fill="rgb(212,106,34)" fg:x="97173" fg:w="66"/><text x="64.9208%" y="783.50"></text></g><g><title>copy_command (68 samples, 0.05%)</title><rect x="64.6708%" y="789" width="0.0453%" height="15" fill="rgb(206,83,17)" fg:x="97173" fg:w="68"/><text x="64.9208%" y="799.50"></text></g><g><title>copy_command (73 samples, 0.05%)</title><rect x="64.6681%" y="805" width="0.0486%" height="15" fill="rgb(244,154,49)" fg:x="97169" fg:w="73"/><text x="64.9181%" y="815.50"></text></g><g><title>copy_command (78 samples, 0.05%)</title><rect x="64.6661%" y="821" width="0.0519%" height="15" fill="rgb(244,149,49)" fg:x="97166" fg:w="78"/><text x="64.9161%" y="831.50"></text></g><g><title>copy_command (83 samples, 0.06%)</title><rect x="64.6641%" y="837" width="0.0552%" height="15" fill="rgb(227,134,18)" fg:x="97163" fg:w="83"/><text x="64.9141%" y="847.50"></text></g><g><title>copy_command (87 samples, 0.06%)</title><rect x="64.6634%" y="853" width="0.0579%" height="15" fill="rgb(237,116,36)" fg:x="97162" fg:w="87"/><text x="64.9134%" y="863.50"></text></g><g><title>copy_command (91 samples, 0.06%)</title><rect x="64.6634%" y="869" width="0.0606%" height="15" fill="rgb(205,129,40)" fg:x="97162" fg:w="91"/><text x="64.9134%" y="879.50"></text></g><g><title>copy_command (92 samples, 0.06%)</title><rect x="64.6634%" y="885" width="0.0612%" height="15" fill="rgb(236,178,4)" fg:x="97162" fg:w="92"/><text x="64.9134%" y="895.50"></text></g><g><title>bind_function (94 samples, 0.06%)</title><rect x="64.6628%" y="901" width="0.0626%" height="15" fill="rgb(251,76,53)" fg:x="97161" fg:w="94"/><text x="64.9128%" y="911.50"></text></g><g><title>copy_command (18 samples, 0.01%)</title><rect x="64.7480%" y="389" width="0.0120%" height="15" fill="rgb(242,92,40)" fg:x="97289" fg:w="18"/><text x="64.9980%" y="399.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="64.7486%" y="373" width="0.0113%" height="15" fill="rgb(209,45,30)" fg:x="97290" fg:w="17"/><text x="64.9986%" y="383.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="64.7493%" y="357" width="0.0106%" height="15" fill="rgb(218,157,36)" fg:x="97291" fg:w="16"/><text x="64.9993%" y="367.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="64.7493%" y="341" width="0.0106%" height="15" fill="rgb(222,186,16)" fg:x="97291" fg:w="16"/><text x="64.9993%" y="351.50"></text></g><g><title>copy_command (21 samples, 0.01%)</title><rect x="64.7466%" y="405" width="0.0140%" height="15" fill="rgb(254,72,35)" fg:x="97287" fg:w="21"/><text x="64.9966%" y="415.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="64.7460%" y="421" width="0.0160%" height="15" fill="rgb(224,25,35)" fg:x="97286" fg:w="24"/><text x="64.9960%" y="431.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="64.7446%" y="533" width="0.0180%" height="15" fill="rgb(206,135,52)" fg:x="97284" fg:w="27"/><text x="64.9946%" y="543.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="64.7446%" y="517" width="0.0180%" height="15" fill="rgb(229,174,47)" fg:x="97284" fg:w="27"/><text x="64.9946%" y="527.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="64.7453%" y="501" width="0.0173%" height="15" fill="rgb(242,184,21)" fg:x="97285" fg:w="26"/><text x="64.9953%" y="511.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="64.7453%" y="485" width="0.0173%" height="15" fill="rgb(213,22,45)" fg:x="97285" fg:w="26"/><text x="64.9953%" y="495.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="64.7453%" y="469" width="0.0173%" height="15" fill="rgb(237,81,54)" fg:x="97285" fg:w="26"/><text x="64.9953%" y="479.50"></text></g><g><title>copy_command (25 samples, 0.02%)</title><rect x="64.7460%" y="453" width="0.0166%" height="15" fill="rgb(248,177,18)" fg:x="97286" fg:w="25"/><text x="64.9960%" y="463.50"></text></g><g><title>copy_command (25 samples, 0.02%)</title><rect x="64.7460%" y="437" width="0.0166%" height="15" fill="rgb(254,31,16)" fg:x="97286" fg:w="25"/><text x="64.9960%" y="447.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="64.7446%" y="549" width="0.0193%" height="15" fill="rgb(235,20,31)" fg:x="97284" fg:w="29"/><text x="64.9946%" y="559.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7446%" y="645" width="0.0206%" height="15" fill="rgb(240,56,43)" fg:x="97284" fg:w="31"/><text x="64.9946%" y="655.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7446%" y="629" width="0.0206%" height="15" fill="rgb(237,197,51)" fg:x="97284" fg:w="31"/><text x="64.9946%" y="639.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7446%" y="613" width="0.0206%" height="15" fill="rgb(241,162,44)" fg:x="97284" fg:w="31"/><text x="64.9946%" y="623.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7446%" y="597" width="0.0206%" height="15" fill="rgb(224,23,20)" fg:x="97284" fg:w="31"/><text x="64.9946%" y="607.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7446%" y="581" width="0.0206%" height="15" fill="rgb(250,109,34)" fg:x="97284" fg:w="31"/><text x="64.9946%" y="591.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7446%" y="565" width="0.0206%" height="15" fill="rgb(214,175,50)" fg:x="97284" fg:w="31"/><text x="64.9946%" y="575.50"></text></g><g><title>copy_command (33 samples, 0.02%)</title><rect x="64.7440%" y="677" width="0.0220%" height="15" fill="rgb(213,182,5)" fg:x="97283" fg:w="33"/><text x="64.9940%" y="687.50"></text></g><g><title>copy_command (33 samples, 0.02%)</title><rect x="64.7440%" y="661" width="0.0220%" height="15" fill="rgb(209,199,19)" fg:x="97283" fg:w="33"/><text x="64.9940%" y="671.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="64.7440%" y="693" width="0.0233%" height="15" fill="rgb(236,224,42)" fg:x="97283" fg:w="35"/><text x="64.9940%" y="703.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="64.7440%" y="709" width="0.0246%" height="15" fill="rgb(246,226,29)" fg:x="97283" fg:w="37"/><text x="64.9940%" y="719.50"></text></g><g><title>copy_command (38 samples, 0.03%)</title><rect x="64.7440%" y="725" width="0.0253%" height="15" fill="rgb(227,223,11)" fg:x="97283" fg:w="38"/><text x="64.9940%" y="735.50"></text></g><g><title>copy_command (53 samples, 0.04%)</title><rect x="64.7353%" y="741" width="0.0353%" height="15" fill="rgb(219,7,51)" fg:x="97270" fg:w="53"/><text x="64.9853%" y="751.50"></text></g><g><title>copy_command (56 samples, 0.04%)</title><rect x="64.7340%" y="757" width="0.0373%" height="15" fill="rgb(245,167,10)" fg:x="97268" fg:w="56"/><text x="64.9840%" y="767.50"></text></g><g><title>copy_command (58 samples, 0.04%)</title><rect x="64.7340%" y="773" width="0.0386%" height="15" fill="rgb(237,224,16)" fg:x="97268" fg:w="58"/><text x="64.9840%" y="783.50"></text></g><g><title>copy_command (61 samples, 0.04%)</title><rect x="64.7333%" y="789" width="0.0406%" height="15" fill="rgb(226,132,13)" fg:x="97267" fg:w="61"/><text x="64.9833%" y="799.50"></text></g><g><title>copy_command (71 samples, 0.05%)</title><rect x="64.7293%" y="805" width="0.0473%" height="15" fill="rgb(214,140,3)" fg:x="97261" fg:w="71"/><text x="64.9793%" y="815.50"></text></g><g><title>copy_command (75 samples, 0.05%)</title><rect x="64.7287%" y="821" width="0.0499%" height="15" fill="rgb(221,177,4)" fg:x="97260" fg:w="75"/><text x="64.9787%" y="831.50"></text></g><g><title>copy_command (79 samples, 0.05%)</title><rect x="64.7273%" y="837" width="0.0526%" height="15" fill="rgb(238,139,3)" fg:x="97258" fg:w="79"/><text x="64.9773%" y="847.50"></text></g><g><title>copy_command (81 samples, 0.05%)</title><rect x="64.7267%" y="853" width="0.0539%" height="15" fill="rgb(216,17,39)" fg:x="97257" fg:w="81"/><text x="64.9767%" y="863.50"></text></g><g><title>copy_command (82 samples, 0.05%)</title><rect x="64.7267%" y="869" width="0.0546%" height="15" fill="rgb(238,120,9)" fg:x="97257" fg:w="82"/><text x="64.9767%" y="879.50"></text></g><g><title>copy_function_def_contents (83 samples, 0.06%)</title><rect x="64.7267%" y="901" width="0.0552%" height="15" fill="rgb(244,92,53)" fg:x="97257" fg:w="83"/><text x="64.9767%" y="911.50"></text></g><g><title>copy_command (83 samples, 0.06%)</title><rect x="64.7267%" y="885" width="0.0552%" height="15" fill="rgb(224,148,33)" fg:x="97257" fg:w="83"/><text x="64.9767%" y="895.50"></text></g><g><title>evalstring (16 samples, 0.01%)</title><rect x="64.7819%" y="853" width="0.0106%" height="15" fill="rgb(243,6,36)" fg:x="97340" fg:w="16"/><text x="65.0319%" y="863.50"></text></g><g><title>parse_and_execute (16 samples, 0.01%)</title><rect x="64.7819%" y="837" width="0.0106%" height="15" fill="rgb(230,102,11)" fg:x="97340" fg:w="16"/><text x="65.0319%" y="847.50"></text></g><g><title>[bash] (24 samples, 0.02%)</title><rect x="64.7819%" y="869" width="0.0160%" height="15" fill="rgb(234,148,36)" fg:x="97340" fg:w="24"/><text x="65.0319%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (72 samples, 0.05%)</title><rect x="64.8198%" y="725" width="0.0479%" height="15" fill="rgb(251,153,25)" fg:x="97397" fg:w="72"/><text x="65.0698%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.05%)</title><rect x="64.8218%" y="709" width="0.0459%" height="15" fill="rgb(215,129,8)" fg:x="97400" fg:w="69"/><text x="65.0718%" y="719.50"></text></g><g><title>native_write_msr (69 samples, 0.05%)</title><rect x="64.8218%" y="693" width="0.0459%" height="15" fill="rgb(224,128,35)" fg:x="97400" fg:w="69"/><text x="65.0718%" y="703.50"></text></g><g><title>schedule_tail (85 samples, 0.06%)</title><rect x="64.8119%" y="757" width="0.0566%" height="15" fill="rgb(237,56,52)" fg:x="97385" fg:w="85"/><text x="65.0619%" y="767.50"></text></g><g><title>finish_task_switch (75 samples, 0.05%)</title><rect x="64.8185%" y="741" width="0.0499%" height="15" fill="rgb(234,213,19)" fg:x="97395" fg:w="75"/><text x="65.0685%" y="751.50"></text></g><g><title>arch_fork (97 samples, 0.06%)</title><rect x="64.8045%" y="789" width="0.0646%" height="15" fill="rgb(252,82,23)" fg:x="97374" fg:w="97"/><text x="65.0545%" y="799.50"></text></g><g><title>ret_from_fork (86 samples, 0.06%)</title><rect x="64.8119%" y="773" width="0.0572%" height="15" fill="rgb(254,201,21)" fg:x="97385" fg:w="86"/><text x="65.0619%" y="783.50"></text></g><g><title>__libc_fork (98 samples, 0.07%)</title><rect x="64.8045%" y="805" width="0.0652%" height="15" fill="rgb(250,186,11)" fg:x="97374" fg:w="98"/><text x="65.0545%" y="815.50"></text></g><g><title>make_child (101 samples, 0.07%)</title><rect x="64.8039%" y="821" width="0.0672%" height="15" fill="rgb(211,174,5)" fg:x="97373" fg:w="101"/><text x="65.0539%" y="831.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="64.8718%" y="789" width="0.0106%" height="15" fill="rgb(214,121,10)" fg:x="97475" fg:w="16"/><text x="65.1218%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (47 samples, 0.03%)</title><rect x="64.8911%" y="693" width="0.0313%" height="15" fill="rgb(241,66,2)" fg:x="97504" fg:w="47"/><text x="65.1411%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (45 samples, 0.03%)</title><rect x="64.8924%" y="677" width="0.0299%" height="15" fill="rgb(220,167,19)" fg:x="97506" fg:w="45"/><text x="65.1424%" y="687.50"></text></g><g><title>native_write_msr (45 samples, 0.03%)</title><rect x="64.8924%" y="661" width="0.0299%" height="15" fill="rgb(231,54,50)" fg:x="97506" fg:w="45"/><text x="65.1424%" y="671.50"></text></g><g><title>__libc_fork (61 samples, 0.04%)</title><rect x="64.8831%" y="773" width="0.0406%" height="15" fill="rgb(239,217,53)" fg:x="97492" fg:w="61"/><text x="65.1331%" y="783.50"></text></g><g><title>arch_fork (59 samples, 0.04%)</title><rect x="64.8844%" y="757" width="0.0393%" height="15" fill="rgb(248,8,0)" fg:x="97494" fg:w="59"/><text x="65.1344%" y="767.50"></text></g><g><title>ret_from_fork (56 samples, 0.04%)</title><rect x="64.8864%" y="741" width="0.0373%" height="15" fill="rgb(229,118,37)" fg:x="97497" fg:w="56"/><text x="65.1364%" y="751.50"></text></g><g><title>schedule_tail (56 samples, 0.04%)</title><rect x="64.8864%" y="725" width="0.0373%" height="15" fill="rgb(253,223,43)" fg:x="97497" fg:w="56"/><text x="65.1364%" y="735.50"></text></g><g><title>finish_task_switch (51 samples, 0.03%)</title><rect x="64.8897%" y="709" width="0.0339%" height="15" fill="rgb(211,77,36)" fg:x="97502" fg:w="51"/><text x="65.1397%" y="719.50"></text></g><g><title>make_child (64 samples, 0.04%)</title><rect x="64.8824%" y="789" width="0.0426%" height="15" fill="rgb(219,3,53)" fg:x="97491" fg:w="64"/><text x="65.1324%" y="799.50"></text></g><g><title>execute_command_internal (98 samples, 0.07%)</title><rect x="64.8718%" y="805" width="0.0652%" height="15" fill="rgb(244,45,42)" fg:x="97475" fg:w="98"/><text x="65.1218%" y="815.50"></text></g><g><title>parse_and_execute (104 samples, 0.07%)</title><rect x="64.8711%" y="821" width="0.0692%" height="15" fill="rgb(225,95,27)" fg:x="97474" fg:w="104"/><text x="65.1211%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (41 samples, 0.03%)</title><rect x="64.9490%" y="645" width="0.0273%" height="15" fill="rgb(207,74,8)" fg:x="97591" fg:w="41"/><text x="65.1990%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (40 samples, 0.03%)</title><rect x="64.9496%" y="629" width="0.0266%" height="15" fill="rgb(243,63,36)" fg:x="97592" fg:w="40"/><text x="65.1996%" y="639.50"></text></g><g><title>native_write_msr (40 samples, 0.03%)</title><rect x="64.9496%" y="613" width="0.0266%" height="15" fill="rgb(211,180,12)" fg:x="97592" fg:w="40"/><text x="65.1996%" y="623.50"></text></g><g><title>do_syscall_64 (49 samples, 0.03%)</title><rect x="64.9443%" y="773" width="0.0326%" height="15" fill="rgb(254,166,49)" fg:x="97584" fg:w="49"/><text x="65.1943%" y="783.50"></text></g><g><title>ksys_read (49 samples, 0.03%)</title><rect x="64.9443%" y="757" width="0.0326%" height="15" fill="rgb(205,19,0)" fg:x="97584" fg:w="49"/><text x="65.1943%" y="767.50"></text></g><g><title>vfs_read (49 samples, 0.03%)</title><rect x="64.9443%" y="741" width="0.0326%" height="15" fill="rgb(224,172,32)" fg:x="97584" fg:w="49"/><text x="65.1943%" y="751.50"></text></g><g><title>new_sync_read (49 samples, 0.03%)</title><rect x="64.9443%" y="725" width="0.0326%" height="15" fill="rgb(254,136,30)" fg:x="97584" fg:w="49"/><text x="65.1943%" y="735.50"></text></g><g><title>pipe_read (49 samples, 0.03%)</title><rect x="64.9443%" y="709" width="0.0326%" height="15" fill="rgb(246,19,35)" fg:x="97584" fg:w="49"/><text x="65.1943%" y="719.50"></text></g><g><title>schedule (46 samples, 0.03%)</title><rect x="64.9463%" y="693" width="0.0306%" height="15" fill="rgb(219,24,36)" fg:x="97587" fg:w="46"/><text x="65.1963%" y="703.50"></text></g><g><title>__schedule (44 samples, 0.03%)</title><rect x="64.9476%" y="677" width="0.0293%" height="15" fill="rgb(251,55,1)" fg:x="97589" fg:w="44"/><text x="65.1976%" y="687.50"></text></g><g><title>finish_task_switch (44 samples, 0.03%)</title><rect x="64.9476%" y="661" width="0.0293%" height="15" fill="rgb(218,117,39)" fg:x="97589" fg:w="44"/><text x="65.1976%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.03%)</title><rect x="64.9443%" y="789" width="0.0333%" height="15" fill="rgb(248,169,11)" fg:x="97584" fg:w="50"/><text x="65.1943%" y="799.50"></text></g><g><title>expand_word_leave_quoted (271 samples, 0.18%)</title><rect x="64.7992%" y="869" width="0.1804%" height="15" fill="rgb(244,40,44)" fg:x="97366" fg:w="271"/><text x="65.0492%" y="879.50"></text></g><g><title>[bash] (271 samples, 0.18%)</title><rect x="64.7992%" y="853" width="0.1804%" height="15" fill="rgb(234,62,37)" fg:x="97366" fg:w="271"/><text x="65.0492%" y="863.50"></text></g><g><title>command_substitute (270 samples, 0.18%)</title><rect x="64.7999%" y="837" width="0.1797%" height="15" fill="rgb(207,117,42)" fg:x="97367" fg:w="270"/><text x="65.0499%" y="847.50"></text></g><g><title>zread (53 samples, 0.04%)</title><rect x="64.9443%" y="821" width="0.0353%" height="15" fill="rgb(213,43,2)" fg:x="97584" fg:w="53"/><text x="65.1943%" y="831.50"></text></g><g><title>__GI___libc_read (53 samples, 0.04%)</title><rect x="64.9443%" y="805" width="0.0353%" height="15" fill="rgb(244,202,51)" fg:x="97584" fg:w="53"/><text x="65.1943%" y="815.50"></text></g><g><title>execute_command (310 samples, 0.21%)</title><rect x="64.7819%" y="901" width="0.2063%" height="15" fill="rgb(253,174,46)" fg:x="97340" fg:w="310"/><text x="65.0319%" y="911.50"></text></g><g><title>execute_command_internal (310 samples, 0.21%)</title><rect x="64.7819%" y="885" width="0.2063%" height="15" fill="rgb(251,23,1)" fg:x="97340" fg:w="310"/><text x="65.0319%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.04%)</title><rect x="65.0162%" y="709" width="0.0426%" height="15" fill="rgb(253,26,1)" fg:x="97692" fg:w="64"/><text x="65.2662%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (63 samples, 0.04%)</title><rect x="65.0168%" y="693" width="0.0419%" height="15" fill="rgb(216,89,31)" fg:x="97693" fg:w="63"/><text x="65.2668%" y="703.50"></text></g><g><title>native_write_msr (63 samples, 0.04%)</title><rect x="65.0168%" y="677" width="0.0419%" height="15" fill="rgb(209,109,5)" fg:x="97693" fg:w="63"/><text x="65.2668%" y="687.50"></text></g><g><title>arch_fork (84 samples, 0.06%)</title><rect x="65.0042%" y="773" width="0.0559%" height="15" fill="rgb(229,63,13)" fg:x="97674" fg:w="84"/><text x="65.2542%" y="783.50"></text></g><g><title>ret_from_fork (77 samples, 0.05%)</title><rect x="65.0089%" y="757" width="0.0512%" height="15" fill="rgb(238,137,54)" fg:x="97681" fg:w="77"/><text x="65.2589%" y="767.50"></text></g><g><title>schedule_tail (76 samples, 0.05%)</title><rect x="65.0095%" y="741" width="0.0506%" height="15" fill="rgb(228,1,9)" fg:x="97682" fg:w="76"/><text x="65.2595%" y="751.50"></text></g><g><title>finish_task_switch (71 samples, 0.05%)</title><rect x="65.0128%" y="725" width="0.0473%" height="15" fill="rgb(249,120,48)" fg:x="97687" fg:w="71"/><text x="65.2628%" y="735.50"></text></g><g><title>__libc_fork (87 samples, 0.06%)</title><rect x="65.0029%" y="789" width="0.0579%" height="15" fill="rgb(209,72,36)" fg:x="97672" fg:w="87"/><text x="65.2529%" y="799.50"></text></g><g><title>make_child (90 samples, 0.06%)</title><rect x="65.0029%" y="805" width="0.0599%" height="15" fill="rgb(247,98,49)" fg:x="97672" fg:w="90"/><text x="65.2529%" y="815.50"></text></g><g><title>_cond_resched (18 samples, 0.01%)</title><rect x="65.0794%" y="565" width="0.0120%" height="15" fill="rgb(233,75,36)" fg:x="97787" fg:w="18"/><text x="65.3294%" y="575.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="65.0794%" y="549" width="0.0120%" height="15" fill="rgb(225,14,24)" fg:x="97787" fg:w="18"/><text x="65.3294%" y="559.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="65.0794%" y="533" width="0.0120%" height="15" fill="rgb(237,193,20)" fg:x="97787" fg:w="18"/><text x="65.3294%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (17 samples, 0.01%)</title><rect x="65.0801%" y="517" width="0.0113%" height="15" fill="rgb(239,122,19)" fg:x="97788" fg:w="17"/><text x="65.3301%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (16 samples, 0.01%)</title><rect x="65.0807%" y="501" width="0.0106%" height="15" fill="rgb(231,220,10)" fg:x="97789" fg:w="16"/><text x="65.3307%" y="511.50"></text></g><g><title>native_write_msr (16 samples, 0.01%)</title><rect x="65.0807%" y="485" width="0.0106%" height="15" fill="rgb(220,66,15)" fg:x="97789" fg:w="16"/><text x="65.3307%" y="495.50"></text></g><g><title>sched_exec (20 samples, 0.01%)</title><rect x="65.0787%" y="597" width="0.0133%" height="15" fill="rgb(215,171,52)" fg:x="97786" fg:w="20"/><text x="65.3287%" y="607.50"></text></g><g><title>stop_one_cpu (20 samples, 0.01%)</title><rect x="65.0787%" y="581" width="0.0133%" height="15" fill="rgb(241,169,50)" fg:x="97786" fg:w="20"/><text x="65.3287%" y="591.50"></text></g><g><title>__GI_execve (28 samples, 0.02%)</title><rect x="65.0754%" y="693" width="0.0186%" height="15" fill="rgb(236,189,0)" fg:x="97781" fg:w="28"/><text x="65.3254%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="65.0754%" y="677" width="0.0186%" height="15" fill="rgb(217,147,20)" fg:x="97781" fg:w="28"/><text x="65.3254%" y="687.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="65.0754%" y="661" width="0.0186%" height="15" fill="rgb(206,188,39)" fg:x="97781" fg:w="28"/><text x="65.3254%" y="671.50"></text></g><g><title>__x64_sys_execve (28 samples, 0.02%)</title><rect x="65.0754%" y="645" width="0.0186%" height="15" fill="rgb(227,118,25)" fg:x="97781" fg:w="28"/><text x="65.3254%" y="655.50"></text></g><g><title>do_execveat_common (28 samples, 0.02%)</title><rect x="65.0754%" y="629" width="0.0186%" height="15" fill="rgb(248,171,40)" fg:x="97781" fg:w="28"/><text x="65.3254%" y="639.50"></text></g><g><title>bprm_execve (28 samples, 0.02%)</title><rect x="65.0754%" y="613" width="0.0186%" height="15" fill="rgb(251,90,54)" fg:x="97781" fg:w="28"/><text x="65.3254%" y="623.50"></text></g><g><title>shell_execve (30 samples, 0.02%)</title><rect x="65.0754%" y="709" width="0.0200%" height="15" fill="rgb(234,11,46)" fg:x="97781" fg:w="30"/><text x="65.3254%" y="719.50"></text></g><g><title>[bash] (40 samples, 0.03%)</title><rect x="65.0701%" y="725" width="0.0266%" height="15" fill="rgb(229,134,13)" fg:x="97773" fg:w="40"/><text x="65.3201%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (109 samples, 0.07%)</title><rect x="65.1233%" y="629" width="0.0725%" height="15" fill="rgb(223,129,3)" fg:x="97853" fg:w="109"/><text x="65.3733%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (106 samples, 0.07%)</title><rect x="65.1253%" y="613" width="0.0705%" height="15" fill="rgb(221,124,13)" fg:x="97856" fg:w="106"/><text x="65.3753%" y="623.50"></text></g><g><title>native_write_msr (106 samples, 0.07%)</title><rect x="65.1253%" y="597" width="0.0705%" height="15" fill="rgb(234,3,18)" fg:x="97856" fg:w="106"/><text x="65.3753%" y="607.50"></text></g><g><title>arch_fork (139 samples, 0.09%)</title><rect x="65.1047%" y="693" width="0.0925%" height="15" fill="rgb(249,199,20)" fg:x="97825" fg:w="139"/><text x="65.3547%" y="703.50"></text></g><g><title>ret_from_fork (131 samples, 0.09%)</title><rect x="65.1100%" y="677" width="0.0872%" height="15" fill="rgb(224,134,6)" fg:x="97833" fg:w="131"/><text x="65.3600%" y="687.50"></text></g><g><title>schedule_tail (129 samples, 0.09%)</title><rect x="65.1113%" y="661" width="0.0859%" height="15" fill="rgb(254,83,26)" fg:x="97835" fg:w="129"/><text x="65.3613%" y="671.50"></text></g><g><title>finish_task_switch (118 samples, 0.08%)</title><rect x="65.1187%" y="645" width="0.0785%" height="15" fill="rgb(217,88,9)" fg:x="97846" fg:w="118"/><text x="65.3687%" y="655.50"></text></g><g><title>__libc_fork (142 samples, 0.09%)</title><rect x="65.1040%" y="709" width="0.0945%" height="15" fill="rgb(225,73,2)" fg:x="97824" fg:w="142"/><text x="65.3540%" y="719.50"></text></g><g><title>make_child (150 samples, 0.10%)</title><rect x="65.1040%" y="725" width="0.0998%" height="15" fill="rgb(226,44,39)" fg:x="97824" fg:w="150"/><text x="65.3540%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.02%)</title><rect x="65.2072%" y="565" width="0.0200%" height="15" fill="rgb(228,53,17)" fg:x="97979" fg:w="30"/><text x="65.4572%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.02%)</title><rect x="65.2072%" y="549" width="0.0200%" height="15" fill="rgb(212,27,27)" fg:x="97979" fg:w="30"/><text x="65.4572%" y="559.50"></text></g><g><title>native_write_msr (30 samples, 0.02%)</title><rect x="65.2072%" y="533" width="0.0200%" height="15" fill="rgb(241,50,6)" fg:x="97979" fg:w="30"/><text x="65.4572%" y="543.50"></text></g><g><title>finish_task_switch (31 samples, 0.02%)</title><rect x="65.2072%" y="581" width="0.0206%" height="15" fill="rgb(225,28,51)" fg:x="97979" fg:w="31"/><text x="65.4572%" y="591.50"></text></g><g><title>schedule (32 samples, 0.02%)</title><rect x="65.2072%" y="613" width="0.0213%" height="15" fill="rgb(215,33,16)" fg:x="97979" fg:w="32"/><text x="65.4572%" y="623.50"></text></g><g><title>__schedule (32 samples, 0.02%)</title><rect x="65.2072%" y="597" width="0.0213%" height="15" fill="rgb(243,40,39)" fg:x="97979" fg:w="32"/><text x="65.4572%" y="607.50"></text></g><g><title>__GI___wait4 (39 samples, 0.03%)</title><rect x="65.2052%" y="693" width="0.0260%" height="15" fill="rgb(225,11,42)" fg:x="97976" fg:w="39"/><text x="65.4552%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="65.2058%" y="677" width="0.0253%" height="15" fill="rgb(241,220,38)" fg:x="97977" fg:w="38"/><text x="65.4558%" y="687.50"></text></g><g><title>do_syscall_64 (38 samples, 0.03%)</title><rect x="65.2058%" y="661" width="0.0253%" height="15" fill="rgb(244,52,35)" fg:x="97977" fg:w="38"/><text x="65.4558%" y="671.50"></text></g><g><title>kernel_wait4 (38 samples, 0.03%)</title><rect x="65.2058%" y="645" width="0.0253%" height="15" fill="rgb(246,42,46)" fg:x="97977" fg:w="38"/><text x="65.4558%" y="655.50"></text></g><g><title>do_wait (38 samples, 0.03%)</title><rect x="65.2058%" y="629" width="0.0253%" height="15" fill="rgb(205,184,13)" fg:x="97977" fg:w="38"/><text x="65.4558%" y="639.50"></text></g><g><title>execute_command_internal (252 samples, 0.17%)</title><rect x="65.0641%" y="789" width="0.1677%" height="15" fill="rgb(209,48,36)" fg:x="97764" fg:w="252"/><text x="65.3141%" y="799.50"></text></g><g><title>[bash] (252 samples, 0.17%)</title><rect x="65.0641%" y="773" width="0.1677%" height="15" fill="rgb(244,34,51)" fg:x="97764" fg:w="252"/><text x="65.3141%" y="783.50"></text></g><g><title>[bash] (252 samples, 0.17%)</title><rect x="65.0641%" y="757" width="0.1677%" height="15" fill="rgb(221,107,33)" fg:x="97764" fg:w="252"/><text x="65.3141%" y="767.50"></text></g><g><title>execute_command_internal (246 samples, 0.16%)</title><rect x="65.0681%" y="741" width="0.1637%" height="15" fill="rgb(224,203,12)" fg:x="97770" fg:w="246"/><text x="65.3181%" y="751.50"></text></g><g><title>wait_for (40 samples, 0.03%)</title><rect x="65.2052%" y="725" width="0.0266%" height="15" fill="rgb(230,215,18)" fg:x="97976" fg:w="40"/><text x="65.4552%" y="735.50"></text></g><g><title>[bash] (40 samples, 0.03%)</title><rect x="65.2052%" y="709" width="0.0266%" height="15" fill="rgb(206,185,35)" fg:x="97976" fg:w="40"/><text x="65.4552%" y="719.50"></text></g><g><title>parse_and_execute (258 samples, 0.17%)</title><rect x="65.0628%" y="805" width="0.1717%" height="15" fill="rgb(228,140,34)" fg:x="97762" fg:w="258"/><text x="65.3128%" y="815.50"></text></g><g><title>command_substitute (363 samples, 0.24%)</title><rect x="64.9995%" y="821" width="0.2416%" height="15" fill="rgb(208,93,13)" fg:x="97667" fg:w="363"/><text x="65.2495%" y="831.50"></text></g><g><title>[bash] (380 samples, 0.25%)</title><rect x="64.9902%" y="837" width="0.2529%" height="15" fill="rgb(221,193,39)" fg:x="97653" fg:w="380"/><text x="65.2402%" y="847.50"></text></g><g><title>[bash] (384 samples, 0.26%)</title><rect x="64.9889%" y="853" width="0.2556%" height="15" fill="rgb(241,132,34)" fg:x="97651" fg:w="384"/><text x="65.2389%" y="863.50"></text></g><g><title>[bash] (389 samples, 0.26%)</title><rect x="64.9882%" y="869" width="0.2589%" height="15" fill="rgb(221,141,10)" fg:x="97650" fg:w="389"/><text x="65.2382%" y="879.50"></text></g><g><title>[bash] (393 samples, 0.26%)</title><rect x="64.9882%" y="885" width="0.2616%" height="15" fill="rgb(226,90,31)" fg:x="97650" fg:w="393"/><text x="65.2382%" y="895.50"></text></g><g><title>expand_words (394 samples, 0.26%)</title><rect x="64.9882%" y="901" width="0.2622%" height="15" fill="rgb(243,75,5)" fg:x="97650" fg:w="394"/><text x="65.2382%" y="911.50"></text></g><g><title>execute_command_internal (1,060 samples, 0.71%)</title><rect x="64.5490%" y="917" width="0.7055%" height="15" fill="rgb(227,156,21)" fg:x="96990" fg:w="1060"/><text x="64.7990%" y="927.50"></text></g><g><title>execute_command (1,063 samples, 0.71%)</title><rect x="64.5483%" y="933" width="0.7074%" height="15" fill="rgb(250,195,8)" fg:x="96989" fg:w="1063"/><text x="64.7983%" y="943.50"></text></g><g><title>[bash] (43 samples, 0.03%)</title><rect x="65.4741%" y="853" width="0.0286%" height="15" fill="rgb(220,134,5)" fg:x="98380" fg:w="43"/><text x="65.7241%" y="863.50"></text></g><g><title>buffered_getchar (57 samples, 0.04%)</title><rect x="65.5053%" y="853" width="0.0379%" height="15" fill="rgb(246,106,34)" fg:x="98427" fg:w="57"/><text x="65.7553%" y="863.50"></text></g><g><title>[bash] (256 samples, 0.17%)</title><rect x="65.3769%" y="869" width="0.1704%" height="15" fill="rgb(205,1,4)" fg:x="98234" fg:w="256"/><text x="65.6269%" y="879.50"></text></g><g><title>assignment (24 samples, 0.02%)</title><rect x="65.5626%" y="869" width="0.0160%" height="15" fill="rgb(224,151,29)" fg:x="98513" fg:w="24"/><text x="65.8126%" y="879.50"></text></g><g><title>[bash] (439 samples, 0.29%)</title><rect x="65.3057%" y="885" width="0.2922%" height="15" fill="rgb(251,196,0)" fg:x="98127" fg:w="439"/><text x="65.5557%" y="895.50"></text></g><g><title>make_simple_command (19 samples, 0.01%)</title><rect x="65.6118%" y="885" width="0.0126%" height="15" fill="rgb(212,127,0)" fg:x="98587" fg:w="19"/><text x="65.8618%" y="895.50"></text></g><g><title>reader_loop (1,641 samples, 1.09%)</title><rect x="64.5330%" y="949" width="1.0921%" height="15" fill="rgb(236,71,53)" fg:x="96966" fg:w="1641"/><text x="64.7830%" y="959.50"></text></g><g><title>read_command (555 samples, 0.37%)</title><rect x="65.2558%" y="933" width="0.3694%" height="15" fill="rgb(227,99,0)" fg:x="98052" fg:w="555"/><text x="65.5058%" y="943.50"></text></g><g><title>parse_command (555 samples, 0.37%)</title><rect x="65.2558%" y="917" width="0.3694%" height="15" fill="rgb(239,89,21)" fg:x="98052" fg:w="555"/><text x="65.5058%" y="927.50"></text></g><g><title>yyparse (554 samples, 0.37%)</title><rect x="65.2564%" y="901" width="0.3687%" height="15" fill="rgb(243,122,19)" fg:x="98053" fg:w="554"/><text x="65.5064%" y="911.50"></text></g><g><title>__libc_start_main (1,661 samples, 1.11%)</title><rect x="64.5244%" y="981" width="1.1054%" height="15" fill="rgb(229,192,45)" fg:x="96953" fg:w="1661"/><text x="64.7744%" y="991.50"></text></g><g><title>main (1,661 samples, 1.11%)</title><rect x="64.5244%" y="965" width="1.1054%" height="15" fill="rgb(235,165,35)" fg:x="96953" fg:w="1661"/><text x="64.7744%" y="975.50"></text></g><g><title>[ld-2.31.so] (26 samples, 0.02%)</title><rect x="65.6298%" y="933" width="0.0173%" height="15" fill="rgb(253,202,0)" fg:x="98614" fg:w="26"/><text x="65.8798%" y="943.50"></text></g><g><title>_dl_start_final (27 samples, 0.02%)</title><rect x="65.6298%" y="965" width="0.0180%" height="15" fill="rgb(235,51,20)" fg:x="98614" fg:w="27"/><text x="65.8798%" y="975.50"></text></g><g><title>_dl_sysdep_start (27 samples, 0.02%)</title><rect x="65.6298%" y="949" width="0.0180%" height="15" fill="rgb(218,95,46)" fg:x="98614" fg:w="27"/><text x="65.8798%" y="959.50"></text></g><g><title>_dl_start (29 samples, 0.02%)</title><rect x="65.6298%" y="981" width="0.0193%" height="15" fill="rgb(212,81,10)" fg:x="98614" fg:w="29"/><text x="65.8798%" y="991.50"></text></g><g><title>_start (1,691 samples, 1.13%)</title><rect x="64.5244%" y="997" width="1.1254%" height="15" fill="rgb(240,59,0)" fg:x="96953" fg:w="1691"/><text x="64.7744%" y="1007.50"></text></g><g><title>asm_exc_page_fault (33 samples, 0.02%)</title><rect x="65.6497%" y="997" width="0.0220%" height="15" fill="rgb(212,191,42)" fg:x="98644" fg:w="33"/><text x="65.8997%" y="1007.50"></text></g><g><title>__x64_sys_execve (17 samples, 0.01%)</title><rect x="65.6717%" y="965" width="0.0113%" height="15" fill="rgb(233,140,3)" fg:x="98677" fg:w="17"/><text x="65.9217%" y="975.50"></text></g><g><title>do_execveat_common (17 samples, 0.01%)</title><rect x="65.6717%" y="949" width="0.0113%" height="15" fill="rgb(215,69,23)" fg:x="98677" fg:w="17"/><text x="65.9217%" y="959.50"></text></g><g><title>bprm_execve (17 samples, 0.01%)</title><rect x="65.6717%" y="933" width="0.0113%" height="15" fill="rgb(240,202,20)" fg:x="98677" fg:w="17"/><text x="65.9217%" y="943.50"></text></g><g><title>load_elf_binary (17 samples, 0.01%)</title><rect x="65.6717%" y="917" width="0.0113%" height="15" fill="rgb(209,146,50)" fg:x="98677" fg:w="17"/><text x="65.9217%" y="927.50"></text></g><g><title>tlb_finish_mmu (17 samples, 0.01%)</title><rect x="65.6923%" y="885" width="0.0113%" height="15" fill="rgb(253,102,54)" fg:x="98708" fg:w="17"/><text x="65.9423%" y="895.50"></text></g><g><title>unmap_page_range (27 samples, 0.02%)</title><rect x="65.7037%" y="869" width="0.0180%" height="15" fill="rgb(250,173,47)" fg:x="98725" fg:w="27"/><text x="65.9537%" y="879.50"></text></g><g><title>mmput (58 samples, 0.04%)</title><rect x="65.6844%" y="917" width="0.0386%" height="15" fill="rgb(232,142,7)" fg:x="98696" fg:w="58"/><text x="65.9344%" y="927.50"></text></g><g><title>exit_mmap (57 samples, 0.04%)</title><rect x="65.6850%" y="901" width="0.0379%" height="15" fill="rgb(230,157,47)" fg:x="98697" fg:w="57"/><text x="65.9350%" y="911.50"></text></g><g><title>unmap_vmas (29 samples, 0.02%)</title><rect x="65.7037%" y="885" width="0.0193%" height="15" fill="rgb(214,177,35)" fg:x="98725" fg:w="29"/><text x="65.9537%" y="895.50"></text></g><g><title>__x64_sys_exit_group (64 samples, 0.04%)</title><rect x="65.6830%" y="965" width="0.0426%" height="15" fill="rgb(234,119,46)" fg:x="98694" fg:w="64"/><text x="65.9330%" y="975.50"></text></g><g><title>do_group_exit (64 samples, 0.04%)</title><rect x="65.6830%" y="949" width="0.0426%" height="15" fill="rgb(241,180,50)" fg:x="98694" fg:w="64"/><text x="65.9330%" y="959.50"></text></g><g><title>do_exit (64 samples, 0.04%)</title><rect x="65.6830%" y="933" width="0.0426%" height="15" fill="rgb(221,54,25)" fg:x="98694" fg:w="64"/><text x="65.9330%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.05%)</title><rect x="65.6717%" y="997" width="0.0546%" height="15" fill="rgb(209,157,44)" fg:x="98677" fg:w="82"/><text x="65.9217%" y="1007.50"></text></g><g><title>do_syscall_64 (82 samples, 0.05%)</title><rect x="65.6717%" y="981" width="0.0546%" height="15" fill="rgb(246,115,41)" fg:x="98677" fg:w="82"/><text x="65.9217%" y="991.50"></text></g><g><title>libtool (2,269 samples, 1.51%)</title><rect x="64.2169%" y="1013" width="1.5101%" height="15" fill="rgb(229,86,1)" fg:x="96491" fg:w="2269"/><text x="64.4669%" y="1023.50"></text></g><g><title>[[stack]] (20 samples, 0.01%)</title><rect x="65.7276%" y="997" width="0.0133%" height="15" fill="rgb(240,108,53)" fg:x="98761" fg:w="20"/><text x="65.9776%" y="1007.50"></text></g><g><title>do_lookup_x (16 samples, 0.01%)</title><rect x="65.7303%" y="981" width="0.0106%" height="15" fill="rgb(227,134,2)" fg:x="98765" fg:w="16"/><text x="65.9803%" y="991.50"></text></g><g><title>alloc_super (18 samples, 0.01%)</title><rect x="65.7529%" y="741" width="0.0120%" height="15" fill="rgb(213,129,25)" fg:x="98799" fg:w="18"/><text x="66.0029%" y="751.50"></text></g><g><title>fc_mount (20 samples, 0.01%)</title><rect x="65.7522%" y="805" width="0.0133%" height="15" fill="rgb(226,35,21)" fg:x="98798" fg:w="20"/><text x="66.0022%" y="815.50"></text></g><g><title>vfs_get_tree (20 samples, 0.01%)</title><rect x="65.7522%" y="789" width="0.0133%" height="15" fill="rgb(208,129,26)" fg:x="98798" fg:w="20"/><text x="66.0022%" y="799.50"></text></g><g><title>get_tree_nodev (20 samples, 0.01%)</title><rect x="65.7522%" y="773" width="0.0133%" height="15" fill="rgb(224,83,6)" fg:x="98798" fg:w="20"/><text x="66.0022%" y="783.50"></text></g><g><title>sget_fc (19 samples, 0.01%)</title><rect x="65.7529%" y="757" width="0.0126%" height="15" fill="rgb(227,52,39)" fg:x="98799" fg:w="19"/><text x="66.0029%" y="767.50"></text></g><g><title>copy_ipcs (22 samples, 0.01%)</title><rect x="65.7522%" y="837" width="0.0146%" height="15" fill="rgb(241,30,17)" fg:x="98798" fg:w="22"/><text x="66.0022%" y="847.50"></text></g><g><title>mq_init_ns (22 samples, 0.01%)</title><rect x="65.7522%" y="821" width="0.0146%" height="15" fill="rgb(246,186,42)" fg:x="98798" fg:w="22"/><text x="66.0022%" y="831.50"></text></g><g><title>copy_namespaces (40 samples, 0.03%)</title><rect x="65.7516%" y="869" width="0.0266%" height="15" fill="rgb(221,169,15)" fg:x="98797" fg:w="40"/><text x="66.0016%" y="879.50"></text></g><g><title>create_new_namespaces (40 samples, 0.03%)</title><rect x="65.7516%" y="853" width="0.0266%" height="15" fill="rgb(235,108,21)" fg:x="98797" fg:w="40"/><text x="66.0016%" y="863.50"></text></g><g><title>copy_mnt_ns (17 samples, 0.01%)</title><rect x="65.7669%" y="837" width="0.0113%" height="15" fill="rgb(219,148,30)" fg:x="98820" fg:w="17"/><text x="66.0169%" y="847.50"></text></g><g><title>copy_tree (17 samples, 0.01%)</title><rect x="65.7669%" y="821" width="0.0113%" height="15" fill="rgb(220,109,5)" fg:x="98820" fg:w="17"/><text x="66.0169%" y="831.50"></text></g><g><title>dup_mm (23 samples, 0.02%)</title><rect x="65.7782%" y="869" width="0.0153%" height="15" fill="rgb(213,203,48)" fg:x="98837" fg:w="23"/><text x="66.0282%" y="879.50"></text></g><g><title>copy_process (72 samples, 0.05%)</title><rect x="65.7482%" y="885" width="0.0479%" height="15" fill="rgb(244,71,33)" fg:x="98792" fg:w="72"/><text x="65.9982%" y="895.50"></text></g><g><title>__libc_start_main (74 samples, 0.05%)</title><rect x="65.7482%" y="981" width="0.0492%" height="15" fill="rgb(209,23,2)" fg:x="98792" fg:w="74"/><text x="65.9982%" y="991.50"></text></g><g><title>__GI___clone (74 samples, 0.05%)</title><rect x="65.7482%" y="965" width="0.0492%" height="15" fill="rgb(219,97,7)" fg:x="98792" fg:w="74"/><text x="65.9982%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.05%)</title><rect x="65.7482%" y="949" width="0.0492%" height="15" fill="rgb(216,161,23)" fg:x="98792" fg:w="74"/><text x="65.9982%" y="959.50"></text></g><g><title>do_syscall_64 (74 samples, 0.05%)</title><rect x="65.7482%" y="933" width="0.0492%" height="15" fill="rgb(207,45,42)" fg:x="98792" fg:w="74"/><text x="65.9982%" y="943.50"></text></g><g><title>__do_sys_clone (74 samples, 0.05%)</title><rect x="65.7482%" y="917" width="0.0492%" height="15" fill="rgb(241,61,4)" fg:x="98792" fg:w="74"/><text x="65.9982%" y="927.50"></text></g><g><title>kernel_clone (74 samples, 0.05%)</title><rect x="65.7482%" y="901" width="0.0492%" height="15" fill="rgb(236,170,1)" fg:x="98792" fg:w="74"/><text x="65.9982%" y="911.50"></text></g><g><title>[unknown] (85 samples, 0.06%)</title><rect x="65.7462%" y="997" width="0.0566%" height="15" fill="rgb(239,72,5)" fg:x="98789" fg:w="85"/><text x="65.9962%" y="1007.50"></text></g><g><title>btrfs_add_link (20 samples, 0.01%)</title><rect x="65.8181%" y="853" width="0.0133%" height="15" fill="rgb(214,13,50)" fg:x="98897" fg:w="20"/><text x="66.0681%" y="863.50"></text></g><g><title>btrfs_insert_dir_item (20 samples, 0.01%)</title><rect x="65.8181%" y="837" width="0.0133%" height="15" fill="rgb(224,88,9)" fg:x="98897" fg:w="20"/><text x="66.0681%" y="847.50"></text></g><g><title>insert_with_overflow (17 samples, 0.01%)</title><rect x="65.8201%" y="821" width="0.0113%" height="15" fill="rgb(238,192,34)" fg:x="98900" fg:w="17"/><text x="66.0701%" y="831.50"></text></g><g><title>btrfs_insert_empty_items (17 samples, 0.01%)</title><rect x="65.8201%" y="805" width="0.0113%" height="15" fill="rgb(217,203,50)" fg:x="98900" fg:w="17"/><text x="66.0701%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.03%)</title><rect x="65.8128%" y="933" width="0.0306%" height="15" fill="rgb(241,123,32)" fg:x="98889" fg:w="46"/><text x="66.0628%" y="943.50"></text></g><g><title>do_syscall_64 (46 samples, 0.03%)</title><rect x="65.8128%" y="917" width="0.0306%" height="15" fill="rgb(248,151,39)" fg:x="98889" fg:w="46"/><text x="66.0628%" y="927.50"></text></g><g><title>do_mkdirat (46 samples, 0.03%)</title><rect x="65.8128%" y="901" width="0.0306%" height="15" fill="rgb(208,89,6)" fg:x="98889" fg:w="46"/><text x="66.0628%" y="911.50"></text></g><g><title>vfs_mkdir (38 samples, 0.03%)</title><rect x="65.8181%" y="885" width="0.0253%" height="15" fill="rgb(254,43,26)" fg:x="98897" fg:w="38"/><text x="66.0681%" y="895.50"></text></g><g><title>btrfs_mkdir (38 samples, 0.03%)</title><rect x="65.8181%" y="869" width="0.0253%" height="15" fill="rgb(216,158,13)" fg:x="98897" fg:w="38"/><text x="66.0681%" y="879.50"></text></g><g><title>__GI___mkdir (47 samples, 0.03%)</title><rect x="65.8128%" y="949" width="0.0313%" height="15" fill="rgb(212,47,37)" fg:x="98889" fg:w="47"/><text x="66.0628%" y="959.50"></text></g><g><title>CreateTarget (69 samples, 0.05%)</title><rect x="65.8088%" y="965" width="0.0459%" height="15" fill="rgb(254,16,10)" fg:x="98883" fg:w="69"/><text x="66.0588%" y="975.50"></text></g><g><title>__fopen_internal (23 samples, 0.02%)</title><rect x="65.8634%" y="949" width="0.0153%" height="15" fill="rgb(223,228,16)" fg:x="98965" fg:w="23"/><text x="66.1134%" y="959.50"></text></g><g><title>WriteFile (50 samples, 0.03%)</title><rect x="65.8561%" y="965" width="0.0333%" height="15" fill="rgb(249,108,50)" fg:x="98954" fg:w="50"/><text x="66.1061%" y="975.50"></text></g><g><title>__GI___link (26 samples, 0.02%)</title><rect x="65.8893%" y="965" width="0.0173%" height="15" fill="rgb(208,220,5)" fg:x="99004" fg:w="26"/><text x="66.1393%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="65.8900%" y="949" width="0.0166%" height="15" fill="rgb(217,89,48)" fg:x="99005" fg:w="25"/><text x="66.1400%" y="959.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="65.8900%" y="933" width="0.0166%" height="15" fill="rgb(212,113,41)" fg:x="99005" fg:w="25"/><text x="66.1400%" y="943.50"></text></g><g><title>__x64_sys_link (25 samples, 0.02%)</title><rect x="65.8900%" y="917" width="0.0166%" height="15" fill="rgb(231,127,5)" fg:x="99005" fg:w="25"/><text x="66.1400%" y="927.50"></text></g><g><title>do_linkat (25 samples, 0.02%)</title><rect x="65.8900%" y="901" width="0.0166%" height="15" fill="rgb(217,141,17)" fg:x="99005" fg:w="25"/><text x="66.1400%" y="911.50"></text></g><g><title>vfs_link (18 samples, 0.01%)</title><rect x="65.8947%" y="885" width="0.0120%" height="15" fill="rgb(245,125,54)" fg:x="99012" fg:w="18"/><text x="66.1447%" y="895.50"></text></g><g><title>btrfs_link (17 samples, 0.01%)</title><rect x="65.8953%" y="869" width="0.0113%" height="15" fill="rgb(248,125,3)" fg:x="99013" fg:w="17"/><text x="66.1453%" y="879.50"></text></g><g><title>finish_task_switch (53 samples, 0.04%)</title><rect x="65.9153%" y="853" width="0.0353%" height="15" fill="rgb(236,119,51)" fg:x="99043" fg:w="53"/><text x="66.1653%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.03%)</title><rect x="65.9186%" y="837" width="0.0319%" height="15" fill="rgb(239,99,8)" fg:x="99048" fg:w="48"/><text x="66.1686%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.03%)</title><rect x="65.9186%" y="821" width="0.0319%" height="15" fill="rgb(224,228,4)" fg:x="99048" fg:w="48"/><text x="66.1686%" y="831.50"></text></g><g><title>native_write_msr (48 samples, 0.03%)</title><rect x="65.9186%" y="805" width="0.0319%" height="15" fill="rgb(220,131,45)" fg:x="99048" fg:w="48"/><text x="66.1686%" y="815.50"></text></g><g><title>schedule (56 samples, 0.04%)</title><rect x="65.9146%" y="885" width="0.0373%" height="15" fill="rgb(215,62,5)" fg:x="99042" fg:w="56"/><text x="66.1646%" y="895.50"></text></g><g><title>__schedule (55 samples, 0.04%)</title><rect x="65.9153%" y="869" width="0.0366%" height="15" fill="rgb(253,12,24)" fg:x="99043" fg:w="55"/><text x="66.1653%" y="879.50"></text></g><g><title>__GI___wait4 (72 samples, 0.05%)</title><rect x="65.9140%" y="965" width="0.0479%" height="15" fill="rgb(248,120,50)" fg:x="99041" fg:w="72"/><text x="66.1640%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.05%)</title><rect x="65.9140%" y="949" width="0.0479%" height="15" fill="rgb(245,194,10)" fg:x="99041" fg:w="72"/><text x="66.1640%" y="959.50"></text></g><g><title>do_syscall_64 (72 samples, 0.05%)</title><rect x="65.9140%" y="933" width="0.0479%" height="15" fill="rgb(241,149,38)" fg:x="99041" fg:w="72"/><text x="66.1640%" y="943.50"></text></g><g><title>kernel_wait4 (72 samples, 0.05%)</title><rect x="65.9140%" y="917" width="0.0479%" height="15" fill="rgb(219,215,7)" fg:x="99041" fg:w="72"/><text x="66.1640%" y="927.50"></text></g><g><title>do_wait (72 samples, 0.05%)</title><rect x="65.9140%" y="901" width="0.0479%" height="15" fill="rgb(208,120,31)" fg:x="99041" fg:w="72"/><text x="66.1640%" y="911.50"></text></g><g><title>load_elf_binary (16 samples, 0.01%)</title><rect x="65.9825%" y="853" width="0.0106%" height="15" fill="rgb(244,30,8)" fg:x="99144" fg:w="16"/><text x="66.2325%" y="863.50"></text></g><g><title>bprm_execve (64 samples, 0.04%)</title><rect x="65.9745%" y="869" width="0.0426%" height="15" fill="rgb(238,35,44)" fg:x="99132" fg:w="64"/><text x="66.2245%" y="879.50"></text></g><g><title>do_execveat_common (80 samples, 0.05%)</title><rect x="65.9732%" y="885" width="0.0532%" height="15" fill="rgb(243,218,37)" fg:x="99130" fg:w="80"/><text x="66.2232%" y="895.50"></text></g><g><title>__execvpe_common (83 samples, 0.06%)</title><rect x="65.9719%" y="965" width="0.0552%" height="15" fill="rgb(218,169,10)" fg:x="99128" fg:w="83"/><text x="66.2219%" y="975.50"></text></g><g><title>__GI_execve (81 samples, 0.05%)</title><rect x="65.9732%" y="949" width="0.0539%" height="15" fill="rgb(221,144,10)" fg:x="99130" fg:w="81"/><text x="66.2232%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.05%)</title><rect x="65.9732%" y="933" width="0.0539%" height="15" fill="rgb(226,41,38)" fg:x="99130" fg:w="81"/><text x="66.2232%" y="943.50"></text></g><g><title>do_syscall_64 (81 samples, 0.05%)</title><rect x="65.9732%" y="917" width="0.0539%" height="15" fill="rgb(228,3,1)" fg:x="99130" fg:w="81"/><text x="66.2232%" y="927.50"></text></g><g><title>__x64_sys_execve (81 samples, 0.05%)</title><rect x="65.9732%" y="901" width="0.0539%" height="15" fill="rgb(209,129,12)" fg:x="99130" fg:w="81"/><text x="66.2232%" y="911.50"></text></g><g><title>asm_exc_page_fault (18 samples, 0.01%)</title><rect x="66.0311%" y="933" width="0.0120%" height="15" fill="rgb(213,136,33)" fg:x="99217" fg:w="18"/><text x="66.2811%" y="943.50"></text></g><g><title>exc_page_fault (18 samples, 0.01%)</title><rect x="66.0311%" y="917" width="0.0120%" height="15" fill="rgb(209,181,29)" fg:x="99217" fg:w="18"/><text x="66.2811%" y="927.50"></text></g><g><title>do_user_addr_fault (18 samples, 0.01%)</title><rect x="66.0311%" y="901" width="0.0120%" height="15" fill="rgb(234,173,18)" fg:x="99217" fg:w="18"/><text x="66.2811%" y="911.50"></text></g><g><title>handle_mm_fault (18 samples, 0.01%)</title><rect x="66.0311%" y="885" width="0.0120%" height="15" fill="rgb(227,73,47)" fg:x="99217" fg:w="18"/><text x="66.2811%" y="895.50"></text></g><g><title>dup_mm (26 samples, 0.02%)</title><rect x="66.0464%" y="853" width="0.0173%" height="15" fill="rgb(234,9,34)" fg:x="99240" fg:w="26"/><text x="66.2964%" y="863.50"></text></g><g><title>copy_process (38 samples, 0.03%)</title><rect x="66.0431%" y="869" width="0.0253%" height="15" fill="rgb(235,172,15)" fg:x="99235" fg:w="38"/><text x="66.2931%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.03%)</title><rect x="66.0431%" y="933" width="0.0260%" height="15" fill="rgb(245,61,2)" fg:x="99235" fg:w="39"/><text x="66.2931%" y="943.50"></text></g><g><title>do_syscall_64 (39 samples, 0.03%)</title><rect x="66.0431%" y="917" width="0.0260%" height="15" fill="rgb(238,39,47)" fg:x="99235" fg:w="39"/><text x="66.2931%" y="927.50"></text></g><g><title>__do_sys_clone (39 samples, 0.03%)</title><rect x="66.0431%" y="901" width="0.0260%" height="15" fill="rgb(234,37,24)" fg:x="99235" fg:w="39"/><text x="66.2931%" y="911.50"></text></g><g><title>kernel_clone (39 samples, 0.03%)</title><rect x="66.0431%" y="885" width="0.0260%" height="15" fill="rgb(248,223,24)" fg:x="99235" fg:w="39"/><text x="66.2931%" y="895.50"></text></g><g><title>handle_mm_fault (19 samples, 0.01%)</title><rect x="66.0843%" y="837" width="0.0126%" height="15" fill="rgb(223,12,15)" fg:x="99297" fg:w="19"/><text x="66.3343%" y="847.50"></text></g><g><title>wp_page_copy (16 samples, 0.01%)</title><rect x="66.0863%" y="821" width="0.0106%" height="15" fill="rgb(249,6,3)" fg:x="99300" fg:w="16"/><text x="66.3363%" y="831.50"></text></g><g><title>asm_exc_page_fault (35 samples, 0.02%)</title><rect x="66.0744%" y="885" width="0.0233%" height="15" fill="rgb(237,105,33)" fg:x="99282" fg:w="35"/><text x="66.3244%" y="895.50"></text></g><g><title>exc_page_fault (22 samples, 0.01%)</title><rect x="66.0830%" y="869" width="0.0146%" height="15" fill="rgb(252,208,35)" fg:x="99295" fg:w="22"/><text x="66.3330%" y="879.50"></text></g><g><title>do_user_addr_fault (22 samples, 0.01%)</title><rect x="66.0830%" y="853" width="0.0146%" height="15" fill="rgb(215,181,35)" fg:x="99295" fg:w="22"/><text x="66.3330%" y="863.50"></text></g><g><title>__put_user_nocheck_4 (38 samples, 0.03%)</title><rect x="66.0737%" y="901" width="0.0253%" height="15" fill="rgb(246,212,3)" fg:x="99281" fg:w="38"/><text x="66.3237%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (333 samples, 0.22%)</title><rect x="66.1183%" y="885" width="0.2216%" height="15" fill="rgb(247,156,24)" fg:x="99348" fg:w="333"/><text x="66.3683%" y="895.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (329 samples, 0.22%)</title><rect x="66.1209%" y="869" width="0.2190%" height="15" fill="rgb(248,9,31)" fg:x="99352" fg:w="329"/><text x="66.3709%" y="879.50"></text></g><g><title>native_write_msr (329 samples, 0.22%)</title><rect x="66.1209%" y="853" width="0.2190%" height="15" fill="rgb(234,26,45)" fg:x="99352" fg:w="329"/><text x="66.3709%" y="863.50"></text></g><g><title>schedule_tail (412 samples, 0.27%)</title><rect x="66.0737%" y="917" width="0.2742%" height="15" fill="rgb(249,11,32)" fg:x="99281" fg:w="412"/><text x="66.3237%" y="927.50"></text></g><g><title>finish_task_switch (362 samples, 0.24%)</title><rect x="66.1070%" y="901" width="0.2409%" height="15" fill="rgb(249,162,33)" fg:x="99331" fg:w="362"/><text x="66.3570%" y="911.50"></text></g><g><title>ret_from_fork (416 samples, 0.28%)</title><rect x="66.0717%" y="933" width="0.2769%" height="15" fill="rgb(232,4,32)" fg:x="99278" fg:w="416"/><text x="66.3217%" y="943.50"></text></g><g><title>arch_fork (483 samples, 0.32%)</title><rect x="66.0278%" y="949" width="0.3214%" height="15" fill="rgb(212,5,45)" fg:x="99212" fg:w="483"/><text x="66.2778%" y="959.50"></text></g><g><title>__libc_fork (486 samples, 0.32%)</title><rect x="66.0271%" y="965" width="0.3234%" height="15" fill="rgb(227,95,13)" fg:x="99211" fg:w="486"/><text x="66.2771%" y="975.50"></text></g><g><title>path_mount (43 samples, 0.03%)</title><rect x="66.3685%" y="901" width="0.0286%" height="15" fill="rgb(223,205,10)" fg:x="99724" fg:w="43"/><text x="66.6185%" y="911.50"></text></g><g><title>__mount (61 samples, 0.04%)</title><rect x="66.3612%" y="965" width="0.0406%" height="15" fill="rgb(222,178,8)" fg:x="99713" fg:w="61"/><text x="66.6112%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.04%)</title><rect x="66.3612%" y="949" width="0.0406%" height="15" fill="rgb(216,13,22)" fg:x="99713" fg:w="61"/><text x="66.6112%" y="959.50"></text></g><g><title>do_syscall_64 (61 samples, 0.04%)</title><rect x="66.3612%" y="933" width="0.0406%" height="15" fill="rgb(240,167,12)" fg:x="99713" fg:w="61"/><text x="66.6112%" y="943.50"></text></g><g><title>__x64_sys_mount (61 samples, 0.04%)</title><rect x="66.3612%" y="917" width="0.0406%" height="15" fill="rgb(235,68,35)" fg:x="99713" fg:w="61"/><text x="66.6112%" y="927.50"></text></g><g><title>__umount2 (18 samples, 0.01%)</title><rect x="66.4051%" y="965" width="0.0120%" height="15" fill="rgb(253,40,27)" fg:x="99779" fg:w="18"/><text x="66.6551%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="66.4051%" y="949" width="0.0120%" height="15" fill="rgb(214,19,28)" fg:x="99779" fg:w="18"/><text x="66.6551%" y="959.50"></text></g><g><title>std::string::_S_construct<char const*> (20 samples, 0.01%)</title><rect x="66.4311%" y="965" width="0.0133%" height="15" fill="rgb(210,167,45)" fg:x="99818" fg:w="20"/><text x="66.6811%" y="975.50"></text></g><g><title>std::string::_Rep::_S_create (20 samples, 0.01%)</title><rect x="66.4311%" y="949" width="0.0133%" height="15" fill="rgb(232,97,40)" fg:x="99818" fg:w="20"/><text x="66.6811%" y="959.50"></text></g><g><title>_dl_runtime_resolve_xsavec (18 samples, 0.01%)</title><rect x="66.4450%" y="949" width="0.0120%" height="15" fill="rgb(250,35,23)" fg:x="99839" fg:w="18"/><text x="66.6950%" y="959.50"></text></g><g><title>std::string::append (21 samples, 0.01%)</title><rect x="66.4444%" y="965" width="0.0140%" height="15" fill="rgb(248,47,53)" fg:x="99838" fg:w="21"/><text x="66.6944%" y="975.50"></text></g><g><title>chroot_fs_refs (78 samples, 0.05%)</title><rect x="66.4624%" y="901" width="0.0519%" height="15" fill="rgb(226,58,50)" fg:x="99865" fg:w="78"/><text x="66.7124%" y="911.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.04%)</title><rect x="66.4763%" y="885" width="0.0379%" height="15" fill="rgb(217,105,26)" fg:x="99886" fg:w="57"/><text x="66.7263%" y="895.50"></text></g><g><title>Pid1Main (1,070 samples, 0.71%)</title><rect x="65.8048%" y="981" width="0.7121%" height="15" fill="rgb(208,64,1)" fg:x="98877" fg:w="1070"/><text x="66.0548%" y="991.50"></text></g><g><title>syscall (82 samples, 0.05%)</title><rect x="66.4624%" y="965" width="0.0546%" height="15" fill="rgb(214,80,1)" fg:x="99865" fg:w="82"/><text x="66.7124%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.05%)</title><rect x="66.4624%" y="949" width="0.0546%" height="15" fill="rgb(206,175,26)" fg:x="99865" fg:w="82"/><text x="66.7124%" y="959.50"></text></g><g><title>do_syscall_64 (82 samples, 0.05%)</title><rect x="66.4624%" y="933" width="0.0546%" height="15" fill="rgb(235,156,37)" fg:x="99865" fg:w="82"/><text x="66.7124%" y="943.50"></text></g><g><title>__do_sys_pivot_root (82 samples, 0.05%)</title><rect x="66.4624%" y="917" width="0.0546%" height="15" fill="rgb(213,100,9)" fg:x="99865" fg:w="82"/><text x="66.7124%" y="927.50"></text></g><g><title>filemap_map_pages (19 samples, 0.01%)</title><rect x="66.5196%" y="917" width="0.0126%" height="15" fill="rgb(241,15,13)" fg:x="99951" fg:w="19"/><text x="66.7696%" y="927.50"></text></g><g><title>asm_exc_page_fault (40 samples, 0.03%)</title><rect x="66.5169%" y="981" width="0.0266%" height="15" fill="rgb(205,97,43)" fg:x="99947" fg:w="40"/><text x="66.7669%" y="991.50"></text></g><g><title>exc_page_fault (40 samples, 0.03%)</title><rect x="66.5169%" y="965" width="0.0266%" height="15" fill="rgb(216,106,32)" fg:x="99947" fg:w="40"/><text x="66.7669%" y="975.50"></text></g><g><title>do_user_addr_fault (40 samples, 0.03%)</title><rect x="66.5169%" y="949" width="0.0266%" height="15" fill="rgb(226,200,8)" fg:x="99947" fg:w="40"/><text x="66.7669%" y="959.50"></text></g><g><title>handle_mm_fault (38 samples, 0.03%)</title><rect x="66.5183%" y="933" width="0.0253%" height="15" fill="rgb(244,54,29)" fg:x="99949" fg:w="38"/><text x="66.7683%" y="943.50"></text></g><g><title>wp_page_copy (16 samples, 0.01%)</title><rect x="66.5329%" y="917" width="0.0106%" height="15" fill="rgb(252,169,12)" fg:x="99971" fg:w="16"/><text x="66.7829%" y="927.50"></text></g><g><title>_raw_spin_lock_irq (16 samples, 0.01%)</title><rect x="66.5489%" y="949" width="0.0106%" height="15" fill="rgb(231,199,11)" fg:x="99995" fg:w="16"/><text x="66.7989%" y="959.50"></text></g><g><title>calculate_sigpending (22 samples, 0.01%)</title><rect x="66.5455%" y="965" width="0.0146%" height="15" fill="rgb(233,191,18)" fg:x="99990" fg:w="22"/><text x="66.7955%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (336 samples, 0.22%)</title><rect x="66.5782%" y="933" width="0.2236%" height="15" fill="rgb(215,83,47)" fg:x="100039" fg:w="336"/><text x="66.8282%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (334 samples, 0.22%)</title><rect x="66.5795%" y="917" width="0.2223%" height="15" fill="rgb(251,67,19)" fg:x="100041" fg:w="334"/><text x="66.8295%" y="927.50"></text></g><g><title>native_write_msr (334 samples, 0.22%)</title><rect x="66.5795%" y="901" width="0.2223%" height="15" fill="rgb(240,7,20)" fg:x="100041" fg:w="334"/><text x="66.8295%" y="911.50"></text></g><g><title>schedule_tail (374 samples, 0.25%)</title><rect x="66.5602%" y="965" width="0.2489%" height="15" fill="rgb(210,150,26)" fg:x="100012" fg:w="374"/><text x="66.8102%" y="975.50"></text></g><g><title>finish_task_switch (374 samples, 0.25%)</title><rect x="66.5602%" y="949" width="0.2489%" height="15" fill="rgb(228,75,42)" fg:x="100012" fg:w="374"/><text x="66.8102%" y="959.50"></text></g><g><title>__GI___clone (1,514 samples, 1.01%)</title><rect x="65.8028%" y="997" width="1.0076%" height="15" fill="rgb(237,134,48)" fg:x="98874" fg:w="1514"/><text x="66.0528%" y="1007.50"></text></g><g><title>ret_from_fork (398 samples, 0.26%)</title><rect x="66.5455%" y="981" width="0.2649%" height="15" fill="rgb(205,80,50)" fg:x="99990" fg:w="398"/><text x="66.7955%" y="991.50"></text></g><g><title>[libstdc++.so.6.0.28] (18 samples, 0.01%)</title><rect x="66.8111%" y="933" width="0.0120%" height="15" fill="rgb(217,74,48)" fg:x="100389" fg:w="18"/><text x="67.0611%" y="943.50"></text></g><g><title>_dl_start_user (32 samples, 0.02%)</title><rect x="66.8111%" y="997" width="0.0213%" height="15" fill="rgb(205,82,50)" fg:x="100389" fg:w="32"/><text x="67.0611%" y="1007.50"></text></g><g><title>_dl_init (32 samples, 0.02%)</title><rect x="66.8111%" y="981" width="0.0213%" height="15" fill="rgb(228,1,33)" fg:x="100389" fg:w="32"/><text x="67.0611%" y="991.50"></text></g><g><title>call_init (32 samples, 0.02%)</title><rect x="66.8111%" y="965" width="0.0213%" height="15" fill="rgb(214,50,23)" fg:x="100389" fg:w="32"/><text x="67.0611%" y="975.50"></text></g><g><title>call_init (32 samples, 0.02%)</title><rect x="66.8111%" y="949" width="0.0213%" height="15" fill="rgb(210,62,9)" fg:x="100389" fg:w="32"/><text x="67.0611%" y="959.50"></text></g><g><title>_init (17 samples, 0.01%)</title><rect x="66.8324%" y="997" width="0.0113%" height="15" fill="rgb(210,104,37)" fg:x="100421" fg:w="17"/><text x="67.0824%" y="1007.50"></text></g><g><title>__GI_exit (17 samples, 0.01%)</title><rect x="66.8437%" y="965" width="0.0113%" height="15" fill="rgb(232,104,43)" fg:x="100438" fg:w="17"/><text x="67.0937%" y="975.50"></text></g><g><title>__run_exit_handlers (17 samples, 0.01%)</title><rect x="66.8437%" y="949" width="0.0113%" height="15" fill="rgb(244,52,6)" fg:x="100438" fg:w="17"/><text x="67.0937%" y="959.50"></text></g><g><title>__alloc_pages_nodemask (37 samples, 0.02%)</title><rect x="66.9016%" y="853" width="0.0246%" height="15" fill="rgb(211,174,52)" fg:x="100525" fg:w="37"/><text x="67.1516%" y="863.50"></text></g><g><title>get_page_from_freelist (33 samples, 0.02%)</title><rect x="66.9043%" y="837" width="0.0220%" height="15" fill="rgb(229,48,4)" fg:x="100529" fg:w="33"/><text x="67.1543%" y="847.50"></text></g><g><title>prep_new_page (26 samples, 0.02%)</title><rect x="66.9089%" y="821" width="0.0173%" height="15" fill="rgb(205,155,16)" fg:x="100536" fg:w="26"/><text x="67.1589%" y="831.50"></text></g><g><title>kernel_init_free_pages (24 samples, 0.02%)</title><rect x="66.9102%" y="805" width="0.0160%" height="15" fill="rgb(211,141,53)" fg:x="100538" fg:w="24"/><text x="67.1602%" y="815.50"></text></g><g><title>clear_page_erms (22 samples, 0.01%)</title><rect x="66.9116%" y="789" width="0.0146%" height="15" fill="rgb(240,148,11)" fg:x="100540" fg:w="22"/><text x="67.1616%" y="799.50"></text></g><g><title>alloc_pages_vma (40 samples, 0.03%)</title><rect x="66.9003%" y="869" width="0.0266%" height="15" fill="rgb(214,45,23)" fg:x="100523" fg:w="40"/><text x="67.1503%" y="879.50"></text></g><g><title>handle_mm_fault (68 samples, 0.05%)</title><rect x="66.8923%" y="885" width="0.0453%" height="15" fill="rgb(248,74,26)" fg:x="100511" fg:w="68"/><text x="67.1423%" y="895.50"></text></g><g><title>exc_page_fault (71 samples, 0.05%)</title><rect x="66.8909%" y="917" width="0.0473%" height="15" fill="rgb(218,121,16)" fg:x="100509" fg:w="71"/><text x="67.1409%" y="927.50"></text></g><g><title>do_user_addr_fault (71 samples, 0.05%)</title><rect x="66.8909%" y="901" width="0.0473%" height="15" fill="rgb(218,10,47)" fg:x="100509" fg:w="71"/><text x="67.1409%" y="911.50"></text></g><g><title>asm_exc_page_fault (74 samples, 0.05%)</title><rect x="66.8896%" y="933" width="0.0492%" height="15" fill="rgb(227,99,14)" fg:x="100507" fg:w="74"/><text x="67.1396%" y="943.50"></text></g><g><title>[libc-2.31.so] (113 samples, 0.08%)</title><rect x="66.8730%" y="949" width="0.0752%" height="15" fill="rgb(229,83,46)" fg:x="100482" fg:w="113"/><text x="67.1230%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="66.9528%" y="805" width="0.0226%" height="15" fill="rgb(228,25,1)" fg:x="100602" fg:w="34"/><text x="67.2028%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="66.9528%" y="789" width="0.0226%" height="15" fill="rgb(252,190,15)" fg:x="100602" fg:w="34"/><text x="67.2028%" y="799.50"></text></g><g><title>native_write_msr (33 samples, 0.02%)</title><rect x="66.9535%" y="773" width="0.0220%" height="15" fill="rgb(213,103,51)" fg:x="100603" fg:w="33"/><text x="67.2035%" y="783.50"></text></g><g><title>finish_task_switch (38 samples, 0.03%)</title><rect x="66.9515%" y="821" width="0.0253%" height="15" fill="rgb(220,38,44)" fg:x="100600" fg:w="38"/><text x="67.2015%" y="831.50"></text></g><g><title>schedule (39 samples, 0.03%)</title><rect x="66.9515%" y="853" width="0.0260%" height="15" fill="rgb(210,45,26)" fg:x="100600" fg:w="39"/><text x="67.2015%" y="863.50"></text></g><g><title>__schedule (39 samples, 0.03%)</title><rect x="66.9515%" y="837" width="0.0260%" height="15" fill="rgb(205,95,48)" fg:x="100600" fg:w="39"/><text x="67.2015%" y="847.50"></text></g><g><title>do_wait (47 samples, 0.03%)</title><rect x="66.9508%" y="869" width="0.0313%" height="15" fill="rgb(225,179,37)" fg:x="100599" fg:w="47"/><text x="67.2008%" y="879.50"></text></g><g><title>__GI___wait4 (50 samples, 0.03%)</title><rect x="66.9495%" y="949" width="0.0333%" height="15" fill="rgb(230,209,3)" fg:x="100597" fg:w="50"/><text x="67.1995%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.03%)</title><rect x="66.9502%" y="933" width="0.0326%" height="15" fill="rgb(248,12,46)" fg:x="100598" fg:w="49"/><text x="67.2002%" y="943.50"></text></g><g><title>do_syscall_64 (49 samples, 0.03%)</title><rect x="66.9502%" y="917" width="0.0326%" height="15" fill="rgb(234,18,0)" fg:x="100598" fg:w="49"/><text x="67.2002%" y="927.50"></text></g><g><title>__do_sys_wait4 (49 samples, 0.03%)</title><rect x="66.9502%" y="901" width="0.0326%" height="15" fill="rgb(238,197,14)" fg:x="100598" fg:w="49"/><text x="67.2002%" y="911.50"></text></g><g><title>kernel_wait4 (49 samples, 0.03%)</title><rect x="66.9502%" y="885" width="0.0326%" height="15" fill="rgb(251,162,48)" fg:x="100598" fg:w="49"/><text x="67.2002%" y="895.50"></text></g><g><title>__libc_read (22 samples, 0.01%)</title><rect x="66.9941%" y="949" width="0.0146%" height="15" fill="rgb(237,73,42)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="66.9941%" y="933" width="0.0146%" height="15" fill="rgb(211,108,8)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="943.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="66.9941%" y="917" width="0.0146%" height="15" fill="rgb(213,45,22)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="927.50"></text></g><g><title>ksys_read (22 samples, 0.01%)</title><rect x="66.9941%" y="901" width="0.0146%" height="15" fill="rgb(252,154,5)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="911.50"></text></g><g><title>vfs_read (22 samples, 0.01%)</title><rect x="66.9941%" y="885" width="0.0146%" height="15" fill="rgb(221,79,52)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="895.50"></text></g><g><title>new_sync_read (22 samples, 0.01%)</title><rect x="66.9941%" y="869" width="0.0146%" height="15" fill="rgb(229,220,36)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="879.50"></text></g><g><title>pipe_read (22 samples, 0.01%)</title><rect x="66.9941%" y="853" width="0.0146%" height="15" fill="rgb(211,17,16)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="863.50"></text></g><g><title>schedule (20 samples, 0.01%)</title><rect x="66.9954%" y="837" width="0.0133%" height="15" fill="rgb(222,55,31)" fg:x="100666" fg:w="20"/><text x="67.2454%" y="847.50"></text></g><g><title>__schedule (20 samples, 0.01%)</title><rect x="66.9954%" y="821" width="0.0133%" height="15" fill="rgb(221,221,31)" fg:x="100666" fg:w="20"/><text x="67.2454%" y="831.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="66.9961%" y="805" width="0.0126%" height="15" fill="rgb(227,168,26)" fg:x="100667" fg:w="19"/><text x="67.2461%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="66.9968%" y="789" width="0.0120%" height="15" fill="rgb(224,139,9)" fg:x="100668" fg:w="18"/><text x="67.2468%" y="799.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="66.9968%" y="773" width="0.0120%" height="15" fill="rgb(254,172,0)" fg:x="100668" fg:w="18"/><text x="67.2468%" y="783.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="66.9974%" y="757" width="0.0113%" height="15" fill="rgb(235,203,1)" fg:x="100669" fg:w="17"/><text x="67.2474%" y="767.50"></text></g><g><title>__libc_start_main (258 samples, 0.17%)</title><rect x="66.8437%" y="981" width="0.1717%" height="15" fill="rgb(216,205,24)" fg:x="100438" fg:w="258"/><text x="67.0937%" y="991.50"></text></g><g><title>main (231 samples, 0.15%)</title><rect x="66.8617%" y="965" width="0.1537%" height="15" fill="rgb(233,24,6)" fg:x="100465" fg:w="231"/><text x="67.1117%" y="975.50"></text></g><g><title>_dl_load_cache_lookup (26 samples, 0.02%)</title><rect x="67.0267%" y="853" width="0.0173%" height="15" fill="rgb(244,110,9)" fg:x="100713" fg:w="26"/><text x="67.2767%" y="863.50"></text></g><g><title>__do_munmap (18 samples, 0.01%)</title><rect x="67.0567%" y="693" width="0.0120%" height="15" fill="rgb(239,222,42)" fg:x="100758" fg:w="18"/><text x="67.3067%" y="703.50"></text></g><g><title>do_mmap (39 samples, 0.03%)</title><rect x="67.0547%" y="725" width="0.0260%" height="15" fill="rgb(218,145,13)" fg:x="100755" fg:w="39"/><text x="67.3047%" y="735.50"></text></g><g><title>mmap_region (37 samples, 0.02%)</title><rect x="67.0560%" y="709" width="0.0246%" height="15" fill="rgb(207,69,11)" fg:x="100757" fg:w="37"/><text x="67.3060%" y="719.50"></text></g><g><title>ksys_mmap_pgoff (41 samples, 0.03%)</title><rect x="67.0540%" y="757" width="0.0273%" height="15" fill="rgb(220,223,22)" fg:x="100754" fg:w="41"/><text x="67.3040%" y="767.50"></text></g><g><title>vm_mmap_pgoff (41 samples, 0.03%)</title><rect x="67.0540%" y="741" width="0.0273%" height="15" fill="rgb(245,102,5)" fg:x="100754" fg:w="41"/><text x="67.3040%" y="751.50"></text></g><g><title>_dl_map_segments (52 samples, 0.03%)</title><rect x="67.0487%" y="837" width="0.0346%" height="15" fill="rgb(211,148,2)" fg:x="100746" fg:w="52"/><text x="67.2987%" y="847.50"></text></g><g><title>__mmap64 (44 samples, 0.03%)</title><rect x="67.0540%" y="821" width="0.0293%" height="15" fill="rgb(241,13,44)" fg:x="100754" fg:w="44"/><text x="67.3040%" y="831.50"></text></g><g><title>__mmap64 (44 samples, 0.03%)</title><rect x="67.0540%" y="805" width="0.0293%" height="15" fill="rgb(219,137,21)" fg:x="100754" fg:w="44"/><text x="67.3040%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.03%)</title><rect x="67.0540%" y="789" width="0.0293%" height="15" fill="rgb(242,206,5)" fg:x="100754" fg:w="44"/><text x="67.3040%" y="799.50"></text></g><g><title>do_syscall_64 (44 samples, 0.03%)</title><rect x="67.0540%" y="773" width="0.0293%" height="15" fill="rgb(217,114,22)" fg:x="100754" fg:w="44"/><text x="67.3040%" y="783.50"></text></g><g><title>_dl_map_object_from_fd (80 samples, 0.05%)</title><rect x="67.0440%" y="853" width="0.0532%" height="15" fill="rgb(253,206,42)" fg:x="100739" fg:w="80"/><text x="67.2940%" y="863.50"></text></g><g><title>_dl_catch_exception (126 samples, 0.08%)</title><rect x="67.0254%" y="901" width="0.0839%" height="15" fill="rgb(236,102,18)" fg:x="100711" fg:w="126"/><text x="67.2754%" y="911.50"></text></g><g><title>openaux (126 samples, 0.08%)</title><rect x="67.0254%" y="885" width="0.0839%" height="15" fill="rgb(208,59,49)" fg:x="100711" fg:w="126"/><text x="67.2754%" y="895.50"></text></g><g><title>_dl_map_object (126 samples, 0.08%)</title><rect x="67.0254%" y="869" width="0.0839%" height="15" fill="rgb(215,194,28)" fg:x="100711" fg:w="126"/><text x="67.2754%" y="879.50"></text></g><g><title>_dl_map_object_deps (140 samples, 0.09%)</title><rect x="67.0221%" y="917" width="0.0932%" height="15" fill="rgb(243,207,11)" fg:x="100706" fg:w="140"/><text x="67.2721%" y="927.50"></text></g><g><title>_dl_receive_error (17 samples, 0.01%)</title><rect x="67.1152%" y="917" width="0.0113%" height="15" fill="rgb(254,179,35)" fg:x="100846" fg:w="17"/><text x="67.3652%" y="927.50"></text></g><g><title>version_check_doit (17 samples, 0.01%)</title><rect x="67.1152%" y="901" width="0.0113%" height="15" fill="rgb(235,97,3)" fg:x="100846" fg:w="17"/><text x="67.3652%" y="911.50"></text></g><g><title>_dl_check_all_versions (17 samples, 0.01%)</title><rect x="67.1152%" y="885" width="0.0113%" height="15" fill="rgb(215,155,33)" fg:x="100846" fg:w="17"/><text x="67.3652%" y="895.50"></text></g><g><title>_dl_check_map_versions (17 samples, 0.01%)</title><rect x="67.1152%" y="869" width="0.0113%" height="15" fill="rgb(223,128,12)" fg:x="100846" fg:w="17"/><text x="67.3652%" y="879.50"></text></g><g><title>dl_new_hash (63 samples, 0.04%)</title><rect x="67.1711%" y="853" width="0.0419%" height="15" fill="rgb(208,157,18)" fg:x="100930" fg:w="63"/><text x="67.4211%" y="863.50"></text></g><g><title>check_match (23 samples, 0.02%)</title><rect x="67.2743%" y="837" width="0.0153%" height="15" fill="rgb(249,70,54)" fg:x="101085" fg:w="23"/><text x="67.5243%" y="847.50"></text></g><g><title>_dl_lookup_symbol_x (190 samples, 0.13%)</title><rect x="67.1671%" y="869" width="0.1264%" height="15" fill="rgb(244,118,24)" fg:x="100924" fg:w="190"/><text x="67.4171%" y="879.50"></text></g><g><title>do_lookup_x (121 samples, 0.08%)</title><rect x="67.2131%" y="853" width="0.0805%" height="15" fill="rgb(211,54,0)" fg:x="100993" fg:w="121"/><text x="67.4631%" y="863.50"></text></g><g><title>elf_machine_rela (231 samples, 0.15%)</title><rect x="67.1412%" y="885" width="0.1537%" height="15" fill="rgb(245,137,45)" fg:x="100885" fg:w="231"/><text x="67.3912%" y="895.50"></text></g><g><title>elf_dynamic_do_Rela (255 samples, 0.17%)</title><rect x="67.1325%" y="901" width="0.1697%" height="15" fill="rgb(232,154,31)" fg:x="100872" fg:w="255"/><text x="67.3825%" y="911.50"></text></g><g><title>_dl_relocate_object (269 samples, 0.18%)</title><rect x="67.1265%" y="917" width="0.1790%" height="15" fill="rgb(253,6,39)" fg:x="100863" fg:w="269"/><text x="67.3765%" y="927.50"></text></g><g><title>[ld-2.31.so] (460 samples, 0.31%)</title><rect x="67.0161%" y="933" width="0.3061%" height="15" fill="rgb(234,183,24)" fg:x="100697" fg:w="460"/><text x="67.2661%" y="943.50"></text></g><g><title>_dl_start_final (468 samples, 0.31%)</title><rect x="67.0154%" y="965" width="0.3115%" height="15" fill="rgb(252,84,40)" fg:x="100696" fg:w="468"/><text x="67.2654%" y="975.50"></text></g><g><title>_dl_sysdep_start (467 samples, 0.31%)</title><rect x="67.0161%" y="949" width="0.3108%" height="15" fill="rgb(224,65,2)" fg:x="100697" fg:w="467"/><text x="67.2661%" y="959.50"></text></g><g><title>_dl_start (470 samples, 0.31%)</title><rect x="67.0154%" y="981" width="0.3128%" height="15" fill="rgb(229,38,24)" fg:x="100696" fg:w="470"/><text x="67.2654%" y="991.50"></text></g><g><title>_start (733 samples, 0.49%)</title><rect x="66.8437%" y="997" width="0.4878%" height="15" fill="rgb(218,131,50)" fg:x="100438" fg:w="733"/><text x="67.0937%" y="1007.50"></text></g><g><title>asm_exc_page_fault (117 samples, 0.08%)</title><rect x="67.3315%" y="997" width="0.0779%" height="15" fill="rgb(233,106,18)" fg:x="101171" fg:w="117"/><text x="67.5815%" y="1007.50"></text></g><g><title>begin_new_exec (18 samples, 0.01%)</title><rect x="67.4140%" y="901" width="0.0120%" height="15" fill="rgb(220,216,11)" fg:x="101295" fg:w="18"/><text x="67.6640%" y="911.50"></text></g><g><title>__x64_sys_execve (33 samples, 0.02%)</title><rect x="67.4094%" y="965" width="0.0220%" height="15" fill="rgb(251,100,45)" fg:x="101288" fg:w="33"/><text x="67.6594%" y="975.50"></text></g><g><title>do_execveat_common (33 samples, 0.02%)</title><rect x="67.4094%" y="949" width="0.0220%" height="15" fill="rgb(235,143,32)" fg:x="101288" fg:w="33"/><text x="67.6594%" y="959.50"></text></g><g><title>bprm_execve (33 samples, 0.02%)</title><rect x="67.4094%" y="933" width="0.0220%" height="15" fill="rgb(248,124,34)" fg:x="101288" fg:w="33"/><text x="67.6594%" y="943.50"></text></g><g><title>load_elf_binary (33 samples, 0.02%)</title><rect x="67.4094%" y="917" width="0.0220%" height="15" fill="rgb(225,221,4)" fg:x="101288" fg:w="33"/><text x="67.6594%" y="927.50"></text></g><g><title>free_pgtables (17 samples, 0.01%)</title><rect x="67.4407%" y="901" width="0.0113%" height="15" fill="rgb(242,27,43)" fg:x="101335" fg:w="17"/><text x="67.6907%" y="911.50"></text></g><g><title>tlb_finish_mmu (27 samples, 0.02%)</title><rect x="67.4546%" y="901" width="0.0180%" height="15" fill="rgb(227,54,8)" fg:x="101356" fg:w="27"/><text x="67.7046%" y="911.50"></text></g><g><title>release_pages (24 samples, 0.02%)</title><rect x="67.4566%" y="885" width="0.0160%" height="15" fill="rgb(253,139,49)" fg:x="101359" fg:w="24"/><text x="67.7066%" y="895.50"></text></g><g><title>mmput (64 samples, 0.04%)</title><rect x="67.4407%" y="933" width="0.0426%" height="15" fill="rgb(231,26,43)" fg:x="101335" fg:w="64"/><text x="67.6907%" y="943.50"></text></g><g><title>exit_mmap (64 samples, 0.04%)</title><rect x="67.4407%" y="917" width="0.0426%" height="15" fill="rgb(207,121,39)" fg:x="101335" fg:w="64"/><text x="67.6907%" y="927.50"></text></g><g><title>unmap_vmas (16 samples, 0.01%)</title><rect x="67.4726%" y="901" width="0.0106%" height="15" fill="rgb(223,101,35)" fg:x="101383" fg:w="16"/><text x="67.7226%" y="911.50"></text></g><g><title>unmap_page_range (16 samples, 0.01%)</title><rect x="67.4726%" y="885" width="0.0106%" height="15" fill="rgb(232,87,23)" fg:x="101383" fg:w="16"/><text x="67.7226%" y="895.50"></text></g><g><title>__x64_sys_exit (96 samples, 0.06%)</title><rect x="67.4314%" y="965" width="0.0639%" height="15" fill="rgb(225,180,29)" fg:x="101321" fg:w="96"/><text x="67.6814%" y="975.50"></text></g><g><title>do_exit (96 samples, 0.06%)</title><rect x="67.4314%" y="949" width="0.0639%" height="15" fill="rgb(225,25,17)" fg:x="101321" fg:w="96"/><text x="67.6814%" y="959.50"></text></g><g><title>task_work_run (18 samples, 0.01%)</title><rect x="67.4833%" y="933" width="0.0120%" height="15" fill="rgb(223,8,52)" fg:x="101399" fg:w="18"/><text x="67.7333%" y="943.50"></text></g><g><title>cleanup_mnt (18 samples, 0.01%)</title><rect x="67.4833%" y="917" width="0.0120%" height="15" fill="rgb(246,42,21)" fg:x="101399" fg:w="18"/><text x="67.7333%" y="927.50"></text></g><g><title>mmput (50 samples, 0.03%)</title><rect x="67.4959%" y="917" width="0.0333%" height="15" fill="rgb(205,64,43)" fg:x="101418" fg:w="50"/><text x="67.7459%" y="927.50"></text></g><g><title>exit_mmap (50 samples, 0.03%)</title><rect x="67.4959%" y="901" width="0.0333%" height="15" fill="rgb(221,160,13)" fg:x="101418" fg:w="50"/><text x="67.7459%" y="911.50"></text></g><g><title>unmap_vmas (25 samples, 0.02%)</title><rect x="67.5125%" y="885" width="0.0166%" height="15" fill="rgb(239,58,35)" fg:x="101443" fg:w="25"/><text x="67.7625%" y="895.50"></text></g><g><title>unmap_page_range (25 samples, 0.02%)</title><rect x="67.5125%" y="869" width="0.0166%" height="15" fill="rgb(251,26,40)" fg:x="101443" fg:w="25"/><text x="67.7625%" y="879.50"></text></g><g><title>__x64_sys_exit_group (54 samples, 0.04%)</title><rect x="67.4952%" y="965" width="0.0359%" height="15" fill="rgb(247,0,4)" fg:x="101417" fg:w="54"/><text x="67.7452%" y="975.50"></text></g><g><title>do_group_exit (54 samples, 0.04%)</title><rect x="67.4952%" y="949" width="0.0359%" height="15" fill="rgb(218,130,10)" fg:x="101417" fg:w="54"/><text x="67.7452%" y="959.50"></text></g><g><title>do_exit (54 samples, 0.04%)</title><rect x="67.4952%" y="933" width="0.0359%" height="15" fill="rgb(239,32,7)" fg:x="101417" fg:w="54"/><text x="67.7452%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (185 samples, 0.12%)</title><rect x="67.4094%" y="997" width="0.1231%" height="15" fill="rgb(210,192,24)" fg:x="101288" fg:w="185"/><text x="67.6594%" y="1007.50"></text></g><g><title>do_syscall_64 (185 samples, 0.12%)</title><rect x="67.4094%" y="981" width="0.1231%" height="15" fill="rgb(226,212,17)" fg:x="101288" fg:w="185"/><text x="67.6594%" y="991.50"></text></g><g><title>linux-sandbox (2,716 samples, 1.81%)</title><rect x="65.7269%" y="1013" width="1.8076%" height="15" fill="rgb(219,201,28)" fg:x="98760" fg:w="2716"/><text x="65.9769%" y="1023.50">l..</text></g><g><title>arch_fork (65 samples, 0.04%)</title><rect x="67.5611%" y="901" width="0.0433%" height="15" fill="rgb(235,207,41)" fg:x="101516" fg:w="65"/><text x="67.8111%" y="911.50"></text></g><g><title>ret_from_fork (56 samples, 0.04%)</title><rect x="67.5671%" y="885" width="0.0373%" height="15" fill="rgb(241,95,54)" fg:x="101525" fg:w="56"/><text x="67.8171%" y="895.50"></text></g><g><title>schedule_tail (56 samples, 0.04%)</title><rect x="67.5671%" y="869" width="0.0373%" height="15" fill="rgb(248,12,23)" fg:x="101525" fg:w="56"/><text x="67.8171%" y="879.50"></text></g><g><title>finish_task_switch (50 samples, 0.03%)</title><rect x="67.5711%" y="853" width="0.0333%" height="15" fill="rgb(228,173,4)" fg:x="101531" fg:w="50"/><text x="67.8211%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.03%)</title><rect x="67.5724%" y="837" width="0.0319%" height="15" fill="rgb(254,99,5)" fg:x="101533" fg:w="48"/><text x="67.8224%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (47 samples, 0.03%)</title><rect x="67.5731%" y="821" width="0.0313%" height="15" fill="rgb(212,184,17)" fg:x="101534" fg:w="47"/><text x="67.8231%" y="831.50"></text></g><g><title>native_write_msr (47 samples, 0.03%)</title><rect x="67.5731%" y="805" width="0.0313%" height="15" fill="rgb(252,174,1)" fg:x="101534" fg:w="47"/><text x="67.8231%" y="815.50"></text></g><g><title>__libc_fork (69 samples, 0.05%)</title><rect x="67.5598%" y="917" width="0.0459%" height="15" fill="rgb(241,118,51)" fg:x="101514" fg:w="69"/><text x="67.8098%" y="927.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (81 samples, 0.05%)</title><rect x="67.5525%" y="949" width="0.0539%" height="15" fill="rgb(227,94,47)" fg:x="101503" fg:w="81"/><text x="67.8025%" y="959.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (81 samples, 0.05%)</title><rect x="67.5525%" y="933" width="0.0539%" height="15" fill="rgb(229,104,2)" fg:x="101503" fg:w="81"/><text x="67.8025%" y="943.50"></text></g><g><title>__libc_start_main (96 samples, 0.06%)</title><rect x="67.5498%" y="981" width="0.0639%" height="15" fill="rgb(219,28,31)" fg:x="101499" fg:w="96"/><text x="67.7998%" y="991.50"></text></g><g><title>main (92 samples, 0.06%)</title><rect x="67.5525%" y="965" width="0.0612%" height="15" fill="rgb(233,109,36)" fg:x="101503" fg:w="92"/><text x="67.8025%" y="975.50"></text></g><g><title>_dl_map_segments (22 samples, 0.01%)</title><rect x="67.6150%" y="837" width="0.0146%" height="15" fill="rgb(246,88,11)" fg:x="101597" fg:w="22"/><text x="67.8650%" y="847.50"></text></g><g><title>__mmap64 (20 samples, 0.01%)</title><rect x="67.6164%" y="821" width="0.0133%" height="15" fill="rgb(209,212,17)" fg:x="101599" fg:w="20"/><text x="67.8664%" y="831.50"></text></g><g><title>__mmap64 (20 samples, 0.01%)</title><rect x="67.6164%" y="805" width="0.0133%" height="15" fill="rgb(243,59,29)" fg:x="101599" fg:w="20"/><text x="67.8664%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="67.6164%" y="789" width="0.0133%" height="15" fill="rgb(244,205,48)" fg:x="101599" fg:w="20"/><text x="67.8664%" y="799.50"></text></g><g><title>do_syscall_64 (20 samples, 0.01%)</title><rect x="67.6164%" y="773" width="0.0133%" height="15" fill="rgb(227,30,6)" fg:x="101599" fg:w="20"/><text x="67.8664%" y="783.50"></text></g><g><title>ksys_mmap_pgoff (20 samples, 0.01%)</title><rect x="67.6164%" y="757" width="0.0133%" height="15" fill="rgb(220,205,48)" fg:x="101599" fg:w="20"/><text x="67.8664%" y="767.50"></text></g><g><title>vm_mmap_pgoff (19 samples, 0.01%)</title><rect x="67.6170%" y="741" width="0.0126%" height="15" fill="rgb(250,94,14)" fg:x="101600" fg:w="19"/><text x="67.8670%" y="751.50"></text></g><g><title>do_mmap (19 samples, 0.01%)</title><rect x="67.6170%" y="725" width="0.0126%" height="15" fill="rgb(216,119,42)" fg:x="101600" fg:w="19"/><text x="67.8670%" y="735.50"></text></g><g><title>mmap_region (19 samples, 0.01%)</title><rect x="67.6170%" y="709" width="0.0126%" height="15" fill="rgb(232,155,0)" fg:x="101600" fg:w="19"/><text x="67.8670%" y="719.50"></text></g><g><title>_dl_map_object_from_fd (26 samples, 0.02%)</title><rect x="67.6150%" y="853" width="0.0173%" height="15" fill="rgb(212,24,32)" fg:x="101597" fg:w="26"/><text x="67.8650%" y="863.50"></text></g><g><title>_dl_map_object_deps (32 samples, 0.02%)</title><rect x="67.6150%" y="917" width="0.0213%" height="15" fill="rgb(216,69,20)" fg:x="101597" fg:w="32"/><text x="67.8650%" y="927.50"></text></g><g><title>_dl_catch_exception (32 samples, 0.02%)</title><rect x="67.6150%" y="901" width="0.0213%" height="15" fill="rgb(229,73,31)" fg:x="101597" fg:w="32"/><text x="67.8650%" y="911.50"></text></g><g><title>openaux (32 samples, 0.02%)</title><rect x="67.6150%" y="885" width="0.0213%" height="15" fill="rgb(224,219,20)" fg:x="101597" fg:w="32"/><text x="67.8650%" y="895.50"></text></g><g><title>_dl_map_object (32 samples, 0.02%)</title><rect x="67.6150%" y="869" width="0.0213%" height="15" fill="rgb(215,146,41)" fg:x="101597" fg:w="32"/><text x="67.8650%" y="879.50"></text></g><g><title>_dl_lookup_symbol_x (28 samples, 0.02%)</title><rect x="67.6470%" y="869" width="0.0186%" height="15" fill="rgb(244,71,31)" fg:x="101645" fg:w="28"/><text x="67.8970%" y="879.50"></text></g><g><title>do_lookup_x (20 samples, 0.01%)</title><rect x="67.6523%" y="853" width="0.0133%" height="15" fill="rgb(224,24,11)" fg:x="101653" fg:w="20"/><text x="67.9023%" y="863.50"></text></g><g><title>elf_machine_rela (38 samples, 0.03%)</title><rect x="67.6410%" y="885" width="0.0253%" height="15" fill="rgb(229,76,15)" fg:x="101636" fg:w="38"/><text x="67.8910%" y="895.50"></text></g><g><title>_dl_relocate_object (46 samples, 0.03%)</title><rect x="67.6370%" y="917" width="0.0306%" height="15" fill="rgb(209,93,2)" fg:x="101630" fg:w="46"/><text x="67.8870%" y="927.50"></text></g><g><title>elf_dynamic_do_Rela (46 samples, 0.03%)</title><rect x="67.6370%" y="901" width="0.0306%" height="15" fill="rgb(216,200,50)" fg:x="101630" fg:w="46"/><text x="67.8870%" y="911.50"></text></g><g><title>[ld-2.31.so] (82 samples, 0.05%)</title><rect x="67.6137%" y="933" width="0.0546%" height="15" fill="rgb(211,67,34)" fg:x="101595" fg:w="82"/><text x="67.8637%" y="943.50"></text></g><g><title>_dl_start_final (84 samples, 0.06%)</title><rect x="67.6137%" y="965" width="0.0559%" height="15" fill="rgb(225,87,47)" fg:x="101595" fg:w="84"/><text x="67.8637%" y="975.50"></text></g><g><title>_dl_sysdep_start (84 samples, 0.06%)</title><rect x="67.6137%" y="949" width="0.0559%" height="15" fill="rgb(217,185,16)" fg:x="101595" fg:w="84"/><text x="67.8637%" y="959.50"></text></g><g><title>_start (182 samples, 0.12%)</title><rect x="67.5498%" y="997" width="0.1211%" height="15" fill="rgb(205,0,0)" fg:x="101499" fg:w="182"/><text x="67.7998%" y="1007.50"></text></g><g><title>_dl_start (86 samples, 0.06%)</title><rect x="67.6137%" y="981" width="0.0572%" height="15" fill="rgb(207,116,45)" fg:x="101595" fg:w="86"/><text x="67.8637%" y="991.50"></text></g><g><title>process-wrapper (229 samples, 0.15%)</title><rect x="67.5385%" y="1013" width="0.1524%" height="15" fill="rgb(221,156,26)" fg:x="101482" fg:w="229"/><text x="67.7885%" y="1023.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="67.6749%" y="997" width="0.0160%" height="15" fill="rgb(213,140,4)" fg:x="101687" fg:w="24"/><text x="67.9249%" y="1007.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="67.6756%" y="981" width="0.0153%" height="15" fill="rgb(231,224,15)" fg:x="101688" fg:w="23"/><text x="67.9256%" y="991.50"></text></g><g><title>__GI___wait4 (64 samples, 0.04%)</title><rect x="67.7428%" y="965" width="0.0426%" height="15" fill="rgb(244,76,20)" fg:x="101789" fg:w="64"/><text x="67.9928%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.04%)</title><rect x="67.7435%" y="949" width="0.0419%" height="15" fill="rgb(238,117,7)" fg:x="101790" fg:w="63"/><text x="67.9935%" y="959.50"></text></g><g><title>do_syscall_64 (63 samples, 0.04%)</title><rect x="67.7435%" y="933" width="0.0419%" height="15" fill="rgb(235,1,10)" fg:x="101790" fg:w="63"/><text x="67.9935%" y="943.50"></text></g><g><title>kernel_wait4 (63 samples, 0.04%)</title><rect x="67.7435%" y="917" width="0.0419%" height="15" fill="rgb(216,165,6)" fg:x="101790" fg:w="63"/><text x="67.9935%" y="927.50"></text></g><g><title>do_wait (62 samples, 0.04%)</title><rect x="67.7441%" y="901" width="0.0413%" height="15" fill="rgb(246,91,35)" fg:x="101791" fg:w="62"/><text x="67.9941%" y="911.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (65 samples, 0.04%)</title><rect x="67.7428%" y="981" width="0.0433%" height="15" fill="rgb(228,96,24)" fg:x="101789" fg:w="65"/><text x="67.9928%" y="991.50"></text></g><g><title>__pthread_cond_timedwait (17 samples, 0.01%)</title><rect x="67.7894%" y="949" width="0.0113%" height="15" fill="rgb(254,217,53)" fg:x="101859" fg:w="17"/><text x="68.0394%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="67.7894%" y="933" width="0.0113%" height="15" fill="rgb(209,60,0)" fg:x="101859" fg:w="17"/><text x="68.0394%" y="943.50"></text></g><g><title>futex_abstimed_wait_cancelable (17 samples, 0.01%)</title><rect x="67.7894%" y="917" width="0.0113%" height="15" fill="rgb(250,93,26)" fg:x="101859" fg:w="17"/><text x="68.0394%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="67.7901%" y="901" width="0.0106%" height="15" fill="rgb(211,9,40)" fg:x="101860" fg:w="16"/><text x="68.0401%" y="911.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="67.7901%" y="885" width="0.0106%" height="15" fill="rgb(242,57,20)" fg:x="101860" fg:w="16"/><text x="68.0401%" y="895.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="67.7901%" y="869" width="0.0106%" height="15" fill="rgb(248,85,48)" fg:x="101860" fg:w="16"/><text x="68.0401%" y="879.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="67.7901%" y="853" width="0.0106%" height="15" fill="rgb(212,117,2)" fg:x="101860" fg:w="16"/><text x="68.0401%" y="863.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="67.7901%" y="837" width="0.0106%" height="15" fill="rgb(243,19,3)" fg:x="101860" fg:w="16"/><text x="68.0401%" y="847.50"></text></g><g><title>Unsafe_Park (22 samples, 0.01%)</title><rect x="67.7881%" y="981" width="0.0146%" height="15" fill="rgb(232,217,24)" fg:x="101857" fg:w="22"/><text x="68.0381%" y="991.50"></text></g><g><title>Parker::park (21 samples, 0.01%)</title><rect x="67.7887%" y="965" width="0.0140%" height="15" fill="rgb(224,175,40)" fg:x="101858" fg:w="21"/><text x="68.0387%" y="975.50"></text></g><g><title>[perf-943567.map] (165 samples, 0.11%)</title><rect x="67.6942%" y="997" width="0.1098%" height="15" fill="rgb(212,162,32)" fg:x="101716" fg:w="165"/><text x="67.9442%" y="1007.50"></text></g><g><title>process_reaper (174 samples, 0.12%)</title><rect x="67.6909%" y="1013" width="0.1158%" height="15" fill="rgb(215,9,4)" fg:x="101711" fg:w="174"/><text x="67.9409%" y="1023.50"></text></g><g><title>[anon] (18 samples, 0.01%)</title><rect x="67.8067%" y="997" width="0.0120%" height="15" fill="rgb(242,42,7)" fg:x="101885" fg:w="18"/><text x="68.0567%" y="1007.50"></text></g><g><title>Java_java_util_zip_Deflater_deflateBytesBytes (29 samples, 0.02%)</title><rect x="68.0729%" y="981" width="0.0193%" height="15" fill="rgb(242,184,45)" fg:x="102285" fg:w="29"/><text x="68.3229%" y="991.50"></text></g><g><title>deflate (29 samples, 0.02%)</title><rect x="68.0729%" y="965" width="0.0193%" height="15" fill="rgb(228,111,51)" fg:x="102285" fg:w="29"/><text x="68.3229%" y="975.50"></text></g><g><title>[libz.so.1.2.11] (29 samples, 0.02%)</title><rect x="68.0729%" y="949" width="0.0193%" height="15" fill="rgb(236,147,17)" fg:x="102285" fg:w="29"/><text x="68.3229%" y="959.50"></text></g><g><title>[libz.so.1.2.11] (17 samples, 0.01%)</title><rect x="68.0809%" y="933" width="0.0113%" height="15" fill="rgb(210,75,22)" fg:x="102297" fg:w="17"/><text x="68.3309%" y="943.50"></text></g><g><title>dequeue_task_fair (16 samples, 0.01%)</title><rect x="68.1295%" y="773" width="0.0106%" height="15" fill="rgb(217,159,45)" fg:x="102370" fg:w="16"/><text x="68.3795%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (53 samples, 0.04%)</title><rect x="68.1408%" y="757" width="0.0353%" height="15" fill="rgb(245,165,53)" fg:x="102387" fg:w="53"/><text x="68.3908%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.03%)</title><rect x="68.1421%" y="741" width="0.0339%" height="15" fill="rgb(251,190,50)" fg:x="102389" fg:w="51"/><text x="68.3921%" y="751.50"></text></g><g><title>native_write_msr (50 samples, 0.03%)</title><rect x="68.1428%" y="725" width="0.0333%" height="15" fill="rgb(208,203,29)" fg:x="102390" fg:w="50"/><text x="68.3928%" y="735.50"></text></g><g><title>finish_task_switch (57 samples, 0.04%)</title><rect x="68.1401%" y="773" width="0.0379%" height="15" fill="rgb(207,209,35)" fg:x="102386" fg:w="57"/><text x="68.3901%" y="783.50"></text></g><g><title>futex_wait_queue_me (100 samples, 0.07%)</title><rect x="68.1228%" y="821" width="0.0666%" height="15" fill="rgb(230,144,49)" fg:x="102360" fg:w="100"/><text x="68.3728%" y="831.50"></text></g><g><title>schedule (95 samples, 0.06%)</title><rect x="68.1262%" y="805" width="0.0632%" height="15" fill="rgb(229,31,6)" fg:x="102365" fg:w="95"/><text x="68.3762%" y="815.50"></text></g><g><title>__schedule (93 samples, 0.06%)</title><rect x="68.1275%" y="789" width="0.0619%" height="15" fill="rgb(251,129,24)" fg:x="102367" fg:w="93"/><text x="68.3775%" y="799.50"></text></g><g><title>do_syscall_64 (106 samples, 0.07%)</title><rect x="68.1195%" y="885" width="0.0705%" height="15" fill="rgb(235,105,15)" fg:x="102355" fg:w="106"/><text x="68.3695%" y="895.50"></text></g><g><title>__x64_sys_futex (105 samples, 0.07%)</title><rect x="68.1202%" y="869" width="0.0699%" height="15" fill="rgb(216,52,43)" fg:x="102356" fg:w="105"/><text x="68.3702%" y="879.50"></text></g><g><title>do_futex (105 samples, 0.07%)</title><rect x="68.1202%" y="853" width="0.0699%" height="15" fill="rgb(238,144,41)" fg:x="102356" fg:w="105"/><text x="68.3702%" y="863.50"></text></g><g><title>futex_wait (104 samples, 0.07%)</title><rect x="68.1208%" y="837" width="0.0692%" height="15" fill="rgb(243,63,9)" fg:x="102357" fg:w="104"/><text x="68.3708%" y="847.50"></text></g><g><title>__pthread_cond_wait (125 samples, 0.08%)</title><rect x="68.1102%" y="949" width="0.0832%" height="15" fill="rgb(246,208,1)" fg:x="102341" fg:w="125"/><text x="68.3602%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (125 samples, 0.08%)</title><rect x="68.1102%" y="933" width="0.0832%" height="15" fill="rgb(233,182,18)" fg:x="102341" fg:w="125"/><text x="68.3602%" y="943.50"></text></g><g><title>futex_wait_cancelable (118 samples, 0.08%)</title><rect x="68.1148%" y="917" width="0.0785%" height="15" fill="rgb(242,224,8)" fg:x="102348" fg:w="118"/><text x="68.3648%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (112 samples, 0.07%)</title><rect x="68.1188%" y="901" width="0.0745%" height="15" fill="rgb(243,54,37)" fg:x="102354" fg:w="112"/><text x="68.3688%" y="911.50"></text></g><g><title>Parker::park (149 samples, 0.10%)</title><rect x="68.1015%" y="965" width="0.0992%" height="15" fill="rgb(233,192,12)" fg:x="102328" fg:w="149"/><text x="68.3515%" y="975.50"></text></g><g><title>Unsafe_Park (156 samples, 0.10%)</title><rect x="68.0982%" y="981" width="0.1038%" height="15" fill="rgb(251,192,53)" fg:x="102323" fg:w="156"/><text x="68.3482%" y="991.50"></text></g><g><title>[perf-943567.map] (578 samples, 0.38%)</title><rect x="67.8194%" y="997" width="0.3847%" height="15" fill="rgb(246,141,26)" fg:x="101904" fg:w="578"/><text x="68.0694%" y="1007.50"></text></g><g><title>profile-writer- (614 samples, 0.41%)</title><rect x="67.8067%" y="1013" width="0.4086%" height="15" fill="rgb(239,195,19)" fg:x="101885" fg:w="614"/><text x="68.0567%" y="1023.50"></text></g><g><title>[anon] (33 samples, 0.02%)</title><rect x="68.2313%" y="997" width="0.0220%" height="15" fill="rgb(241,16,39)" fg:x="102523" fg:w="33"/><text x="68.4813%" y="1007.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.02%)</title><rect x="68.2666%" y="661" width="0.0173%" height="15" fill="rgb(223,13,53)" fg:x="102576" fg:w="26"/><text x="68.5166%" y="671.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.02%)</title><rect x="68.2666%" y="645" width="0.0173%" height="15" fill="rgb(214,227,0)" fg:x="102576" fg:w="26"/><text x="68.5166%" y="655.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.2666%" y="629" width="0.0173%" height="15" fill="rgb(228,103,26)" fg:x="102576" fg:w="26"/><text x="68.5166%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.2666%" y="613" width="0.0173%" height="15" fill="rgb(254,177,53)" fg:x="102576" fg:w="26"/><text x="68.5166%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.2672%" y="597" width="0.0166%" height="15" fill="rgb(208,201,34)" fg:x="102577" fg:w="25"/><text x="68.5172%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.2672%" y="581" width="0.0166%" height="15" fill="rgb(212,39,5)" fg:x="102577" fg:w="25"/><text x="68.5172%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.2672%" y="565" width="0.0166%" height="15" fill="rgb(246,117,3)" fg:x="102577" fg:w="25"/><text x="68.5172%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.2672%" y="549" width="0.0166%" height="15" fill="rgb(244,118,39)" fg:x="102577" fg:w="25"/><text x="68.5172%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.2679%" y="533" width="0.0160%" height="15" fill="rgb(241,64,10)" fg:x="102578" fg:w="24"/><text x="68.5179%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.2679%" y="517" width="0.0160%" height="15" fill="rgb(229,39,44)" fg:x="102578" fg:w="24"/><text x="68.5179%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.2679%" y="501" width="0.0160%" height="15" fill="rgb(230,226,3)" fg:x="102578" fg:w="24"/><text x="68.5179%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.2679%" y="485" width="0.0160%" height="15" fill="rgb(222,13,42)" fg:x="102578" fg:w="24"/><text x="68.5179%" y="495.50"></text></g><g><title>PyImport_ImportModuleLevelObject (29 samples, 0.02%)</title><rect x="68.2666%" y="981" width="0.0193%" height="15" fill="rgb(247,180,54)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="991.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (29 samples, 0.02%)</title><rect x="68.2666%" y="965" width="0.0193%" height="15" fill="rgb(205,96,16)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="975.50"></text></g><g><title>[python3.9] (29 samples, 0.02%)</title><rect x="68.2666%" y="949" width="0.0193%" height="15" fill="rgb(205,100,21)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="959.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.02%)</title><rect x="68.2666%" y="933" width="0.0193%" height="15" fill="rgb(248,51,4)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="943.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.02%)</title><rect x="68.2666%" y="917" width="0.0193%" height="15" fill="rgb(217,197,30)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.02%)</title><rect x="68.2666%" y="901" width="0.0193%" height="15" fill="rgb(240,179,40)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.02%)</title><rect x="68.2666%" y="885" width="0.0193%" height="15" fill="rgb(212,185,35)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.02%)</title><rect x="68.2666%" y="869" width="0.0193%" height="15" fill="rgb(251,222,31)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.02%)</title><rect x="68.2666%" y="853" width="0.0193%" height="15" fill="rgb(208,140,36)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.02%)</title><rect x="68.2666%" y="837" width="0.0193%" height="15" fill="rgb(220,148,1)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.02%)</title><rect x="68.2666%" y="821" width="0.0193%" height="15" fill="rgb(254,4,28)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.02%)</title><rect x="68.2666%" y="805" width="0.0193%" height="15" fill="rgb(222,185,44)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="815.50"></text></g><g><title>[python3.9] (29 samples, 0.02%)</title><rect x="68.2666%" y="789" width="0.0193%" height="15" fill="rgb(215,74,39)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.02%)</title><rect x="68.2666%" y="773" width="0.0193%" height="15" fill="rgb(247,86,4)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="783.50"></text></g><g><title>[python3.9] (29 samples, 0.02%)</title><rect x="68.2666%" y="757" width="0.0193%" height="15" fill="rgb(231,105,32)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="767.50"></text></g><g><title>[python3.9] (29 samples, 0.02%)</title><rect x="68.2666%" y="741" width="0.0193%" height="15" fill="rgb(222,65,35)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="751.50"></text></g><g><title>PyEval_EvalCode (29 samples, 0.02%)</title><rect x="68.2666%" y="725" width="0.0193%" height="15" fill="rgb(218,145,35)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="735.50"></text></g><g><title>_PyEval_EvalCodeWithName (29 samples, 0.02%)</title><rect x="68.2666%" y="709" width="0.0193%" height="15" fill="rgb(208,7,15)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="719.50"></text></g><g><title>[python3.9] (29 samples, 0.02%)</title><rect x="68.2666%" y="693" width="0.0193%" height="15" fill="rgb(209,83,13)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.02%)</title><rect x="68.2666%" y="677" width="0.0193%" height="15" fill="rgb(218,3,10)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="687.50"></text></g><g><title>PyImport_ImportModuleLevelObject (17 samples, 0.01%)</title><rect x="68.3378%" y="949" width="0.0113%" height="15" fill="rgb(211,219,4)" fg:x="102683" fg:w="17"/><text x="68.5878%" y="959.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (17 samples, 0.01%)</title><rect x="68.3378%" y="933" width="0.0113%" height="15" fill="rgb(228,194,12)" fg:x="102683" fg:w="17"/><text x="68.5878%" y="943.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.3378%" y="917" width="0.0113%" height="15" fill="rgb(210,175,7)" fg:x="102683" fg:w="17"/><text x="68.5878%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.3378%" y="901" width="0.0113%" height="15" fill="rgb(243,132,6)" fg:x="102683" fg:w="17"/><text x="68.5878%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3385%" y="885" width="0.0106%" height="15" fill="rgb(207,72,18)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.3385%" y="869" width="0.0106%" height="15" fill="rgb(236,1,18)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3385%" y="853" width="0.0106%" height="15" fill="rgb(227,0,18)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.3385%" y="837" width="0.0106%" height="15" fill="rgb(247,37,5)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3385%" y="821" width="0.0106%" height="15" fill="rgb(237,179,24)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.3385%" y="805" width="0.0106%" height="15" fill="rgb(226,53,20)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3385%" y="789" width="0.0106%" height="15" fill="rgb(247,75,7)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.3385%" y="773" width="0.0106%" height="15" fill="rgb(233,96,12)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="783.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3385%" y="757" width="0.0106%" height="15" fill="rgb(224,125,0)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3385%" y="741" width="0.0106%" height="15" fill="rgb(224,92,25)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="751.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3385%" y="725" width="0.0106%" height="15" fill="rgb(224,42,24)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="735.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3385%" y="709" width="0.0106%" height="15" fill="rgb(234,132,49)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="719.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="68.3385%" y="693" width="0.0106%" height="15" fill="rgb(248,100,35)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="703.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="68.3385%" y="677" width="0.0106%" height="15" fill="rgb(239,94,40)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="687.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3385%" y="661" width="0.0106%" height="15" fill="rgb(235,139,28)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3385%" y="645" width="0.0106%" height="15" fill="rgb(217,144,7)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="655.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3504%" y="949" width="0.0106%" height="15" fill="rgb(227,55,4)" fg:x="102702" fg:w="16"/><text x="68.6004%" y="959.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3504%" y="933" width="0.0106%" height="15" fill="rgb(252,82,54)" fg:x="102702" fg:w="16"/><text x="68.6004%" y="943.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="68.3504%" y="917" width="0.0106%" height="15" fill="rgb(245,172,4)" fg:x="102702" fg:w="16"/><text x="68.6004%" y="927.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="68.3504%" y="901" width="0.0106%" height="15" fill="rgb(207,26,27)" fg:x="102702" fg:w="16"/><text x="68.6004%" y="911.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3504%" y="885" width="0.0106%" height="15" fill="rgb(252,98,18)" fg:x="102702" fg:w="16"/><text x="68.6004%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3504%" y="869" width="0.0106%" height="15" fill="rgb(244,8,26)" fg:x="102702" fg:w="16"/><text x="68.6004%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.3378%" y="965" width="0.0253%" height="15" fill="rgb(237,173,45)" fg:x="102683" fg:w="38"/><text x="68.5878%" y="975.50"></text></g><g><title>PyImport_ImportModuleLevelObject (31 samples, 0.02%)</title><rect x="68.3631%" y="693" width="0.0206%" height="15" fill="rgb(208,213,49)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="703.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (31 samples, 0.02%)</title><rect x="68.3631%" y="677" width="0.0206%" height="15" fill="rgb(212,122,37)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="687.50"></text></g><g><title>[python3.9] (31 samples, 0.02%)</title><rect x="68.3631%" y="661" width="0.0206%" height="15" fill="rgb(213,80,17)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.3631%" y="645" width="0.0206%" height="15" fill="rgb(206,210,43)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.3631%" y="629" width="0.0206%" height="15" fill="rgb(229,214,3)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.3631%" y="613" width="0.0206%" height="15" fill="rgb(235,213,29)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.3631%" y="597" width="0.0206%" height="15" fill="rgb(248,135,26)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.3631%" y="581" width="0.0206%" height="15" fill="rgb(242,188,12)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.3677%" y="565" width="0.0160%" height="15" fill="rgb(245,38,12)" fg:x="102728" fg:w="24"/><text x="68.6177%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.3677%" y="549" width="0.0160%" height="15" fill="rgb(218,42,13)" fg:x="102728" fg:w="24"/><text x="68.6177%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.3677%" y="533" width="0.0160%" height="15" fill="rgb(238,132,49)" fg:x="102728" fg:w="24"/><text x="68.6177%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.3677%" y="517" width="0.0160%" height="15" fill="rgb(209,196,19)" fg:x="102728" fg:w="24"/><text x="68.6177%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.3631%" y="965" width="0.0226%" height="15" fill="rgb(244,131,22)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="975.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.3631%" y="949" width="0.0226%" height="15" fill="rgb(223,18,34)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="959.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.3631%" y="933" width="0.0226%" height="15" fill="rgb(252,124,54)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="943.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.3631%" y="917" width="0.0226%" height="15" fill="rgb(229,106,42)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.3631%" y="901" width="0.0226%" height="15" fill="rgb(221,129,1)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.3631%" y="885" width="0.0226%" height="15" fill="rgb(229,74,15)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.3631%" y="869" width="0.0226%" height="15" fill="rgb(210,206,50)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.3631%" y="853" width="0.0226%" height="15" fill="rgb(251,114,31)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.3631%" y="837" width="0.0226%" height="15" fill="rgb(215,225,28)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="847.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.3631%" y="821" width="0.0226%" height="15" fill="rgb(237,109,14)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.3631%" y="805" width="0.0226%" height="15" fill="rgb(230,13,37)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="815.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.3631%" y="789" width="0.0226%" height="15" fill="rgb(231,40,28)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="799.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.3631%" y="773" width="0.0226%" height="15" fill="rgb(231,202,18)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="783.50"></text></g><g><title>PyEval_EvalCode (34 samples, 0.02%)</title><rect x="68.3631%" y="757" width="0.0226%" height="15" fill="rgb(225,33,18)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="767.50"></text></g><g><title>_PyEval_EvalCodeWithName (34 samples, 0.02%)</title><rect x="68.3631%" y="741" width="0.0226%" height="15" fill="rgb(223,64,47)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="751.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.3631%" y="725" width="0.0226%" height="15" fill="rgb(234,114,13)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.3631%" y="709" width="0.0226%" height="15" fill="rgb(248,56,40)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="719.50"></text></g><g><title>[python3.9] (123 samples, 0.08%)</title><rect x="68.3045%" y="981" width="0.0819%" height="15" fill="rgb(221,194,21)" fg:x="102633" fg:w="123"/><text x="68.5545%" y="991.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4017%" y="453" width="0.0120%" height="15" fill="rgb(242,108,46)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4017%" y="437" width="0.0120%" height="15" fill="rgb(220,106,10)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="447.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4017%" y="421" width="0.0120%" height="15" fill="rgb(211,88,4)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="431.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4017%" y="405" width="0.0120%" height="15" fill="rgb(214,95,34)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="415.50"></text></g><g><title>PyEval_EvalCode (18 samples, 0.01%)</title><rect x="68.4017%" y="389" width="0.0120%" height="15" fill="rgb(250,160,33)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="399.50"></text></g><g><title>_PyEval_EvalCodeWithName (18 samples, 0.01%)</title><rect x="68.4017%" y="373" width="0.0120%" height="15" fill="rgb(225,29,10)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="383.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4017%" y="357" width="0.0120%" height="15" fill="rgb(224,28,30)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="367.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4017%" y="341" width="0.0120%" height="15" fill="rgb(231,77,4)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="351.50"></text></g><g><title>PyImport_ImportModuleLevelObject (38 samples, 0.03%)</title><rect x="68.3964%" y="645" width="0.0253%" height="15" fill="rgb(209,63,21)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="655.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (38 samples, 0.03%)</title><rect x="68.3964%" y="629" width="0.0253%" height="15" fill="rgb(226,22,11)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="639.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.3964%" y="613" width="0.0253%" height="15" fill="rgb(216,82,30)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="68.3964%" y="597" width="0.0253%" height="15" fill="rgb(246,227,38)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.3964%" y="581" width="0.0253%" height="15" fill="rgb(251,203,53)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="68.3964%" y="565" width="0.0253%" height="15" fill="rgb(254,101,1)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.3964%" y="549" width="0.0253%" height="15" fill="rgb(241,180,5)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="68.3964%" y="533" width="0.0253%" height="15" fill="rgb(218,168,4)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.3997%" y="517" width="0.0220%" height="15" fill="rgb(224,223,32)" fg:x="102776" fg:w="33"/><text x="68.6497%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.4010%" y="501" width="0.0206%" height="15" fill="rgb(236,106,22)" fg:x="102778" fg:w="31"/><text x="68.6510%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.4010%" y="485" width="0.0206%" height="15" fill="rgb(206,121,5)" fg:x="102778" fg:w="31"/><text x="68.6510%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="68.4017%" y="469" width="0.0200%" height="15" fill="rgb(233,87,28)" fg:x="102779" fg:w="30"/><text x="68.6517%" y="479.50"></text></g><g><title>PyImport_ImportModuleLevelObject (44 samples, 0.03%)</title><rect x="68.3957%" y="965" width="0.0293%" height="15" fill="rgb(236,137,17)" fg:x="102770" fg:w="44"/><text x="68.6457%" y="975.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (44 samples, 0.03%)</title><rect x="68.3957%" y="949" width="0.0293%" height="15" fill="rgb(209,183,38)" fg:x="102770" fg:w="44"/><text x="68.6457%" y="959.50"></text></g><g><title>[python3.9] (44 samples, 0.03%)</title><rect x="68.3957%" y="933" width="0.0293%" height="15" fill="rgb(206,162,44)" fg:x="102770" fg:w="44"/><text x="68.6457%" y="943.50"></text></g><g><title>_PyFunction_Vectorcall (44 samples, 0.03%)</title><rect x="68.3957%" y="917" width="0.0293%" height="15" fill="rgb(237,70,39)" fg:x="102770" fg:w="44"/><text x="68.6457%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.03%)</title><rect x="68.3964%" y="901" width="0.0286%" height="15" fill="rgb(212,176,5)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.03%)</title><rect x="68.3964%" y="885" width="0.0286%" height="15" fill="rgb(232,95,16)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.03%)</title><rect x="68.3964%" y="869" width="0.0286%" height="15" fill="rgb(219,115,35)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.03%)</title><rect x="68.3964%" y="853" width="0.0286%" height="15" fill="rgb(251,67,27)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.03%)</title><rect x="68.3964%" y="837" width="0.0286%" height="15" fill="rgb(222,95,40)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.03%)</title><rect x="68.3964%" y="821" width="0.0286%" height="15" fill="rgb(250,35,16)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.03%)</title><rect x="68.3964%" y="805" width="0.0286%" height="15" fill="rgb(224,86,44)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.03%)</title><rect x="68.3964%" y="789" width="0.0286%" height="15" fill="rgb(237,53,53)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="799.50"></text></g><g><title>[python3.9] (43 samples, 0.03%)</title><rect x="68.3964%" y="773" width="0.0286%" height="15" fill="rgb(208,171,33)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.03%)</title><rect x="68.3964%" y="757" width="0.0286%" height="15" fill="rgb(222,64,27)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="767.50"></text></g><g><title>[python3.9] (43 samples, 0.03%)</title><rect x="68.3964%" y="741" width="0.0286%" height="15" fill="rgb(221,121,35)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="751.50"></text></g><g><title>[python3.9] (43 samples, 0.03%)</title><rect x="68.3964%" y="725" width="0.0286%" height="15" fill="rgb(228,137,42)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="735.50"></text></g><g><title>PyEval_EvalCode (43 samples, 0.03%)</title><rect x="68.3964%" y="709" width="0.0286%" height="15" fill="rgb(227,54,21)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="719.50"></text></g><g><title>_PyEval_EvalCodeWithName (43 samples, 0.03%)</title><rect x="68.3964%" y="693" width="0.0286%" height="15" fill="rgb(240,168,33)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="703.50"></text></g><g><title>[python3.9] (43 samples, 0.03%)</title><rect x="68.3964%" y="677" width="0.0286%" height="15" fill="rgb(243,159,6)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.03%)</title><rect x="68.3964%" y="661" width="0.0286%" height="15" fill="rgb(205,211,41)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="671.50"></text></g><g><title>PyImport_ImportModuleLevelObject (20 samples, 0.01%)</title><rect x="68.4270%" y="869" width="0.0133%" height="15" fill="rgb(253,30,1)" fg:x="102817" fg:w="20"/><text x="68.6770%" y="879.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (20 samples, 0.01%)</title><rect x="68.4270%" y="853" width="0.0133%" height="15" fill="rgb(226,80,18)" fg:x="102817" fg:w="20"/><text x="68.6770%" y="863.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4270%" y="837" width="0.0133%" height="15" fill="rgb(253,156,46)" fg:x="102817" fg:w="20"/><text x="68.6770%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="68.4270%" y="821" width="0.0133%" height="15" fill="rgb(248,87,27)" fg:x="102817" fg:w="20"/><text x="68.6770%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4283%" y="805" width="0.0120%" height="15" fill="rgb(227,122,2)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.4283%" y="789" width="0.0120%" height="15" fill="rgb(229,94,39)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4283%" y="773" width="0.0120%" height="15" fill="rgb(225,173,31)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.4283%" y="757" width="0.0120%" height="15" fill="rgb(239,176,30)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4283%" y="741" width="0.0120%" height="15" fill="rgb(212,104,21)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.4283%" y="725" width="0.0120%" height="15" fill="rgb(240,209,40)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4283%" y="709" width="0.0120%" height="15" fill="rgb(234,195,5)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.4283%" y="693" width="0.0120%" height="15" fill="rgb(238,213,1)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="703.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4283%" y="677" width="0.0120%" height="15" fill="rgb(235,182,54)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4283%" y="661" width="0.0120%" height="15" fill="rgb(229,50,46)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="671.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4283%" y="645" width="0.0120%" height="15" fill="rgb(219,145,13)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="655.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4283%" y="629" width="0.0120%" height="15" fill="rgb(220,226,10)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="639.50"></text></g><g><title>PyEval_EvalCode (18 samples, 0.01%)</title><rect x="68.4283%" y="613" width="0.0120%" height="15" fill="rgb(248,47,30)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="623.50"></text></g><g><title>_PyEval_EvalCodeWithName (18 samples, 0.01%)</title><rect x="68.4283%" y="597" width="0.0120%" height="15" fill="rgb(231,209,44)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="607.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4283%" y="581" width="0.0120%" height="15" fill="rgb(209,80,30)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4283%" y="565" width="0.0120%" height="15" fill="rgb(232,9,14)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="575.50"></text></g><g><title>PyEval_EvalCode (25 samples, 0.02%)</title><rect x="68.4270%" y="933" width="0.0166%" height="15" fill="rgb(243,91,43)" fg:x="102817" fg:w="25"/><text x="68.6770%" y="943.50"></text></g><g><title>_PyEval_EvalCodeWithName (25 samples, 0.02%)</title><rect x="68.4270%" y="917" width="0.0166%" height="15" fill="rgb(231,90,52)" fg:x="102817" fg:w="25"/><text x="68.6770%" y="927.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.4270%" y="901" width="0.0166%" height="15" fill="rgb(253,192,44)" fg:x="102817" fg:w="25"/><text x="68.6770%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.4270%" y="885" width="0.0166%" height="15" fill="rgb(241,66,31)" fg:x="102817" fg:w="25"/><text x="68.6770%" y="895.50"></text></g><g><title>[python3.9] (28 samples, 0.02%)</title><rect x="68.4270%" y="965" width="0.0186%" height="15" fill="rgb(235,81,37)" fg:x="102817" fg:w="28"/><text x="68.6770%" y="975.50"></text></g><g><title>[python3.9] (28 samples, 0.02%)</title><rect x="68.4270%" y="949" width="0.0186%" height="15" fill="rgb(223,221,9)" fg:x="102817" fg:w="28"/><text x="68.6770%" y="959.50"></text></g><g><title>PyImport_ImportModuleLevelObject (20 samples, 0.01%)</title><rect x="68.4476%" y="821" width="0.0133%" height="15" fill="rgb(242,180,7)" fg:x="102848" fg:w="20"/><text x="68.6976%" y="831.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (20 samples, 0.01%)</title><rect x="68.4476%" y="805" width="0.0133%" height="15" fill="rgb(243,78,19)" fg:x="102848" fg:w="20"/><text x="68.6976%" y="815.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4476%" y="789" width="0.0133%" height="15" fill="rgb(233,23,17)" fg:x="102848" fg:w="20"/><text x="68.6976%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="68.4476%" y="773" width="0.0133%" height="15" fill="rgb(252,122,45)" fg:x="102848" fg:w="20"/><text x="68.6976%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4496%" y="757" width="0.0113%" height="15" fill="rgb(247,108,20)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4496%" y="741" width="0.0113%" height="15" fill="rgb(235,84,21)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4496%" y="725" width="0.0113%" height="15" fill="rgb(247,129,10)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4496%" y="709" width="0.0113%" height="15" fill="rgb(208,173,14)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4496%" y="693" width="0.0113%" height="15" fill="rgb(236,31,38)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4496%" y="677" width="0.0113%" height="15" fill="rgb(232,65,17)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4496%" y="661" width="0.0113%" height="15" fill="rgb(224,45,49)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4496%" y="645" width="0.0113%" height="15" fill="rgb(225,2,53)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="655.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4496%" y="629" width="0.0113%" height="15" fill="rgb(248,210,53)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4496%" y="613" width="0.0113%" height="15" fill="rgb(211,1,30)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="623.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4496%" y="597" width="0.0113%" height="15" fill="rgb(224,96,15)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="607.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4496%" y="581" width="0.0113%" height="15" fill="rgb(252,45,11)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="591.50"></text></g><g><title>PyEval_EvalCode (17 samples, 0.01%)</title><rect x="68.4496%" y="565" width="0.0113%" height="15" fill="rgb(220,125,38)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="575.50"></text></g><g><title>_PyEval_EvalCodeWithName (17 samples, 0.01%)</title><rect x="68.4496%" y="549" width="0.0113%" height="15" fill="rgb(243,161,33)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="559.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4496%" y="533" width="0.0113%" height="15" fill="rgb(248,197,34)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4496%" y="517" width="0.0113%" height="15" fill="rgb(228,165,23)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="527.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.4476%" y="917" width="0.0140%" height="15" fill="rgb(236,94,38)" fg:x="102848" fg:w="21"/><text x="68.6976%" y="927.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.4476%" y="901" width="0.0140%" height="15" fill="rgb(220,13,23)" fg:x="102848" fg:w="21"/><text x="68.6976%" y="911.50"></text></g><g><title>PyEval_EvalCode (21 samples, 0.01%)</title><rect x="68.4476%" y="885" width="0.0140%" height="15" fill="rgb(234,26,39)" fg:x="102848" fg:w="21"/><text x="68.6976%" y="895.50"></text></g><g><title>_PyEval_EvalCodeWithName (21 samples, 0.01%)</title><rect x="68.4476%" y="869" width="0.0140%" height="15" fill="rgb(205,117,44)" fg:x="102848" fg:w="21"/><text x="68.6976%" y="879.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.4476%" y="853" width="0.0140%" height="15" fill="rgb(250,42,2)" fg:x="102848" fg:w="21"/><text x="68.6976%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (21 samples, 0.01%)</title><rect x="68.4476%" y="837" width="0.0140%" height="15" fill="rgb(223,83,14)" fg:x="102848" fg:w="21"/><text x="68.6976%" y="847.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.4456%" y="949" width="0.0173%" height="15" fill="rgb(241,147,50)" fg:x="102845" fg:w="26"/><text x="68.6956%" y="959.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.4456%" y="933" width="0.0173%" height="15" fill="rgb(218,90,6)" fg:x="102845" fg:w="26"/><text x="68.6956%" y="943.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4629%" y="885" width="0.0113%" height="15" fill="rgb(210,191,5)" fg:x="102871" fg:w="17"/><text x="68.7129%" y="895.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4629%" y="869" width="0.0113%" height="15" fill="rgb(225,139,19)" fg:x="102871" fg:w="17"/><text x="68.7129%" y="879.50"></text></g><g><title>PyEval_EvalCode (17 samples, 0.01%)</title><rect x="68.4629%" y="853" width="0.0113%" height="15" fill="rgb(210,1,33)" fg:x="102871" fg:w="17"/><text x="68.7129%" y="863.50"></text></g><g><title>_PyEval_EvalCodeWithName (17 samples, 0.01%)</title><rect x="68.4629%" y="837" width="0.0113%" height="15" fill="rgb(213,50,3)" fg:x="102871" fg:w="17"/><text x="68.7129%" y="847.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4629%" y="821" width="0.0113%" height="15" fill="rgb(234,227,4)" fg:x="102871" fg:w="17"/><text x="68.7129%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4629%" y="805" width="0.0113%" height="15" fill="rgb(246,63,5)" fg:x="102871" fg:w="17"/><text x="68.7129%" y="815.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4629%" y="917" width="0.0120%" height="15" fill="rgb(245,136,27)" fg:x="102871" fg:w="18"/><text x="68.7129%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4629%" y="901" width="0.0120%" height="15" fill="rgb(247,199,27)" fg:x="102871" fg:w="18"/><text x="68.7129%" y="911.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4756%" y="533" width="0.0126%" height="15" fill="rgb(252,158,49)" fg:x="102890" fg:w="19"/><text x="68.7256%" y="543.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4756%" y="517" width="0.0126%" height="15" fill="rgb(254,73,1)" fg:x="102890" fg:w="19"/><text x="68.7256%" y="527.50"></text></g><g><title>PyEval_EvalCode (19 samples, 0.01%)</title><rect x="68.4756%" y="501" width="0.0126%" height="15" fill="rgb(248,93,19)" fg:x="102890" fg:w="19"/><text x="68.7256%" y="511.50"></text></g><g><title>_PyEval_EvalCodeWithName (19 samples, 0.01%)</title><rect x="68.4756%" y="485" width="0.0126%" height="15" fill="rgb(206,67,5)" fg:x="102890" fg:w="19"/><text x="68.7256%" y="495.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4756%" y="469" width="0.0126%" height="15" fill="rgb(209,210,4)" fg:x="102890" fg:w="19"/><text x="68.7256%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="68.4756%" y="453" width="0.0126%" height="15" fill="rgb(214,185,36)" fg:x="102890" fg:w="19"/><text x="68.7256%" y="463.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4756%" y="565" width="0.0133%" height="15" fill="rgb(233,191,26)" fg:x="102890" fg:w="20"/><text x="68.7256%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.4756%" y="549" width="0.0133%" height="15" fill="rgb(248,94,17)" fg:x="102890" fg:w="20"/><text x="68.7256%" y="559.50"></text></g><g><title>PyImport_ImportModuleLevelObject (24 samples, 0.02%)</title><rect x="68.4749%" y="757" width="0.0160%" height="15" fill="rgb(250,64,4)" fg:x="102889" fg:w="24"/><text x="68.7249%" y="767.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (24 samples, 0.02%)</title><rect x="68.4749%" y="741" width="0.0160%" height="15" fill="rgb(218,41,53)" fg:x="102889" fg:w="24"/><text x="68.7249%" y="751.50"></text></g><g><title>[python3.9] (24 samples, 0.02%)</title><rect x="68.4749%" y="725" width="0.0160%" height="15" fill="rgb(251,176,28)" fg:x="102889" fg:w="24"/><text x="68.7249%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.4749%" y="709" width="0.0160%" height="15" fill="rgb(247,22,9)" fg:x="102889" fg:w="24"/><text x="68.7249%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.4756%" y="693" width="0.0153%" height="15" fill="rgb(218,201,14)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.4756%" y="677" width="0.0153%" height="15" fill="rgb(218,94,10)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.4756%" y="661" width="0.0153%" height="15" fill="rgb(222,183,52)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.4756%" y="645" width="0.0153%" height="15" fill="rgb(242,140,25)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.4756%" y="629" width="0.0153%" height="15" fill="rgb(235,197,38)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.4756%" y="613" width="0.0153%" height="15" fill="rgb(237,136,15)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.4756%" y="597" width="0.0153%" height="15" fill="rgb(223,44,49)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.4756%" y="581" width="0.0153%" height="15" fill="rgb(227,71,15)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="591.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.4749%" y="885" width="0.0173%" height="15" fill="rgb(225,153,20)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.4749%" y="869" width="0.0173%" height="15" fill="rgb(210,190,26)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="879.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.4749%" y="853" width="0.0173%" height="15" fill="rgb(223,147,5)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="863.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.4749%" y="837" width="0.0173%" height="15" fill="rgb(207,14,23)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="847.50"></text></g><g><title>PyEval_EvalCode (26 samples, 0.02%)</title><rect x="68.4749%" y="821" width="0.0173%" height="15" fill="rgb(211,195,53)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="831.50"></text></g><g><title>_PyEval_EvalCodeWithName (26 samples, 0.02%)</title><rect x="68.4749%" y="805" width="0.0173%" height="15" fill="rgb(237,75,46)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="815.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.4749%" y="789" width="0.0173%" height="15" fill="rgb(254,55,14)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.4749%" y="773" width="0.0173%" height="15" fill="rgb(230,185,30)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="783.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4955%" y="389" width="0.0106%" height="15" fill="rgb(220,14,11)" fg:x="102920" fg:w="16"/><text x="68.7455%" y="399.50"></text></g><g><title>_PyObject_MakeTpCall (16 samples, 0.01%)</title><rect x="68.4955%" y="373" width="0.0106%" height="15" fill="rgb(215,169,44)" fg:x="102920" fg:w="16"/><text x="68.7455%" y="383.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4955%" y="357" width="0.0106%" height="15" fill="rgb(253,203,20)" fg:x="102920" fg:w="16"/><text x="68.7455%" y="367.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4955%" y="405" width="0.0120%" height="15" fill="rgb(229,225,17)" fg:x="102920" fg:w="18"/><text x="68.7455%" y="415.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.4935%" y="533" width="0.0153%" height="15" fill="rgb(236,76,26)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.4935%" y="517" width="0.0153%" height="15" fill="rgb(234,15,30)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="527.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.4935%" y="501" width="0.0153%" height="15" fill="rgb(211,113,48)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="511.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.4935%" y="485" width="0.0153%" height="15" fill="rgb(221,31,36)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="495.50"></text></g><g><title>PyEval_EvalCode (23 samples, 0.02%)</title><rect x="68.4935%" y="469" width="0.0153%" height="15" fill="rgb(215,118,52)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="479.50"></text></g><g><title>_PyEval_EvalCodeWithName (23 samples, 0.02%)</title><rect x="68.4935%" y="453" width="0.0153%" height="15" fill="rgb(241,151,27)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="463.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.4935%" y="437" width="0.0153%" height="15" fill="rgb(253,51,3)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="447.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.4935%" y="421" width="0.0153%" height="15" fill="rgb(216,201,24)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="431.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.02%)</title><rect x="68.4922%" y="725" width="0.0173%" height="15" fill="rgb(231,107,4)" fg:x="102915" fg:w="26"/><text x="68.7422%" y="735.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.02%)</title><rect x="68.4922%" y="709" width="0.0173%" height="15" fill="rgb(243,97,54)" fg:x="102915" fg:w="26"/><text x="68.7422%" y="719.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.4922%" y="693" width="0.0173%" height="15" fill="rgb(221,32,51)" fg:x="102915" fg:w="26"/><text x="68.7422%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.4922%" y="677" width="0.0173%" height="15" fill="rgb(218,171,35)" fg:x="102915" fg:w="26"/><text x="68.7422%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.4929%" y="661" width="0.0166%" height="15" fill="rgb(214,20,53)" fg:x="102916" fg:w="25"/><text x="68.7429%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.4929%" y="645" width="0.0166%" height="15" fill="rgb(239,9,52)" fg:x="102916" fg:w="25"/><text x="68.7429%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.4929%" y="629" width="0.0166%" height="15" fill="rgb(215,114,45)" fg:x="102916" fg:w="25"/><text x="68.7429%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.4929%" y="613" width="0.0166%" height="15" fill="rgb(208,118,9)" fg:x="102916" fg:w="25"/><text x="68.7429%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.4935%" y="597" width="0.0160%" height="15" fill="rgb(235,7,39)" fg:x="102917" fg:w="24"/><text x="68.7435%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.4935%" y="581" width="0.0160%" height="15" fill="rgb(243,225,15)" fg:x="102917" fg:w="24"/><text x="68.7435%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.4935%" y="565" width="0.0160%" height="15" fill="rgb(225,216,18)" fg:x="102917" fg:w="24"/><text x="68.7435%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.4935%" y="549" width="0.0160%" height="15" fill="rgb(233,36,38)" fg:x="102917" fg:w="24"/><text x="68.7435%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (97 samples, 0.06%)</title><rect x="68.4456%" y="965" width="0.0646%" height="15" fill="rgb(239,88,23)" fg:x="102845" fg:w="97"/><text x="68.6956%" y="975.50"></text></g><g><title>_PyEval_EvalFrameDefault (71 samples, 0.05%)</title><rect x="68.4629%" y="949" width="0.0473%" height="15" fill="rgb(219,181,35)" fg:x="102871" fg:w="71"/><text x="68.7129%" y="959.50"></text></g><g><title>_PyFunction_Vectorcall (71 samples, 0.05%)</title><rect x="68.4629%" y="933" width="0.0473%" height="15" fill="rgb(215,18,46)" fg:x="102871" fg:w="71"/><text x="68.7129%" y="943.50"></text></g><g><title>_PyEval_EvalFrameDefault (53 samples, 0.04%)</title><rect x="68.4749%" y="917" width="0.0353%" height="15" fill="rgb(241,38,11)" fg:x="102889" fg:w="53"/><text x="68.7249%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (53 samples, 0.04%)</title><rect x="68.4749%" y="901" width="0.0353%" height="15" fill="rgb(248,169,45)" fg:x="102889" fg:w="53"/><text x="68.7249%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.4922%" y="885" width="0.0180%" height="15" fill="rgb(239,50,49)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.4922%" y="869" width="0.0180%" height="15" fill="rgb(231,96,31)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="879.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.4922%" y="853" width="0.0180%" height="15" fill="rgb(224,193,37)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.4922%" y="837" width="0.0180%" height="15" fill="rgb(227,153,50)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="847.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.4922%" y="821" width="0.0180%" height="15" fill="rgb(249,228,3)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="831.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.4922%" y="805" width="0.0180%" height="15" fill="rgb(219,164,43)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="815.50"></text></g><g><title>PyEval_EvalCode (27 samples, 0.02%)</title><rect x="68.4922%" y="789" width="0.0180%" height="15" fill="rgb(216,45,41)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="799.50"></text></g><g><title>_PyEval_EvalCodeWithName (27 samples, 0.02%)</title><rect x="68.4922%" y="773" width="0.0180%" height="15" fill="rgb(210,226,51)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="783.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.4922%" y="757" width="0.0180%" height="15" fill="rgb(209,117,49)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.4922%" y="741" width="0.0180%" height="15" fill="rgb(206,196,24)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (174 samples, 0.12%)</title><rect x="68.3957%" y="981" width="0.1158%" height="15" fill="rgb(253,218,3)" fg:x="102770" fg:w="174"/><text x="68.6457%" y="991.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5228%" y="869" width="0.0120%" height="15" fill="rgb(252,166,2)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.5228%" y="853" width="0.0120%" height="15" fill="rgb(236,218,26)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="863.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5228%" y="837" width="0.0120%" height="15" fill="rgb(254,84,19)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="847.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5228%" y="821" width="0.0120%" height="15" fill="rgb(219,137,29)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="831.50"></text></g><g><title>PyEval_EvalCode (18 samples, 0.01%)</title><rect x="68.5228%" y="805" width="0.0120%" height="15" fill="rgb(227,47,52)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="815.50"></text></g><g><title>_PyEval_EvalCodeWithName (18 samples, 0.01%)</title><rect x="68.5228%" y="789" width="0.0120%" height="15" fill="rgb(229,167,24)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="799.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5228%" y="773" width="0.0120%" height="15" fill="rgb(233,164,1)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.5228%" y="757" width="0.0120%" height="15" fill="rgb(218,88,48)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="767.50"></text></g><g><title>PyImport_ImportModuleLevelObject (18 samples, 0.01%)</title><rect x="68.5228%" y="741" width="0.0120%" height="15" fill="rgb(226,214,24)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="751.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (18 samples, 0.01%)</title><rect x="68.5228%" y="725" width="0.0120%" height="15" fill="rgb(233,29,12)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="735.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5228%" y="709" width="0.0120%" height="15" fill="rgb(219,120,34)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.5228%" y="693" width="0.0120%" height="15" fill="rgb(226,78,44)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.5228%" y="677" width="0.0120%" height="15" fill="rgb(240,15,48)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.5228%" y="661" width="0.0120%" height="15" fill="rgb(253,176,7)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.5228%" y="645" width="0.0120%" height="15" fill="rgb(206,166,28)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.5228%" y="629" width="0.0120%" height="15" fill="rgb(241,53,51)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (42 samples, 0.03%)</title><rect x="68.5115%" y="981" width="0.0280%" height="15" fill="rgb(249,112,30)" fg:x="102944" fg:w="42"/><text x="68.7615%" y="991.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.02%)</title><rect x="68.5181%" y="965" width="0.0213%" height="15" fill="rgb(217,85,30)" fg:x="102954" fg:w="32"/><text x="68.7681%" y="975.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.02%)</title><rect x="68.5181%" y="949" width="0.0213%" height="15" fill="rgb(233,49,7)" fg:x="102954" fg:w="32"/><text x="68.7681%" y="959.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="68.5195%" y="933" width="0.0200%" height="15" fill="rgb(234,109,9)" fg:x="102956" fg:w="30"/><text x="68.7695%" y="943.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="68.5195%" y="917" width="0.0200%" height="15" fill="rgb(253,95,22)" fg:x="102956" fg:w="30"/><text x="68.7695%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.5228%" y="901" width="0.0166%" height="15" fill="rgb(233,176,25)" fg:x="102961" fg:w="25"/><text x="68.7728%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.5228%" y="885" width="0.0166%" height="15" fill="rgb(236,33,39)" fg:x="102961" fg:w="25"/><text x="68.7728%" y="895.50"></text></g><g><title>PyImport_ImportModuleLevelObject (32 samples, 0.02%)</title><rect x="68.5394%" y="677" width="0.0213%" height="15" fill="rgb(223,226,42)" fg:x="102986" fg:w="32"/><text x="68.7894%" y="687.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (32 samples, 0.02%)</title><rect x="68.5394%" y="661" width="0.0213%" height="15" fill="rgb(216,99,33)" fg:x="102986" fg:w="32"/><text x="68.7894%" y="671.50"></text></g><g><title>[python3.9] (32 samples, 0.02%)</title><rect x="68.5394%" y="645" width="0.0213%" height="15" fill="rgb(235,84,23)" fg:x="102986" fg:w="32"/><text x="68.7894%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.02%)</title><rect x="68.5394%" y="629" width="0.0213%" height="15" fill="rgb(232,2,27)" fg:x="102986" fg:w="32"/><text x="68.7894%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="68.5408%" y="613" width="0.0200%" height="15" fill="rgb(241,23,22)" fg:x="102988" fg:w="30"/><text x="68.7908%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="68.5408%" y="597" width="0.0200%" height="15" fill="rgb(211,73,27)" fg:x="102988" fg:w="30"/><text x="68.7908%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="68.5408%" y="581" width="0.0200%" height="15" fill="rgb(235,109,49)" fg:x="102988" fg:w="30"/><text x="68.7908%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="68.5408%" y="565" width="0.0200%" height="15" fill="rgb(230,99,29)" fg:x="102988" fg:w="30"/><text x="68.7908%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.5428%" y="549" width="0.0180%" height="15" fill="rgb(245,199,7)" fg:x="102991" fg:w="27"/><text x="68.7928%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.5428%" y="533" width="0.0180%" height="15" fill="rgb(217,179,10)" fg:x="102991" fg:w="27"/><text x="68.7928%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.5428%" y="517" width="0.0180%" height="15" fill="rgb(254,99,47)" fg:x="102991" fg:w="27"/><text x="68.7928%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.5428%" y="501" width="0.0180%" height="15" fill="rgb(251,121,7)" fg:x="102991" fg:w="27"/><text x="68.7928%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.5461%" y="485" width="0.0146%" height="15" fill="rgb(250,177,26)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="68.5461%" y="469" width="0.0146%" height="15" fill="rgb(232,88,15)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="479.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="453" width="0.0146%" height="15" fill="rgb(251,54,54)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.5461%" y="437" width="0.0146%" height="15" fill="rgb(208,177,15)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="447.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="421" width="0.0146%" height="15" fill="rgb(205,97,32)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="431.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="405" width="0.0146%" height="15" fill="rgb(217,192,13)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="415.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="389" width="0.0146%" height="15" fill="rgb(215,163,41)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="399.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="373" width="0.0146%" height="15" fill="rgb(246,83,29)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="383.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="357" width="0.0146%" height="15" fill="rgb(219,2,45)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="367.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="341" width="0.0146%" height="15" fill="rgb(242,215,33)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="351.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="325" width="0.0146%" height="15" fill="rgb(217,1,6)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="335.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.5494%" y="309" width="0.0113%" height="15" fill="rgb(207,85,52)" fg:x="103001" fg:w="17"/><text x="68.7994%" y="319.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (37 samples, 0.02%)</title><rect x="68.5394%" y="981" width="0.0246%" height="15" fill="rgb(231,171,19)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="991.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="68.5394%" y="965" width="0.0246%" height="15" fill="rgb(207,128,4)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="975.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.02%)</title><rect x="68.5394%" y="949" width="0.0246%" height="15" fill="rgb(219,208,4)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="959.50"></text></g><g><title>_PyEval_EvalFrameDefault (37 samples, 0.02%)</title><rect x="68.5394%" y="933" width="0.0246%" height="15" fill="rgb(235,161,42)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="943.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.02%)</title><rect x="68.5394%" y="917" width="0.0246%" height="15" fill="rgb(247,218,18)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (37 samples, 0.02%)</title><rect x="68.5394%" y="901" width="0.0246%" height="15" fill="rgb(232,114,51)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.02%)</title><rect x="68.5394%" y="885" width="0.0246%" height="15" fill="rgb(222,95,3)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (37 samples, 0.02%)</title><rect x="68.5394%" y="869" width="0.0246%" height="15" fill="rgb(240,65,29)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.02%)</title><rect x="68.5394%" y="853" width="0.0246%" height="15" fill="rgb(249,209,20)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (37 samples, 0.02%)</title><rect x="68.5394%" y="837" width="0.0246%" height="15" fill="rgb(241,48,37)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.02%)</title><rect x="68.5394%" y="821" width="0.0246%" height="15" fill="rgb(230,140,42)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="831.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="68.5394%" y="805" width="0.0246%" height="15" fill="rgb(230,176,45)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (37 samples, 0.02%)</title><rect x="68.5394%" y="789" width="0.0246%" height="15" fill="rgb(245,112,21)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="799.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="68.5394%" y="773" width="0.0246%" height="15" fill="rgb(207,183,35)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="783.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="68.5394%" y="757" width="0.0246%" height="15" fill="rgb(227,44,33)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="767.50"></text></g><g><title>PyEval_EvalCode (37 samples, 0.02%)</title><rect x="68.5394%" y="741" width="0.0246%" height="15" fill="rgb(246,120,21)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="751.50"></text></g><g><title>_PyEval_EvalCodeWithName (37 samples, 0.02%)</title><rect x="68.5394%" y="725" width="0.0246%" height="15" fill="rgb(235,57,52)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="735.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="68.5394%" y="709" width="0.0246%" height="15" fill="rgb(238,84,10)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (37 samples, 0.02%)</title><rect x="68.5394%" y="693" width="0.0246%" height="15" fill="rgb(251,200,32)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="703.50"></text></g><g><title>[unknown] (475 samples, 0.32%)</title><rect x="68.2566%" y="997" width="0.3161%" height="15" fill="rgb(247,159,13)" fg:x="102561" fg:w="475"/><text x="68.5066%" y="1007.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.5780%" y="613" width="0.0126%" height="15" fill="rgb(238,64,4)" fg:x="103044" fg:w="19"/><text x="68.8280%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.5787%" y="597" width="0.0120%" height="15" fill="rgb(221,131,51)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="607.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5787%" y="581" width="0.0120%" height="15" fill="rgb(242,5,29)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="591.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5787%" y="565" width="0.0120%" height="15" fill="rgb(214,130,32)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="575.50"></text></g><g><title>PyEval_EvalCode (18 samples, 0.01%)</title><rect x="68.5787%" y="549" width="0.0120%" height="15" fill="rgb(244,210,16)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="559.50"></text></g><g><title>_PyEval_EvalCodeWithName (18 samples, 0.01%)</title><rect x="68.5787%" y="533" width="0.0120%" height="15" fill="rgb(234,48,26)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="543.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5787%" y="517" width="0.0120%" height="15" fill="rgb(231,82,38)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.5787%" y="501" width="0.0120%" height="15" fill="rgb(254,128,41)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="511.50"></text></g><g><title>PyImport_ImportModuleLevelObject (25 samples, 0.02%)</title><rect x="68.5774%" y="805" width="0.0166%" height="15" fill="rgb(212,73,49)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="815.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (25 samples, 0.02%)</title><rect x="68.5774%" y="789" width="0.0166%" height="15" fill="rgb(205,62,54)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="799.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.5774%" y="773" width="0.0166%" height="15" fill="rgb(228,0,8)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.5774%" y="757" width="0.0166%" height="15" fill="rgb(251,28,17)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.5774%" y="741" width="0.0166%" height="15" fill="rgb(238,105,27)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.5774%" y="725" width="0.0166%" height="15" fill="rgb(237,216,33)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.5774%" y="709" width="0.0166%" height="15" fill="rgb(229,228,25)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.5774%" y="693" width="0.0166%" height="15" fill="rgb(233,75,23)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.5780%" y="677" width="0.0160%" height="15" fill="rgb(231,207,16)" fg:x="103044" fg:w="24"/><text x="68.8280%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.5780%" y="661" width="0.0160%" height="15" fill="rgb(231,191,45)" fg:x="103044" fg:w="24"/><text x="68.8280%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.5780%" y="645" width="0.0160%" height="15" fill="rgb(224,133,17)" fg:x="103044" fg:w="24"/><text x="68.8280%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.5780%" y="629" width="0.0160%" height="15" fill="rgb(209,178,27)" fg:x="103044" fg:w="24"/><text x="68.8280%" y="639.50"></text></g><g><title>PyRun_SimpleStringFlags (30 samples, 0.02%)</title><rect x="68.5747%" y="933" width="0.0200%" height="15" fill="rgb(218,37,11)" fg:x="103039" fg:w="30"/><text x="68.8247%" y="943.50"></text></g><g><title>PyRun_StringFlags (30 samples, 0.02%)</title><rect x="68.5747%" y="917" width="0.0200%" height="15" fill="rgb(251,226,25)" fg:x="103039" fg:w="30"/><text x="68.8247%" y="927.50"></text></g><g><title>[python3.9] (29 samples, 0.02%)</title><rect x="68.5754%" y="901" width="0.0193%" height="15" fill="rgb(209,222,27)" fg:x="103040" fg:w="29"/><text x="68.8254%" y="911.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.5774%" y="885" width="0.0173%" height="15" fill="rgb(238,22,21)" fg:x="103043" fg:w="26"/><text x="68.8274%" y="895.50"></text></g><g><title>PyEval_EvalCode (26 samples, 0.02%)</title><rect x="68.5774%" y="869" width="0.0173%" height="15" fill="rgb(233,161,25)" fg:x="103043" fg:w="26"/><text x="68.8274%" y="879.50"></text></g><g><title>_PyEval_EvalCodeWithName (26 samples, 0.02%)</title><rect x="68.5774%" y="853" width="0.0173%" height="15" fill="rgb(226,122,53)" fg:x="103043" fg:w="26"/><text x="68.8274%" y="863.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.5774%" y="837" width="0.0173%" height="15" fill="rgb(220,123,17)" fg:x="103043" fg:w="26"/><text x="68.8274%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.5774%" y="821" width="0.0173%" height="15" fill="rgb(230,224,35)" fg:x="103043" fg:w="26"/><text x="68.8274%" y="831.50"></text></g><g><title>PyGC_Collect (27 samples, 0.02%)</title><rect x="68.5947%" y="917" width="0.0180%" height="15" fill="rgb(246,83,8)" fg:x="103069" fg:w="27"/><text x="68.8447%" y="927.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.5947%" y="901" width="0.0180%" height="15" fill="rgb(230,214,17)" fg:x="103069" fg:w="27"/><text x="68.8447%" y="911.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.5947%" y="885" width="0.0180%" height="15" fill="rgb(222,97,18)" fg:x="103069" fg:w="27"/><text x="68.8447%" y="895.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.5987%" y="869" width="0.0140%" height="15" fill="rgb(206,79,1)" fg:x="103075" fg:w="21"/><text x="68.8487%" y="879.50"></text></g><g><title>_PyGC_CollectNoFail (26 samples, 0.02%)</title><rect x="68.6153%" y="901" width="0.0173%" height="15" fill="rgb(214,121,34)" fg:x="103100" fg:w="26"/><text x="68.8653%" y="911.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.6153%" y="885" width="0.0173%" height="15" fill="rgb(249,199,46)" fg:x="103100" fg:w="26"/><text x="68.8653%" y="895.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.6186%" y="869" width="0.0140%" height="15" fill="rgb(214,222,46)" fg:x="103105" fg:w="21"/><text x="68.8686%" y="879.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.6133%" y="917" width="0.0226%" height="15" fill="rgb(248,168,30)" fg:x="103097" fg:w="34"/><text x="68.8633%" y="927.50"></text></g><g><title>Py_RunMain (107 samples, 0.07%)</title><rect x="68.5747%" y="949" width="0.0712%" height="15" fill="rgb(226,14,28)" fg:x="103039" fg:w="107"/><text x="68.8247%" y="959.50"></text></g><g><title>Py_FinalizeEx (77 samples, 0.05%)</title><rect x="68.5947%" y="933" width="0.0512%" height="15" fill="rgb(253,123,1)" fg:x="103069" fg:w="77"/><text x="68.8447%" y="943.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="68.6612%" y="517" width="0.0106%" height="15" fill="rgb(225,24,42)" fg:x="103169" fg:w="16"/><text x="68.9112%" y="527.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="68.6612%" y="501" width="0.0106%" height="15" fill="rgb(216,161,37)" fg:x="103169" fg:w="16"/><text x="68.9112%" y="511.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.6612%" y="485" width="0.0106%" height="15" fill="rgb(251,164,26)" fg:x="103169" fg:w="16"/><text x="68.9112%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.6612%" y="469" width="0.0106%" height="15" fill="rgb(219,177,3)" fg:x="103169" fg:w="16"/><text x="68.9112%" y="479.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.6599%" y="549" width="0.0126%" height="15" fill="rgb(222,65,0)" fg:x="103167" fg:w="19"/><text x="68.9099%" y="559.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.6612%" y="533" width="0.0113%" height="15" fill="rgb(223,69,54)" fg:x="103169" fg:w="17"/><text x="68.9112%" y="543.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.6599%" y="581" width="0.0133%" height="15" fill="rgb(235,30,27)" fg:x="103167" fg:w="20"/><text x="68.9099%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.6599%" y="565" width="0.0133%" height="15" fill="rgb(220,183,50)" fg:x="103167" fg:w="20"/><text x="68.9099%" y="575.50"></text></g><g><title>PyImport_ImportModule (38 samples, 0.03%)</title><rect x="68.6526%" y="869" width="0.0253%" height="15" fill="rgb(248,198,15)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="879.50"></text></g><g><title>PyImport_Import (38 samples, 0.03%)</title><rect x="68.6526%" y="853" width="0.0253%" height="15" fill="rgb(222,211,4)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="863.50"></text></g><g><title>PyObject_CallFunction (38 samples, 0.03%)</title><rect x="68.6526%" y="837" width="0.0253%" height="15" fill="rgb(214,102,34)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="847.50"></text></g><g><title>_PyObject_MakeTpCall (38 samples, 0.03%)</title><rect x="68.6526%" y="821" width="0.0253%" height="15" fill="rgb(245,92,5)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="831.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.6526%" y="805" width="0.0253%" height="15" fill="rgb(252,72,51)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="815.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.6526%" y="789" width="0.0253%" height="15" fill="rgb(252,208,19)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="799.50"></text></g><g><title>PyImport_ImportModuleLevelObject (38 samples, 0.03%)</title><rect x="68.6526%" y="773" width="0.0253%" height="15" fill="rgb(211,69,7)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="783.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (38 samples, 0.03%)</title><rect x="68.6526%" y="757" width="0.0253%" height="15" fill="rgb(211,27,16)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="767.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.6526%" y="741" width="0.0253%" height="15" fill="rgb(219,216,14)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="68.6526%" y="725" width="0.0253%" height="15" fill="rgb(219,71,8)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.6526%" y="709" width="0.0253%" height="15" fill="rgb(223,170,53)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="68.6539%" y="693" width="0.0240%" height="15" fill="rgb(246,21,26)" fg:x="103158" fg:w="36"/><text x="68.9039%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="68.6539%" y="677" width="0.0240%" height="15" fill="rgb(248,20,46)" fg:x="103158" fg:w="36"/><text x="68.9039%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="68.6539%" y="661" width="0.0240%" height="15" fill="rgb(252,94,11)" fg:x="103158" fg:w="36"/><text x="68.9039%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.02%)</title><rect x="68.6566%" y="645" width="0.0213%" height="15" fill="rgb(236,163,8)" fg:x="103162" fg:w="32"/><text x="68.9066%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.6572%" y="629" width="0.0206%" height="15" fill="rgb(217,221,45)" fg:x="103163" fg:w="31"/><text x="68.9072%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.6572%" y="613" width="0.0206%" height="15" fill="rgb(238,38,17)" fg:x="103163" fg:w="31"/><text x="68.9072%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.6599%" y="597" width="0.0180%" height="15" fill="rgb(242,210,23)" fg:x="103167" fg:w="27"/><text x="68.9099%" y="607.50"></text></g><g><title>PyObject_CallMethod (30 samples, 0.02%)</title><rect x="68.6785%" y="869" width="0.0200%" height="15" fill="rgb(250,86,53)" fg:x="103195" fg:w="30"/><text x="68.9285%" y="879.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="68.6785%" y="853" width="0.0200%" height="15" fill="rgb(223,168,25)" fg:x="103195" fg:w="30"/><text x="68.9285%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="68.6785%" y="837" width="0.0200%" height="15" fill="rgb(251,189,4)" fg:x="103195" fg:w="30"/><text x="68.9285%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="68.6785%" y="821" width="0.0200%" height="15" fill="rgb(245,19,28)" fg:x="103195" fg:w="30"/><text x="68.9285%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.6872%" y="805" width="0.0113%" height="15" fill="rgb(207,10,34)" fg:x="103208" fg:w="17"/><text x="68.9372%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.6872%" y="789" width="0.0113%" height="15" fill="rgb(235,153,31)" fg:x="103208" fg:w="17"/><text x="68.9372%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.6872%" y="773" width="0.0113%" height="15" fill="rgb(228,72,37)" fg:x="103208" fg:w="17"/><text x="68.9372%" y="783.50"></text></g><g><title>_PyCodec_Lookup (17 samples, 0.01%)</title><rect x="68.7092%" y="853" width="0.0113%" height="15" fill="rgb(215,15,16)" fg:x="103241" fg:w="17"/><text x="68.9592%" y="863.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.7092%" y="837" width="0.0113%" height="15" fill="rgb(250,119,29)" fg:x="103241" fg:w="17"/><text x="68.9592%" y="847.50"></text></g><g><title>[python3.9] (24 samples, 0.02%)</title><rect x="68.7072%" y="869" width="0.0160%" height="15" fill="rgb(214,59,1)" fg:x="103238" fg:w="24"/><text x="68.9572%" y="879.50"></text></g><g><title>Py_InitializeFromConfig (120 samples, 0.08%)</title><rect x="68.6459%" y="917" width="0.0799%" height="15" fill="rgb(223,109,25)" fg:x="103146" fg:w="120"/><text x="68.8959%" y="927.50"></text></g><g><title>[python3.9] (120 samples, 0.08%)</title><rect x="68.6459%" y="901" width="0.0799%" height="15" fill="rgb(230,198,22)" fg:x="103146" fg:w="120"/><text x="68.8959%" y="911.50"></text></g><g><title>[python3.9] (119 samples, 0.08%)</title><rect x="68.6466%" y="885" width="0.0792%" height="15" fill="rgb(245,184,46)" fg:x="103147" fg:w="119"/><text x="68.8966%" y="895.50"></text></g><g><title>__libc_start_main (229 samples, 0.15%)</title><rect x="68.5747%" y="981" width="0.1524%" height="15" fill="rgb(253,73,16)" fg:x="103039" fg:w="229"/><text x="68.8247%" y="991.50"></text></g><g><title>Py_BytesMain (229 samples, 0.15%)</title><rect x="68.5747%" y="965" width="0.1524%" height="15" fill="rgb(206,94,45)" fg:x="103039" fg:w="229"/><text x="68.8247%" y="975.50"></text></g><g><title>[python3.9] (122 samples, 0.08%)</title><rect x="68.6459%" y="949" width="0.0812%" height="15" fill="rgb(236,83,27)" fg:x="103146" fg:w="122"/><text x="68.8959%" y="959.50"></text></g><g><title>[python3.9] (122 samples, 0.08%)</title><rect x="68.6459%" y="933" width="0.0812%" height="15" fill="rgb(220,196,8)" fg:x="103146" fg:w="122"/><text x="68.8959%" y="943.50"></text></g><g><title>_start (243 samples, 0.16%)</title><rect x="68.5747%" y="997" width="0.1617%" height="15" fill="rgb(254,185,14)" fg:x="103039" fg:w="243"/><text x="68.8247%" y="1007.50"></text></g><g><title>python3 (797 samples, 0.53%)</title><rect x="68.2187%" y="1013" width="0.5304%" height="15" fill="rgb(226,50,22)" fg:x="102504" fg:w="797"/><text x="68.4687%" y="1023.50"></text></g><g><title>[sed] (18 samples, 0.01%)</title><rect x="68.7511%" y="949" width="0.0120%" height="15" fill="rgb(253,147,0)" fg:x="103304" fg:w="18"/><text x="69.0011%" y="959.50"></text></g><g><title>[sed] (18 samples, 0.01%)</title><rect x="68.7511%" y="933" width="0.0120%" height="15" fill="rgb(252,46,33)" fg:x="103304" fg:w="18"/><text x="69.0011%" y="943.50"></text></g><g><title>[sed] (20 samples, 0.01%)</title><rect x="68.7511%" y="997" width="0.0133%" height="15" fill="rgb(242,22,54)" fg:x="103304" fg:w="20"/><text x="69.0011%" y="1007.50"></text></g><g><title>__libc_start_main (20 samples, 0.01%)</title><rect x="68.7511%" y="981" width="0.0133%" height="15" fill="rgb(223,178,32)" fg:x="103304" fg:w="20"/><text x="69.0011%" y="991.50"></text></g><g><title>[sed] (20 samples, 0.01%)</title><rect x="68.7511%" y="965" width="0.0133%" height="15" fill="rgb(214,106,53)" fg:x="103304" fg:w="20"/><text x="69.0011%" y="975.50"></text></g><g><title>_dl_map_segments (16 samples, 0.01%)</title><rect x="68.7777%" y="837" width="0.0106%" height="15" fill="rgb(232,65,50)" fg:x="103344" fg:w="16"/><text x="69.0277%" y="847.50"></text></g><g><title>_dl_map_object_from_fd (18 samples, 0.01%)</title><rect x="68.7777%" y="853" width="0.0120%" height="15" fill="rgb(231,110,28)" fg:x="103344" fg:w="18"/><text x="69.0277%" y="863.50"></text></g><g><title>_dl_catch_exception (26 samples, 0.02%)</title><rect x="68.7750%" y="901" width="0.0173%" height="15" fill="rgb(216,71,40)" fg:x="103340" fg:w="26"/><text x="69.0250%" y="911.50"></text></g><g><title>openaux (26 samples, 0.02%)</title><rect x="68.7750%" y="885" width="0.0173%" height="15" fill="rgb(229,89,53)" fg:x="103340" fg:w="26"/><text x="69.0250%" y="895.50"></text></g><g><title>_dl_map_object (26 samples, 0.02%)</title><rect x="68.7750%" y="869" width="0.0173%" height="15" fill="rgb(210,124,14)" fg:x="103340" fg:w="26"/><text x="69.0250%" y="879.50"></text></g><g><title>_dl_map_object_deps (29 samples, 0.02%)</title><rect x="68.7737%" y="917" width="0.0193%" height="15" fill="rgb(236,213,6)" fg:x="103338" fg:w="29"/><text x="69.0237%" y="927.50"></text></g><g><title>_dl_lookup_symbol_x (16 samples, 0.01%)</title><rect x="68.7957%" y="869" width="0.0106%" height="15" fill="rgb(228,41,5)" fg:x="103371" fg:w="16"/><text x="69.0457%" y="879.50"></text></g><g><title>elf_machine_rela (17 samples, 0.01%)</title><rect x="68.7957%" y="885" width="0.0113%" height="15" fill="rgb(221,167,25)" fg:x="103371" fg:w="17"/><text x="69.0457%" y="895.50"></text></g><g><title>_dl_relocate_object (22 samples, 0.01%)</title><rect x="68.7937%" y="917" width="0.0146%" height="15" fill="rgb(228,144,37)" fg:x="103368" fg:w="22"/><text x="69.0437%" y="927.50"></text></g><g><title>elf_dynamic_do_Rela (19 samples, 0.01%)</title><rect x="68.7957%" y="901" width="0.0126%" height="15" fill="rgb(227,189,38)" fg:x="103371" fg:w="19"/><text x="69.0457%" y="911.50"></text></g><g><title>[ld-2.31.so] (60 samples, 0.04%)</title><rect x="68.7717%" y="933" width="0.0399%" height="15" fill="rgb(218,8,2)" fg:x="103335" fg:w="60"/><text x="69.0217%" y="943.50"></text></g><g><title>_dl_start (62 samples, 0.04%)</title><rect x="68.7717%" y="981" width="0.0413%" height="15" fill="rgb(209,61,28)" fg:x="103335" fg:w="62"/><text x="69.0217%" y="991.50"></text></g><g><title>_dl_start_final (62 samples, 0.04%)</title><rect x="68.7717%" y="965" width="0.0413%" height="15" fill="rgb(233,140,39)" fg:x="103335" fg:w="62"/><text x="69.0217%" y="975.50"></text></g><g><title>_dl_sysdep_start (62 samples, 0.04%)</title><rect x="68.7717%" y="949" width="0.0413%" height="15" fill="rgb(251,66,48)" fg:x="103335" fg:w="62"/><text x="69.0217%" y="959.50"></text></g><g><title>_start (63 samples, 0.04%)</title><rect x="68.7717%" y="997" width="0.0419%" height="15" fill="rgb(210,44,45)" fg:x="103335" fg:w="63"/><text x="69.0217%" y="1007.50"></text></g><g><title>sed (118 samples, 0.08%)</title><rect x="68.7491%" y="1013" width="0.0785%" height="15" fill="rgb(214,136,46)" fg:x="103301" fg:w="118"/><text x="68.9991%" y="1023.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="68.8156%" y="997" width="0.0120%" height="15" fill="rgb(207,130,50)" fg:x="103401" fg:w="18"/><text x="69.0656%" y="1007.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="68.8156%" y="981" width="0.0120%" height="15" fill="rgb(228,102,49)" fg:x="103401" fg:w="18"/><text x="69.0656%" y="991.50"></text></g><g><title>[anon] (413 samples, 0.27%)</title><rect x="68.8396%" y="997" width="0.2749%" height="15" fill="rgb(253,55,1)" fg:x="103437" fg:w="413"/><text x="69.0896%" y="1007.50"></text></g><g><title>__GI___close_nocancel (18 samples, 0.01%)</title><rect x="69.2036%" y="981" width="0.0120%" height="15" fill="rgb(238,222,9)" fg:x="103984" fg:w="18"/><text x="69.4536%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="69.2043%" y="965" width="0.0113%" height="15" fill="rgb(246,99,6)" fg:x="103985" fg:w="17"/><text x="69.4543%" y="975.50"></text></g><g><title>__GI___libc_free (22 samples, 0.01%)</title><rect x="69.2156%" y="981" width="0.0146%" height="15" fill="rgb(219,110,26)" fg:x="104002" fg:w="22"/><text x="69.4656%" y="991.50"></text></g><g><title>inode_permission.part.0 (44 samples, 0.03%)</title><rect x="69.2961%" y="837" width="0.0293%" height="15" fill="rgb(239,160,33)" fg:x="104123" fg:w="44"/><text x="69.5461%" y="847.50"></text></g><g><title>lookup_fast (61 samples, 0.04%)</title><rect x="69.3354%" y="821" width="0.0406%" height="15" fill="rgb(220,202,23)" fg:x="104182" fg:w="61"/><text x="69.5854%" y="831.50"></text></g><g><title>__d_lookup_rcu (44 samples, 0.03%)</title><rect x="69.3467%" y="805" width="0.0293%" height="15" fill="rgb(208,80,26)" fg:x="104199" fg:w="44"/><text x="69.5967%" y="815.50"></text></g><g><title>link_path_walk.part.0 (188 samples, 0.13%)</title><rect x="69.2655%" y="853" width="0.1251%" height="15" fill="rgb(243,85,7)" fg:x="104077" fg:w="188"/><text x="69.5155%" y="863.50"></text></g><g><title>walk_component (95 samples, 0.06%)</title><rect x="69.3274%" y="837" width="0.0632%" height="15" fill="rgb(228,77,47)" fg:x="104170" fg:w="95"/><text x="69.5774%" y="847.50"></text></g><g><title>step_into (22 samples, 0.01%)</title><rect x="69.3760%" y="821" width="0.0146%" height="15" fill="rgb(212,226,8)" fg:x="104243" fg:w="22"/><text x="69.6260%" y="831.50"></text></g><g><title>filename_parentat (207 samples, 0.14%)</title><rect x="69.2575%" y="885" width="0.1378%" height="15" fill="rgb(241,120,54)" fg:x="104065" fg:w="207"/><text x="69.5075%" y="895.50"></text></g><g><title>path_parentat (206 samples, 0.14%)</title><rect x="69.2582%" y="869" width="0.1371%" height="15" fill="rgb(226,80,16)" fg:x="104066" fg:w="206"/><text x="69.5082%" y="879.50"></text></g><g><title>filename_create (232 samples, 0.15%)</title><rect x="69.2502%" y="901" width="0.1544%" height="15" fill="rgb(240,76,13)" fg:x="104054" fg:w="232"/><text x="69.5002%" y="911.50"></text></g><g><title>inode_permission.part.0 (44 samples, 0.03%)</title><rect x="69.4459%" y="853" width="0.0293%" height="15" fill="rgb(252,74,8)" fg:x="104348" fg:w="44"/><text x="69.6959%" y="863.50"></text></g><g><title>__d_lookup_rcu (84 samples, 0.06%)</title><rect x="69.5025%" y="821" width="0.0559%" height="15" fill="rgb(244,155,2)" fg:x="104433" fg:w="84"/><text x="69.7525%" y="831.50"></text></g><g><title>lookup_fast (105 samples, 0.07%)</title><rect x="69.4891%" y="837" width="0.0699%" height="15" fill="rgb(215,81,35)" fg:x="104413" fg:w="105"/><text x="69.7391%" y="847.50"></text></g><g><title>link_path_walk.part.0 (250 samples, 0.17%)</title><rect x="69.4173%" y="869" width="0.1664%" height="15" fill="rgb(206,55,2)" fg:x="104305" fg:w="250"/><text x="69.6673%" y="879.50"></text></g><g><title>walk_component (160 samples, 0.11%)</title><rect x="69.4772%" y="853" width="0.1065%" height="15" fill="rgb(231,2,34)" fg:x="104395" fg:w="160"/><text x="69.7272%" y="863.50"></text></g><g><title>step_into (37 samples, 0.02%)</title><rect x="69.5590%" y="837" width="0.0246%" height="15" fill="rgb(242,176,48)" fg:x="104518" fg:w="37"/><text x="69.8090%" y="847.50"></text></g><g><title>filename_lookup (287 samples, 0.19%)</title><rect x="69.4046%" y="901" width="0.1910%" height="15" fill="rgb(249,31,36)" fg:x="104286" fg:w="287"/><text x="69.6546%" y="911.50"></text></g><g><title>path_lookupat (283 samples, 0.19%)</title><rect x="69.4073%" y="885" width="0.1883%" height="15" fill="rgb(205,18,17)" fg:x="104290" fg:w="283"/><text x="69.6573%" y="895.50"></text></g><g><title>memset_erms (23 samples, 0.02%)</title><rect x="69.6016%" y="869" width="0.0153%" height="15" fill="rgb(254,130,5)" fg:x="104582" fg:w="23"/><text x="69.8516%" y="879.50"></text></g><g><title>kmem_cache_alloc (32 samples, 0.02%)</title><rect x="69.5976%" y="885" width="0.0213%" height="15" fill="rgb(229,42,45)" fg:x="104576" fg:w="32"/><text x="69.8476%" y="895.50"></text></g><g><title>getname_flags.part.0 (82 samples, 0.05%)</title><rect x="69.5970%" y="901" width="0.0546%" height="15" fill="rgb(245,95,25)" fg:x="104575" fg:w="82"/><text x="69.8470%" y="911.50"></text></g><g><title>strncpy_from_user (49 samples, 0.03%)</title><rect x="69.6189%" y="885" width="0.0326%" height="15" fill="rgb(249,193,38)" fg:x="104608" fg:w="49"/><text x="69.8689%" y="895.50"></text></g><g><title>__check_object_size (18 samples, 0.01%)</title><rect x="69.6396%" y="869" width="0.0120%" height="15" fill="rgb(241,140,43)" fg:x="104639" fg:w="18"/><text x="69.8896%" y="879.50"></text></g><g><title>btrfs_trans_release_metadata (16 samples, 0.01%)</title><rect x="69.6995%" y="853" width="0.0106%" height="15" fill="rgb(245,78,48)" fg:x="104729" fg:w="16"/><text x="69.9495%" y="863.50"></text></g><g><title>__btrfs_end_transaction (42 samples, 0.03%)</title><rect x="69.6881%" y="869" width="0.0280%" height="15" fill="rgb(214,92,39)" fg:x="104712" fg:w="42"/><text x="69.9381%" y="879.50"></text></g><g><title>__btrfs_add_delayed_item (17 samples, 0.01%)</title><rect x="69.7274%" y="821" width="0.0113%" height="15" fill="rgb(211,189,14)" fg:x="104771" fg:w="17"/><text x="69.9774%" y="831.50"></text></g><g><title>__kmalloc (23 samples, 0.02%)</title><rect x="69.7480%" y="821" width="0.0153%" height="15" fill="rgb(218,7,24)" fg:x="104802" fg:w="23"/><text x="69.9980%" y="831.50"></text></g><g><title>btrfs_insert_delayed_dir_index (92 samples, 0.06%)</title><rect x="69.7261%" y="837" width="0.0612%" height="15" fill="rgb(224,200,49)" fg:x="104769" fg:w="92"/><text x="69.9761%" y="847.50"></text></g><g><title>btrfs_release_path (17 samples, 0.01%)</title><rect x="69.7913%" y="837" width="0.0113%" height="15" fill="rgb(218,210,14)" fg:x="104867" fg:w="17"/><text x="70.0413%" y="847.50"></text></g><g><title>generic_bin_search.constprop.0 (31 samples, 0.02%)</title><rect x="69.8379%" y="789" width="0.0206%" height="15" fill="rgb(234,142,31)" fg:x="104937" fg:w="31"/><text x="70.0879%" y="799.50"></text></g><g><title>__radix_tree_lookup (23 samples, 0.02%)</title><rect x="69.8658%" y="757" width="0.0153%" height="15" fill="rgb(227,165,2)" fg:x="104979" fg:w="23"/><text x="70.1158%" y="767.50"></text></g><g><title>find_extent_buffer (38 samples, 0.03%)</title><rect x="69.8625%" y="773" width="0.0253%" height="15" fill="rgb(232,44,46)" fg:x="104974" fg:w="38"/><text x="70.1125%" y="783.50"></text></g><g><title>read_block_for_search.isra.0 (55 samples, 0.04%)</title><rect x="69.8585%" y="789" width="0.0366%" height="15" fill="rgb(236,149,47)" fg:x="104968" fg:w="55"/><text x="70.1085%" y="799.50"></text></g><g><title>__push_leaf_right (25 samples, 0.02%)</title><rect x="69.9118%" y="757" width="0.0166%" height="15" fill="rgb(227,45,31)" fg:x="105048" fg:w="25"/><text x="70.1618%" y="767.50"></text></g><g><title>split_leaf (51 samples, 0.03%)</title><rect x="69.8951%" y="789" width="0.0339%" height="15" fill="rgb(240,176,51)" fg:x="105023" fg:w="51"/><text x="70.1451%" y="799.50"></text></g><g><title>push_leaf_right (27 samples, 0.02%)</title><rect x="69.9111%" y="773" width="0.0180%" height="15" fill="rgb(249,146,41)" fg:x="105047" fg:w="27"/><text x="70.1611%" y="783.50"></text></g><g><title>btrfs_search_slot (188 samples, 0.13%)</title><rect x="69.8093%" y="805" width="0.1251%" height="15" fill="rgb(213,208,4)" fg:x="104894" fg:w="188"/><text x="70.0593%" y="815.50"></text></g><g><title>btrfs_get_token_32 (122 samples, 0.08%)</title><rect x="69.9610%" y="789" width="0.0812%" height="15" fill="rgb(245,84,36)" fg:x="105122" fg:w="122"/><text x="70.2110%" y="799.50"></text></g><g><title>check_setget_bounds.isra.0 (22 samples, 0.01%)</title><rect x="70.0276%" y="773" width="0.0146%" height="15" fill="rgb(254,84,18)" fg:x="105222" fg:w="22"/><text x="70.2776%" y="783.50"></text></g><g><title>btrfs_set_token_32 (115 samples, 0.08%)</title><rect x="70.0535%" y="789" width="0.0765%" height="15" fill="rgb(225,38,54)" fg:x="105261" fg:w="115"/><text x="70.3035%" y="799.50"></text></g><g><title>check_setget_bounds.isra.0 (22 samples, 0.01%)</title><rect x="70.1154%" y="773" width="0.0146%" height="15" fill="rgb(246,50,30)" fg:x="105354" fg:w="22"/><text x="70.3654%" y="783.50"></text></g><g><title>memcpy_extent_buffer (51 samples, 0.03%)</title><rect x="70.1307%" y="789" width="0.0339%" height="15" fill="rgb(246,148,9)" fg:x="105377" fg:w="51"/><text x="70.3807%" y="799.50"></text></g><g><title>memmove (44 samples, 0.03%)</title><rect x="70.1354%" y="773" width="0.0293%" height="15" fill="rgb(223,75,4)" fg:x="105384" fg:w="44"/><text x="70.3854%" y="783.50"></text></g><g><title>memmove_extent_buffer (45 samples, 0.03%)</title><rect x="70.1647%" y="789" width="0.0299%" height="15" fill="rgb(239,148,41)" fg:x="105428" fg:w="45"/><text x="70.4147%" y="799.50"></text></g><g><title>memmove (35 samples, 0.02%)</title><rect x="70.1713%" y="773" width="0.0233%" height="15" fill="rgb(205,195,3)" fg:x="105438" fg:w="35"/><text x="70.4213%" y="783.50"></text></g><g><title>insert_with_overflow (584 samples, 0.39%)</title><rect x="69.8073%" y="837" width="0.3887%" height="15" fill="rgb(254,161,1)" fg:x="104891" fg:w="584"/><text x="70.0573%" y="847.50"></text></g><g><title>btrfs_insert_empty_items (581 samples, 0.39%)</title><rect x="69.8093%" y="821" width="0.3867%" height="15" fill="rgb(211,229,8)" fg:x="104894" fg:w="581"/><text x="70.0593%" y="831.50"></text></g><g><title>setup_items_for_insert (393 samples, 0.26%)</title><rect x="69.9344%" y="805" width="0.2616%" height="15" fill="rgb(220,97,9)" fg:x="105082" fg:w="393"/><text x="70.1844%" y="815.50"></text></g><g><title>btrfs_insert_dir_item (738 samples, 0.49%)</title><rect x="69.7214%" y="853" width="0.4912%" height="15" fill="rgb(240,218,8)" fg:x="104762" fg:w="738"/><text x="69.9714%" y="863.50"></text></g><g><title>btrfs_free_path (22 samples, 0.01%)</title><rect x="70.2146%" y="837" width="0.0146%" height="15" fill="rgb(250,44,0)" fg:x="105503" fg:w="22"/><text x="70.4646%" y="847.50"></text></g><g><title>btrfs_release_path (22 samples, 0.01%)</title><rect x="70.2146%" y="821" width="0.0146%" height="15" fill="rgb(236,41,53)" fg:x="105503" fg:w="22"/><text x="70.4646%" y="831.50"></text></g><g><title>generic_bin_search.constprop.0 (39 samples, 0.03%)</title><rect x="70.2458%" y="805" width="0.0260%" height="15" fill="rgb(218,227,13)" fg:x="105550" fg:w="39"/><text x="70.4958%" y="815.50"></text></g><g><title>__radix_tree_lookup (27 samples, 0.02%)</title><rect x="70.2971%" y="773" width="0.0180%" height="15" fill="rgb(217,94,32)" fg:x="105627" fg:w="27"/><text x="70.5471%" y="783.50"></text></g><g><title>find_extent_buffer (58 samples, 0.04%)</title><rect x="70.2884%" y="789" width="0.0386%" height="15" fill="rgb(213,217,12)" fg:x="105614" fg:w="58"/><text x="70.5384%" y="799.50"></text></g><g><title>mark_extent_buffer_accessed (18 samples, 0.01%)</title><rect x="70.3151%" y="773" width="0.0120%" height="15" fill="rgb(229,13,46)" fg:x="105654" fg:w="18"/><text x="70.5651%" y="783.50"></text></g><g><title>read_block_for_search.isra.0 (92 samples, 0.06%)</title><rect x="70.2718%" y="805" width="0.0612%" height="15" fill="rgb(243,139,5)" fg:x="105589" fg:w="92"/><text x="70.5218%" y="815.50"></text></g><g><title>btrfs_search_slot (169 samples, 0.11%)</title><rect x="70.2325%" y="821" width="0.1125%" height="15" fill="rgb(249,38,45)" fg:x="105530" fg:w="169"/><text x="70.4825%" y="831.50"></text></g><g><title>unlock_up (18 samples, 0.01%)</title><rect x="70.3330%" y="805" width="0.0120%" height="15" fill="rgb(216,70,11)" fg:x="105681" fg:w="18"/><text x="70.5830%" y="815.50"></text></g><g><title>btrfs_get_token_32 (42 samples, 0.03%)</title><rect x="70.3623%" y="805" width="0.0280%" height="15" fill="rgb(253,101,25)" fg:x="105725" fg:w="42"/><text x="70.6123%" y="815.50"></text></g><g><title>btrfs_set_token_32 (59 samples, 0.04%)</title><rect x="70.4016%" y="805" width="0.0393%" height="15" fill="rgb(207,197,30)" fg:x="105784" fg:w="59"/><text x="70.6516%" y="815.50"></text></g><g><title>memcpy_extent_buffer (48 samples, 0.03%)</title><rect x="70.4435%" y="805" width="0.0319%" height="15" fill="rgb(238,87,13)" fg:x="105847" fg:w="48"/><text x="70.6935%" y="815.50"></text></g><g><title>memmove (38 samples, 0.03%)</title><rect x="70.4502%" y="789" width="0.0253%" height="15" fill="rgb(215,155,8)" fg:x="105857" fg:w="38"/><text x="70.7002%" y="799.50"></text></g><g><title>memmove_extent_buffer (24 samples, 0.02%)</title><rect x="70.4754%" y="805" width="0.0160%" height="15" fill="rgb(239,166,38)" fg:x="105895" fg:w="24"/><text x="70.7254%" y="815.50"></text></g><g><title>btrfs_insert_empty_items (395 samples, 0.26%)</title><rect x="70.2312%" y="837" width="0.2629%" height="15" fill="rgb(240,194,35)" fg:x="105528" fg:w="395"/><text x="70.4812%" y="847.50"></text></g><g><title>setup_items_for_insert (224 samples, 0.15%)</title><rect x="70.3450%" y="821" width="0.1491%" height="15" fill="rgb(219,10,44)" fg:x="105699" fg:w="224"/><text x="70.5950%" y="831.50"></text></g><g><title>btrfs_insert_inode_ref (441 samples, 0.29%)</title><rect x="70.2126%" y="853" width="0.2935%" height="15" fill="rgb(251,220,35)" fg:x="105500" fg:w="441"/><text x="70.4626%" y="863.50"></text></g><g><title>btrfs_delayed_update_inode (27 samples, 0.02%)</title><rect x="70.5087%" y="837" width="0.0180%" height="15" fill="rgb(218,117,13)" fg:x="105945" fg:w="27"/><text x="70.7587%" y="847.50"></text></g><g><title>btrfs_update_inode (40 samples, 0.03%)</title><rect x="70.5061%" y="853" width="0.0266%" height="15" fill="rgb(221,213,40)" fg:x="105941" fg:w="40"/><text x="70.7561%" y="863.50"></text></g><g><title>btrfs_add_link (1,231 samples, 0.82%)</title><rect x="69.7161%" y="869" width="0.8193%" height="15" fill="rgb(251,224,35)" fg:x="104754" fg:w="1231"/><text x="69.9661%" y="879.50"></text></g><g><title>btrfs_btree_balance_dirty (21 samples, 0.01%)</title><rect x="70.5353%" y="869" width="0.0140%" height="15" fill="rgb(241,33,39)" fg:x="105985" fg:w="21"/><text x="70.7853%" y="879.50"></text></g><g><title>btrfs_get_or_create_delayed_node (16 samples, 0.01%)</title><rect x="70.5733%" y="837" width="0.0106%" height="15" fill="rgb(222,74,17)" fg:x="106042" fg:w="16"/><text x="70.8233%" y="847.50"></text></g><g><title>btrfs_delayed_update_inode (58 samples, 0.04%)</title><rect x="70.5540%" y="853" width="0.0386%" height="15" fill="rgb(225,103,0)" fg:x="106013" fg:w="58"/><text x="70.8040%" y="863.50"></text></g><g><title>btrfs_update_inode (64 samples, 0.04%)</title><rect x="70.5513%" y="869" width="0.0426%" height="15" fill="rgb(240,0,12)" fg:x="106009" fg:w="64"/><text x="70.8013%" y="879.50"></text></g><g><title>btrfs_block_rsv_add (38 samples, 0.03%)</title><rect x="70.6092%" y="853" width="0.0253%" height="15" fill="rgb(233,213,37)" fg:x="106096" fg:w="38"/><text x="70.8592%" y="863.50"></text></g><g><title>btrfs_reserve_metadata_bytes (33 samples, 0.02%)</title><rect x="70.6125%" y="837" width="0.0220%" height="15" fill="rgb(225,84,52)" fg:x="106101" fg:w="33"/><text x="70.8625%" y="847.50"></text></g><g><title>__reserve_bytes (31 samples, 0.02%)</title><rect x="70.6139%" y="821" width="0.0206%" height="15" fill="rgb(247,160,51)" fg:x="106103" fg:w="31"/><text x="70.8639%" y="831.50"></text></g><g><title>btrfs_link (1,452 samples, 0.97%)</title><rect x="69.6815%" y="885" width="0.9663%" height="15" fill="rgb(244,60,51)" fg:x="104702" fg:w="1452"/><text x="69.9315%" y="895.50"></text></g><g><title>start_transaction (75 samples, 0.05%)</title><rect x="70.5979%" y="869" width="0.0499%" height="15" fill="rgb(233,114,7)" fg:x="106079" fg:w="75"/><text x="70.8479%" y="879.50"></text></g><g><title>__x64_sys_link (2,135 samples, 1.42%)</title><rect x="69.2389%" y="933" width="1.4209%" height="15" fill="rgb(246,136,16)" fg:x="104037" fg:w="2135"/><text x="69.4889%" y="943.50"></text></g><g><title>do_linkat (2,134 samples, 1.42%)</title><rect x="69.2396%" y="917" width="1.4202%" height="15" fill="rgb(243,114,45)" fg:x="104038" fg:w="2134"/><text x="69.4896%" y="927.50"></text></g><g><title>vfs_link (1,479 samples, 0.98%)</title><rect x="69.6755%" y="901" width="0.9843%" height="15" fill="rgb(247,183,43)" fg:x="104693" fg:w="1479"/><text x="69.9255%" y="911.50"></text></g><g><title>do_syscall_64 (2,139 samples, 1.42%)</title><rect x="69.2382%" y="949" width="1.4236%" height="15" fill="rgb(251,210,42)" fg:x="104036" fg:w="2139"/><text x="69.4882%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,143 samples, 1.43%)</title><rect x="69.2369%" y="965" width="1.4262%" height="15" fill="rgb(221,88,35)" fg:x="104034" fg:w="2143"/><text x="69.4869%" y="975.50"></text></g><g><title>__GI___link (2,154 samples, 1.43%)</title><rect x="69.2303%" y="981" width="1.4335%" height="15" fill="rgb(242,21,20)" fg:x="104024" fg:w="2154"/><text x="69.4803%" y="991.50"></text></g><g><title>entry_SYSCALL_64 (23 samples, 0.02%)</title><rect x="70.6698%" y="965" width="0.0153%" height="15" fill="rgb(233,226,36)" fg:x="106187" fg:w="23"/><text x="70.9198%" y="975.50"></text></g><g><title>_copy_to_user (23 samples, 0.02%)</title><rect x="70.6937%" y="901" width="0.0153%" height="15" fill="rgb(243,189,34)" fg:x="106223" fg:w="23"/><text x="70.9437%" y="911.50"></text></g><g><title>copy_user_enhanced_fast_string (22 samples, 0.01%)</title><rect x="70.6944%" y="885" width="0.0146%" height="15" fill="rgb(207,145,50)" fg:x="106224" fg:w="22"/><text x="70.9444%" y="895.50"></text></g><g><title>cp_new_stat (39 samples, 0.03%)</title><rect x="70.6891%" y="917" width="0.0260%" height="15" fill="rgb(242,1,50)" fg:x="106216" fg:w="39"/><text x="70.9391%" y="927.50"></text></g><g><title>btrfs_getattr (45 samples, 0.03%)</title><rect x="70.7177%" y="901" width="0.0299%" height="15" fill="rgb(231,65,32)" fg:x="106259" fg:w="45"/><text x="70.9677%" y="911.50"></text></g><g><title>kmem_cache_free (19 samples, 0.01%)</title><rect x="70.7536%" y="885" width="0.0126%" height="15" fill="rgb(208,68,49)" fg:x="106313" fg:w="19"/><text x="71.0036%" y="895.50"></text></g><g><title>complete_walk (24 samples, 0.02%)</title><rect x="70.7683%" y="869" width="0.0160%" height="15" fill="rgb(253,54,49)" fg:x="106335" fg:w="24"/><text x="71.0183%" y="879.50"></text></g><g><title>try_to_unlazy (23 samples, 0.02%)</title><rect x="70.7689%" y="853" width="0.0153%" height="15" fill="rgb(245,186,24)" fg:x="106336" fg:w="23"/><text x="71.0189%" y="863.50"></text></g><g><title>__legitimize_path (23 samples, 0.02%)</title><rect x="70.7689%" y="837" width="0.0153%" height="15" fill="rgb(209,2,41)" fg:x="106336" fg:w="23"/><text x="71.0189%" y="847.50"></text></g><g><title>inode_permission.part.0 (119 samples, 0.08%)</title><rect x="70.8688%" y="853" width="0.0792%" height="15" fill="rgb(242,208,54)" fg:x="106486" fg:w="119"/><text x="71.1188%" y="863.50"></text></g><g><title>generic_permission (36 samples, 0.02%)</title><rect x="70.9240%" y="837" width="0.0240%" height="15" fill="rgb(225,9,51)" fg:x="106569" fg:w="36"/><text x="71.1740%" y="847.50"></text></g><g><title>security_inode_permission (20 samples, 0.01%)</title><rect x="70.9480%" y="853" width="0.0133%" height="15" fill="rgb(207,207,25)" fg:x="106605" fg:w="20"/><text x="71.1980%" y="863.50"></text></g><g><title>lookup_fast (249 samples, 0.17%)</title><rect x="70.9899%" y="837" width="0.1657%" height="15" fill="rgb(253,96,18)" fg:x="106668" fg:w="249"/><text x="71.2399%" y="847.50"></text></g><g><title>__d_lookup_rcu (200 samples, 0.13%)</title><rect x="71.0225%" y="821" width="0.1331%" height="15" fill="rgb(252,215,20)" fg:x="106717" fg:w="200"/><text x="71.2725%" y="831.50"></text></g><g><title>link_path_walk.part.0 (645 samples, 0.43%)</title><rect x="70.7843%" y="869" width="0.4293%" height="15" fill="rgb(245,227,26)" fg:x="106359" fg:w="645"/><text x="71.0343%" y="879.50"></text></g><g><title>walk_component (379 samples, 0.25%)</title><rect x="70.9613%" y="853" width="0.2522%" height="15" fill="rgb(241,208,0)" fg:x="106625" fg:w="379"/><text x="71.2113%" y="863.50"></text></g><g><title>step_into (82 samples, 0.05%)</title><rect x="71.1589%" y="837" width="0.0546%" height="15" fill="rgb(224,130,10)" fg:x="106922" fg:w="82"/><text x="71.4089%" y="847.50"></text></g><g><title>path_init (26 samples, 0.02%)</title><rect x="71.2135%" y="869" width="0.0173%" height="15" fill="rgb(237,29,0)" fg:x="107004" fg:w="26"/><text x="71.4635%" y="879.50"></text></g><g><title>nd_jump_root (20 samples, 0.01%)</title><rect x="71.2175%" y="853" width="0.0133%" height="15" fill="rgb(219,27,41)" fg:x="107010" fg:w="20"/><text x="71.4675%" y="863.50"></text></g><g><title>set_root (18 samples, 0.01%)</title><rect x="71.2188%" y="837" width="0.0120%" height="15" fill="rgb(245,101,19)" fg:x="107012" fg:w="18"/><text x="71.4688%" y="847.50"></text></g><g><title>lookup_fast (53 samples, 0.04%)</title><rect x="71.2355%" y="853" width="0.0353%" height="15" fill="rgb(243,44,37)" fg:x="107037" fg:w="53"/><text x="71.4855%" y="863.50"></text></g><g><title>__d_lookup_rcu (51 samples, 0.03%)</title><rect x="71.2368%" y="837" width="0.0339%" height="15" fill="rgb(228,213,43)" fg:x="107039" fg:w="51"/><text x="71.4868%" y="847.50"></text></g><g><title>path_lookupat (762 samples, 0.51%)</title><rect x="70.7663%" y="885" width="0.5071%" height="15" fill="rgb(219,163,21)" fg:x="106332" fg:w="762"/><text x="71.0163%" y="895.50"></text></g><g><title>walk_component (60 samples, 0.04%)</title><rect x="71.2335%" y="869" width="0.0399%" height="15" fill="rgb(234,86,24)" fg:x="107034" fg:w="60"/><text x="71.4835%" y="879.50"></text></g><g><title>filename_lookup (791 samples, 0.53%)</title><rect x="70.7476%" y="901" width="0.5264%" height="15" fill="rgb(225,10,24)" fg:x="106304" fg:w="791"/><text x="70.9976%" y="911.50"></text></g><g><title>path_put (18 samples, 0.01%)</title><rect x="71.2747%" y="901" width="0.0120%" height="15" fill="rgb(218,109,7)" fg:x="107096" fg:w="18"/><text x="71.5247%" y="911.50"></text></g><g><title>dput (18 samples, 0.01%)</title><rect x="71.2747%" y="885" width="0.0120%" height="15" fill="rgb(210,20,26)" fg:x="107096" fg:w="18"/><text x="71.5247%" y="895.50"></text></g><g><title>security_inode_getattr (59 samples, 0.04%)</title><rect x="71.2867%" y="901" width="0.0393%" height="15" fill="rgb(216,18,1)" fg:x="107114" fg:w="59"/><text x="71.5367%" y="911.50"></text></g><g><title>tomoyo_path_perm (23 samples, 0.02%)</title><rect x="71.3107%" y="885" width="0.0153%" height="15" fill="rgb(206,163,23)" fg:x="107150" fg:w="23"/><text x="71.5607%" y="895.50"></text></g><g><title>memset_erms (44 samples, 0.03%)</title><rect x="71.3466%" y="853" width="0.0293%" height="15" fill="rgb(229,150,31)" fg:x="107204" fg:w="44"/><text x="71.5966%" y="863.50"></text></g><g><title>kmem_cache_alloc (74 samples, 0.05%)</title><rect x="71.3320%" y="869" width="0.0492%" height="15" fill="rgb(231,10,5)" fg:x="107182" fg:w="74"/><text x="71.5820%" y="879.50"></text></g><g><title>user_path_at_empty (152 samples, 0.10%)</title><rect x="71.3260%" y="901" width="0.1012%" height="15" fill="rgb(250,40,50)" fg:x="107173" fg:w="152"/><text x="71.5760%" y="911.50"></text></g><g><title>getname_flags.part.0 (148 samples, 0.10%)</title><rect x="71.3286%" y="885" width="0.0985%" height="15" fill="rgb(217,119,7)" fg:x="107177" fg:w="148"/><text x="71.5786%" y="895.50"></text></g><g><title>strncpy_from_user (69 samples, 0.05%)</title><rect x="71.3812%" y="869" width="0.0459%" height="15" fill="rgb(245,214,40)" fg:x="107256" fg:w="69"/><text x="71.6312%" y="879.50"></text></g><g><title>__check_object_size (32 samples, 0.02%)</title><rect x="71.4058%" y="853" width="0.0213%" height="15" fill="rgb(216,187,1)" fg:x="107293" fg:w="32"/><text x="71.6558%" y="863.50"></text></g><g><title>__virt_addr_valid (16 samples, 0.01%)</title><rect x="71.4165%" y="837" width="0.0106%" height="15" fill="rgb(237,146,21)" fg:x="107309" fg:w="16"/><text x="71.6665%" y="847.50"></text></g><g><title>__do_sys_newlstat (1,122 samples, 0.75%)</title><rect x="70.6878%" y="933" width="0.7467%" height="15" fill="rgb(210,174,47)" fg:x="106214" fg:w="1122"/><text x="70.9378%" y="943.50"></text></g><g><title>vfs_statx (1,081 samples, 0.72%)</title><rect x="70.7150%" y="917" width="0.7194%" height="15" fill="rgb(218,111,39)" fg:x="106255" fg:w="1081"/><text x="70.9650%" y="927.50"></text></g><g><title>do_syscall_64 (1,129 samples, 0.75%)</title><rect x="70.6864%" y="949" width="0.7514%" height="15" fill="rgb(224,95,19)" fg:x="106212" fg:w="1129"/><text x="70.9364%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,139 samples, 0.76%)</title><rect x="70.6851%" y="965" width="0.7580%" height="15" fill="rgb(234,15,38)" fg:x="106210" fg:w="1139"/><text x="70.9351%" y="975.50"></text></g><g><title>__GI___lxstat (1,181 samples, 0.79%)</title><rect x="70.6638%" y="981" width="0.7860%" height="15" fill="rgb(246,56,12)" fg:x="106178" fg:w="1181"/><text x="70.9138%" y="991.50"></text></g><g><title>__lookup_hash (27 samples, 0.02%)</title><rect x="71.4524%" y="901" width="0.0180%" height="15" fill="rgb(247,16,17)" fg:x="107363" fg:w="27"/><text x="71.7024%" y="911.50"></text></g><g><title>filename_parentat (16 samples, 0.01%)</title><rect x="71.4711%" y="901" width="0.0106%" height="15" fill="rgb(215,151,11)" fg:x="107391" fg:w="16"/><text x="71.7211%" y="911.50"></text></g><g><title>path_parentat (16 samples, 0.01%)</title><rect x="71.4711%" y="885" width="0.0106%" height="15" fill="rgb(225,16,24)" fg:x="107391" fg:w="16"/><text x="71.7211%" y="895.50"></text></g><g><title>link_path_walk.part.0 (16 samples, 0.01%)</title><rect x="71.4711%" y="869" width="0.0106%" height="15" fill="rgb(217,117,5)" fg:x="107391" fg:w="16"/><text x="71.7211%" y="879.50"></text></g><g><title>filename_create (47 samples, 0.03%)</title><rect x="71.4524%" y="917" width="0.0313%" height="15" fill="rgb(246,187,53)" fg:x="107363" fg:w="47"/><text x="71.7024%" y="927.50"></text></g><g><title>btrfs_insert_dir_item (40 samples, 0.03%)</title><rect x="71.4917%" y="869" width="0.0266%" height="15" fill="rgb(241,71,40)" fg:x="107422" fg:w="40"/><text x="71.7417%" y="879.50"></text></g><g><title>insert_with_overflow (31 samples, 0.02%)</title><rect x="71.4977%" y="853" width="0.0206%" height="15" fill="rgb(231,67,39)" fg:x="107431" fg:w="31"/><text x="71.7477%" y="863.50"></text></g><g><title>btrfs_insert_empty_items (31 samples, 0.02%)</title><rect x="71.4977%" y="837" width="0.0206%" height="15" fill="rgb(222,120,24)" fg:x="107431" fg:w="31"/><text x="71.7477%" y="847.50"></text></g><g><title>setup_items_for_insert (16 samples, 0.01%)</title><rect x="71.5077%" y="821" width="0.0106%" height="15" fill="rgb(248,3,3)" fg:x="107446" fg:w="16"/><text x="71.7577%" y="831.50"></text></g><g><title>btrfs_add_link (43 samples, 0.03%)</title><rect x="71.4917%" y="885" width="0.0286%" height="15" fill="rgb(228,218,5)" fg:x="107422" fg:w="43"/><text x="71.7417%" y="895.50"></text></g><g><title>btrfs_search_slot (20 samples, 0.01%)</title><rect x="71.5243%" y="853" width="0.0133%" height="15" fill="rgb(212,202,43)" fg:x="107471" fg:w="20"/><text x="71.7743%" y="863.50"></text></g><g><title>btrfs_insert_empty_items (32 samples, 0.02%)</title><rect x="71.5236%" y="869" width="0.0213%" height="15" fill="rgb(235,183,2)" fg:x="107470" fg:w="32"/><text x="71.7736%" y="879.50"></text></g><g><title>btrfs_new_inode (65 samples, 0.04%)</title><rect x="71.5203%" y="885" width="0.0433%" height="15" fill="rgb(230,165,10)" fg:x="107465" fg:w="65"/><text x="71.7703%" y="895.50"></text></g><g><title>__GI___mkdir (190 samples, 0.13%)</title><rect x="71.4498%" y="981" width="0.1264%" height="15" fill="rgb(219,54,40)" fg:x="107359" fg:w="190"/><text x="71.6998%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (188 samples, 0.13%)</title><rect x="71.4511%" y="965" width="0.1251%" height="15" fill="rgb(244,73,9)" fg:x="107361" fg:w="188"/><text x="71.7011%" y="975.50"></text></g><g><title>do_syscall_64 (187 samples, 0.12%)</title><rect x="71.4518%" y="949" width="0.1245%" height="15" fill="rgb(212,32,45)" fg:x="107362" fg:w="187"/><text x="71.7018%" y="959.50"></text></g><g><title>do_mkdirat (187 samples, 0.12%)</title><rect x="71.4518%" y="933" width="0.1245%" height="15" fill="rgb(205,58,31)" fg:x="107362" fg:w="187"/><text x="71.7018%" y="943.50"></text></g><g><title>vfs_mkdir (129 samples, 0.09%)</title><rect x="71.4904%" y="917" width="0.0859%" height="15" fill="rgb(250,120,43)" fg:x="107420" fg:w="129"/><text x="71.7404%" y="927.50"></text></g><g><title>btrfs_mkdir (128 samples, 0.09%)</title><rect x="71.4910%" y="901" width="0.0852%" height="15" fill="rgb(235,13,10)" fg:x="107421" fg:w="128"/><text x="71.7410%" y="911.50"></text></g><g><title>btrfs_filldir (17 samples, 0.01%)</title><rect x="71.5915%" y="869" width="0.0113%" height="15" fill="rgb(232,219,31)" fg:x="107572" fg:w="17"/><text x="71.8415%" y="879.50"></text></g><g><title>btrfs_search_slot (35 samples, 0.02%)</title><rect x="71.6228%" y="869" width="0.0233%" height="15" fill="rgb(218,157,51)" fg:x="107619" fg:w="35"/><text x="71.8728%" y="879.50"></text></g><g><title>btrfs_real_readdir (109 samples, 0.07%)</title><rect x="71.5862%" y="885" width="0.0725%" height="15" fill="rgb(211,91,52)" fg:x="107564" fg:w="109"/><text x="71.8362%" y="895.50"></text></g><g><title>do_syscall_64 (125 samples, 0.08%)</title><rect x="71.5849%" y="933" width="0.0832%" height="15" fill="rgb(240,173,1)" fg:x="107562" fg:w="125"/><text x="71.8349%" y="943.50"></text></g><g><title>__x64_sys_getdents64 (125 samples, 0.08%)</title><rect x="71.5849%" y="917" width="0.0832%" height="15" fill="rgb(248,20,47)" fg:x="107562" fg:w="125"/><text x="71.8349%" y="927.50"></text></g><g><title>iterate_dir (123 samples, 0.08%)</title><rect x="71.5862%" y="901" width="0.0819%" height="15" fill="rgb(217,221,40)" fg:x="107564" fg:w="123"/><text x="71.8362%" y="911.50"></text></g><g><title>__GI___readdir64 (140 samples, 0.09%)</title><rect x="71.5762%" y="981" width="0.0932%" height="15" fill="rgb(226,149,51)" fg:x="107549" fg:w="140"/><text x="71.8262%" y="991.50"></text></g><g><title>__GI___getdents64 (131 samples, 0.09%)</title><rect x="71.5822%" y="965" width="0.0872%" height="15" fill="rgb(252,193,7)" fg:x="107558" fg:w="131"/><text x="71.8322%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (127 samples, 0.08%)</title><rect x="71.5849%" y="949" width="0.0845%" height="15" fill="rgb(205,123,0)" fg:x="107562" fg:w="127"/><text x="71.8349%" y="959.50"></text></g><g><title>cp_new_stat (23 samples, 0.02%)</title><rect x="71.7067%" y="917" width="0.0153%" height="15" fill="rgb(233,173,25)" fg:x="107745" fg:w="23"/><text x="71.9567%" y="927.50"></text></g><g><title>btrfs_getattr (40 samples, 0.03%)</title><rect x="71.7233%" y="901" width="0.0266%" height="15" fill="rgb(216,63,32)" fg:x="107770" fg:w="40"/><text x="71.9733%" y="911.50"></text></g><g><title>kmem_cache_free (28 samples, 0.02%)</title><rect x="71.7533%" y="885" width="0.0186%" height="15" fill="rgb(209,56,45)" fg:x="107815" fg:w="28"/><text x="72.0033%" y="895.50"></text></g><g><title>inode_permission.part.0 (134 samples, 0.09%)</title><rect x="71.8930%" y="853" width="0.0892%" height="15" fill="rgb(226,111,49)" fg:x="108025" fg:w="134"/><text x="72.1430%" y="863.50"></text></g><g><title>generic_permission (47 samples, 0.03%)</title><rect x="71.9509%" y="837" width="0.0313%" height="15" fill="rgb(244,181,21)" fg:x="108112" fg:w="47"/><text x="72.2009%" y="847.50"></text></g><g><title>security_inode_permission (16 samples, 0.01%)</title><rect x="71.9822%" y="853" width="0.0106%" height="15" fill="rgb(222,126,15)" fg:x="108159" fg:w="16"/><text x="72.2322%" y="863.50"></text></g><g><title>lookup_fast (252 samples, 0.17%)</title><rect x="72.0314%" y="837" width="0.1677%" height="15" fill="rgb(222,95,17)" fg:x="108233" fg:w="252"/><text x="72.2814%" y="847.50"></text></g><g><title>__d_lookup_rcu (189 samples, 0.13%)</title><rect x="72.0734%" y="821" width="0.1258%" height="15" fill="rgb(254,46,5)" fg:x="108296" fg:w="189"/><text x="72.3234%" y="831.50"></text></g><g><title>link_path_walk.part.0 (721 samples, 0.48%)</title><rect x="71.7859%" y="869" width="0.4798%" height="15" fill="rgb(236,216,35)" fg:x="107864" fg:w="721"/><text x="72.0359%" y="879.50"></text></g><g><title>walk_component (410 samples, 0.27%)</title><rect x="71.9928%" y="853" width="0.2729%" height="15" fill="rgb(217,187,26)" fg:x="108175" fg:w="410"/><text x="72.2428%" y="863.50"></text></g><g><title>step_into (96 samples, 0.06%)</title><rect x="72.2018%" y="837" width="0.0639%" height="15" fill="rgb(207,192,25)" fg:x="108489" fg:w="96"/><text x="72.4518%" y="847.50"></text></g><g><title>path_init (21 samples, 0.01%)</title><rect x="72.2657%" y="869" width="0.0140%" height="15" fill="rgb(253,135,27)" fg:x="108585" fg:w="21"/><text x="72.5157%" y="879.50"></text></g><g><title>nd_jump_root (20 samples, 0.01%)</title><rect x="72.2664%" y="853" width="0.0133%" height="15" fill="rgb(211,122,29)" fg:x="108586" fg:w="20"/><text x="72.5164%" y="863.50"></text></g><g><title>set_root (16 samples, 0.01%)</title><rect x="72.2690%" y="837" width="0.0106%" height="15" fill="rgb(233,162,40)" fg:x="108590" fg:w="16"/><text x="72.5190%" y="847.50"></text></g><g><title>btrfs_free_path (18 samples, 0.01%)</title><rect x="72.2903%" y="805" width="0.0120%" height="15" fill="rgb(222,184,47)" fg:x="108622" fg:w="18"/><text x="72.5403%" y="815.50"></text></g><g><title>btrfs_release_path (18 samples, 0.01%)</title><rect x="72.2903%" y="789" width="0.0120%" height="15" fill="rgb(249,99,23)" fg:x="108622" fg:w="18"/><text x="72.5403%" y="799.50"></text></g><g><title>generic_bin_search.constprop.0 (43 samples, 0.03%)</title><rect x="72.3376%" y="773" width="0.0286%" height="15" fill="rgb(214,60,12)" fg:x="108693" fg:w="43"/><text x="72.5876%" y="783.50"></text></g><g><title>__radix_tree_lookup (23 samples, 0.02%)</title><rect x="72.3888%" y="741" width="0.0153%" height="15" fill="rgb(250,229,36)" fg:x="108770" fg:w="23"/><text x="72.6388%" y="751.50"></text></g><g><title>find_extent_buffer (41 samples, 0.03%)</title><rect x="72.3828%" y="757" width="0.0273%" height="15" fill="rgb(232,195,10)" fg:x="108761" fg:w="41"/><text x="72.6328%" y="767.50"></text></g><g><title>read_block_for_search.isra.0 (80 samples, 0.05%)</title><rect x="72.3662%" y="773" width="0.0532%" height="15" fill="rgb(205,213,31)" fg:x="108736" fg:w="80"/><text x="72.6162%" y="783.50"></text></g><g><title>btrfs_search_slot (177 samples, 0.12%)</title><rect x="72.3030%" y="789" width="0.1178%" height="15" fill="rgb(237,43,8)" fg:x="108641" fg:w="177"/><text x="72.5530%" y="799.50"></text></g><g><title>btrfs_lookup_dir_item (183 samples, 0.12%)</title><rect x="72.3023%" y="805" width="0.1218%" height="15" fill="rgb(216,208,3)" fg:x="108640" fg:w="183"/><text x="72.5523%" y="815.50"></text></g><g><title>kmem_cache_alloc (17 samples, 0.01%)</title><rect x="72.4241%" y="805" width="0.0113%" height="15" fill="rgb(228,179,44)" fg:x="108823" fg:w="17"/><text x="72.6741%" y="815.50"></text></g><g><title>btrfs_lookup (224 samples, 0.15%)</title><rect x="72.2890%" y="837" width="0.1491%" height="15" fill="rgb(230,192,27)" fg:x="108620" fg:w="224"/><text x="72.5390%" y="847.50"></text></g><g><title>btrfs_lookup_dentry (224 samples, 0.15%)</title><rect x="72.2890%" y="821" width="0.1491%" height="15" fill="rgb(251,30,38)" fg:x="108620" fg:w="224"/><text x="72.5390%" y="831.50"></text></g><g><title>memcg_slab_post_alloc_hook (16 samples, 0.01%)</title><rect x="72.4534%" y="773" width="0.0106%" height="15" fill="rgb(246,55,52)" fg:x="108867" fg:w="16"/><text x="72.7034%" y="783.50"></text></g><g><title>kmem_cache_alloc (46 samples, 0.03%)</title><rect x="72.4494%" y="789" width="0.0306%" height="15" fill="rgb(249,79,26)" fg:x="108861" fg:w="46"/><text x="72.6994%" y="799.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (21 samples, 0.01%)</title><rect x="72.4660%" y="773" width="0.0140%" height="15" fill="rgb(220,202,16)" fg:x="108886" fg:w="21"/><text x="72.7160%" y="783.50"></text></g><g><title>__d_alloc (58 samples, 0.04%)</title><rect x="72.4427%" y="805" width="0.0386%" height="15" fill="rgb(250,170,23)" fg:x="108851" fg:w="58"/><text x="72.6927%" y="815.50"></text></g><g><title>d_alloc_parallel (70 samples, 0.05%)</title><rect x="72.4381%" y="837" width="0.0466%" height="15" fill="rgb(230,7,37)" fg:x="108844" fg:w="70"/><text x="72.6881%" y="847.50"></text></g><g><title>d_alloc (64 samples, 0.04%)</title><rect x="72.4421%" y="821" width="0.0426%" height="15" fill="rgb(213,71,1)" fg:x="108850" fg:w="64"/><text x="72.6921%" y="831.50"></text></g><g><title>__lookup_slow (319 samples, 0.21%)</title><rect x="72.2877%" y="853" width="0.2123%" height="15" fill="rgb(227,87,39)" fg:x="108618" fg:w="319"/><text x="72.5377%" y="863.50"></text></g><g><title>d_splice_alias (23 samples, 0.02%)</title><rect x="72.4847%" y="837" width="0.0153%" height="15" fill="rgb(210,41,29)" fg:x="108914" fg:w="23"/><text x="72.7347%" y="847.50"></text></g><g><title>__d_add (23 samples, 0.02%)</title><rect x="72.4847%" y="821" width="0.0153%" height="15" fill="rgb(206,191,31)" fg:x="108914" fg:w="23"/><text x="72.7347%" y="831.50"></text></g><g><title>__d_lookup_rcu (102 samples, 0.07%)</title><rect x="72.5060%" y="837" width="0.0679%" height="15" fill="rgb(247,75,54)" fg:x="108946" fg:w="102"/><text x="72.7560%" y="847.50"></text></g><g><title>lookup_fast (120 samples, 0.08%)</title><rect x="72.5033%" y="853" width="0.0799%" height="15" fill="rgb(208,54,50)" fg:x="108942" fg:w="120"/><text x="72.7533%" y="863.50"></text></g><g><title>dput (16 samples, 0.01%)</title><rect x="72.5898%" y="837" width="0.0106%" height="15" fill="rgb(214,90,37)" fg:x="109072" fg:w="16"/><text x="72.8398%" y="847.50"></text></g><g><title>d_lru_add (16 samples, 0.01%)</title><rect x="72.5898%" y="821" width="0.0106%" height="15" fill="rgb(220,132,6)" fg:x="109072" fg:w="16"/><text x="72.8398%" y="831.50"></text></g><g><title>step_into (28 samples, 0.02%)</title><rect x="72.5832%" y="853" width="0.0186%" height="15" fill="rgb(213,167,7)" fg:x="109062" fg:w="28"/><text x="72.8332%" y="863.50"></text></g><g><title>path_lookupat (1,250 samples, 0.83%)</title><rect x="71.7719%" y="885" width="0.8319%" height="15" fill="rgb(243,36,27)" fg:x="107843" fg:w="1250"/><text x="72.0219%" y="895.50"></text></g><g><title>walk_component (478 samples, 0.32%)</title><rect x="72.2857%" y="869" width="0.3181%" height="15" fill="rgb(235,147,12)" fg:x="108615" fg:w="478"/><text x="72.5357%" y="879.50"></text></g><g><title>filename_lookup (1,285 samples, 0.86%)</title><rect x="71.7499%" y="901" width="0.8552%" height="15" fill="rgb(212,198,44)" fg:x="107810" fg:w="1285"/><text x="71.9999%" y="911.50"></text></g><g><title>security_inode_getattr (39 samples, 0.03%)</title><rect x="72.6124%" y="901" width="0.0260%" height="15" fill="rgb(218,68,50)" fg:x="109106" fg:w="39"/><text x="72.8624%" y="911.50"></text></g><g><title>memset_erms (37 samples, 0.02%)</title><rect x="72.6663%" y="853" width="0.0246%" height="15" fill="rgb(224,79,48)" fg:x="109187" fg:w="37"/><text x="72.9163%" y="863.50"></text></g><g><title>kmem_cache_alloc (78 samples, 0.05%)</title><rect x="72.6457%" y="869" width="0.0519%" height="15" fill="rgb(213,191,50)" fg:x="109156" fg:w="78"/><text x="72.8957%" y="879.50"></text></g><g><title>user_path_at_empty (166 samples, 0.11%)</title><rect x="72.6384%" y="901" width="0.1105%" height="15" fill="rgb(254,146,10)" fg:x="109145" fg:w="166"/><text x="72.8884%" y="911.50"></text></g><g><title>getname_flags.part.0 (163 samples, 0.11%)</title><rect x="72.6404%" y="885" width="0.1085%" height="15" fill="rgb(215,175,11)" fg:x="109148" fg:w="163"/><text x="72.8904%" y="895.50"></text></g><g><title>strncpy_from_user (77 samples, 0.05%)</title><rect x="72.6976%" y="869" width="0.0512%" height="15" fill="rgb(207,49,7)" fg:x="109234" fg:w="77"/><text x="72.9476%" y="879.50"></text></g><g><title>__check_object_size (30 samples, 0.02%)</title><rect x="72.7289%" y="853" width="0.0200%" height="15" fill="rgb(234,144,29)" fg:x="109281" fg:w="30"/><text x="72.9789%" y="863.50"></text></g><g><title>__do_sys_newstat (1,580 samples, 1.05%)</title><rect x="71.7040%" y="933" width="1.0515%" height="15" fill="rgb(213,222,48)" fg:x="107741" fg:w="1580"/><text x="71.9540%" y="943.50"></text></g><g><title>vfs_statx (1,553 samples, 1.03%)</title><rect x="71.7220%" y="917" width="1.0336%" height="15" fill="rgb(222,8,6)" fg:x="107768" fg:w="1553"/><text x="71.9720%" y="927.50"></text></g><g><title>do_syscall_64 (1,582 samples, 1.05%)</title><rect x="71.7040%" y="949" width="1.0529%" height="15" fill="rgb(221,114,49)" fg:x="107741" fg:w="1582"/><text x="71.9540%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,589 samples, 1.06%)</title><rect x="71.7027%" y="965" width="1.0575%" height="15" fill="rgb(250,140,42)" fg:x="107739" fg:w="1589"/><text x="71.9527%" y="975.50"></text></g><g><title>__GI___xstat (1,631 samples, 1.09%)</title><rect x="71.6787%" y="981" width="1.0855%" height="15" fill="rgb(250,150,27)" fg:x="107703" fg:w="1631"/><text x="71.9287%" y="991.50"></text></g><g><title>__GI_remove (20 samples, 0.01%)</title><rect x="72.7642%" y="965" width="0.0133%" height="15" fill="rgb(252,159,3)" fg:x="109334" fg:w="20"/><text x="73.0142%" y="975.50"></text></g><g><title>__GI___rmdir (20 samples, 0.01%)</title><rect x="72.7642%" y="949" width="0.0133%" height="15" fill="rgb(241,182,3)" fg:x="109334" fg:w="20"/><text x="73.0142%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="72.7642%" y="933" width="0.0133%" height="15" fill="rgb(236,3,9)" fg:x="109334" fg:w="20"/><text x="73.0142%" y="943.50"></text></g><g><title>do_syscall_64 (20 samples, 0.01%)</title><rect x="72.7642%" y="917" width="0.0133%" height="15" fill="rgb(223,227,51)" fg:x="109334" fg:w="20"/><text x="73.0142%" y="927.50"></text></g><g><title>do_rmdir (20 samples, 0.01%)</title><rect x="72.7642%" y="901" width="0.0133%" height="15" fill="rgb(232,133,30)" fg:x="109334" fg:w="20"/><text x="73.0142%" y="911.50"></text></g><g><title>vfs_rmdir.part.0 (20 samples, 0.01%)</title><rect x="72.7642%" y="885" width="0.0133%" height="15" fill="rgb(209,93,27)" fg:x="109334" fg:w="20"/><text x="73.0142%" y="895.50"></text></g><g><title>__GI_remove (66 samples, 0.04%)</title><rect x="72.7642%" y="981" width="0.0439%" height="15" fill="rgb(208,108,34)" fg:x="109334" fg:w="66"/><text x="73.0142%" y="991.50"></text></g><g><title>__unlink (46 samples, 0.03%)</title><rect x="72.7775%" y="965" width="0.0306%" height="15" fill="rgb(215,189,13)" fg:x="109354" fg:w="46"/><text x="73.0275%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.03%)</title><rect x="72.7775%" y="949" width="0.0306%" height="15" fill="rgb(206,88,23)" fg:x="109354" fg:w="46"/><text x="73.0275%" y="959.50"></text></g><g><title>do_syscall_64 (46 samples, 0.03%)</title><rect x="72.7775%" y="933" width="0.0306%" height="15" fill="rgb(240,173,0)" fg:x="109354" fg:w="46"/><text x="73.0275%" y="943.50"></text></g><g><title>do_unlinkat (44 samples, 0.03%)</title><rect x="72.7788%" y="917" width="0.0293%" height="15" fill="rgb(223,106,52)" fg:x="109356" fg:w="44"/><text x="73.0288%" y="927.50"></text></g><g><title>kmem_cache_alloc (20 samples, 0.01%)</title><rect x="72.8247%" y="901" width="0.0133%" height="15" fill="rgb(206,130,16)" fg:x="109425" fg:w="20"/><text x="73.0747%" y="911.50"></text></g><g><title>__x64_sys_unlinkat (45 samples, 0.03%)</title><rect x="72.8227%" y="933" width="0.0299%" height="15" fill="rgb(220,54,25)" fg:x="109422" fg:w="45"/><text x="73.0727%" y="943.50"></text></g><g><title>getname_flags.part.0 (43 samples, 0.03%)</title><rect x="72.8241%" y="917" width="0.0286%" height="15" fill="rgb(210,4,38)" fg:x="109424" fg:w="43"/><text x="73.0741%" y="927.50"></text></g><g><title>strncpy_from_user (22 samples, 0.01%)</title><rect x="72.8381%" y="901" width="0.0146%" height="15" fill="rgb(238,94,39)" fg:x="109445" fg:w="22"/><text x="73.0881%" y="911.50"></text></g><g><title>btrfs_del_items (20 samples, 0.01%)</title><rect x="72.8607%" y="869" width="0.0133%" height="15" fill="rgb(234,124,34)" fg:x="109479" fg:w="20"/><text x="73.1107%" y="879.50"></text></g><g><title>btrfs_lookup_dir_item (18 samples, 0.01%)</title><rect x="72.8800%" y="869" width="0.0120%" height="15" fill="rgb(221,91,40)" fg:x="109508" fg:w="18"/><text x="73.1300%" y="879.50"></text></g><g><title>__btrfs_unlink_inode (56 samples, 0.04%)</title><rect x="72.8593%" y="885" width="0.0373%" height="15" fill="rgb(246,53,28)" fg:x="109477" fg:w="56"/><text x="73.1093%" y="895.50"></text></g><g><title>btrfs_orphan_add (17 samples, 0.01%)</title><rect x="72.8966%" y="885" width="0.0113%" height="15" fill="rgb(229,109,7)" fg:x="109533" fg:w="17"/><text x="73.1466%" y="895.50"></text></g><g><title>btrfs_insert_orphan_item (17 samples, 0.01%)</title><rect x="72.8966%" y="869" width="0.0113%" height="15" fill="rgb(249,117,8)" fg:x="109533" fg:w="17"/><text x="73.1466%" y="879.50"></text></g><g><title>btrfs_rmdir (88 samples, 0.06%)</title><rect x="72.8574%" y="901" width="0.0586%" height="15" fill="rgb(210,181,1)" fg:x="109474" fg:w="88"/><text x="73.1074%" y="911.50"></text></g><g><title>btrfs_del_items (34 samples, 0.02%)</title><rect x="72.9286%" y="837" width="0.0226%" height="15" fill="rgb(211,66,1)" fg:x="109581" fg:w="34"/><text x="73.1786%" y="847.50"></text></g><g><title>__btrfs_update_delayed_inode (44 samples, 0.03%)</title><rect x="72.9286%" y="853" width="0.0293%" height="15" fill="rgb(221,90,14)" fg:x="109581" fg:w="44"/><text x="73.1786%" y="863.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (47 samples, 0.03%)</title><rect x="72.9279%" y="869" width="0.0313%" height="15" fill="rgb(219,222,44)" fg:x="109580" fg:w="47"/><text x="73.1779%" y="879.50"></text></g><g><title>btrfs_del_orphan_item (20 samples, 0.01%)</title><rect x="72.9592%" y="869" width="0.0133%" height="15" fill="rgb(246,34,33)" fg:x="109627" fg:w="20"/><text x="73.2092%" y="879.50"></text></g><g><title>btrfs_del_items (31 samples, 0.02%)</title><rect x="72.9778%" y="853" width="0.0206%" height="15" fill="rgb(227,135,41)" fg:x="109655" fg:w="31"/><text x="73.2278%" y="863.50"></text></g><g><title>btrfs_search_slot (17 samples, 0.01%)</title><rect x="73.0131%" y="853" width="0.0113%" height="15" fill="rgb(226,15,14)" fg:x="109708" fg:w="17"/><text x="73.2631%" y="863.50"></text></g><g><title>btrfs_truncate_inode_items (83 samples, 0.06%)</title><rect x="72.9725%" y="869" width="0.0552%" height="15" fill="rgb(236,148,47)" fg:x="109647" fg:w="83"/><text x="73.2225%" y="879.50"></text></g><g><title>evict (170 samples, 0.11%)</title><rect x="72.9219%" y="901" width="0.1131%" height="15" fill="rgb(233,162,52)" fg:x="109571" fg:w="170"/><text x="73.1719%" y="911.50"></text></g><g><title>btrfs_evict_inode (166 samples, 0.11%)</title><rect x="72.9246%" y="885" width="0.1105%" height="15" fill="rgb(244,35,28)" fg:x="109575" fg:w="166"/><text x="73.1746%" y="895.50"></text></g><g><title>d_walk (26 samples, 0.02%)</title><rect x="73.0357%" y="885" width="0.0173%" height="15" fill="rgb(205,121,10)" fg:x="109742" fg:w="26"/><text x="73.2857%" y="895.50"></text></g><g><title>select_collect (22 samples, 0.01%)</title><rect x="73.0384%" y="869" width="0.0146%" height="15" fill="rgb(250,58,18)" fg:x="109746" fg:w="22"/><text x="73.2884%" y="879.50"></text></g><g><title>__dentry_kill (23 samples, 0.02%)</title><rect x="73.0537%" y="869" width="0.0153%" height="15" fill="rgb(216,37,13)" fg:x="109769" fg:w="23"/><text x="73.3037%" y="879.50"></text></g><g><title>do_rmdir (335 samples, 0.22%)</title><rect x="72.8527%" y="933" width="0.2229%" height="15" fill="rgb(221,215,42)" fg:x="109467" fg:w="335"/><text x="73.1027%" y="943.50"></text></g><g><title>vfs_rmdir.part.0 (328 samples, 0.22%)</title><rect x="72.8574%" y="917" width="0.2183%" height="15" fill="rgb(217,214,19)" fg:x="109474" fg:w="328"/><text x="73.1074%" y="927.50"></text></g><g><title>shrink_dcache_parent (60 samples, 0.04%)</title><rect x="73.0357%" y="901" width="0.0399%" height="15" fill="rgb(233,139,13)" fg:x="109742" fg:w="60"/><text x="73.2857%" y="911.50"></text></g><g><title>shrink_dentry_list (34 samples, 0.02%)</title><rect x="73.0530%" y="885" width="0.0226%" height="15" fill="rgb(247,168,23)" fg:x="109768" fg:w="34"/><text x="73.3030%" y="895.50"></text></g><g><title>__lookup_hash (43 samples, 0.03%)</title><rect x="73.0790%" y="917" width="0.0286%" height="15" fill="rgb(207,202,1)" fg:x="109807" fg:w="43"/><text x="73.3290%" y="927.50"></text></g><g><title>lookup_dcache (42 samples, 0.03%)</title><rect x="73.0796%" y="901" width="0.0280%" height="15" fill="rgb(220,155,48)" fg:x="109808" fg:w="42"/><text x="73.3296%" y="911.50"></text></g><g><title>d_lookup (41 samples, 0.03%)</title><rect x="73.0803%" y="885" width="0.0273%" height="15" fill="rgb(250,43,26)" fg:x="109809" fg:w="41"/><text x="73.3303%" y="895.50"></text></g><g><title>__d_lookup (41 samples, 0.03%)</title><rect x="73.0803%" y="869" width="0.0273%" height="15" fill="rgb(212,190,23)" fg:x="109809" fg:w="41"/><text x="73.3303%" y="879.50"></text></g><g><title>evict (17 samples, 0.01%)</title><rect x="73.1142%" y="917" width="0.0113%" height="15" fill="rgb(216,39,24)" fg:x="109860" fg:w="17"/><text x="73.3642%" y="927.50"></text></g><g><title>btrfs_evict_inode (17 samples, 0.01%)</title><rect x="73.1142%" y="901" width="0.0113%" height="15" fill="rgb(252,113,16)" fg:x="109860" fg:w="17"/><text x="73.3642%" y="911.50"></text></g><g><title>filename_parentat (29 samples, 0.02%)</title><rect x="73.1256%" y="917" width="0.0193%" height="15" fill="rgb(208,113,19)" fg:x="109877" fg:w="29"/><text x="73.3756%" y="927.50"></text></g><g><title>path_parentat (27 samples, 0.02%)</title><rect x="73.1269%" y="901" width="0.0180%" height="15" fill="rgb(234,107,25)" fg:x="109879" fg:w="27"/><text x="73.3769%" y="911.50"></text></g><g><title>__btrfs_end_transaction (18 samples, 0.01%)</title><rect x="73.1815%" y="885" width="0.0120%" height="15" fill="rgb(234,217,51)" fg:x="109961" fg:w="18"/><text x="73.4315%" y="895.50"></text></g><g><title>btrfs_get_token_32 (51 samples, 0.03%)</title><rect x="73.2280%" y="837" width="0.0339%" height="15" fill="rgb(251,29,42)" fg:x="110031" fg:w="51"/><text x="73.4780%" y="847.50"></text></g><g><title>btrfs_set_token_32 (47 samples, 0.03%)</title><rect x="73.2640%" y="837" width="0.0313%" height="15" fill="rgb(221,62,51)" fg:x="110085" fg:w="47"/><text x="73.5140%" y="847.50"></text></g><g><title>btrfs_del_items (229 samples, 0.15%)</title><rect x="73.2061%" y="853" width="0.1524%" height="15" fill="rgb(240,192,43)" fg:x="109998" fg:w="229"/><text x="73.4561%" y="863.50"></text></g><g><title>memmove_extent_buffer (81 samples, 0.05%)</title><rect x="73.3046%" y="837" width="0.0539%" height="15" fill="rgb(224,157,47)" fg:x="110146" fg:w="81"/><text x="73.5546%" y="847.50"></text></g><g><title>memmove (64 samples, 0.04%)</title><rect x="73.3159%" y="821" width="0.0426%" height="15" fill="rgb(226,84,45)" fg:x="110163" fg:w="64"/><text x="73.5659%" y="831.50"></text></g><g><title>btrfs_find_name_in_backref (20 samples, 0.01%)</title><rect x="73.3585%" y="853" width="0.0133%" height="15" fill="rgb(208,207,23)" fg:x="110227" fg:w="20"/><text x="73.6085%" y="863.50"></text></g><g><title>generic_bin_search.constprop.0 (36 samples, 0.02%)</title><rect x="73.4057%" y="837" width="0.0240%" height="15" fill="rgb(253,34,51)" fg:x="110298" fg:w="36"/><text x="73.6557%" y="847.50"></text></g><g><title>__radix_tree_lookup (17 samples, 0.01%)</title><rect x="73.4443%" y="805" width="0.0113%" height="15" fill="rgb(227,26,34)" fg:x="110356" fg:w="17"/><text x="73.6943%" y="815.50"></text></g><g><title>find_extent_buffer (38 samples, 0.03%)</title><rect x="73.4370%" y="821" width="0.0253%" height="15" fill="rgb(245,75,19)" fg:x="110345" fg:w="38"/><text x="73.6870%" y="831.50"></text></g><g><title>read_block_for_search.isra.0 (55 samples, 0.04%)</title><rect x="73.4297%" y="837" width="0.0366%" height="15" fill="rgb(250,191,31)" fg:x="110334" fg:w="55"/><text x="73.6797%" y="847.50"></text></g><g><title>btrfs_search_slot (134 samples, 0.09%)</title><rect x="73.3844%" y="853" width="0.0892%" height="15" fill="rgb(224,11,50)" fg:x="110266" fg:w="134"/><text x="73.6344%" y="863.50"></text></g><g><title>btrfs_del_inode_ref (418 samples, 0.28%)</title><rect x="73.2021%" y="869" width="0.2782%" height="15" fill="rgb(231,171,7)" fg:x="109992" fg:w="418"/><text x="73.4521%" y="879.50"></text></g><g><title>btrfs_get_token_32 (124 samples, 0.08%)</title><rect x="73.5189%" y="853" width="0.0825%" height="15" fill="rgb(252,214,10)" fg:x="110468" fg:w="124"/><text x="73.7689%" y="863.50"></text></g><g><title>check_setget_bounds.isra.0 (23 samples, 0.02%)</title><rect x="73.5861%" y="837" width="0.0153%" height="15" fill="rgb(249,45,46)" fg:x="110569" fg:w="23"/><text x="73.8361%" y="847.50"></text></g><g><title>btrfs_set_token_32 (113 samples, 0.08%)</title><rect x="73.6074%" y="853" width="0.0752%" height="15" fill="rgb(240,173,7)" fg:x="110601" fg:w="113"/><text x="73.8574%" y="863.50"></text></g><g><title>check_setget_bounds.isra.0 (20 samples, 0.01%)</title><rect x="73.6693%" y="837" width="0.0133%" height="15" fill="rgb(235,214,13)" fg:x="110694" fg:w="20"/><text x="73.9193%" y="847.50"></text></g><g><title>memcpy_extent_buffer (19 samples, 0.01%)</title><rect x="73.6846%" y="853" width="0.0126%" height="15" fill="rgb(245,156,8)" fg:x="110717" fg:w="19"/><text x="73.9346%" y="863.50"></text></g><g><title>memmove_extent_buffer (80 samples, 0.05%)</title><rect x="73.6972%" y="853" width="0.0532%" height="15" fill="rgb(235,46,12)" fg:x="110736" fg:w="80"/><text x="73.9472%" y="863.50"></text></g><g><title>memmove (65 samples, 0.04%)</title><rect x="73.7072%" y="837" width="0.0433%" height="15" fill="rgb(221,81,14)" fg:x="110751" fg:w="65"/><text x="73.9572%" y="847.50"></text></g><g><title>btrfs_del_items (415 samples, 0.28%)</title><rect x="73.4803%" y="869" width="0.2762%" height="15" fill="rgb(238,207,9)" fg:x="110410" fg:w="415"/><text x="73.7303%" y="879.50"></text></g><g><title>__mutex_lock.constprop.0 (24 samples, 0.02%)</title><rect x="73.7751%" y="853" width="0.0160%" height="15" fill="rgb(224,129,35)" fg:x="110853" fg:w="24"/><text x="74.0251%" y="863.50"></text></g><g><title>mutex_spin_on_owner (23 samples, 0.02%)</title><rect x="73.7758%" y="837" width="0.0153%" height="15" fill="rgb(243,218,34)" fg:x="110854" fg:w="23"/><text x="74.0258%" y="847.50"></text></g><g><title>btrfs_delete_delayed_dir_index (80 samples, 0.05%)</title><rect x="73.7571%" y="869" width="0.0532%" height="15" fill="rgb(220,166,13)" fg:x="110826" fg:w="80"/><text x="74.0071%" y="879.50"></text></g><g><title>generic_bin_search.constprop.0 (47 samples, 0.03%)</title><rect x="73.8523%" y="837" width="0.0313%" height="15" fill="rgb(227,167,49)" fg:x="110969" fg:w="47"/><text x="74.1023%" y="847.50"></text></g><g><title>__radix_tree_lookup (19 samples, 0.01%)</title><rect x="73.8949%" y="805" width="0.0126%" height="15" fill="rgb(234,142,12)" fg:x="111033" fg:w="19"/><text x="74.1449%" y="815.50"></text></g><g><title>find_extent_buffer (33 samples, 0.02%)</title><rect x="73.8929%" y="821" width="0.0220%" height="15" fill="rgb(207,100,48)" fg:x="111030" fg:w="33"/><text x="74.1429%" y="831.50"></text></g><g><title>read_block_for_search.isra.0 (56 samples, 0.04%)</title><rect x="73.8836%" y="837" width="0.0373%" height="15" fill="rgb(210,25,14)" fg:x="111016" fg:w="56"/><text x="74.1336%" y="847.50"></text></g><g><title>btrfs_search_slot (156 samples, 0.10%)</title><rect x="73.8244%" y="853" width="0.1038%" height="15" fill="rgb(246,116,27)" fg:x="110927" fg:w="156"/><text x="74.0744%" y="863.50"></text></g><g><title>btrfs_lookup_dir_item (175 samples, 0.12%)</title><rect x="73.8150%" y="869" width="0.1165%" height="15" fill="rgb(214,193,42)" fg:x="110913" fg:w="175"/><text x="74.0650%" y="879.50"></text></g><g><title>btrfs_release_path (18 samples, 0.01%)</title><rect x="73.9315%" y="869" width="0.0120%" height="15" fill="rgb(214,122,8)" fg:x="111088" fg:w="18"/><text x="74.1815%" y="879.50"></text></g><g><title>btrfs_delayed_update_inode (21 samples, 0.01%)</title><rect x="73.9468%" y="853" width="0.0140%" height="15" fill="rgb(244,173,18)" fg:x="111111" fg:w="21"/><text x="74.1968%" y="863.50"></text></g><g><title>btrfs_update_inode (34 samples, 0.02%)</title><rect x="73.9435%" y="869" width="0.0226%" height="15" fill="rgb(232,68,19)" fg:x="111106" fg:w="34"/><text x="74.1935%" y="879.50"></text></g><g><title>__btrfs_unlink_inode (1,172 samples, 0.78%)</title><rect x="73.1934%" y="885" width="0.7800%" height="15" fill="rgb(236,224,1)" fg:x="109979" fg:w="1172"/><text x="73.4434%" y="895.50"></text></g><g><title>btrfs_btree_balance_dirty (17 samples, 0.01%)</title><rect x="73.9734%" y="885" width="0.0113%" height="15" fill="rgb(240,11,8)" fg:x="111151" fg:w="17"/><text x="74.2234%" y="895.50"></text></g><g><title>btrfs_get_or_create_delayed_node (21 samples, 0.01%)</title><rect x="74.0174%" y="853" width="0.0140%" height="15" fill="rgb(244,159,20)" fg:x="111217" fg:w="21"/><text x="74.2674%" y="863.50"></text></g><g><title>btrfs_get_delayed_node (20 samples, 0.01%)</title><rect x="74.0180%" y="837" width="0.0133%" height="15" fill="rgb(240,223,54)" fg:x="111218" fg:w="20"/><text x="74.2680%" y="847.50"></text></g><g><title>btrfs_delayed_update_inode (63 samples, 0.04%)</title><rect x="73.9987%" y="869" width="0.0419%" height="15" fill="rgb(237,146,5)" fg:x="111189" fg:w="63"/><text x="74.2487%" y="879.50"></text></g><g><title>btrfs_update_inode (73 samples, 0.05%)</title><rect x="73.9954%" y="885" width="0.0486%" height="15" fill="rgb(218,221,32)" fg:x="111184" fg:w="73"/><text x="74.2454%" y="895.50"></text></g><g><title>btrfs_block_rsv_add (30 samples, 0.02%)</title><rect x="74.0486%" y="869" width="0.0200%" height="15" fill="rgb(244,96,26)" fg:x="111264" fg:w="30"/><text x="74.2986%" y="879.50"></text></g><g><title>btrfs_reserve_metadata_bytes (28 samples, 0.02%)</title><rect x="74.0500%" y="853" width="0.0186%" height="15" fill="rgb(245,184,37)" fg:x="111266" fg:w="28"/><text x="74.3000%" y="863.50"></text></g><g><title>__reserve_bytes (27 samples, 0.02%)</title><rect x="74.0506%" y="837" width="0.0180%" height="15" fill="rgb(248,91,47)" fg:x="111267" fg:w="27"/><text x="74.3006%" y="847.50"></text></g><g><title>btrfs_unlink (1,356 samples, 0.90%)</title><rect x="73.1815%" y="901" width="0.9024%" height="15" fill="rgb(243,199,8)" fg:x="109961" fg:w="1356"/><text x="73.4315%" y="911.50"></text></g><g><title>start_transaction (60 samples, 0.04%)</title><rect x="74.0440%" y="885" width="0.0399%" height="15" fill="rgb(249,12,15)" fg:x="111257" fg:w="60"/><text x="74.2940%" y="895.50"></text></g><g><title>do_unlinkat (1,558 samples, 1.04%)</title><rect x="73.0756%" y="933" width="1.0369%" height="15" fill="rgb(245,97,12)" fg:x="109802" fg:w="1558"/><text x="73.3256%" y="943.50"></text></g><g><title>vfs_unlink (1,406 samples, 0.94%)</title><rect x="73.1768%" y="917" width="0.9357%" height="15" fill="rgb(244,61,1)" fg:x="109954" fg:w="1406"/><text x="73.4268%" y="927.50"></text></g><g><title>do_syscall_64 (1,940 samples, 1.29%)</title><rect x="72.8221%" y="949" width="1.2911%" height="15" fill="rgb(222,194,10)" fg:x="109421" fg:w="1940"/><text x="73.0721%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,942 samples, 1.29%)</title><rect x="72.8221%" y="965" width="1.2924%" height="15" fill="rgb(226,178,8)" fg:x="109421" fg:w="1942"/><text x="73.0721%" y="975.50"></text></g><g><title>__GI_unlinkat (1,965 samples, 1.31%)</title><rect x="72.8081%" y="981" width="1.3078%" height="15" fill="rgb(241,32,34)" fg:x="109400" fg:w="1965"/><text x="73.0581%" y="991.50"></text></g><g><title>__fdopendir (24 samples, 0.02%)</title><rect x="74.1272%" y="981" width="0.0160%" height="15" fill="rgb(254,26,6)" fg:x="111382" fg:w="24"/><text x="74.3772%" y="991.50"></text></g><g><title>__alloc_dir (17 samples, 0.01%)</title><rect x="74.1318%" y="965" width="0.0113%" height="15" fill="rgb(249,71,11)" fg:x="111389" fg:w="17"/><text x="74.3818%" y="975.50"></text></g><g><title>btrfs_add_link (17 samples, 0.01%)</title><rect x="74.1451%" y="853" width="0.0113%" height="15" fill="rgb(232,170,27)" fg:x="111409" fg:w="17"/><text x="74.3951%" y="863.50"></text></g><g><title>btrfs_insert_dir_item (17 samples, 0.01%)</title><rect x="74.1451%" y="837" width="0.0113%" height="15" fill="rgb(214,223,17)" fg:x="111409" fg:w="17"/><text x="74.3951%" y="847.50"></text></g><g><title>btrfs_create (32 samples, 0.02%)</title><rect x="74.1445%" y="869" width="0.0213%" height="15" fill="rgb(250,18,15)" fg:x="111408" fg:w="32"/><text x="74.3945%" y="879.50"></text></g><g><title>__libc_open64 (37 samples, 0.02%)</title><rect x="74.1431%" y="981" width="0.0246%" height="15" fill="rgb(212,153,51)" fg:x="111406" fg:w="37"/><text x="74.3931%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.02%)</title><rect x="74.1431%" y="965" width="0.0246%" height="15" fill="rgb(219,194,12)" fg:x="111406" fg:w="37"/><text x="74.3931%" y="975.50"></text></g><g><title>do_syscall_64 (37 samples, 0.02%)</title><rect x="74.1431%" y="949" width="0.0246%" height="15" fill="rgb(212,58,17)" fg:x="111406" fg:w="37"/><text x="74.3931%" y="959.50"></text></g><g><title>__x64_sys_openat (37 samples, 0.02%)</title><rect x="74.1431%" y="933" width="0.0246%" height="15" fill="rgb(254,5,10)" fg:x="111406" fg:w="37"/><text x="74.3931%" y="943.50"></text></g><g><title>do_sys_openat2 (36 samples, 0.02%)</title><rect x="74.1438%" y="917" width="0.0240%" height="15" fill="rgb(246,91,7)" fg:x="111407" fg:w="36"/><text x="74.3938%" y="927.50"></text></g><g><title>do_filp_open (36 samples, 0.02%)</title><rect x="74.1438%" y="901" width="0.0240%" height="15" fill="rgb(218,108,49)" fg:x="111407" fg:w="36"/><text x="74.3938%" y="911.50"></text></g><g><title>path_openat (36 samples, 0.02%)</title><rect x="74.1438%" y="885" width="0.0240%" height="15" fill="rgb(238,123,20)" fg:x="111407" fg:w="36"/><text x="74.3938%" y="895.50"></text></g><g><title>do_filp_open (33 samples, 0.02%)</title><rect x="74.1704%" y="901" width="0.0220%" height="15" fill="rgb(231,69,23)" fg:x="111447" fg:w="33"/><text x="74.4204%" y="911.50"></text></g><g><title>path_openat (32 samples, 0.02%)</title><rect x="74.1711%" y="885" width="0.0213%" height="15" fill="rgb(230,209,3)" fg:x="111448" fg:w="32"/><text x="74.4211%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="74.1684%" y="965" width="0.0273%" height="15" fill="rgb(231,19,0)" fg:x="111444" fg:w="41"/><text x="74.4184%" y="975.50"></text></g><g><title>do_syscall_64 (41 samples, 0.03%)</title><rect x="74.1684%" y="949" width="0.0273%" height="15" fill="rgb(226,192,25)" fg:x="111444" fg:w="41"/><text x="74.4184%" y="959.50"></text></g><g><title>__x64_sys_openat (40 samples, 0.03%)</title><rect x="74.1691%" y="933" width="0.0266%" height="15" fill="rgb(223,175,53)" fg:x="111445" fg:w="40"/><text x="74.4191%" y="943.50"></text></g><g><title>do_sys_openat2 (40 samples, 0.03%)</title><rect x="74.1691%" y="917" width="0.0266%" height="15" fill="rgb(248,35,51)" fg:x="111445" fg:w="40"/><text x="74.4191%" y="927.50"></text></g><g><title>__libc_openat64 (43 samples, 0.03%)</title><rect x="74.1678%" y="981" width="0.0286%" height="15" fill="rgb(230,37,26)" fg:x="111443" fg:w="43"/><text x="74.4178%" y="991.50"></text></g><g><title>__libc_write (22 samples, 0.01%)</title><rect x="74.1964%" y="981" width="0.0146%" height="15" fill="rgb(206,120,22)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="991.50"></text></g><g><title>__libc_write (22 samples, 0.01%)</title><rect x="74.1964%" y="965" width="0.0146%" height="15" fill="rgb(207,165,28)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="74.1964%" y="949" width="0.0146%" height="15" fill="rgb(226,23,46)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="959.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="74.1964%" y="933" width="0.0146%" height="15" fill="rgb(208,130,44)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="943.50"></text></g><g><title>ksys_write (22 samples, 0.01%)</title><rect x="74.1964%" y="917" width="0.0146%" height="15" fill="rgb(231,67,8)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="927.50"></text></g><g><title>vfs_write (22 samples, 0.01%)</title><rect x="74.1964%" y="901" width="0.0146%" height="15" fill="rgb(205,183,22)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="911.50"></text></g><g><title>new_sync_write (22 samples, 0.01%)</title><rect x="74.1964%" y="885" width="0.0146%" height="15" fill="rgb(224,47,9)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="895.50"></text></g><g><title>btrfs_file_write_iter (22 samples, 0.01%)</title><rect x="74.1964%" y="869" width="0.0146%" height="15" fill="rgb(250,183,49)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="879.50"></text></g><g><title>do_filp_open (23 samples, 0.02%)</title><rect x="74.2110%" y="885" width="0.0153%" height="15" fill="rgb(220,151,39)" fg:x="111508" fg:w="23"/><text x="74.4610%" y="895.50"></text></g><g><title>path_openat (22 samples, 0.01%)</title><rect x="74.2117%" y="869" width="0.0146%" height="15" fill="rgb(220,118,20)" fg:x="111509" fg:w="22"/><text x="74.4617%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.02%)</title><rect x="74.2110%" y="949" width="0.0193%" height="15" fill="rgb(231,65,51)" fg:x="111508" fg:w="29"/><text x="74.4610%" y="959.50"></text></g><g><title>do_syscall_64 (29 samples, 0.02%)</title><rect x="74.2110%" y="933" width="0.0193%" height="15" fill="rgb(253,125,37)" fg:x="111508" fg:w="29"/><text x="74.4610%" y="943.50"></text></g><g><title>__x64_sys_openat (29 samples, 0.02%)</title><rect x="74.2110%" y="917" width="0.0193%" height="15" fill="rgb(232,102,6)" fg:x="111508" fg:w="29"/><text x="74.4610%" y="927.50"></text></g><g><title>do_sys_openat2 (29 samples, 0.02%)</title><rect x="74.2110%" y="901" width="0.0193%" height="15" fill="rgb(251,105,13)" fg:x="111508" fg:w="29"/><text x="74.4610%" y="911.50"></text></g><g><title>__opendir (31 samples, 0.02%)</title><rect x="74.2110%" y="981" width="0.0206%" height="15" fill="rgb(222,179,29)" fg:x="111508" fg:w="31"/><text x="74.4610%" y="991.50"></text></g><g><title>__GI___open64_nocancel (31 samples, 0.02%)</title><rect x="74.2110%" y="965" width="0.0206%" height="15" fill="rgb(229,180,53)" fg:x="111508" fg:w="31"/><text x="74.4610%" y="975.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (31 samples, 0.02%)</title><rect x="74.2696%" y="965" width="0.0206%" height="15" fill="rgb(238,104,13)" fg:x="111596" fg:w="31"/><text x="74.5196%" y="975.50"></text></g><g><title>ThreadStateTransition::transition_from_native (23 samples, 0.02%)</title><rect x="74.2902%" y="965" width="0.0153%" height="15" fill="rgb(210,130,5)" fg:x="111627" fg:w="23"/><text x="74.5402%" y="975.50"></text></g><g><title>jni_GetByteArrayRegion (103 samples, 0.07%)</title><rect x="74.2530%" y="981" width="0.0685%" height="15" fill="rgb(233,87,49)" fg:x="111571" fg:w="103"/><text x="74.5030%" y="991.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<802934ul, G1BarrierSet>, (AccessInternal::BarrierType)3, 802934ul>::oop_access_barrier (27 samples, 0.02%)</title><rect x="74.3361%" y="965" width="0.0180%" height="15" fill="rgb(243,34,9)" fg:x="111696" fg:w="27"/><text x="74.5861%" y="975.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (19 samples, 0.01%)</title><rect x="74.3415%" y="949" width="0.0126%" height="15" fill="rgb(235,225,10)" fg:x="111704" fg:w="19"/><text x="74.5915%" y="959.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (16 samples, 0.01%)</title><rect x="74.3435%" y="933" width="0.0106%" height="15" fill="rgb(212,0,30)" fg:x="111707" fg:w="16"/><text x="74.5935%" y="943.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (24 samples, 0.02%)</title><rect x="74.3694%" y="965" width="0.0160%" height="15" fill="rgb(211,177,0)" fg:x="111746" fg:w="24"/><text x="74.6194%" y="975.50"></text></g><g><title>jni_GetObjectField (113 samples, 0.08%)</title><rect x="74.3215%" y="981" width="0.0752%" height="15" fill="rgb(225,220,11)" fg:x="111674" fg:w="113"/><text x="74.5715%" y="991.50"></text></g><g><title>ThreadStateTransition::transition_from_native (17 samples, 0.01%)</title><rect x="74.3854%" y="965" width="0.0113%" height="15" fill="rgb(215,10,13)" fg:x="111770" fg:w="17"/><text x="74.6354%" y="975.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (17 samples, 0.01%)</title><rect x="74.4167%" y="965" width="0.0113%" height="15" fill="rgb(240,177,14)" fg:x="111817" fg:w="17"/><text x="74.6667%" y="975.50"></text></g><g><title>jni_GetStringLength (66 samples, 0.04%)</title><rect x="74.3967%" y="981" width="0.0439%" height="15" fill="rgb(243,7,39)" fg:x="111787" fg:w="66"/><text x="74.6467%" y="991.50"></text></g><g><title>ThreadStateTransition::transition_from_native (19 samples, 0.01%)</title><rect x="74.4280%" y="965" width="0.0126%" height="15" fill="rgb(212,99,0)" fg:x="111834" fg:w="19"/><text x="74.6780%" y="975.50"></text></g><g><title>InstanceKlass::allocate_instance (60 samples, 0.04%)</title><rect x="74.4772%" y="965" width="0.0399%" height="15" fill="rgb(225,162,48)" fg:x="111908" fg:w="60"/><text x="74.7272%" y="975.50"></text></g><g><title>CollectedHeap::obj_allocate (50 samples, 0.03%)</title><rect x="74.4839%" y="949" width="0.0333%" height="15" fill="rgb(246,16,25)" fg:x="111918" fg:w="50"/><text x="74.7339%" y="959.50"></text></g><g><title>MemAllocator::allocate (49 samples, 0.03%)</title><rect x="74.4846%" y="933" width="0.0326%" height="15" fill="rgb(220,150,2)" fg:x="111919" fg:w="49"/><text x="74.7346%" y="943.50"></text></g><g><title>ThreadStateTransition::transition_from_native (21 samples, 0.01%)</title><rect x="74.5318%" y="965" width="0.0140%" height="15" fill="rgb(237,113,11)" fg:x="111990" fg:w="21"/><text x="74.7818%" y="975.50"></text></g><g><title>alloc_object (52 samples, 0.03%)</title><rect x="74.5458%" y="965" width="0.0346%" height="15" fill="rgb(236,70,20)" fg:x="112011" fg:w="52"/><text x="74.7958%" y="975.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (57 samples, 0.04%)</title><rect x="74.5984%" y="949" width="0.0379%" height="15" fill="rgb(234,94,7)" fg:x="112090" fg:w="57"/><text x="74.8484%" y="959.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (35 samples, 0.02%)</title><rect x="74.6776%" y="933" width="0.0233%" height="15" fill="rgb(250,221,0)" fg:x="112209" fg:w="35"/><text x="74.9276%" y="943.50"></text></g><g><title>JavaCalls::call_helper (110 samples, 0.07%)</title><rect x="74.6370%" y="949" width="0.0732%" height="15" fill="rgb(245,149,46)" fg:x="112148" fg:w="110"/><text x="74.8870%" y="959.50"></text></g><g><title>methodHandle::~methodHandle (18 samples, 0.01%)</title><rect x="74.7148%" y="949" width="0.0120%" height="15" fill="rgb(215,37,27)" fg:x="112265" fg:w="18"/><text x="74.9648%" y="959.50"></text></g><g><title>jni_invoke_nonstatic (230 samples, 0.15%)</title><rect x="74.5804%" y="965" width="0.1531%" height="15" fill="rgb(232,65,3)" fg:x="112063" fg:w="230"/><text x="74.8304%" y="975.50"></text></g><g><title>jni_NewObjectV (440 samples, 0.29%)</title><rect x="74.4413%" y="981" width="0.2928%" height="15" fill="rgb(214,2,16)" fg:x="111854" fg:w="440"/><text x="74.6913%" y="991.50"></text></g><g><title>jni_NewString (21 samples, 0.01%)</title><rect x="74.7341%" y="981" width="0.0140%" height="15" fill="rgb(227,131,50)" fg:x="112294" fg:w="21"/><text x="74.9841%" y="991.50"></text></g><g><title>java_lang_String::create_oop_from_unicode (21 samples, 0.01%)</title><rect x="74.7341%" y="965" width="0.0140%" height="15" fill="rgb(247,131,45)" fg:x="112294" fg:w="21"/><text x="74.9841%" y="975.50"></text></g><g><title>java_lang_String::create_from_unicode (20 samples, 0.01%)</title><rect x="74.7348%" y="949" width="0.0133%" height="15" fill="rgb(215,97,47)" fg:x="112295" fg:w="20"/><text x="74.9848%" y="959.50"></text></g><g><title>__GI___libc_malloc (31 samples, 0.02%)</title><rect x="74.7601%" y="965" width="0.0206%" height="15" fill="rgb(233,143,12)" fg:x="112333" fg:w="31"/><text x="75.0101%" y="975.50"></text></g><g><title>tcache_get (16 samples, 0.01%)</title><rect x="74.7701%" y="949" width="0.0106%" height="15" fill="rgb(222,57,17)" fg:x="112348" fg:w="16"/><text x="75.0201%" y="959.50"></text></g><g><title>operator new (33 samples, 0.02%)</title><rect x="74.7601%" y="981" width="0.0220%" height="15" fill="rgb(214,119,38)" fg:x="112333" fg:w="33"/><text x="75.0101%" y="991.50"></text></g><g><title>rename (17 samples, 0.01%)</title><rect x="74.7894%" y="981" width="0.0113%" height="15" fill="rgb(217,28,47)" fg:x="112377" fg:w="17"/><text x="75.0394%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="74.7894%" y="965" width="0.0113%" height="15" fill="rgb(231,14,52)" fg:x="112377" fg:w="17"/><text x="75.0394%" y="975.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="74.7894%" y="949" width="0.0113%" height="15" fill="rgb(220,158,18)" fg:x="112377" fg:w="17"/><text x="75.0394%" y="959.50"></text></g><g><title>__x64_sys_rename (17 samples, 0.01%)</title><rect x="74.7894%" y="933" width="0.0113%" height="15" fill="rgb(222,143,46)" fg:x="112377" fg:w="17"/><text x="75.0394%" y="943.50"></text></g><g><title>do_renameat2 (17 samples, 0.01%)</title><rect x="74.7894%" y="917" width="0.0113%" height="15" fill="rgb(227,165,5)" fg:x="112377" fg:w="17"/><text x="75.0394%" y="927.50"></text></g><g><title>[libunix_jni.so] (8,558 samples, 5.70%)</title><rect x="69.1145%" y="997" width="5.6955%" height="15" fill="rgb(216,222,49)" fg:x="103850" fg:w="8558"/><text x="69.3645%" y="1007.50">[libuni..</text></g><g><title>SystemDictionary::load_instance_class (17 samples, 0.01%)</title><rect x="96.0555%" y="917" width="0.0113%" height="15" fill="rgb(238,73,39)" fg:x="144331" fg:w="17"/><text x="96.3055%" y="927.50"></text></g><g><title>ConstantPool::klass_at_impl (30 samples, 0.02%)</title><rect x="96.0475%" y="965" width="0.0200%" height="15" fill="rgb(252,115,9)" fg:x="144319" fg:w="30"/><text x="96.2975%" y="975.50"></text></g><g><title>SystemDictionary::resolve_or_fail (28 samples, 0.02%)</title><rect x="96.0488%" y="949" width="0.0186%" height="15" fill="rgb(238,202,4)" fg:x="144321" fg:w="28"/><text x="96.2988%" y="959.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (27 samples, 0.02%)</title><rect x="96.0495%" y="933" width="0.0180%" height="15" fill="rgb(252,153,44)" fg:x="144322" fg:w="27"/><text x="96.2995%" y="943.50"></text></g><g><title>InstanceKlass::link_methods (16 samples, 0.01%)</title><rect x="96.0761%" y="933" width="0.0106%" height="15" fill="rgb(235,128,27)" fg:x="144362" fg:w="16"/><text x="96.3261%" y="943.50"></text></g><g><title>Rewriter::rewrite (21 samples, 0.01%)</title><rect x="96.0907%" y="933" width="0.0140%" height="15" fill="rgb(221,121,47)" fg:x="144384" fg:w="21"/><text x="96.3407%" y="943.50"></text></g><g><title>Rewriter::Rewriter (21 samples, 0.01%)</title><rect x="96.0907%" y="917" width="0.0140%" height="15" fill="rgb(247,211,47)" fg:x="144384" fg:w="21"/><text x="96.3407%" y="927.50"></text></g><g><title>InstanceKlass::link_class_impl (76 samples, 0.05%)</title><rect x="96.0708%" y="949" width="0.0506%" height="15" fill="rgb(252,47,49)" fg:x="144354" fg:w="76"/><text x="96.3208%" y="959.50"></text></g><g><title>InstanceKlass::initialize_impl (78 samples, 0.05%)</title><rect x="96.0701%" y="965" width="0.0519%" height="15" fill="rgb(219,119,53)" fg:x="144353" fg:w="78"/><text x="96.3201%" y="975.50"></text></g><g><title>InterpreterRuntime::_new (115 samples, 0.08%)</title><rect x="96.0468%" y="981" width="0.0765%" height="15" fill="rgb(243,165,53)" fg:x="144318" fg:w="115"/><text x="96.2968%" y="991.50"></text></g><g><title>ObjArrayAllocator::initialize (29 samples, 0.02%)</title><rect x="96.1506%" y="917" width="0.0193%" height="15" fill="rgb(230,12,35)" fg:x="144474" fg:w="29"/><text x="96.4006%" y="927.50"></text></g><g><title>CollectedHeap::array_allocate (42 samples, 0.03%)</title><rect x="96.1466%" y="949" width="0.0280%" height="15" fill="rgb(239,57,49)" fg:x="144468" fg:w="42"/><text x="96.3966%" y="959.50"></text></g><g><title>MemAllocator::allocate (41 samples, 0.03%)</title><rect x="96.1473%" y="933" width="0.0273%" height="15" fill="rgb(231,154,7)" fg:x="144469" fg:w="41"/><text x="96.3973%" y="943.50"></text></g><g><title>InstanceKlass::allocate_objArray (61 samples, 0.04%)</title><rect x="96.1393%" y="965" width="0.0406%" height="15" fill="rgb(248,81,34)" fg:x="144457" fg:w="61"/><text x="96.3893%" y="975.50"></text></g><g><title>InterpreterRuntime::anewarray (88 samples, 0.06%)</title><rect x="96.1233%" y="981" width="0.0586%" height="15" fill="rgb(247,9,5)" fg:x="144433" fg:w="88"/><text x="96.3733%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="96.1826%" y="709" width="0.0133%" height="15" fill="rgb(228,172,27)" fg:x="144522" fg:w="20"/><text x="96.4326%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="96.1826%" y="693" width="0.0133%" height="15" fill="rgb(230,57,44)" fg:x="144522" fg:w="20"/><text x="96.4326%" y="703.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="96.1826%" y="677" width="0.0133%" height="15" fill="rgb(249,35,22)" fg:x="144522" fg:w="20"/><text x="96.4326%" y="687.50"></text></g><g><title>__pthread_cond_wait (22 samples, 0.01%)</title><rect x="96.1819%" y="901" width="0.0146%" height="15" fill="rgb(250,137,27)" fg:x="144521" fg:w="22"/><text x="96.4319%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (22 samples, 0.01%)</title><rect x="96.1819%" y="885" width="0.0146%" height="15" fill="rgb(251,57,31)" fg:x="144521" fg:w="22"/><text x="96.4319%" y="895.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.01%)</title><rect x="96.1819%" y="869" width="0.0146%" height="15" fill="rgb(238,60,0)" fg:x="144521" fg:w="22"/><text x="96.4319%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="96.1819%" y="853" width="0.0146%" height="15" fill="rgb(242,185,39)" fg:x="144521" fg:w="22"/><text x="96.4319%" y="863.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="96.1826%" y="837" width="0.0140%" height="15" fill="rgb(240,63,43)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="847.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.01%)</title><rect x="96.1826%" y="821" width="0.0140%" height="15" fill="rgb(236,155,6)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="831.50"></text></g><g><title>do_futex (21 samples, 0.01%)</title><rect x="96.1826%" y="805" width="0.0140%" height="15" fill="rgb(215,11,29)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="815.50"></text></g><g><title>futex_wait (21 samples, 0.01%)</title><rect x="96.1826%" y="789" width="0.0140%" height="15" fill="rgb(228,180,48)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="799.50"></text></g><g><title>futex_wait_queue_me (21 samples, 0.01%)</title><rect x="96.1826%" y="773" width="0.0140%" height="15" fill="rgb(241,102,12)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="783.50"></text></g><g><title>schedule (21 samples, 0.01%)</title><rect x="96.1826%" y="757" width="0.0140%" height="15" fill="rgb(246,213,4)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="767.50"></text></g><g><title>__schedule (21 samples, 0.01%)</title><rect x="96.1826%" y="741" width="0.0140%" height="15" fill="rgb(218,134,35)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="751.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="96.1826%" y="725" width="0.0140%" height="15" fill="rgb(251,117,35)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="735.50"></text></g><g><title>Monitor::lock_without_safepoint_check (23 samples, 0.02%)</title><rect x="96.1819%" y="949" width="0.0153%" height="15" fill="rgb(206,156,45)" fg:x="144521" fg:w="23"/><text x="96.4319%" y="959.50"></text></g><g><title>Monitor::ILock (23 samples, 0.02%)</title><rect x="96.1819%" y="933" width="0.0153%" height="15" fill="rgb(218,52,27)" fg:x="144521" fg:w="23"/><text x="96.4319%" y="943.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.02%)</title><rect x="96.1819%" y="917" width="0.0153%" height="15" fill="rgb(238,83,36)" fg:x="144521" fg:w="23"/><text x="96.4319%" y="927.50"></text></g><g><title>InterpreterRuntime::at_safepoint (24 samples, 0.02%)</title><rect x="96.1819%" y="981" width="0.0160%" height="15" fill="rgb(218,53,43)" fg:x="144521" fg:w="24"/><text x="96.4319%" y="991.50"></text></g><g><title>SafepointSynchronize::block (24 samples, 0.02%)</title><rect x="96.1819%" y="965" width="0.0160%" height="15" fill="rgb(239,54,39)" fg:x="144521" fg:w="24"/><text x="96.4319%" y="975.50"></text></g><g><title>InterpreterRuntime::build_method_counters (21 samples, 0.01%)</title><rect x="96.1979%" y="981" width="0.0140%" height="15" fill="rgb(212,198,13)" fg:x="144545" fg:w="21"/><text x="96.4479%" y="991.50"></text></g><g><title>Method::build_method_counters (21 samples, 0.01%)</title><rect x="96.1979%" y="965" width="0.0140%" height="15" fill="rgb(234,54,46)" fg:x="144545" fg:w="21"/><text x="96.4479%" y="975.50"></text></g><g><title>JavaThread::pd_last_frame (16 samples, 0.01%)</title><rect x="96.2198%" y="949" width="0.0106%" height="15" fill="rgb(217,120,7)" fg:x="144578" fg:w="16"/><text x="96.4698%" y="959.50"></text></g><g><title>MethodData::allocate (17 samples, 0.01%)</title><rect x="96.2478%" y="901" width="0.0113%" height="15" fill="rgb(246,39,15)" fg:x="144620" fg:w="17"/><text x="96.4978%" y="911.50"></text></g><g><title>Method::build_interpreter_method_data (24 samples, 0.02%)</title><rect x="96.2478%" y="917" width="0.0160%" height="15" fill="rgb(242,143,31)" fg:x="144620" fg:w="24"/><text x="96.4978%" y="927.50"></text></g><g><title>TieredThresholdPolicy::call_event (38 samples, 0.03%)</title><rect x="96.2638%" y="917" width="0.0253%" height="15" fill="rgb(252,60,24)" fg:x="144644" fg:w="38"/><text x="96.5138%" y="927.50"></text></g><g><title>__pthread_cond_wait (17 samples, 0.01%)</title><rect x="96.3037%" y="805" width="0.0113%" height="15" fill="rgb(249,220,7)" fg:x="144704" fg:w="17"/><text x="96.5537%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="96.3037%" y="789" width="0.0113%" height="15" fill="rgb(236,67,13)" fg:x="144704" fg:w="17"/><text x="96.5537%" y="799.50"></text></g><g><title>futex_wait_cancelable (17 samples, 0.01%)</title><rect x="96.3037%" y="773" width="0.0113%" height="15" fill="rgb(210,62,39)" fg:x="144704" fg:w="17"/><text x="96.5537%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="96.3044%" y="757" width="0.0106%" height="15" fill="rgb(219,122,53)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="767.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="96.3044%" y="741" width="0.0106%" height="15" fill="rgb(218,87,25)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="751.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="96.3044%" y="725" width="0.0106%" height="15" fill="rgb(234,179,48)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="735.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="96.3044%" y="709" width="0.0106%" height="15" fill="rgb(248,90,0)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="719.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="96.3044%" y="693" width="0.0106%" height="15" fill="rgb(207,228,37)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="703.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="96.3044%" y="677" width="0.0106%" height="15" fill="rgb(235,214,15)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="687.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="96.3044%" y="661" width="0.0106%" height="15" fill="rgb(210,144,39)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="671.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="96.3044%" y="645" width="0.0106%" height="15" fill="rgb(222,67,41)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="655.50"></text></g><g><title>Monitor::ILock (19 samples, 0.01%)</title><rect x="96.3030%" y="837" width="0.0126%" height="15" fill="rgb(205,35,37)" fg:x="144703" fg:w="19"/><text x="96.5530%" y="847.50"></text></g><g><title>os::PlatformEvent::park (18 samples, 0.01%)</title><rect x="96.3037%" y="821" width="0.0120%" height="15" fill="rgb(216,125,40)" fg:x="144704" fg:w="18"/><text x="96.5537%" y="831.50"></text></g><g><title>Monitor::lock (23 samples, 0.02%)</title><rect x="96.3024%" y="853" width="0.0153%" height="15" fill="rgb(228,227,20)" fg:x="144702" fg:w="23"/><text x="96.5524%" y="863.50"></text></g><g><title>CompileBroker::compile_method_base (50 samples, 0.03%)</title><rect x="96.2944%" y="869" width="0.0333%" height="15" fill="rgb(242,173,45)" fg:x="144690" fg:w="50"/><text x="96.5444%" y="879.50"></text></g><g><title>CompileBroker::compile_method (58 samples, 0.04%)</title><rect x="96.2904%" y="885" width="0.0386%" height="15" fill="rgb(215,79,24)" fg:x="144684" fg:w="58"/><text x="96.5404%" y="895.50"></text></g><g><title>TieredThresholdPolicy::compile (61 samples, 0.04%)</title><rect x="96.2890%" y="917" width="0.0406%" height="15" fill="rgb(238,164,38)" fg:x="144682" fg:w="61"/><text x="96.5390%" y="927.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (59 samples, 0.04%)</title><rect x="96.2904%" y="901" width="0.0393%" height="15" fill="rgb(245,196,38)" fg:x="144684" fg:w="59"/><text x="96.5404%" y="911.50"></text></g><g><title>TieredThresholdPolicy::event (150 samples, 0.10%)</title><rect x="96.2305%" y="949" width="0.0998%" height="15" fill="rgb(231,217,29)" fg:x="144594" fg:w="150"/><text x="96.4805%" y="959.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (131 samples, 0.09%)</title><rect x="96.2431%" y="933" width="0.0872%" height="15" fill="rgb(245,6,4)" fg:x="144613" fg:w="131"/><text x="96.4931%" y="943.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (180 samples, 0.12%)</title><rect x="96.2118%" y="981" width="0.1198%" height="15" fill="rgb(214,76,49)" fg:x="144566" fg:w="180"/><text x="96.4618%" y="991.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (180 samples, 0.12%)</title><rect x="96.2118%" y="965" width="0.1198%" height="15" fill="rgb(205,96,12)" fg:x="144566" fg:w="180"/><text x="96.4618%" y="975.50"></text></g><g><title>JavaThread::pd_last_frame (34 samples, 0.02%)</title><rect x="96.3483%" y="965" width="0.0226%" height="15" fill="rgb(243,131,4)" fg:x="144771" fg:w="34"/><text x="96.5983%" y="975.50"></text></g><g><title>CodeCache::find_blob (32 samples, 0.02%)</title><rect x="96.3496%" y="949" width="0.0213%" height="15" fill="rgb(214,114,4)" fg:x="144773" fg:w="32"/><text x="96.5996%" y="959.50"></text></g><g><title>InterpreterRuntime::ldc (67 samples, 0.04%)</title><rect x="96.3316%" y="981" width="0.0446%" height="15" fill="rgb(234,215,15)" fg:x="144746" fg:w="67"/><text x="96.5816%" y="991.50"></text></g><g><title>InterpreterRuntime::newarray (19 samples, 0.01%)</title><rect x="96.3829%" y="981" width="0.0126%" height="15" fill="rgb(250,216,45)" fg:x="144823" fg:w="19"/><text x="96.6329%" y="991.50"></text></g><g><title>TypeArrayKlass::allocate_common (16 samples, 0.01%)</title><rect x="96.3849%" y="965" width="0.0106%" height="15" fill="rgb(236,128,4)" fg:x="144826" fg:w="16"/><text x="96.6349%" y="975.50"></text></g><g><title>LinkResolver::resolve_field_access (26 samples, 0.02%)</title><rect x="96.4088%" y="949" width="0.0173%" height="15" fill="rgb(234,50,33)" fg:x="144862" fg:w="26"/><text x="96.6588%" y="959.50"></text></g><g><title>LinkResolver::resolve_field (19 samples, 0.01%)</title><rect x="96.4135%" y="933" width="0.0126%" height="15" fill="rgb(253,131,37)" fg:x="144869" fg:w="19"/><text x="96.6635%" y="943.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (31 samples, 0.02%)</title><rect x="96.4068%" y="965" width="0.0206%" height="15" fill="rgb(218,55,27)" fg:x="144859" fg:w="31"/><text x="96.6568%" y="975.50"></text></g><g><title>ConstantPoolCacheEntry::set_direct_call (19 samples, 0.01%)</title><rect x="96.4381%" y="949" width="0.0126%" height="15" fill="rgb(241,220,28)" fg:x="144906" fg:w="19"/><text x="96.6881%" y="959.50"></text></g><g><title>SystemDictionary::resolve_or_fail (20 samples, 0.01%)</title><rect x="96.4681%" y="917" width="0.0133%" height="15" fill="rgb(241,90,48)" fg:x="144951" fg:w="20"/><text x="96.7181%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (20 samples, 0.01%)</title><rect x="96.4681%" y="901" width="0.0133%" height="15" fill="rgb(216,43,37)" fg:x="144951" fg:w="20"/><text x="96.7181%" y="911.50"></text></g><g><title>ConstantPool::klass_ref_at (27 samples, 0.02%)</title><rect x="96.4641%" y="933" width="0.0180%" height="15" fill="rgb(207,173,9)" fg:x="144945" fg:w="27"/><text x="96.7141%" y="943.50"></text></g><g><title>LinkResolver::linktime_resolve_special_method (21 samples, 0.01%)</title><rect x="96.4821%" y="933" width="0.0140%" height="15" fill="rgb(240,126,30)" fg:x="144972" fg:w="21"/><text x="96.7321%" y="943.50"></text></g><g><title>LinkResolver::resolve_interface_method (17 samples, 0.01%)</title><rect x="96.5053%" y="917" width="0.0113%" height="15" fill="rgb(228,178,53)" fg:x="145007" fg:w="17"/><text x="96.7553%" y="927.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (42 samples, 0.03%)</title><rect x="96.4960%" y="933" width="0.0280%" height="15" fill="rgb(217,33,4)" fg:x="144993" fg:w="42"/><text x="96.7460%" y="943.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (19 samples, 0.01%)</title><rect x="96.5373%" y="901" width="0.0126%" height="15" fill="rgb(206,124,34)" fg:x="145055" fg:w="19"/><text x="96.7873%" y="911.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (19 samples, 0.01%)</title><rect x="96.5373%" y="885" width="0.0126%" height="15" fill="rgb(208,122,53)" fg:x="145055" fg:w="19"/><text x="96.7873%" y="895.50"></text></g><g><title>InstanceKlass::find_method_index (19 samples, 0.01%)</title><rect x="96.5373%" y="869" width="0.0126%" height="15" fill="rgb(215,202,26)" fg:x="145055" fg:w="19"/><text x="96.7873%" y="879.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (31 samples, 0.02%)</title><rect x="96.5300%" y="917" width="0.0206%" height="15" fill="rgb(232,198,31)" fg:x="145044" fg:w="31"/><text x="96.7800%" y="927.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (41 samples, 0.03%)</title><rect x="96.5240%" y="933" width="0.0273%" height="15" fill="rgb(222,23,35)" fg:x="145035" fg:w="41"/><text x="96.7740%" y="943.50"></text></g><g><title>InstanceKlass::initialize_impl (32 samples, 0.02%)</title><rect x="96.5519%" y="917" width="0.0213%" height="15" fill="rgb(242,27,53)" fg:x="145077" fg:w="32"/><text x="96.8019%" y="927.50"></text></g><g><title>InstanceKlass::link_class_impl (31 samples, 0.02%)</title><rect x="96.5526%" y="901" width="0.0206%" height="15" fill="rgb(210,216,42)" fg:x="145078" fg:w="31"/><text x="96.8026%" y="911.50"></text></g><g><title>LinkResolver::resolve_static_call (53 samples, 0.04%)</title><rect x="96.5513%" y="933" width="0.0353%" height="15" fill="rgb(234,39,38)" fg:x="145076" fg:w="53"/><text x="96.8013%" y="943.50"></text></g><g><title>LinkResolver::resolve_method (19 samples, 0.01%)</title><rect x="96.5739%" y="917" width="0.0126%" height="15" fill="rgb(235,126,54)" fg:x="145110" fg:w="19"/><text x="96.8239%" y="927.50"></text></g><g><title>LinkResolver::resolve_invoke (195 samples, 0.13%)</title><rect x="96.4594%" y="949" width="0.1298%" height="15" fill="rgb(235,150,33)" fg:x="144938" fg:w="195"/><text x="96.7094%" y="959.50"></text></g><g><title>frame::interpreter_callee_receiver_addr (18 samples, 0.01%)</title><rect x="96.5905%" y="949" width="0.0120%" height="15" fill="rgb(249,49,53)" fg:x="145135" fg:w="18"/><text x="96.8405%" y="959.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (267 samples, 0.18%)</title><rect x="96.4275%" y="965" width="0.1777%" height="15" fill="rgb(238,60,50)" fg:x="144890" fg:w="267"/><text x="96.6775%" y="975.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (24 samples, 0.02%)</title><rect x="96.6065%" y="901" width="0.0160%" height="15" fill="rgb(210,5,2)" fg:x="145159" fg:w="24"/><text x="96.8565%" y="911.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (24 samples, 0.02%)</title><rect x="96.6065%" y="885" width="0.0160%" height="15" fill="rgb(214,207,24)" fg:x="145159" fg:w="24"/><text x="96.8565%" y="895.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (16 samples, 0.01%)</title><rect x="96.6118%" y="869" width="0.0106%" height="15" fill="rgb(228,173,2)" fg:x="145167" fg:w="16"/><text x="96.8618%" y="879.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (40 samples, 0.03%)</title><rect x="96.6065%" y="917" width="0.0266%" height="15" fill="rgb(244,26,8)" fg:x="145159" fg:w="40"/><text x="96.8565%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (53 samples, 0.04%)</title><rect x="96.6052%" y="965" width="0.0353%" height="15" fill="rgb(249,153,35)" fg:x="145157" fg:w="53"/><text x="96.8552%" y="975.50"></text></g><g><title>LinkResolver::resolve_invoke (52 samples, 0.03%)</title><rect x="96.6058%" y="949" width="0.0346%" height="15" fill="rgb(221,215,40)" fg:x="145158" fg:w="52"/><text x="96.8558%" y="959.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (52 samples, 0.03%)</title><rect x="96.6058%" y="933" width="0.0346%" height="15" fill="rgb(238,106,35)" fg:x="145158" fg:w="52"/><text x="96.8558%" y="943.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (362 samples, 0.24%)</title><rect x="96.4009%" y="981" width="0.2409%" height="15" fill="rgb(207,195,21)" fg:x="144850" fg:w="362"/><text x="96.6509%" y="991.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (16 samples, 0.01%)</title><rect x="96.6418%" y="981" width="0.0106%" height="15" fill="rgb(205,43,29)" fg:x="145212" fg:w="16"/><text x="96.8918%" y="991.50"></text></g><g><title>JVM_Clone (38 samples, 0.03%)</title><rect x="96.6604%" y="981" width="0.0253%" height="15" fill="rgb(236,35,21)" fg:x="145240" fg:w="38"/><text x="96.9104%" y="991.50"></text></g><g><title>JVM_FindLoadedClass (21 samples, 0.01%)</title><rect x="96.7023%" y="981" width="0.0140%" height="15" fill="rgb(244,74,8)" fg:x="145303" fg:w="21"/><text x="96.9523%" y="991.50"></text></g><g><title>JVM_GetClassDeclaredMethods (29 samples, 0.02%)</title><rect x="96.7323%" y="981" width="0.0193%" height="15" fill="rgb(241,229,7)" fg:x="145348" fg:w="29"/><text x="96.9823%" y="991.50"></text></g><g><title>get_class_declared_methods_helper (29 samples, 0.02%)</title><rect x="96.7323%" y="965" width="0.0193%" height="15" fill="rgb(212,223,25)" fg:x="145348" fg:w="29"/><text x="96.9823%" y="975.50"></text></g><g><title>Reflection::new_method (24 samples, 0.02%)</title><rect x="96.7356%" y="949" width="0.0160%" height="15" fill="rgb(234,58,53)" fg:x="145353" fg:w="24"/><text x="96.9856%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (23 samples, 0.02%)</title><rect x="96.7596%" y="677" width="0.0153%" height="15" fill="rgb(244,36,1)" fg:x="145389" fg:w="23"/><text x="97.0096%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (23 samples, 0.02%)</title><rect x="96.7596%" y="661" width="0.0153%" height="15" fill="rgb(222,40,54)" fg:x="145389" fg:w="23"/><text x="97.0096%" y="671.50"></text></g><g><title>native_write_msr (23 samples, 0.02%)</title><rect x="96.7596%" y="645" width="0.0153%" height="15" fill="rgb(210,207,39)" fg:x="145389" fg:w="23"/><text x="97.0096%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="96.7582%" y="821" width="0.0173%" height="15" fill="rgb(234,52,14)" fg:x="145387" fg:w="26"/><text x="97.0082%" y="831.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="96.7582%" y="805" width="0.0173%" height="15" fill="rgb(239,108,46)" fg:x="145387" fg:w="26"/><text x="97.0082%" y="815.50"></text></g><g><title>__x64_sys_futex (26 samples, 0.02%)</title><rect x="96.7582%" y="789" width="0.0173%" height="15" fill="rgb(252,223,5)" fg:x="145387" fg:w="26"/><text x="97.0082%" y="799.50"></text></g><g><title>do_futex (26 samples, 0.02%)</title><rect x="96.7582%" y="773" width="0.0173%" height="15" fill="rgb(227,181,11)" fg:x="145387" fg:w="26"/><text x="97.0082%" y="783.50"></text></g><g><title>futex_wait (26 samples, 0.02%)</title><rect x="96.7582%" y="757" width="0.0173%" height="15" fill="rgb(248,126,40)" fg:x="145387" fg:w="26"/><text x="97.0082%" y="767.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.02%)</title><rect x="96.7582%" y="741" width="0.0173%" height="15" fill="rgb(243,1,18)" fg:x="145387" fg:w="26"/><text x="97.0082%" y="751.50"></text></g><g><title>schedule (25 samples, 0.02%)</title><rect x="96.7589%" y="725" width="0.0166%" height="15" fill="rgb(214,145,23)" fg:x="145388" fg:w="25"/><text x="97.0089%" y="735.50"></text></g><g><title>__schedule (25 samples, 0.02%)</title><rect x="96.7589%" y="709" width="0.0166%" height="15" fill="rgb(241,218,11)" fg:x="145388" fg:w="25"/><text x="97.0089%" y="719.50"></text></g><g><title>finish_task_switch (25 samples, 0.02%)</title><rect x="96.7589%" y="693" width="0.0166%" height="15" fill="rgb(214,219,24)" fg:x="145388" fg:w="25"/><text x="97.0089%" y="703.50"></text></g><g><title>Monitor::wait (27 samples, 0.02%)</title><rect x="96.7582%" y="917" width="0.0180%" height="15" fill="rgb(235,32,7)" fg:x="145387" fg:w="27"/><text x="97.0082%" y="927.50"></text></g><g><title>Monitor::IWait (27 samples, 0.02%)</title><rect x="96.7582%" y="901" width="0.0180%" height="15" fill="rgb(227,121,28)" fg:x="145387" fg:w="27"/><text x="97.0082%" y="911.50"></text></g><g><title>os::PlatformEvent::park (27 samples, 0.02%)</title><rect x="96.7582%" y="885" width="0.0180%" height="15" fill="rgb(216,129,49)" fg:x="145387" fg:w="27"/><text x="97.0082%" y="895.50"></text></g><g><title>__pthread_cond_wait (27 samples, 0.02%)</title><rect x="96.7582%" y="869" width="0.0180%" height="15" fill="rgb(207,194,50)" fg:x="145387" fg:w="27"/><text x="97.0082%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.02%)</title><rect x="96.7582%" y="853" width="0.0180%" height="15" fill="rgb(207,4,18)" fg:x="145387" fg:w="27"/><text x="97.0082%" y="863.50"></text></g><g><title>futex_wait_cancelable (27 samples, 0.02%)</title><rect x="96.7582%" y="837" width="0.0180%" height="15" fill="rgb(213,50,30)" fg:x="145387" fg:w="27"/><text x="97.0082%" y="847.50"></text></g><g><title>VMThread::execute (31 samples, 0.02%)</title><rect x="96.7576%" y="933" width="0.0206%" height="15" fill="rgb(208,77,22)" fg:x="145386" fg:w="31"/><text x="97.0076%" y="943.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (34 samples, 0.02%)</title><rect x="96.7569%" y="949" width="0.0226%" height="15" fill="rgb(244,204,34)" fg:x="145385" fg:w="34"/><text x="97.0069%" y="959.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (44 samples, 0.03%)</title><rect x="96.7523%" y="965" width="0.0293%" height="15" fill="rgb(230,20,17)" fg:x="145378" fg:w="44"/><text x="97.0023%" y="975.50"></text></g><g><title>JVM_IHashCode (45 samples, 0.03%)</title><rect x="96.7523%" y="981" width="0.0299%" height="15" fill="rgb(237,83,15)" fg:x="145378" fg:w="45"/><text x="97.0023%" y="991.50"></text></g><g><title>JVM_InitClassName (17 samples, 0.01%)</title><rect x="96.7822%" y="981" width="0.0113%" height="15" fill="rgb(221,109,25)" fg:x="145423" fg:w="17"/><text x="97.0322%" y="991.50"></text></g><g><title>java_lang_Class::name (17 samples, 0.01%)</title><rect x="96.7822%" y="965" width="0.0113%" height="15" fill="rgb(205,194,52)" fg:x="145423" fg:w="17"/><text x="97.0322%" y="975.50"></text></g><g><title>JVM_InitStackTraceElementArray (18 samples, 0.01%)</title><rect x="96.7935%" y="981" width="0.0120%" height="15" fill="rgb(244,173,54)" fg:x="145440" fg:w="18"/><text x="97.0435%" y="991.50"></text></g><g><title>java_lang_Throwable::get_stack_trace_elements (18 samples, 0.01%)</title><rect x="96.7935%" y="965" width="0.0120%" height="15" fill="rgb(227,181,18)" fg:x="145440" fg:w="18"/><text x="97.0435%" y="975.50"></text></g><g><title>java_lang_StackTraceElement::fill_in (17 samples, 0.01%)</title><rect x="96.7942%" y="949" width="0.0113%" height="15" fill="rgb(238,36,30)" fg:x="145441" fg:w="17"/><text x="97.0442%" y="959.50"></text></g><g><title>JVM_IsInterrupted (28 samples, 0.02%)</title><rect x="96.8208%" y="981" width="0.0186%" height="15" fill="rgb(254,85,0)" fg:x="145481" fg:w="28"/><text x="97.0708%" y="991.50"></text></g><g><title>JVM_MonitorWait (25 samples, 0.02%)</title><rect x="96.8414%" y="981" width="0.0166%" height="15" fill="rgb(247,63,33)" fg:x="145512" fg:w="25"/><text x="97.0914%" y="991.50"></text></g><g><title>ObjectSynchronizer::wait (25 samples, 0.02%)</title><rect x="96.8414%" y="965" width="0.0166%" height="15" fill="rgb(220,7,54)" fg:x="145512" fg:w="25"/><text x="97.0914%" y="975.50"></text></g><g><title>ObjectMonitor::wait (22 samples, 0.01%)</title><rect x="96.8434%" y="949" width="0.0146%" height="15" fill="rgb(238,227,21)" fg:x="145515" fg:w="22"/><text x="97.0934%" y="959.50"></text></g><g><title>SymbolTable::add (24 samples, 0.02%)</title><rect x="96.9047%" y="837" width="0.0160%" height="15" fill="rgb(237,29,31)" fg:x="145607" fg:w="24"/><text x="97.1547%" y="847.50"></text></g><g><title>SymbolTable::basic_add (24 samples, 0.02%)</title><rect x="96.9047%" y="821" width="0.0160%" height="15" fill="rgb(211,21,50)" fg:x="145607" fg:w="24"/><text x="97.1547%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (306 samples, 0.20%)</title><rect x="96.8960%" y="853" width="0.2036%" height="15" fill="rgb(239,119,2)" fg:x="145594" fg:w="306"/><text x="97.1460%" y="863.50"></text></g><g><title>SymbolTable::lookup_only (269 samples, 0.18%)</title><rect x="96.9206%" y="837" width="0.1790%" height="15" fill="rgb(250,2,39)" fg:x="145631" fg:w="269"/><text x="97.1706%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool (318 samples, 0.21%)</title><rect x="96.8913%" y="869" width="0.2116%" height="15" fill="rgb(244,46,53)" fg:x="145587" fg:w="318"/><text x="97.1413%" y="879.50"></text></g><g><title>Method::allocate (17 samples, 0.01%)</title><rect x="97.1363%" y="837" width="0.0113%" height="15" fill="rgb(209,21,19)" fg:x="145955" fg:w="17"/><text x="97.3863%" y="847.50"></text></g><g><title>ClassFileParser::parse_methods (70 samples, 0.05%)</title><rect x="97.1110%" y="869" width="0.0466%" height="15" fill="rgb(236,145,4)" fg:x="145917" fg:w="70"/><text x="97.3610%" y="879.50"></text></g><g><title>ClassFileParser::parse_method (70 samples, 0.05%)</title><rect x="97.1110%" y="853" width="0.0466%" height="15" fill="rgb(220,133,36)" fg:x="145917" fg:w="70"/><text x="97.3610%" y="863.50"></text></g><g><title>ClassFileParser::ClassFileParser (418 samples, 0.28%)</title><rect x="96.8880%" y="901" width="0.2782%" height="15" fill="rgb(244,18,3)" fg:x="145582" fg:w="418"/><text x="97.1380%" y="911.50"></text></g><g><title>ClassFileParser::parse_stream (418 samples, 0.28%)</title><rect x="96.8880%" y="885" width="0.2782%" height="15" fill="rgb(232,171,48)" fg:x="145582" fg:w="418"/><text x="97.1380%" y="895.50"></text></g><g><title>HierarchyVisitor<FindMethodsByErasedSig>::run (26 samples, 0.02%)</title><rect x="97.1755%" y="853" width="0.0173%" height="15" fill="rgb(223,223,53)" fg:x="146014" fg:w="26"/><text x="97.4255%" y="863.50"></text></g><g><title>DefaultMethods::generate_default_methods (38 samples, 0.03%)</title><rect x="97.1709%" y="869" width="0.0253%" height="15" fill="rgb(246,92,13)" fg:x="146007" fg:w="38"/><text x="97.4209%" y="879.50"></text></g><g><title>ClassFileParser::fill_instance_klass (58 samples, 0.04%)</title><rect x="97.1662%" y="885" width="0.0386%" height="15" fill="rgb(229,171,10)" fg:x="146000" fg:w="58"/><text x="97.4162%" y="895.50"></text></g><g><title>ClassFileParser::create_instance_klass (62 samples, 0.04%)</title><rect x="97.1662%" y="901" width="0.0413%" height="15" fill="rgb(213,131,26)" fg:x="146000" fg:w="62"/><text x="97.4162%" y="911.50"></text></g><g><title>KlassFactory::create_from_stream (519 samples, 0.35%)</title><rect x="96.8874%" y="917" width="0.3454%" height="15" fill="rgb(242,87,54)" fg:x="145581" fg:w="519"/><text x="97.1374%" y="927.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (38 samples, 0.03%)</title><rect x="97.2075%" y="901" width="0.0253%" height="15" fill="rgb(237,21,35)" fg:x="146062" fg:w="38"/><text x="97.4575%" y="911.50"></text></g><g><title>klassVtable::compute_vtable_size_and_num_mirandas (16 samples, 0.01%)</title><rect x="97.2221%" y="885" width="0.0106%" height="15" fill="rgb(253,13,47)" fg:x="146084" fg:w="16"/><text x="97.4721%" y="895.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (31 samples, 0.02%)</title><rect x="97.2334%" y="917" width="0.0206%" height="15" fill="rgb(215,122,49)" fg:x="146101" fg:w="31"/><text x="97.4834%" y="927.50"></text></g><g><title>SystemDictionary::define_instance_class (26 samples, 0.02%)</title><rect x="97.2368%" y="901" width="0.0173%" height="15" fill="rgb(209,179,30)" fg:x="146106" fg:w="26"/><text x="97.4868%" y="911.50"></text></g><g><title>JVM_DefineClassWithSource (559 samples, 0.37%)</title><rect x="96.8827%" y="965" width="0.3720%" height="15" fill="rgb(235,100,24)" fg:x="145574" fg:w="559"/><text x="97.1327%" y="975.50"></text></g><g><title>jvm_define_class_common (559 samples, 0.37%)</title><rect x="96.8827%" y="949" width="0.3720%" height="15" fill="rgb(209,67,24)" fg:x="145574" fg:w="559"/><text x="97.1327%" y="959.50"></text></g><g><title>SystemDictionary::resolve_from_stream (552 samples, 0.37%)</title><rect x="96.8874%" y="933" width="0.3674%" height="15" fill="rgb(206,74,32)" fg:x="145581" fg:w="552"/><text x="97.1374%" y="943.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (582 samples, 0.39%)</title><rect x="96.8820%" y="981" width="0.3873%" height="15" fill="rgb(212,45,25)" fg:x="145573" fg:w="582"/><text x="97.1320%" y="991.50"></text></g><g><title>JVM_FindClassFromBootLoader (30 samples, 0.02%)</title><rect x="97.2700%" y="965" width="0.0200%" height="15" fill="rgb(239,26,3)" fg:x="146156" fg:w="30"/><text x="97.5200%" y="975.50"></text></g><g><title>SystemDictionary::resolve_or_null (28 samples, 0.02%)</title><rect x="97.2714%" y="949" width="0.0186%" height="15" fill="rgb(218,36,15)" fg:x="146158" fg:w="28"/><text x="97.5214%" y="959.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (28 samples, 0.02%)</title><rect x="97.2714%" y="933" width="0.0186%" height="15" fill="rgb(206,108,24)" fg:x="146158" fg:w="28"/><text x="97.5214%" y="943.50"></text></g><g><title>SystemDictionary::load_instance_class (23 samples, 0.02%)</title><rect x="97.2747%" y="917" width="0.0153%" height="15" fill="rgb(234,204,42)" fg:x="146163" fg:w="23"/><text x="97.5247%" y="927.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (37 samples, 0.02%)</title><rect x="97.2694%" y="981" width="0.0246%" height="15" fill="rgb(229,2,11)" fg:x="146155" fg:w="37"/><text x="97.5194%" y="991.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (26 samples, 0.02%)</title><rect x="97.3046%" y="981" width="0.0173%" height="15" fill="rgb(221,20,48)" fg:x="146208" fg:w="26"/><text x="97.5546%" y="991.50"></text></g><g><title>os_getParentPidAndTimings (26 samples, 0.02%)</title><rect x="97.3046%" y="965" width="0.0173%" height="15" fill="rgb(244,164,10)" fg:x="146208" fg:w="26"/><text x="97.5546%" y="975.50"></text></g><g><title>copy_process (37 samples, 0.02%)</title><rect x="97.3346%" y="869" width="0.0246%" height="15" fill="rgb(243,229,2)" fg:x="146253" fg:w="37"/><text x="97.5846%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.03%)</title><rect x="97.3339%" y="933" width="0.0313%" height="15" fill="rgb(232,131,37)" fg:x="146252" fg:w="47"/><text x="97.5839%" y="943.50"></text></g><g><title>do_syscall_64 (47 samples, 0.03%)</title><rect x="97.3339%" y="917" width="0.0313%" height="15" fill="rgb(217,156,11)" fg:x="146252" fg:w="47"/><text x="97.5839%" y="927.50"></text></g><g><title>__x64_sys_vfork (46 samples, 0.03%)</title><rect x="97.3346%" y="901" width="0.0306%" height="15" fill="rgb(239,99,48)" fg:x="146253" fg:w="46"/><text x="97.5846%" y="911.50"></text></g><g><title>kernel_clone (46 samples, 0.03%)</title><rect x="97.3346%" y="885" width="0.0306%" height="15" fill="rgb(231,209,9)" fg:x="146253" fg:w="46"/><text x="97.5846%" y="895.50"></text></g><g><title>calculate_sigpending (24 samples, 0.02%)</title><rect x="97.3652%" y="917" width="0.0160%" height="15" fill="rgb(254,97,27)" fg:x="146299" fg:w="24"/><text x="97.6152%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (462 samples, 0.31%)</title><rect x="97.4045%" y="885" width="0.3075%" height="15" fill="rgb(223,151,38)" fg:x="146358" fg:w="462"/><text x="97.6545%" y="895.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (460 samples, 0.31%)</title><rect x="97.4058%" y="869" width="0.3061%" height="15" fill="rgb(219,206,35)" fg:x="146360" fg:w="460"/><text x="97.6558%" y="879.50"></text></g><g><title>native_write_msr (460 samples, 0.31%)</title><rect x="97.4058%" y="853" width="0.3061%" height="15" fill="rgb(216,130,31)" fg:x="146360" fg:w="460"/><text x="97.6558%" y="863.50"></text></g><g><title>schedule_tail (511 samples, 0.34%)</title><rect x="97.3812%" y="917" width="0.3401%" height="15" fill="rgb(251,97,34)" fg:x="146323" fg:w="511"/><text x="97.6312%" y="927.50"></text></g><g><title>finish_task_switch (506 samples, 0.34%)</title><rect x="97.3845%" y="901" width="0.3368%" height="15" fill="rgb(246,159,47)" fg:x="146328" fg:w="506"/><text x="97.6345%" y="911.50"></text></g><g><title>__libc_vfork (587 samples, 0.39%)</title><rect x="97.3333%" y="949" width="0.3907%" height="15" fill="rgb(232,87,10)" fg:x="146251" fg:w="587"/><text x="97.5833%" y="959.50"></text></g><g><title>ret_from_fork (539 samples, 0.36%)</title><rect x="97.3652%" y="933" width="0.3587%" height="15" fill="rgb(249,1,37)" fg:x="146299" fg:w="539"/><text x="97.6152%" y="943.50"></text></g><g><title>load_elf_binary (25 samples, 0.02%)</title><rect x="97.7425%" y="821" width="0.0166%" height="15" fill="rgb(239,135,14)" fg:x="146866" fg:w="25"/><text x="97.9925%" y="831.50"></text></g><g><title>open_exec (17 samples, 0.01%)</title><rect x="97.7479%" y="805" width="0.0113%" height="15" fill="rgb(253,116,46)" fg:x="146874" fg:w="17"/><text x="97.9979%" y="815.50"></text></g><g><title>do_open_execat (16 samples, 0.01%)</title><rect x="97.7485%" y="789" width="0.0106%" height="15" fill="rgb(222,217,37)" fg:x="146875" fg:w="16"/><text x="97.9985%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (16 samples, 0.01%)</title><rect x="97.7658%" y="741" width="0.0106%" height="15" fill="rgb(252,96,8)" fg:x="146901" fg:w="16"/><text x="98.0158%" y="751.50"></text></g><g><title>sched_exec (21 samples, 0.01%)</title><rect x="97.7632%" y="821" width="0.0140%" height="15" fill="rgb(254,103,41)" fg:x="146897" fg:w="21"/><text x="98.0132%" y="831.50"></text></g><g><title>stop_one_cpu (19 samples, 0.01%)</title><rect x="97.7645%" y="805" width="0.0126%" height="15" fill="rgb(218,213,19)" fg:x="146899" fg:w="19"/><text x="98.0145%" y="815.50"></text></g><g><title>_cond_resched (19 samples, 0.01%)</title><rect x="97.7645%" y="789" width="0.0126%" height="15" fill="rgb(253,95,21)" fg:x="146899" fg:w="19"/><text x="98.0145%" y="799.50"></text></g><g><title>__schedule (19 samples, 0.01%)</title><rect x="97.7645%" y="773" width="0.0126%" height="15" fill="rgb(229,26,28)" fg:x="146899" fg:w="19"/><text x="98.0145%" y="783.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="97.7652%" y="757" width="0.0120%" height="15" fill="rgb(230,129,16)" fg:x="146900" fg:w="18"/><text x="98.0152%" y="767.50"></text></g><g><title>security_bprm_check (20 samples, 0.01%)</title><rect x="97.7772%" y="821" width="0.0133%" height="15" fill="rgb(236,126,17)" fg:x="146918" fg:w="20"/><text x="98.0272%" y="831.50"></text></g><g><title>tomoyo_bprm_check_security (20 samples, 0.01%)</title><rect x="97.7772%" y="805" width="0.0133%" height="15" fill="rgb(209,33,33)" fg:x="146918" fg:w="20"/><text x="98.0272%" y="815.50"></text></g><g><title>tomoyo_find_next_domain (20 samples, 0.01%)</title><rect x="97.7772%" y="789" width="0.0133%" height="15" fill="rgb(227,85,29)" fg:x="146918" fg:w="20"/><text x="98.0272%" y="799.50"></text></g><g><title>bprm_execve (100 samples, 0.07%)</title><rect x="97.7319%" y="837" width="0.0666%" height="15" fill="rgb(241,53,46)" fg:x="146850" fg:w="100"/><text x="97.9819%" y="847.50"></text></g><g><title>JDK_execvpe (134 samples, 0.09%)</title><rect x="97.7239%" y="933" width="0.0892%" height="15" fill="rgb(228,167,53)" fg:x="146838" fg:w="134"/><text x="97.9739%" y="943.50"></text></g><g><title>__GI_execve (134 samples, 0.09%)</title><rect x="97.7239%" y="917" width="0.0892%" height="15" fill="rgb(238,195,45)" fg:x="146838" fg:w="134"/><text x="97.9739%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (132 samples, 0.09%)</title><rect x="97.7252%" y="901" width="0.0878%" height="15" fill="rgb(252,124,45)" fg:x="146840" fg:w="132"/><text x="97.9752%" y="911.50"></text></g><g><title>do_syscall_64 (132 samples, 0.09%)</title><rect x="97.7252%" y="885" width="0.0878%" height="15" fill="rgb(251,38,35)" fg:x="146840" fg:w="132"/><text x="97.9752%" y="895.50"></text></g><g><title>__x64_sys_execve (132 samples, 0.09%)</title><rect x="97.7252%" y="869" width="0.0878%" height="15" fill="rgb(227,33,2)" fg:x="146840" fg:w="132"/><text x="97.9752%" y="879.50"></text></g><g><title>do_execveat_common (132 samples, 0.09%)</title><rect x="97.7252%" y="853" width="0.0878%" height="15" fill="rgb(223,157,46)" fg:x="146840" fg:w="132"/><text x="97.9752%" y="863.50"></text></g><g><title>__GI___open64_nocancel (31 samples, 0.02%)</title><rect x="97.8344%" y="901" width="0.0206%" height="15" fill="rgb(222,78,41)" fg:x="147004" fg:w="31"/><text x="98.0844%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.02%)</title><rect x="97.8351%" y="885" width="0.0200%" height="15" fill="rgb(248,176,11)" fg:x="147005" fg:w="30"/><text x="98.0851%" y="895.50"></text></g><g><title>do_syscall_64 (30 samples, 0.02%)</title><rect x="97.8351%" y="869" width="0.0200%" height="15" fill="rgb(241,221,18)" fg:x="147005" fg:w="30"/><text x="98.0851%" y="879.50"></text></g><g><title>__x64_sys_openat (30 samples, 0.02%)</title><rect x="97.8351%" y="853" width="0.0200%" height="15" fill="rgb(218,85,22)" fg:x="147005" fg:w="30"/><text x="98.0851%" y="863.50"></text></g><g><title>do_sys_openat2 (30 samples, 0.02%)</title><rect x="97.8351%" y="837" width="0.0200%" height="15" fill="rgb(222,223,7)" fg:x="147005" fg:w="30"/><text x="98.0851%" y="847.50"></text></g><g><title>getname_flags.part.0 (17 samples, 0.01%)</title><rect x="97.8437%" y="821" width="0.0113%" height="15" fill="rgb(254,59,39)" fg:x="147018" fg:w="17"/><text x="98.0937%" y="831.50"></text></g><g><title>__opendir (32 samples, 0.02%)</title><rect x="97.8344%" y="917" width="0.0213%" height="15" fill="rgb(247,100,27)" fg:x="147004" fg:w="32"/><text x="98.0844%" y="927.50"></text></g><g><title>closeDescriptors (54 samples, 0.04%)</title><rect x="97.8217%" y="933" width="0.0359%" height="15" fill="rgb(237,207,10)" fg:x="146985" fg:w="54"/><text x="98.0717%" y="943.50"></text></g><g><title>__GI___dup2 (16 samples, 0.01%)</title><rect x="97.8597%" y="917" width="0.0106%" height="15" fill="rgb(220,121,28)" fg:x="147042" fg:w="16"/><text x="98.1097%" y="927.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (832 samples, 0.55%)</title><rect x="97.3219%" y="981" width="0.5537%" height="15" fill="rgb(213,223,20)" fg:x="146234" fg:w="832"/><text x="97.5719%" y="991.50"></text></g><g><title>vforkChild (816 samples, 0.54%)</title><rect x="97.3326%" y="965" width="0.5431%" height="15" fill="rgb(205,121,27)" fg:x="146250" fg:w="816"/><text x="97.5826%" y="975.50"></text></g><g><title>childProcess (228 samples, 0.15%)</title><rect x="97.7239%" y="949" width="0.1517%" height="15" fill="rgb(253,24,53)" fg:x="146838" fg:w="228"/><text x="97.9739%" y="959.50"></text></g><g><title>moveDescriptor (26 samples, 0.02%)</title><rect x="97.8584%" y="933" width="0.0173%" height="15" fill="rgb(224,224,47)" fg:x="147040" fg:w="26"/><text x="98.1084%" y="943.50"></text></g><g><title>Java_java_lang_Throwable_fillInStackTrace (25 samples, 0.02%)</title><rect x="97.8757%" y="981" width="0.0166%" height="15" fill="rgb(250,125,36)" fg:x="147066" fg:w="25"/><text x="98.1257%" y="991.50"></text></g><g><title>JVM_FillInStackTrace (25 samples, 0.02%)</title><rect x="97.8757%" y="965" width="0.0166%" height="15" fill="rgb(240,144,38)" fg:x="147066" fg:w="25"/><text x="98.1257%" y="975.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (25 samples, 0.02%)</title><rect x="97.8757%" y="949" width="0.0166%" height="15" fill="rgb(250,15,50)" fg:x="147066" fg:w="25"/><text x="98.1257%" y="959.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (24 samples, 0.02%)</title><rect x="97.8763%" y="933" width="0.0160%" height="15" fill="rgb(210,24,26)" fg:x="147067" fg:w="24"/><text x="98.1263%" y="943.50"></text></g><g><title>MHN_resolve_Mem (18 samples, 0.01%)</title><rect x="97.8936%" y="981" width="0.0120%" height="15" fill="rgb(234,53,53)" fg:x="147093" fg:w="18"/><text x="98.1436%" y="991.50"></text></g><g><title>InstanceKlass::allocate_objArray (16 samples, 0.01%)</title><rect x="97.9063%" y="965" width="0.0106%" height="15" fill="rgb(208,108,28)" fg:x="147112" fg:w="16"/><text x="98.1563%" y="975.50"></text></g><g><title>CollectedHeap::array_allocate (16 samples, 0.01%)</title><rect x="97.9063%" y="949" width="0.0106%" height="15" fill="rgb(227,143,7)" fg:x="147112" fg:w="16"/><text x="98.1563%" y="959.50"></text></g><g><title>MemAllocator::allocate (16 samples, 0.01%)</title><rect x="97.9063%" y="933" width="0.0106%" height="15" fill="rgb(238,189,38)" fg:x="147112" fg:w="16"/><text x="98.1563%" y="943.50"></text></g><g><title>alloc_pages_vma (22 samples, 0.01%)</title><rect x="97.9182%" y="821" width="0.0146%" height="15" fill="rgb(222,69,15)" fg:x="147130" fg:w="22"/><text x="98.1682%" y="831.50"></text></g><g><title>__alloc_pages_nodemask (22 samples, 0.01%)</title><rect x="97.9182%" y="805" width="0.0146%" height="15" fill="rgb(213,169,7)" fg:x="147130" fg:w="22"/><text x="98.1682%" y="815.50"></text></g><g><title>get_page_from_freelist (22 samples, 0.01%)</title><rect x="97.9182%" y="789" width="0.0146%" height="15" fill="rgb(251,219,4)" fg:x="147130" fg:w="22"/><text x="98.1682%" y="799.50"></text></g><g><title>prep_new_page (21 samples, 0.01%)</title><rect x="97.9189%" y="773" width="0.0140%" height="15" fill="rgb(241,55,40)" fg:x="147131" fg:w="21"/><text x="98.1689%" y="783.50"></text></g><g><title>kernel_init_free_pages (21 samples, 0.01%)</title><rect x="97.9189%" y="757" width="0.0140%" height="15" fill="rgb(243,57,30)" fg:x="147131" fg:w="21"/><text x="98.1689%" y="767.50"></text></g><g><title>clear_page_erms (21 samples, 0.01%)</title><rect x="97.9189%" y="741" width="0.0140%" height="15" fill="rgb(234,50,30)" fg:x="147131" fg:w="21"/><text x="98.1689%" y="751.50"></text></g><g><title>OptoRuntime::new_array_C (53 samples, 0.04%)</title><rect x="97.9056%" y="981" width="0.0353%" height="15" fill="rgb(239,23,42)" fg:x="147111" fg:w="53"/><text x="98.1556%" y="991.50"></text></g><g><title>TypeArrayKlass::allocate_common (36 samples, 0.02%)</title><rect x="97.9169%" y="965" width="0.0240%" height="15" fill="rgb(217,38,19)" fg:x="147128" fg:w="36"/><text x="98.1669%" y="975.50"></text></g><g><title>CollectedHeap::array_allocate (36 samples, 0.02%)</title><rect x="97.9169%" y="949" width="0.0240%" height="15" fill="rgb(215,179,16)" fg:x="147128" fg:w="36"/><text x="98.1669%" y="959.50"></text></g><g><title>MemAllocator::allocate (36 samples, 0.02%)</title><rect x="97.9169%" y="933" width="0.0240%" height="15" fill="rgb(254,21,37)" fg:x="147128" fg:w="36"/><text x="98.1669%" y="943.50"></text></g><g><title>ObjArrayAllocator::initialize (35 samples, 0.02%)</title><rect x="97.9176%" y="917" width="0.0233%" height="15" fill="rgb(219,207,48)" fg:x="147129" fg:w="35"/><text x="98.1676%" y="927.50"></text></g><g><title>asm_exc_page_fault (34 samples, 0.02%)</title><rect x="97.9182%" y="901" width="0.0226%" height="15" fill="rgb(227,225,41)" fg:x="147130" fg:w="34"/><text x="98.1682%" y="911.50"></text></g><g><title>exc_page_fault (34 samples, 0.02%)</title><rect x="97.9182%" y="885" width="0.0226%" height="15" fill="rgb(223,130,1)" fg:x="147130" fg:w="34"/><text x="98.1682%" y="895.50"></text></g><g><title>do_user_addr_fault (34 samples, 0.02%)</title><rect x="97.9182%" y="869" width="0.0226%" height="15" fill="rgb(249,54,42)" fg:x="147130" fg:w="34"/><text x="98.1682%" y="879.50"></text></g><g><title>handle_mm_fault (34 samples, 0.02%)</title><rect x="97.9182%" y="853" width="0.0226%" height="15" fill="rgb(248,69,25)" fg:x="147130" fg:w="34"/><text x="98.1682%" y="863.50"></text></g><g><title>do_huge_pmd_anonymous_page (34 samples, 0.02%)</title><rect x="97.9182%" y="837" width="0.0226%" height="15" fill="rgb(234,21,32)" fg:x="147130" fg:w="34"/><text x="98.1682%" y="847.50"></text></g><g><title>alloc_pages_vma (26 samples, 0.02%)</title><rect x="97.9495%" y="821" width="0.0173%" height="15" fill="rgb(252,136,6)" fg:x="147177" fg:w="26"/><text x="98.1995%" y="831.50"></text></g><g><title>__alloc_pages_nodemask (26 samples, 0.02%)</title><rect x="97.9495%" y="805" width="0.0173%" height="15" fill="rgb(245,87,12)" fg:x="147177" fg:w="26"/><text x="98.1995%" y="815.50"></text></g><g><title>get_page_from_freelist (26 samples, 0.02%)</title><rect x="97.9495%" y="789" width="0.0173%" height="15" fill="rgb(208,12,15)" fg:x="147177" fg:w="26"/><text x="98.1995%" y="799.50"></text></g><g><title>prep_new_page (25 samples, 0.02%)</title><rect x="97.9502%" y="773" width="0.0166%" height="15" fill="rgb(250,98,2)" fg:x="147178" fg:w="25"/><text x="98.2002%" y="783.50"></text></g><g><title>kernel_init_free_pages (24 samples, 0.02%)</title><rect x="97.9509%" y="757" width="0.0160%" height="15" fill="rgb(205,213,15)" fg:x="147179" fg:w="24"/><text x="98.2009%" y="767.50"></text></g><g><title>clear_page_erms (24 samples, 0.02%)</title><rect x="97.9509%" y="741" width="0.0160%" height="15" fill="rgb(248,192,44)" fg:x="147179" fg:w="24"/><text x="98.2009%" y="751.50"></text></g><g><title>clear_huge_page (23 samples, 0.02%)</title><rect x="97.9668%" y="821" width="0.0153%" height="15" fill="rgb(221,89,17)" fg:x="147203" fg:w="23"/><text x="98.2168%" y="831.50"></text></g><g><title>clear_subpage (23 samples, 0.02%)</title><rect x="97.9668%" y="805" width="0.0153%" height="15" fill="rgb(209,55,3)" fg:x="147203" fg:w="23"/><text x="98.2168%" y="815.50"></text></g><g><title>clear_page_erms (21 samples, 0.01%)</title><rect x="97.9682%" y="789" width="0.0140%" height="15" fill="rgb(247,23,45)" fg:x="147205" fg:w="21"/><text x="98.2182%" y="799.50"></text></g><g><title>InstanceKlass::allocate_instance (52 samples, 0.03%)</title><rect x="97.9495%" y="965" width="0.0346%" height="15" fill="rgb(235,152,23)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="975.50"></text></g><g><title>CollectedHeap::obj_allocate (52 samples, 0.03%)</title><rect x="97.9495%" y="949" width="0.0346%" height="15" fill="rgb(244,63,13)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="959.50"></text></g><g><title>MemAllocator::allocate (52 samples, 0.03%)</title><rect x="97.9495%" y="933" width="0.0346%" height="15" fill="rgb(227,30,37)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="943.50"></text></g><g><title>ObjAllocator::initialize (52 samples, 0.03%)</title><rect x="97.9495%" y="917" width="0.0346%" height="15" fill="rgb(224,49,42)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="927.50"></text></g><g><title>asm_exc_page_fault (52 samples, 0.03%)</title><rect x="97.9495%" y="901" width="0.0346%" height="15" fill="rgb(218,129,5)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="911.50"></text></g><g><title>exc_page_fault (52 samples, 0.03%)</title><rect x="97.9495%" y="885" width="0.0346%" height="15" fill="rgb(240,199,54)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="895.50"></text></g><g><title>do_user_addr_fault (52 samples, 0.03%)</title><rect x="97.9495%" y="869" width="0.0346%" height="15" fill="rgb(234,31,13)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="879.50"></text></g><g><title>handle_mm_fault (52 samples, 0.03%)</title><rect x="97.9495%" y="853" width="0.0346%" height="15" fill="rgb(219,73,54)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="863.50"></text></g><g><title>do_huge_pmd_anonymous_page (52 samples, 0.03%)</title><rect x="97.9495%" y="837" width="0.0346%" height="15" fill="rgb(251,162,10)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="847.50"></text></g><g><title>OptoRuntime::new_instance_C (53 samples, 0.04%)</title><rect x="97.9495%" y="981" width="0.0353%" height="15" fill="rgb(240,138,47)" fg:x="147177" fg:w="53"/><text x="98.1995%" y="991.50"></text></g><g><title>TieredThresholdPolicy::event (41 samples, 0.03%)</title><rect x="97.9981%" y="965" width="0.0273%" height="15" fill="rgb(216,138,26)" fg:x="147250" fg:w="41"/><text x="98.2481%" y="975.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (32 samples, 0.02%)</title><rect x="98.0041%" y="949" width="0.0213%" height="15" fill="rgb(243,17,35)" fg:x="147259" fg:w="32"/><text x="98.2541%" y="959.50"></text></g><g><title>TieredThresholdPolicy::compile (24 samples, 0.02%)</title><rect x="98.0094%" y="933" width="0.0160%" height="15" fill="rgb(241,60,18)" fg:x="147267" fg:w="24"/><text x="98.2594%" y="943.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (24 samples, 0.02%)</title><rect x="98.0094%" y="917" width="0.0160%" height="15" fill="rgb(234,2,44)" fg:x="147267" fg:w="24"/><text x="98.2594%" y="927.50"></text></g><g><title>CompileBroker::compile_method (24 samples, 0.02%)</title><rect x="98.0094%" y="901" width="0.0160%" height="15" fill="rgb(225,225,33)" fg:x="147267" fg:w="24"/><text x="98.2594%" y="911.50"></text></g><g><title>Runtime1::counter_overflow (73 samples, 0.05%)</title><rect x="97.9848%" y="981" width="0.0486%" height="15" fill="rgb(234,50,31)" fg:x="147230" fg:w="73"/><text x="98.2348%" y="991.50"></text></g><g><title>Runtime1::monitorenter (27 samples, 0.02%)</title><rect x="98.0340%" y="981" width="0.0180%" height="15" fill="rgb(249,6,25)" fg:x="147304" fg:w="27"/><text x="98.2840%" y="991.50"></text></g><g><title>alloc_pages_vma (26 samples, 0.02%)</title><rect x="98.0627%" y="821" width="0.0173%" height="15" fill="rgb(241,5,17)" fg:x="147347" fg:w="26"/><text x="98.3127%" y="831.50"></text></g><g><title>__alloc_pages_nodemask (26 samples, 0.02%)</title><rect x="98.0627%" y="805" width="0.0173%" height="15" fill="rgb(207,116,10)" fg:x="147347" fg:w="26"/><text x="98.3127%" y="815.50"></text></g><g><title>get_page_from_freelist (26 samples, 0.02%)</title><rect x="98.0627%" y="789" width="0.0173%" height="15" fill="rgb(222,128,18)" fg:x="147347" fg:w="26"/><text x="98.3127%" y="799.50"></text></g><g><title>prep_new_page (26 samples, 0.02%)</title><rect x="98.0627%" y="773" width="0.0173%" height="15" fill="rgb(229,109,25)" fg:x="147347" fg:w="26"/><text x="98.3127%" y="783.50"></text></g><g><title>kernel_init_free_pages (26 samples, 0.02%)</title><rect x="98.0627%" y="757" width="0.0173%" height="15" fill="rgb(222,102,25)" fg:x="147347" fg:w="26"/><text x="98.3127%" y="767.50"></text></g><g><title>clear_page_erms (26 samples, 0.02%)</title><rect x="98.0627%" y="741" width="0.0173%" height="15" fill="rgb(239,211,5)" fg:x="147347" fg:w="26"/><text x="98.3127%" y="751.50"></text></g><g><title>ObjAllocator::initialize (42 samples, 0.03%)</title><rect x="98.0627%" y="917" width="0.0280%" height="15" fill="rgb(223,136,26)" fg:x="147347" fg:w="42"/><text x="98.3127%" y="927.50"></text></g><g><title>asm_exc_page_fault (42 samples, 0.03%)</title><rect x="98.0627%" y="901" width="0.0280%" height="15" fill="rgb(227,30,15)" fg:x="147347" fg:w="42"/><text x="98.3127%" y="911.50"></text></g><g><title>exc_page_fault (42 samples, 0.03%)</title><rect x="98.0627%" y="885" width="0.0280%" height="15" fill="rgb(247,76,4)" fg:x="147347" fg:w="42"/><text x="98.3127%" y="895.50"></text></g><g><title>do_user_addr_fault (42 samples, 0.03%)</title><rect x="98.0627%" y="869" width="0.0280%" height="15" fill="rgb(245,38,48)" fg:x="147347" fg:w="42"/><text x="98.3127%" y="879.50"></text></g><g><title>handle_mm_fault (42 samples, 0.03%)</title><rect x="98.0627%" y="853" width="0.0280%" height="15" fill="rgb(210,220,14)" fg:x="147347" fg:w="42"/><text x="98.3127%" y="863.50"></text></g><g><title>do_huge_pmd_anonymous_page (42 samples, 0.03%)</title><rect x="98.0627%" y="837" width="0.0280%" height="15" fill="rgb(224,60,51)" fg:x="147347" fg:w="42"/><text x="98.3127%" y="847.50"></text></g><g><title>clear_huge_page (16 samples, 0.01%)</title><rect x="98.0800%" y="821" width="0.0106%" height="15" fill="rgb(212,133,49)" fg:x="147373" fg:w="16"/><text x="98.3300%" y="831.50"></text></g><g><title>Runtime1::new_instance (48 samples, 0.03%)</title><rect x="98.0593%" y="981" width="0.0319%" height="15" fill="rgb(231,39,22)" fg:x="147342" fg:w="48"/><text x="98.3093%" y="991.50"></text></g><g><title>InstanceKlass::allocate_instance (48 samples, 0.03%)</title><rect x="98.0593%" y="965" width="0.0319%" height="15" fill="rgb(236,173,22)" fg:x="147342" fg:w="48"/><text x="98.3093%" y="975.50"></text></g><g><title>CollectedHeap::obj_allocate (48 samples, 0.03%)</title><rect x="98.0593%" y="949" width="0.0319%" height="15" fill="rgb(210,70,0)" fg:x="147342" fg:w="48"/><text x="98.3093%" y="959.50"></text></g><g><title>MemAllocator::allocate (48 samples, 0.03%)</title><rect x="98.0593%" y="933" width="0.0319%" height="15" fill="rgb(215,170,11)" fg:x="147342" fg:w="48"/><text x="98.3093%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="98.1139%" y="741" width="0.0133%" height="15" fill="rgb(220,154,28)" fg:x="147424" fg:w="20"/><text x="98.3639%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="98.1139%" y="725" width="0.0133%" height="15" fill="rgb(240,160,41)" fg:x="147424" fg:w="20"/><text x="98.3639%" y="735.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="98.1139%" y="709" width="0.0133%" height="15" fill="rgb(243,215,41)" fg:x="147424" fg:w="20"/><text x="98.3639%" y="719.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="98.1139%" y="757" width="0.0140%" height="15" fill="rgb(214,208,31)" fg:x="147424" fg:w="21"/><text x="98.3639%" y="767.50"></text></g><g><title>__pthread_cond_wait (26 samples, 0.02%)</title><rect x="98.1132%" y="933" width="0.0173%" height="15" fill="rgb(247,57,22)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="943.50"></text></g><g><title>__pthread_cond_wait_common (26 samples, 0.02%)</title><rect x="98.1132%" y="917" width="0.0173%" height="15" fill="rgb(228,73,52)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="927.50"></text></g><g><title>futex_wait_cancelable (26 samples, 0.02%)</title><rect x="98.1132%" y="901" width="0.0173%" height="15" fill="rgb(252,60,9)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="98.1132%" y="885" width="0.0173%" height="15" fill="rgb(233,9,51)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="895.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="98.1132%" y="869" width="0.0173%" height="15" fill="rgb(223,67,14)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="879.50"></text></g><g><title>__x64_sys_futex (26 samples, 0.02%)</title><rect x="98.1132%" y="853" width="0.0173%" height="15" fill="rgb(222,86,2)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="863.50"></text></g><g><title>do_futex (26 samples, 0.02%)</title><rect x="98.1132%" y="837" width="0.0173%" height="15" fill="rgb(243,58,54)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="847.50"></text></g><g><title>futex_wait (26 samples, 0.02%)</title><rect x="98.1132%" y="821" width="0.0173%" height="15" fill="rgb(210,200,39)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="831.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.02%)</title><rect x="98.1132%" y="805" width="0.0173%" height="15" fill="rgb(238,135,9)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="815.50"></text></g><g><title>schedule (26 samples, 0.02%)</title><rect x="98.1132%" y="789" width="0.0173%" height="15" fill="rgb(232,179,7)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="799.50"></text></g><g><title>__schedule (26 samples, 0.02%)</title><rect x="98.1132%" y="773" width="0.0173%" height="15" fill="rgb(245,65,41)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="783.50"></text></g><g><title>ObjectMonitor::enter (52 samples, 0.03%)</title><rect x="98.0966%" y="965" width="0.0346%" height="15" fill="rgb(227,43,8)" fg:x="147398" fg:w="52"/><text x="98.3466%" y="975.50"></text></g><g><title>os::PlatformEvent::park (42 samples, 0.03%)</title><rect x="98.1033%" y="949" width="0.0280%" height="15" fill="rgb(235,91,14)" fg:x="147408" fg:w="42"/><text x="98.3533%" y="959.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (55 samples, 0.04%)</title><rect x="98.0953%" y="981" width="0.0366%" height="15" fill="rgb(235,219,31)" fg:x="147396" fg:w="55"/><text x="98.3453%" y="991.50"></text></g><g><title>SharedRuntime::handle_wrong_method_ic_miss (44 samples, 0.03%)</title><rect x="98.1432%" y="981" width="0.0293%" height="15" fill="rgb(227,121,25)" fg:x="147468" fg:w="44"/><text x="98.3932%" y="991.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (41 samples, 0.03%)</title><rect x="98.1452%" y="965" width="0.0273%" height="15" fill="rgb(254,129,24)" fg:x="147471" fg:w="41"/><text x="98.3952%" y="975.50"></text></g><g><title>InstanceKlass::link_class_impl (18 samples, 0.01%)</title><rect x="98.1904%" y="949" width="0.0120%" height="15" fill="rgb(226,144,49)" fg:x="147539" fg:w="18"/><text x="98.4404%" y="959.50"></text></g><g><title>ClassFileParser::parse_constant_pool (17 samples, 0.01%)</title><rect x="98.2031%" y="901" width="0.0113%" height="15" fill="rgb(214,187,32)" fg:x="147558" fg:w="17"/><text x="98.4531%" y="911.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (16 samples, 0.01%)</title><rect x="98.2038%" y="885" width="0.0106%" height="15" fill="rgb(243,129,46)" fg:x="147559" fg:w="16"/><text x="98.4538%" y="895.50"></text></g><g><title>ClassFileParser::ClassFileParser (30 samples, 0.02%)</title><rect x="98.2024%" y="933" width="0.0200%" height="15" fill="rgb(221,185,35)" fg:x="147557" fg:w="30"/><text x="98.4524%" y="943.50"></text></g><g><title>ClassFileParser::parse_stream (30 samples, 0.02%)</title><rect x="98.2024%" y="917" width="0.0200%" height="15" fill="rgb(205,0,32)" fg:x="147557" fg:w="30"/><text x="98.4524%" y="927.50"></text></g><g><title>KlassFactory::create_from_stream (47 samples, 0.03%)</title><rect x="98.2024%" y="949" width="0.0313%" height="15" fill="rgb(229,179,12)" fg:x="147557" fg:w="47"/><text x="98.4524%" y="959.50"></text></g><g><title>SystemDictionary::parse_stream (77 samples, 0.05%)</title><rect x="98.1884%" y="965" width="0.0512%" height="15" fill="rgb(252,107,19)" fg:x="147536" fg:w="77"/><text x="98.4384%" y="975.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (80 samples, 0.05%)</title><rect x="98.1871%" y="981" width="0.0532%" height="15" fill="rgb(220,95,27)" fg:x="147534" fg:w="80"/><text x="98.4371%" y="991.50"></text></g><g><title>JVM_DefineClass (24 samples, 0.02%)</title><rect x="98.2404%" y="965" width="0.0160%" height="15" fill="rgb(240,113,40)" fg:x="147614" fg:w="24"/><text x="98.4904%" y="975.50"></text></g><g><title>jvm_define_class_common (24 samples, 0.02%)</title><rect x="98.2404%" y="949" width="0.0160%" height="15" fill="rgb(208,4,43)" fg:x="147614" fg:w="24"/><text x="98.4904%" y="959.50"></text></g><g><title>SystemDictionary::resolve_from_stream (20 samples, 0.01%)</title><rect x="98.2430%" y="933" width="0.0133%" height="15" fill="rgb(247,189,30)" fg:x="147618" fg:w="20"/><text x="98.4930%" y="943.50"></text></g><g><title>Unsafe_DefineClass0 (25 samples, 0.02%)</title><rect x="98.2404%" y="981" width="0.0166%" height="15" fill="rgb(231,157,17)" fg:x="147614" fg:w="25"/><text x="98.4904%" y="991.50"></text></g><g><title>dequeue_task_fair (17 samples, 0.01%)</title><rect x="98.2816%" y="773" width="0.0113%" height="15" fill="rgb(224,139,6)" fg:x="147676" fg:w="17"/><text x="98.5316%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (283 samples, 0.19%)</title><rect x="98.2956%" y="757" width="0.1883%" height="15" fill="rgb(223,83,16)" fg:x="147697" fg:w="283"/><text x="98.5456%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (276 samples, 0.18%)</title><rect x="98.3003%" y="741" width="0.1837%" height="15" fill="rgb(232,211,20)" fg:x="147704" fg:w="276"/><text x="98.5503%" y="751.50"></text></g><g><title>native_write_msr (274 samples, 0.18%)</title><rect x="98.3016%" y="725" width="0.1824%" height="15" fill="rgb(225,203,35)" fg:x="147706" fg:w="274"/><text x="98.5516%" y="735.50"></text></g><g><title>finish_task_switch (296 samples, 0.20%)</title><rect x="98.2929%" y="773" width="0.1970%" height="15" fill="rgb(215,211,44)" fg:x="147693" fg:w="296"/><text x="98.5429%" y="783.50"></text></g><g><title>futex_wait_queue_me (342 samples, 0.23%)</title><rect x="98.2743%" y="821" width="0.2276%" height="15" fill="rgb(248,213,26)" fg:x="147665" fg:w="342"/><text x="98.5243%" y="831.50"></text></g><g><title>schedule (339 samples, 0.23%)</title><rect x="98.2763%" y="805" width="0.2256%" height="15" fill="rgb(214,23,52)" fg:x="147668" fg:w="339"/><text x="98.5263%" y="815.50"></text></g><g><title>__schedule (338 samples, 0.22%)</title><rect x="98.2770%" y="789" width="0.2249%" height="15" fill="rgb(225,173,50)" fg:x="147669" fg:w="338"/><text x="98.5270%" y="799.50"></text></g><g><title>do_syscall_64 (345 samples, 0.23%)</title><rect x="98.2730%" y="885" width="0.2296%" height="15" fill="rgb(206,150,22)" fg:x="147663" fg:w="345"/><text x="98.5230%" y="895.50"></text></g><g><title>__x64_sys_futex (344 samples, 0.23%)</title><rect x="98.2736%" y="869" width="0.2289%" height="15" fill="rgb(239,64,23)" fg:x="147664" fg:w="344"/><text x="98.5236%" y="879.50"></text></g><g><title>do_futex (344 samples, 0.23%)</title><rect x="98.2736%" y="853" width="0.2289%" height="15" fill="rgb(242,50,38)" fg:x="147664" fg:w="344"/><text x="98.5236%" y="863.50"></text></g><g><title>futex_wait (343 samples, 0.23%)</title><rect x="98.2743%" y="837" width="0.2283%" height="15" fill="rgb(217,91,15)" fg:x="147665" fg:w="343"/><text x="98.5243%" y="847.50"></text></g><g><title>__pthread_cond_wait (353 samples, 0.23%)</title><rect x="98.2710%" y="949" width="0.2349%" height="15" fill="rgb(230,172,6)" fg:x="147660" fg:w="353"/><text x="98.5210%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (353 samples, 0.23%)</title><rect x="98.2710%" y="933" width="0.2349%" height="15" fill="rgb(221,98,26)" fg:x="147660" fg:w="353"/><text x="98.5210%" y="943.50"></text></g><g><title>futex_wait_cancelable (350 samples, 0.23%)</title><rect x="98.2730%" y="917" width="0.2329%" height="15" fill="rgb(227,210,45)" fg:x="147663" fg:w="350"/><text x="98.5230%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (350 samples, 0.23%)</title><rect x="98.2730%" y="901" width="0.2329%" height="15" fill="rgb(206,8,30)" fg:x="147663" fg:w="350"/><text x="98.5230%" y="911.50"></text></g><g><title>Parker::park (387 samples, 0.26%)</title><rect x="98.2597%" y="965" width="0.2576%" height="15" fill="rgb(241,219,17)" fg:x="147643" fg:w="387"/><text x="98.5097%" y="975.50"></text></g><g><title>Unsafe_Park (388 samples, 0.26%)</title><rect x="98.2597%" y="981" width="0.2582%" height="15" fill="rgb(247,121,29)" fg:x="147643" fg:w="388"/><text x="98.5097%" y="991.50"></text></g><g><title>enqueue_task_fair (20 samples, 0.01%)</title><rect x="98.5571%" y="805" width="0.0133%" height="15" fill="rgb(219,169,49)" fg:x="148090" fg:w="20"/><text x="98.8071%" y="815.50"></text></g><g><title>ttwu_do_activate (37 samples, 0.02%)</title><rect x="98.5565%" y="821" width="0.0246%" height="15" fill="rgb(253,49,49)" fg:x="148089" fg:w="37"/><text x="98.8065%" y="831.50"></text></g><g><title>psi_task_change (16 samples, 0.01%)</title><rect x="98.5705%" y="805" width="0.0106%" height="15" fill="rgb(217,178,3)" fg:x="148110" fg:w="16"/><text x="98.8205%" y="815.50"></text></g><g><title>do_syscall_64 (70 samples, 0.05%)</title><rect x="98.5372%" y="917" width="0.0466%" height="15" fill="rgb(234,73,37)" fg:x="148060" fg:w="70"/><text x="98.7872%" y="927.50"></text></g><g><title>__x64_sys_futex (70 samples, 0.05%)</title><rect x="98.5372%" y="901" width="0.0466%" height="15" fill="rgb(250,98,22)" fg:x="148060" fg:w="70"/><text x="98.7872%" y="911.50"></text></g><g><title>do_futex (69 samples, 0.05%)</title><rect x="98.5378%" y="885" width="0.0459%" height="15" fill="rgb(220,108,37)" fg:x="148061" fg:w="69"/><text x="98.7878%" y="895.50"></text></g><g><title>futex_wake (69 samples, 0.05%)</title><rect x="98.5378%" y="869" width="0.0459%" height="15" fill="rgb(225,168,10)" fg:x="148061" fg:w="69"/><text x="98.7878%" y="879.50"></text></g><g><title>wake_up_q (60 samples, 0.04%)</title><rect x="98.5438%" y="853" width="0.0399%" height="15" fill="rgb(247,215,21)" fg:x="148070" fg:w="60"/><text x="98.7938%" y="863.50"></text></g><g><title>try_to_wake_up (59 samples, 0.04%)</title><rect x="98.5445%" y="837" width="0.0393%" height="15" fill="rgb(253,189,31)" fg:x="148071" fg:w="59"/><text x="98.7945%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.05%)</title><rect x="98.5372%" y="933" width="0.0486%" height="15" fill="rgb(241,54,22)" fg:x="148060" fg:w="73"/><text x="98.7872%" y="943.50"></text></g><g><title>Unsafe_Unpark (101 samples, 0.07%)</title><rect x="98.5192%" y="981" width="0.0672%" height="15" fill="rgb(211,87,4)" fg:x="148033" fg:w="101"/><text x="98.7692%" y="991.50"></text></g><g><title>__pthread_cond_signal (79 samples, 0.05%)</title><rect x="98.5339%" y="965" width="0.0526%" height="15" fill="rgb(245,112,24)" fg:x="148055" fg:w="79"/><text x="98.7839%" y="975.50"></text></g><g><title>futex_wake (77 samples, 0.05%)</title><rect x="98.5352%" y="949" width="0.0512%" height="15" fill="rgb(235,190,41)" fg:x="148057" fg:w="77"/><text x="98.7852%" y="959.50"></text></g><g><title>__hrtimer_run_queues (25 samples, 0.02%)</title><rect x="98.6011%" y="917" width="0.0166%" height="15" fill="rgb(214,89,8)" fg:x="148156" fg:w="25"/><text x="98.8511%" y="927.50"></text></g><g><title>__sysvec_apic_timer_interrupt (27 samples, 0.02%)</title><rect x="98.6004%" y="949" width="0.0180%" height="15" fill="rgb(249,155,35)" fg:x="148155" fg:w="27"/><text x="98.8504%" y="959.50"></text></g><g><title>hrtimer_interrupt (26 samples, 0.02%)</title><rect x="98.6011%" y="933" width="0.0173%" height="15" fill="rgb(249,88,26)" fg:x="148156" fg:w="26"/><text x="98.8511%" y="943.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (42 samples, 0.03%)</title><rect x="98.5997%" y="981" width="0.0280%" height="15" fill="rgb(232,56,8)" fg:x="148154" fg:w="42"/><text x="98.8497%" y="991.50"></text></g><g><title>sysvec_apic_timer_interrupt (41 samples, 0.03%)</title><rect x="98.6004%" y="965" width="0.0273%" height="15" fill="rgb(240,95,3)" fg:x="148155" fg:w="41"/><text x="98.8504%" y="975.50"></text></g><g><title>do_filp_open (47 samples, 0.03%)</title><rect x="98.6670%" y="885" width="0.0313%" height="15" fill="rgb(222,44,28)" fg:x="148255" fg:w="47"/><text x="98.9170%" y="895.50"></text></g><g><title>path_openat (46 samples, 0.03%)</title><rect x="98.6676%" y="869" width="0.0306%" height="15" fill="rgb(234,16,30)" fg:x="148256" fg:w="46"/><text x="98.9176%" y="879.50"></text></g><g><title>fileOpen (73 samples, 0.05%)</title><rect x="98.6523%" y="981" width="0.0486%" height="15" fill="rgb(223,26,17)" fg:x="148233" fg:w="73"/><text x="98.9023%" y="991.50"></text></g><g><title>__libc_open64 (57 samples, 0.04%)</title><rect x="98.6630%" y="965" width="0.0379%" height="15" fill="rgb(239,187,47)" fg:x="148249" fg:w="57"/><text x="98.9130%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.04%)</title><rect x="98.6650%" y="949" width="0.0359%" height="15" fill="rgb(247,102,50)" fg:x="148252" fg:w="54"/><text x="98.9150%" y="959.50"></text></g><g><title>do_syscall_64 (54 samples, 0.04%)</title><rect x="98.6650%" y="933" width="0.0359%" height="15" fill="rgb(231,216,22)" fg:x="148252" fg:w="54"/><text x="98.9150%" y="943.50"></text></g><g><title>__x64_sys_openat (54 samples, 0.04%)</title><rect x="98.6650%" y="917" width="0.0359%" height="15" fill="rgb(216,201,26)" fg:x="148252" fg:w="54"/><text x="98.9150%" y="927.50"></text></g><g><title>do_sys_openat2 (53 samples, 0.04%)</title><rect x="98.6656%" y="901" width="0.0353%" height="15" fill="rgb(214,186,23)" fg:x="148253" fg:w="53"/><text x="98.9156%" y="911.50"></text></g><g><title>jni_IsAssignableFrom (25 samples, 0.02%)</title><rect x="98.7115%" y="981" width="0.0166%" height="15" fill="rgb(235,184,4)" fg:x="148322" fg:w="25"/><text x="98.9615%" y="991.50"></text></g><g><title>[perf-943567.map] (36,033 samples, 23.98%)</title><rect x="74.8100%" y="997" width="23.9808%" height="15" fill="rgb(244,46,17)" fg:x="112408" fg:w="36033"/><text x="75.0600%" y="1007.50">[perf-943567.map]</text></g><g><title>os::javaTimeNanos (92 samples, 0.06%)</title><rect x="98.7295%" y="981" width="0.0612%" height="15" fill="rgb(248,74,46)" fg:x="148349" fg:w="92"/><text x="98.9795%" y="991.50"></text></g><g><title>__GI___clock_gettime (84 samples, 0.06%)</title><rect x="98.7348%" y="965" width="0.0559%" height="15" fill="rgb(243,79,5)" fg:x="148357" fg:w="84"/><text x="98.9848%" y="975.50"></text></g><g><title>__vdso_clock_gettime (71 samples, 0.05%)</title><rect x="98.7435%" y="949" width="0.0473%" height="15" fill="rgb(213,148,1)" fg:x="148370" fg:w="71"/><text x="98.9935%" y="959.50"></text></g><g><title>[[vdso]] (41 samples, 0.03%)</title><rect x="98.7635%" y="933" width="0.0273%" height="15" fill="rgb(221,30,0)" fg:x="148400" fg:w="41"/><text x="99.0135%" y="943.50"></text></g><g><title>Runtime1::counter_overflow (24 samples, 0.02%)</title><rect x="98.8087%" y="981" width="0.0160%" height="15" fill="rgb(207,85,29)" fg:x="148468" fg:w="24"/><text x="99.0587%" y="991.50"></text></g><g><title>TieredThresholdPolicy::event (24 samples, 0.02%)</title><rect x="98.8087%" y="965" width="0.0160%" height="15" fill="rgb(239,31,46)" fg:x="148468" fg:w="24"/><text x="99.0587%" y="975.50"></text></g><g><title>SharedRuntime::find_callee_method (22 samples, 0.01%)</title><rect x="98.8254%" y="981" width="0.0146%" height="15" fill="rgb(219,6,1)" fg:x="148493" fg:w="22"/><text x="99.0754%" y="991.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (21 samples, 0.01%)</title><rect x="98.8260%" y="965" width="0.0140%" height="15" fill="rgb(229,90,29)" fg:x="148494" fg:w="21"/><text x="99.0760%" y="975.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (34 samples, 0.02%)</title><rect x="98.8407%" y="981" width="0.0226%" height="15" fill="rgb(242,201,42)" fg:x="148516" fg:w="34"/><text x="99.0907%" y="991.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (34 samples, 0.02%)</title><rect x="98.8407%" y="965" width="0.0226%" height="15" fill="rgb(243,80,54)" fg:x="148516" fg:w="34"/><text x="99.0907%" y="975.50"></text></g><g><title>SharedRuntime::handle_wrong_method (17 samples, 0.01%)</title><rect x="98.8633%" y="981" width="0.0113%" height="15" fill="rgb(223,166,15)" fg:x="148550" fg:w="17"/><text x="99.1133%" y="991.50"></text></g><g><title>SharedRuntime::reresolve_call_site (17 samples, 0.01%)</title><rect x="98.8633%" y="965" width="0.0113%" height="15" fill="rgb(238,78,27)" fg:x="148550" fg:w="17"/><text x="99.1133%" y="975.50"></text></g><g><title>CompiledIC::set_to_monomorphic (19 samples, 0.01%)</title><rect x="98.8966%" y="965" width="0.0126%" height="15" fill="rgb(235,28,43)" fg:x="148600" fg:w="19"/><text x="99.1466%" y="975.50"></text></g><g><title>Bytecode_invoke::static_target (26 samples, 0.02%)</title><rect x="98.9265%" y="949" width="0.0173%" height="15" fill="rgb(240,210,28)" fg:x="148645" fg:w="26"/><text x="99.1765%" y="959.50"></text></g><g><title>LinkResolver::resolve_method_statically (26 samples, 0.02%)</title><rect x="98.9265%" y="933" width="0.0173%" height="15" fill="rgb(253,6,46)" fg:x="148645" fg:w="26"/><text x="99.1765%" y="943.50"></text></g><g><title>LinkResolver::resolve_invoke (31 samples, 0.02%)</title><rect x="98.9458%" y="949" width="0.0206%" height="15" fill="rgb(250,159,47)" fg:x="148674" fg:w="31"/><text x="99.1958%" y="959.50"></text></g><g><title>SharedRuntime::extract_attached_method (21 samples, 0.01%)</title><rect x="98.9664%" y="949" width="0.0140%" height="15" fill="rgb(216,139,2)" fg:x="148705" fg:w="21"/><text x="99.2164%" y="959.50"></text></g><g><title>OopMapStream::find_next (23 samples, 0.02%)</title><rect x="98.9917%" y="917" width="0.0153%" height="15" fill="rgb(221,124,44)" fg:x="148743" fg:w="23"/><text x="99.2417%" y="927.50"></text></g><g><title>frame::sender (38 samples, 0.03%)</title><rect x="98.9824%" y="949" width="0.0253%" height="15" fill="rgb(205,37,22)" fg:x="148729" fg:w="38"/><text x="99.2324%" y="959.50"></text></g><g><title>OopMapSet::update_register_map (35 samples, 0.02%)</title><rect x="98.9844%" y="933" width="0.0233%" height="15" fill="rgb(250,55,8)" fg:x="148732" fg:w="35"/><text x="99.2344%" y="943.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (128 samples, 0.09%)</title><rect x="98.9239%" y="965" width="0.0852%" height="15" fill="rgb(215,83,48)" fg:x="148641" fg:w="128"/><text x="99.1739%" y="975.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (219 samples, 0.15%)</title><rect x="98.8746%" y="981" width="0.1457%" height="15" fill="rgb(253,2,32)" fg:x="148567" fg:w="219"/><text x="99.1246%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.03%)</title><rect x="99.0250%" y="709" width="0.0339%" height="15" fill="rgb(236,67,28)" fg:x="148793" fg:w="51"/><text x="99.2750%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.03%)</title><rect x="99.0257%" y="693" width="0.0333%" height="15" fill="rgb(252,55,15)" fg:x="148794" fg:w="50"/><text x="99.2757%" y="703.50"></text></g><g><title>native_write_msr (49 samples, 0.03%)</title><rect x="99.0263%" y="677" width="0.0326%" height="15" fill="rgb(243,173,17)" fg:x="148795" fg:w="49"/><text x="99.2763%" y="687.50"></text></g><g><title>futex_wait_queue_me (55 samples, 0.04%)</title><rect x="99.0237%" y="773" width="0.0366%" height="15" fill="rgb(215,212,13)" fg:x="148791" fg:w="55"/><text x="99.2737%" y="783.50"></text></g><g><title>schedule (55 samples, 0.04%)</title><rect x="99.0237%" y="757" width="0.0366%" height="15" fill="rgb(253,176,6)" fg:x="148791" fg:w="55"/><text x="99.2737%" y="767.50"></text></g><g><title>__schedule (55 samples, 0.04%)</title><rect x="99.0237%" y="741" width="0.0366%" height="15" fill="rgb(236,105,26)" fg:x="148791" fg:w="55"/><text x="99.2737%" y="751.50"></text></g><g><title>finish_task_switch (54 samples, 0.04%)</title><rect x="99.0243%" y="725" width="0.0359%" height="15" fill="rgb(239,226,32)" fg:x="148792" fg:w="54"/><text x="99.2743%" y="735.50"></text></g><g><title>__pthread_cond_wait (59 samples, 0.04%)</title><rect x="99.0217%" y="901" width="0.0393%" height="15" fill="rgb(236,104,51)" fg:x="148788" fg:w="59"/><text x="99.2717%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (59 samples, 0.04%)</title><rect x="99.0217%" y="885" width="0.0393%" height="15" fill="rgb(220,172,33)" fg:x="148788" fg:w="59"/><text x="99.2717%" y="895.50"></text></g><g><title>futex_wait_cancelable (58 samples, 0.04%)</title><rect x="99.0223%" y="869" width="0.0386%" height="15" fill="rgb(224,182,25)" fg:x="148789" fg:w="58"/><text x="99.2723%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.04%)</title><rect x="99.0230%" y="853" width="0.0379%" height="15" fill="rgb(236,184,24)" fg:x="148790" fg:w="57"/><text x="99.2730%" y="863.50"></text></g><g><title>do_syscall_64 (57 samples, 0.04%)</title><rect x="99.0230%" y="837" width="0.0379%" height="15" fill="rgb(241,221,14)" fg:x="148790" fg:w="57"/><text x="99.2730%" y="847.50"></text></g><g><title>__x64_sys_futex (57 samples, 0.04%)</title><rect x="99.0230%" y="821" width="0.0379%" height="15" fill="rgb(227,146,5)" fg:x="148790" fg:w="57"/><text x="99.2730%" y="831.50"></text></g><g><title>do_futex (56 samples, 0.04%)</title><rect x="99.0237%" y="805" width="0.0373%" height="15" fill="rgb(214,15,23)" fg:x="148791" fg:w="56"/><text x="99.2737%" y="815.50"></text></g><g><title>futex_wait (56 samples, 0.04%)</title><rect x="99.0237%" y="789" width="0.0373%" height="15" fill="rgb(233,157,31)" fg:x="148791" fg:w="56"/><text x="99.2737%" y="799.50"></text></g><g><title>Monitor::lock_without_safepoint_check (61 samples, 0.04%)</title><rect x="99.0210%" y="949" width="0.0406%" height="15" fill="rgb(211,27,52)" fg:x="148787" fg:w="61"/><text x="99.2710%" y="959.50"></text></g><g><title>Monitor::ILock (61 samples, 0.04%)</title><rect x="99.0210%" y="933" width="0.0406%" height="15" fill="rgb(212,223,15)" fg:x="148787" fg:w="61"/><text x="99.2710%" y="943.50"></text></g><g><title>os::PlatformEvent::park (60 samples, 0.04%)</title><rect x="99.0217%" y="917" width="0.0399%" height="15" fill="rgb(254,211,0)" fg:x="148788" fg:w="60"/><text x="99.2717%" y="927.50"></text></g><g><title>SafepointSynchronize::block (67 samples, 0.04%)</title><rect x="99.0210%" y="965" width="0.0446%" height="15" fill="rgb(205,43,38)" fg:x="148787" fg:w="67"/><text x="99.2710%" y="975.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (70 samples, 0.05%)</title><rect x="99.0204%" y="981" width="0.0466%" height="15" fill="rgb(242,206,46)" fg:x="148786" fg:w="70"/><text x="99.2704%" y="991.50"></text></g><g><title>__fdget_pos (25 samples, 0.02%)</title><rect x="99.1255%" y="869" width="0.0166%" height="15" fill="rgb(220,221,12)" fg:x="148944" fg:w="25"/><text x="99.3755%" y="879.50"></text></g><g><title>copy_page_to_iter (431 samples, 0.29%)</title><rect x="99.2007%" y="821" width="0.2868%" height="15" fill="rgb(217,156,35)" fg:x="149057" fg:w="431"/><text x="99.4507%" y="831.50"></text></g><g><title>copy_user_enhanced_fast_string (408 samples, 0.27%)</title><rect x="99.2160%" y="805" width="0.2715%" height="15" fill="rgb(207,181,49)" fg:x="149080" fg:w="408"/><text x="99.4660%" y="815.50"></text></g><g><title>__activate_page (35 samples, 0.02%)</title><rect x="99.5015%" y="789" width="0.0233%" height="15" fill="rgb(235,103,47)" fg:x="149509" fg:w="35"/><text x="99.7515%" y="799.50"></text></g><g><title>mark_page_accessed (66 samples, 0.04%)</title><rect x="99.4875%" y="821" width="0.0439%" height="15" fill="rgb(222,63,28)" fg:x="149488" fg:w="66"/><text x="99.7375%" y="831.50"></text></g><g><title>pagevec_lru_move_fn (48 samples, 0.03%)</title><rect x="99.4995%" y="805" width="0.0319%" height="15" fill="rgb(244,137,21)" fg:x="149506" fg:w="48"/><text x="99.7495%" y="815.50"></text></g><g><title>pagecache_get_page (47 samples, 0.03%)</title><rect x="99.5315%" y="821" width="0.0313%" height="15" fill="rgb(228,35,27)" fg:x="149554" fg:w="47"/><text x="99.7815%" y="831.50"></text></g><g><title>find_get_entry (42 samples, 0.03%)</title><rect x="99.5348%" y="805" width="0.0280%" height="15" fill="rgb(226,191,41)" fg:x="149559" fg:w="42"/><text x="99.7848%" y="815.50"></text></g><g><title>xas_load (23 samples, 0.02%)</title><rect x="99.5474%" y="789" width="0.0153%" height="15" fill="rgb(210,154,3)" fg:x="149578" fg:w="23"/><text x="99.7974%" y="799.50"></text></g><g><title>touch_atime (22 samples, 0.01%)</title><rect x="99.5628%" y="821" width="0.0146%" height="15" fill="rgb(216,60,49)" fg:x="149601" fg:w="22"/><text x="99.8128%" y="831.50"></text></g><g><title>generic_file_buffered_read (626 samples, 0.42%)</title><rect x="99.1814%" y="837" width="0.4166%" height="15" fill="rgb(226,17,20)" fg:x="149028" fg:w="626"/><text x="99.4314%" y="847.50"></text></g><g><title>workingset_activation (31 samples, 0.02%)</title><rect x="99.5774%" y="821" width="0.0206%" height="15" fill="rgb(206,115,35)" fg:x="149623" fg:w="31"/><text x="99.8274%" y="831.50"></text></g><g><title>workingset_age_nonresident (21 samples, 0.01%)</title><rect x="99.5840%" y="805" width="0.0140%" height="15" fill="rgb(227,88,1)" fg:x="149633" fg:w="21"/><text x="99.8340%" y="815.50"></text></g><g><title>new_sync_read (636 samples, 0.42%)</title><rect x="99.1754%" y="853" width="0.4233%" height="15" fill="rgb(230,222,24)" fg:x="149019" fg:w="636"/><text x="99.4254%" y="863.50"></text></g><g><title>ksys_read (729 samples, 0.49%)</title><rect x="99.1242%" y="885" width="0.4852%" height="15" fill="rgb(214,124,32)" fg:x="148942" fg:w="729"/><text x="99.3742%" y="895.50"></text></g><g><title>vfs_read (685 samples, 0.46%)</title><rect x="99.1535%" y="869" width="0.4559%" height="15" fill="rgb(240,41,36)" fg:x="148986" fg:w="685"/><text x="99.4035%" y="879.50"></text></g><g><title>do_syscall_64 (736 samples, 0.49%)</title><rect x="99.1208%" y="901" width="0.4898%" height="15" fill="rgb(221,17,52)" fg:x="148937" fg:w="736"/><text x="99.3708%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (742 samples, 0.49%)</title><rect x="99.1195%" y="917" width="0.4938%" height="15" fill="rgb(252,70,16)" fg:x="148935" fg:w="742"/><text x="99.3695%" y="927.50"></text></g><g><title>handleRead (785 samples, 0.52%)</title><rect x="99.0936%" y="965" width="0.5224%" height="15" fill="rgb(250,177,4)" fg:x="148896" fg:w="785"/><text x="99.3436%" y="975.50"></text></g><g><title>__libc_read (782 samples, 0.52%)</title><rect x="99.0956%" y="949" width="0.5204%" height="15" fill="rgb(240,188,47)" fg:x="148899" fg:w="782"/><text x="99.3456%" y="959.50"></text></g><g><title>__libc_read (781 samples, 0.52%)</title><rect x="99.0962%" y="933" width="0.5198%" height="15" fill="rgb(215,92,12)" fg:x="148900" fg:w="781"/><text x="99.3462%" y="943.50"></text></g><g><title>jni_GetObjectField (55 samples, 0.04%)</title><rect x="99.6253%" y="965" width="0.0366%" height="15" fill="rgb(242,110,29)" fg:x="149695" fg:w="55"/><text x="99.8753%" y="975.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (25 samples, 0.02%)</title><rect x="99.6659%" y="949" width="0.0166%" height="15" fill="rgb(208,211,26)" fg:x="149756" fg:w="25"/><text x="99.9159%" y="959.50"></text></g><g><title>[libc-2.31.so] (112 samples, 0.07%)</title><rect x="99.6865%" y="949" width="0.0745%" height="15" fill="rgb(244,147,6)" fg:x="149787" fg:w="112"/><text x="99.9365%" y="959.50"></text></g><g><title>readBytes (1,025 samples, 0.68%)</title><rect x="99.0836%" y="981" width="0.6822%" height="15" fill="rgb(211,130,42)" fg:x="148881" fg:w="1025"/><text x="99.3336%" y="991.50"></text></g><g><title>jni_SetByteArrayRegion (156 samples, 0.10%)</title><rect x="99.6619%" y="965" width="0.1038%" height="15" fill="rgb(220,63,1)" fg:x="149750" fg:w="156"/><text x="99.9119%" y="975.50"></text></g><g><title>[unknown] (1,479 samples, 0.98%)</title><rect x="98.7907%" y="997" width="0.9843%" height="15" fill="rgb(241,212,30)" fg:x="148441" fg:w="1479"/><text x="99.0407%" y="1007.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.05%)</title><rect x="99.7844%" y="933" width="0.0486%" height="15" fill="rgb(233,153,17)" fg:x="149934" fg:w="73"/><text x="100.0344%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (72 samples, 0.05%)</title><rect x="99.7850%" y="917" width="0.0479%" height="15" fill="rgb(236,3,10)" fg:x="149935" fg:w="72"/><text x="100.0350%" y="927.50"></text></g><g><title>native_write_msr (72 samples, 0.05%)</title><rect x="99.7850%" y="901" width="0.0479%" height="15" fill="rgb(232,41,21)" fg:x="149935" fg:w="72"/><text x="100.0350%" y="911.50"></text></g><g><title>ret_from_fork (80 samples, 0.05%)</title><rect x="99.7817%" y="981" width="0.0532%" height="15" fill="rgb(206,63,51)" fg:x="149930" fg:w="80"/><text x="100.0317%" y="991.50"></text></g><g><title>schedule_tail (78 samples, 0.05%)</title><rect x="99.7830%" y="965" width="0.0519%" height="15" fill="rgb(250,214,3)" fg:x="149932" fg:w="78"/><text x="100.0330%" y="975.50"></text></g><g><title>finish_task_switch (78 samples, 0.05%)</title><rect x="99.7830%" y="949" width="0.0519%" height="15" fill="rgb(254,89,27)" fg:x="149932" fg:w="78"/><text x="100.0330%" y="959.50"></text></g><g><title>__GI___clone (121 samples, 0.08%)</title><rect x="99.7751%" y="997" width="0.0805%" height="15" fill="rgb(249,41,14)" fg:x="149920" fg:w="121"/><text x="100.0251%" y="1007.50"></text></g><g><title>start_thread (31 samples, 0.02%)</title><rect x="99.8350%" y="981" width="0.0206%" height="15" fill="rgb(221,196,51)" fg:x="150010" fg:w="31"/><text x="100.0850%" y="991.50"></text></g><g><title>thread_native_entry (27 samples, 0.02%)</title><rect x="99.8376%" y="965" width="0.0180%" height="15" fill="rgb(214,116,26)" fg:x="150014" fg:w="27"/><text x="100.0876%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="99.8689%" y="997" width="0.0113%" height="15" fill="rgb(236,67,7)" fg:x="150061" fg:w="17"/><text x="100.1189%" y="1007.50"></text></g><g><title>skyframe-evalua (46,686 samples, 31.07%)</title><rect x="68.8276%" y="1013" width="31.0706%" height="15" fill="rgb(253,179,32)" fg:x="103419" fg:w="46686"/><text x="69.0776%" y="1023.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (59 samples, 0.04%)</title><rect x="99.9474%" y="757" width="0.0393%" height="15" fill="rgb(218,33,15)" fg:x="150179" fg:w="59"/><text x="100.1974%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (57 samples, 0.04%)</title><rect x="99.9488%" y="741" width="0.0379%" height="15" fill="rgb(217,202,41)" fg:x="150181" fg:w="57"/><text x="100.1988%" y="751.50"></text></g><g><title>native_write_msr (57 samples, 0.04%)</title><rect x="99.9488%" y="725" width="0.0379%" height="15" fill="rgb(234,133,5)" fg:x="150181" fg:w="57"/><text x="100.1988%" y="735.50"></text></g><g><title>finish_task_switch (62 samples, 0.04%)</title><rect x="99.9468%" y="773" width="0.0413%" height="15" fill="rgb(240,47,40)" fg:x="150178" fg:w="62"/><text x="100.1968%" y="783.50"></text></g><g><title>do_syscall_64 (65 samples, 0.04%)</title><rect x="99.9454%" y="885" width="0.0433%" height="15" fill="rgb(234,166,26)" fg:x="150176" fg:w="65"/><text x="100.1954%" y="895.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.04%)</title><rect x="99.9454%" y="869" width="0.0433%" height="15" fill="rgb(244,125,51)" fg:x="150176" fg:w="65"/><text x="100.1954%" y="879.50"></text></g><g><title>do_futex (65 samples, 0.04%)</title><rect x="99.9454%" y="853" width="0.0433%" height="15" fill="rgb(229,171,11)" fg:x="150176" fg:w="65"/><text x="100.1954%" y="863.50"></text></g><g><title>futex_wait (65 samples, 0.04%)</title><rect x="99.9454%" y="837" width="0.0433%" height="15" fill="rgb(224,38,45)" fg:x="150176" fg:w="65"/><text x="100.1954%" y="847.50"></text></g><g><title>futex_wait_queue_me (65 samples, 0.04%)</title><rect x="99.9454%" y="821" width="0.0433%" height="15" fill="rgb(237,27,7)" fg:x="150176" fg:w="65"/><text x="100.1954%" y="831.50"></text></g><g><title>schedule (64 samples, 0.04%)</title><rect x="99.9461%" y="805" width="0.0426%" height="15" fill="rgb(216,52,7)" fg:x="150177" fg:w="64"/><text x="100.1961%" y="815.50"></text></g><g><title>__schedule (64 samples, 0.04%)</title><rect x="99.9461%" y="789" width="0.0426%" height="15" fill="rgb(243,11,11)" fg:x="150177" fg:w="64"/><text x="100.1961%" y="799.50"></text></g><g><title>__pthread_cond_wait (68 samples, 0.05%)</title><rect x="99.9441%" y="949" width="0.0453%" height="15" fill="rgb(253,167,20)" fg:x="150174" fg:w="68"/><text x="100.1941%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (68 samples, 0.05%)</title><rect x="99.9441%" y="933" width="0.0453%" height="15" fill="rgb(215,207,5)" fg:x="150174" fg:w="68"/><text x="100.1941%" y="943.50"></text></g><g><title>futex_wait_cancelable (67 samples, 0.04%)</title><rect x="99.9448%" y="917" width="0.0446%" height="15" fill="rgb(252,127,31)" fg:x="150175" fg:w="67"/><text x="100.1948%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.04%)</title><rect x="99.9454%" y="901" width="0.0439%" height="15" fill="rgb(209,106,27)" fg:x="150176" fg:w="66"/><text x="100.1954%" y="911.50"></text></g><g><title>Unsafe_Park (70 samples, 0.05%)</title><rect x="99.9441%" y="981" width="0.0466%" height="15" fill="rgb(214,220,18)" fg:x="150174" fg:w="70"/><text x="100.1941%" y="991.50"></text></g><g><title>Parker::park (70 samples, 0.05%)</title><rect x="99.9441%" y="965" width="0.0466%" height="15" fill="rgb(237,89,12)" fg:x="150174" fg:w="70"/><text x="100.1941%" y="975.50"></text></g><g><title>[perf-943567.map] (141 samples, 0.09%)</title><rect x="99.9002%" y="997" width="0.0938%" height="15" fill="rgb(209,167,36)" fg:x="150108" fg:w="141"/><text x="100.1502%" y="1007.50"></text></g><g><title>skyframe-invali (152 samples, 0.10%)</title><rect x="99.8982%" y="1013" width="0.1012%" height="15" fill="rgb(243,45,22)" fg:x="150105" fg:w="152"/><text x="100.1482%" y="1023.50"></text></g><g><title>all (150,258 samples, 100%)</title><rect x="0.0000%" y="1029" width="100.0000%" height="15" fill="rgb(239,2,46)" fg:x="0" fg:w="150258"/><text x="0.2500%" y="1039.50"></text></g></svg></svg> |