test-zig-cc/results/llvm-hermetic-j8.svg

491 lines
1.2 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="982" onload="init(evt)" viewBox="0 0 1200 982" 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="982" 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="965.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="965.00"> </text><svg id="frames" x="10" width="1180" total_samples="222780"><g><title>ActionLookupVal (31 samples, 0.01%)</title><rect x="0.0000%" y="917" width="0.0139%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="31"/><text x="0.2500%" y="927.50"></text></g><g><title>_dl_update_slotinfo (117 samples, 0.05%)</title><rect x="0.4345%" y="885" width="0.0525%" height="15" fill="rgb(217,0,24)" fg:x="968" fg:w="117"/><text x="0.6845%" y="895.50"></text></g><g><title>resource_allocate_bytes (32 samples, 0.01%)</title><rect x="0.5539%" y="885" width="0.0144%" height="15" fill="rgb(221,193,54)" fg:x="1234" fg:w="32"/><text x="0.8039%" y="895.50"></text></g><g><title>update_get_addr (35 samples, 0.02%)</title><rect x="0.5759%" y="885" width="0.0157%" height="15" fill="rgb(248,212,6)" fg:x="1283" fg:w="35"/><text x="0.8259%" y="895.50"></text></g><g><title>[anon] (1,251 samples, 0.56%)</title><rect x="0.0305%" y="901" width="0.5615%" height="15" fill="rgb(208,68,35)" fg:x="68" fg:w="1251"/><text x="0.2805%" y="911.50"></text></g><g><title>[perf-945576.map] (152 samples, 0.07%)</title><rect x="0.5934%" y="901" width="0.0682%" height="15" fill="rgb(232,128,0)" fg:x="1322" fg:w="152"/><text x="0.8434%" y="911.50"></text></g><g><title>_dl_update_slotinfo (35 samples, 0.02%)</title><rect x="0.6895%" y="885" width="0.0157%" height="15" fill="rgb(207,160,47)" fg:x="1536" fg:w="35"/><text x="0.9395%" y="895.50"></text></g><g><title>[unknown] (113 samples, 0.05%)</title><rect x="0.6616%" y="901" width="0.0507%" height="15" fill="rgb(228,23,34)" fg:x="1474" fg:w="113"/><text x="0.9116%" y="911.50"></text></g><g><title>jio_vsnprintf (51 samples, 0.02%)</title><rect x="0.7366%" y="757" width="0.0229%" height="15" fill="rgb(218,30,26)" fg:x="1641" fg:w="51"/><text x="0.9866%" y="767.50"></text></g><g><title>os::vsnprintf (50 samples, 0.02%)</title><rect x="0.7371%" y="741" width="0.0224%" height="15" fill="rgb(220,122,19)" fg:x="1642" fg:w="50"/><text x="0.9871%" y="751.50"></text></g><g><title>__vsnprintf_internal (50 samples, 0.02%)</title><rect x="0.7371%" y="725" width="0.0224%" height="15" fill="rgb(250,228,42)" fg:x="1642" fg:w="50"/><text x="0.9871%" y="735.50"></text></g><g><title>__vfprintf_internal (47 samples, 0.02%)</title><rect x="0.7384%" y="709" width="0.0211%" height="15" fill="rgb(240,193,28)" fg:x="1645" fg:w="47"/><text x="0.9884%" y="719.50"></text></g><g><title>CompileBroker::post_compile (56 samples, 0.03%)</title><rect x="0.7353%" y="789" width="0.0251%" height="15" fill="rgb(216,20,37)" fg:x="1638" fg:w="56"/><text x="0.9853%" y="799.50"></text></g><g><title>StringEventLog::log (56 samples, 0.03%)</title><rect x="0.7353%" y="773" width="0.0251%" height="15" fill="rgb(206,188,39)" fg:x="1638" fg:w="56"/><text x="0.9853%" y="783.50"></text></g><g><title>Symbol::print_symbol_on (27 samples, 0.01%)</title><rect x="0.7783%" y="757" width="0.0121%" height="15" fill="rgb(217,207,13)" fg:x="1734" fg:w="27"/><text x="1.0283%" y="767.50"></text></g><g><title>Method::print_short_name (57 samples, 0.03%)</title><rect x="0.7707%" y="773" width="0.0256%" height="15" fill="rgb(231,73,38)" fg:x="1717" fg:w="57"/><text x="1.0207%" y="783.50"></text></g><g><title>os::vsnprintf (43 samples, 0.02%)</title><rect x="0.8030%" y="741" width="0.0193%" height="15" fill="rgb(225,20,46)" fg:x="1789" fg:w="43"/><text x="1.0530%" y="751.50"></text></g><g><title>__vsnprintf_internal (43 samples, 0.02%)</title><rect x="0.8030%" y="725" width="0.0193%" height="15" fill="rgb(210,31,41)" fg:x="1789" fg:w="43"/><text x="1.0530%" y="735.50"></text></g><g><title>__vfprintf_internal (32 samples, 0.01%)</title><rect x="0.8080%" y="709" width="0.0144%" height="15" fill="rgb(221,200,47)" fg:x="1800" fg:w="32"/><text x="1.0580%" y="719.50"></text></g><g><title>CompileTask::print (124 samples, 0.06%)</title><rect x="0.7703%" y="789" width="0.0557%" height="15" fill="rgb(226,26,5)" fg:x="1716" fg:w="124"/><text x="1.0203%" y="799.50"></text></g><g><title>outputStream::print (66 samples, 0.03%)</title><rect x="0.7963%" y="773" width="0.0296%" height="15" fill="rgb(249,33,26)" fg:x="1774" fg:w="66"/><text x="1.0463%" y="783.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (65 samples, 0.03%)</title><rect x="0.7968%" y="757" width="0.0292%" height="15" fill="rgb(235,183,28)" fg:x="1775" fg:w="65"/><text x="1.0468%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (26 samples, 0.01%)</title><rect x="0.8843%" y="613" width="0.0117%" height="15" fill="rgb(221,5,38)" fg:x="1970" fg:w="26"/><text x="1.1343%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (37 samples, 0.02%)</title><rect x="0.8838%" y="629" width="0.0166%" height="15" fill="rgb(247,18,42)" fg:x="1969" fg:w="37"/><text x="1.1338%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (59 samples, 0.03%)</title><rect x="0.8825%" y="645" width="0.0265%" height="15" fill="rgb(241,131,45)" fg:x="1966" fg:w="59"/><text x="1.1325%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (97 samples, 0.04%)</title><rect x="0.8811%" y="661" width="0.0435%" height="15" fill="rgb(249,31,29)" fg:x="1963" fg:w="97"/><text x="1.1311%" y="671.50"></text></g><g><title>SubstitutionResolver::block_do (35 samples, 0.02%)</title><rect x="0.9090%" y="645" width="0.0157%" height="15" fill="rgb(225,111,53)" fg:x="2025" fg:w="35"/><text x="1.1590%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (156 samples, 0.07%)</title><rect x="0.8798%" y="677" width="0.0700%" height="15" fill="rgb(238,160,17)" fg:x="1960" fg:w="156"/><text x="1.1298%" y="687.50"></text></g><g><title>SubstitutionResolver::block_do (56 samples, 0.03%)</title><rect x="0.9247%" y="661" width="0.0251%" height="15" fill="rgb(214,148,48)" fg:x="2060" fg:w="56"/><text x="1.1747%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (161 samples, 0.07%)</title><rect x="0.8784%" y="693" width="0.0723%" height="15" fill="rgb(232,36,49)" fg:x="1957" fg:w="161"/><text x="1.1284%" y="703.50"></text></g><g><title>ValueMap::ValueMap (35 samples, 0.02%)</title><rect x="0.9521%" y="693" width="0.0157%" height="15" fill="rgb(209,103,24)" fg:x="2121" fg:w="35"/><text x="1.2021%" y="703.50"></text></g><g><title>ValueMap::find_insert (40 samples, 0.02%)</title><rect x="0.9678%" y="693" width="0.0180%" height="15" fill="rgb(229,88,8)" fg:x="2156" fg:w="40"/><text x="1.2178%" y="703.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (324 samples, 0.15%)</title><rect x="0.8497%" y="709" width="0.1454%" height="15" fill="rgb(213,181,19)" fg:x="1893" fg:w="324"/><text x="1.0997%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (24 samples, 0.01%)</title><rect x="1.0109%" y="613" width="0.0108%" height="15" fill="rgb(254,191,54)" fg:x="2252" fg:w="24"/><text x="1.2609%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (39 samples, 0.02%)</title><rect x="1.0100%" y="629" width="0.0175%" height="15" fill="rgb(241,83,37)" fg:x="2250" fg:w="39"/><text x="1.2600%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (54 samples, 0.02%)</title><rect x="1.0086%" y="645" width="0.0242%" height="15" fill="rgb(233,36,39)" fg:x="2247" fg:w="54"/><text x="1.2586%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (83 samples, 0.04%)</title><rect x="1.0014%" y="677" width="0.0373%" height="15" fill="rgb(226,3,54)" fg:x="2231" fg:w="83"/><text x="1.2514%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (81 samples, 0.04%)</title><rect x="1.0023%" y="661" width="0.0364%" height="15" fill="rgb(245,192,40)" fg:x="2233" fg:w="81"/><text x="1.2523%" y="671.50"></text></g><g><title>MethodLiveness::init_basic_blocks (57 samples, 0.03%)</title><rect x="1.0733%" y="613" width="0.0256%" height="15" fill="rgb(238,167,29)" fg:x="2391" fg:w="57"/><text x="1.3233%" y="623.50"></text></g><g><title>ciMethod::get_method_blocks (25 samples, 0.01%)</title><rect x="1.0876%" y="597" width="0.0112%" height="15" fill="rgb(232,182,51)" fg:x="2423" fg:w="25"/><text x="1.3376%" y="607.50"></text></g><g><title>ciMethodBlocks::ciMethodBlocks (25 samples, 0.01%)</title><rect x="1.0876%" y="581" width="0.0112%" height="15" fill="rgb(231,60,39)" fg:x="2423" fg:w="25"/><text x="1.3376%" y="591.50"></text></g><g><title>ciMethodBlocks::do_analysis (24 samples, 0.01%)</title><rect x="1.0881%" y="565" width="0.0108%" height="15" fill="rgb(208,69,12)" fg:x="2424" fg:w="24"/><text x="1.3381%" y="575.50"></text></g><g><title>MethodLiveness::compute_liveness (84 samples, 0.04%)</title><rect x="1.0616%" y="629" width="0.0377%" height="15" fill="rgb(235,93,37)" fg:x="2365" fg:w="84"/><text x="1.3116%" y="639.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (126 samples, 0.06%)</title><rect x="1.0432%" y="677" width="0.0566%" height="15" fill="rgb(213,116,39)" fg:x="2324" fg:w="126"/><text x="1.2932%" y="687.50"></text></g><g><title>BlockListBuilder::set_leaders (111 samples, 0.05%)</title><rect x="1.0499%" y="661" width="0.0498%" height="15" fill="rgb(222,207,29)" fg:x="2339" fg:w="111"/><text x="1.2999%" y="671.50"></text></g><g><title>ciMethod::bci_block_start (86 samples, 0.04%)</title><rect x="1.0611%" y="645" width="0.0386%" height="15" fill="rgb(206,96,30)" fg:x="2364" fg:w="86"/><text x="1.3111%" y="655.50"></text></g><g><title>GraphBuilder::connect_to_end (25 samples, 0.01%)</title><rect x="1.1051%" y="661" width="0.0112%" height="15" fill="rgb(218,138,4)" fg:x="2462" fg:w="25"/><text x="1.3551%" y="671.50"></text></g><g><title>BlockBegin::try_merge (38 samples, 0.02%)</title><rect x="1.1392%" y="645" width="0.0171%" height="15" fill="rgb(250,191,14)" fg:x="2538" fg:w="38"/><text x="1.3892%" y="655.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (55 samples, 0.02%)</title><rect x="1.2007%" y="565" width="0.0247%" height="15" fill="rgb(239,60,40)" fg:x="2675" fg:w="55"/><text x="1.4507%" y="575.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (73 samples, 0.03%)</title><rect x="1.1953%" y="581" width="0.0328%" height="15" fill="rgb(206,27,48)" fg:x="2663" fg:w="73"/><text x="1.4453%" y="591.50"></text></g><g><title>ciField::ciField (118 samples, 0.05%)</title><rect x="1.1868%" y="597" width="0.0530%" height="15" fill="rgb(225,35,8)" fg:x="2644" fg:w="118"/><text x="1.4368%" y="607.50"></text></g><g><title>ciEnv::get_field_by_index (132 samples, 0.06%)</title><rect x="1.1828%" y="613" width="0.0593%" height="15" fill="rgb(250,213,24)" fg:x="2635" fg:w="132"/><text x="1.4328%" y="623.50"></text></g><g><title>ciBytecodeStream::get_field (151 samples, 0.07%)</title><rect x="1.1828%" y="629" width="0.0678%" height="15" fill="rgb(247,123,22)" fg:x="2635" fg:w="151"/><text x="1.4328%" y="639.50"></text></g><g><title>GraphBuilder::access_field (217 samples, 0.10%)</title><rect x="1.1603%" y="645" width="0.0974%" height="15" fill="rgb(231,138,38)" fg:x="2585" fg:w="217"/><text x="1.4103%" y="655.50"></text></g><g><title>GraphBuilder::append_with_bci (29 samples, 0.01%)</title><rect x="1.3098%" y="629" width="0.0130%" height="15" fill="rgb(231,145,46)" fg:x="2918" fg:w="29"/><text x="1.5598%" y="639.50"></text></g><g><title>BlockBegin::try_merge (47 samples, 0.02%)</title><rect x="1.3749%" y="565" width="0.0211%" height="15" fill="rgb(251,118,11)" fg:x="3063" fg:w="47"/><text x="1.6249%" y="575.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (36 samples, 0.02%)</title><rect x="1.4297%" y="485" width="0.0162%" height="15" fill="rgb(217,147,25)" fg:x="3185" fg:w="36"/><text x="1.6797%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (45 samples, 0.02%)</title><rect x="1.4274%" y="501" width="0.0202%" height="15" fill="rgb(247,81,37)" fg:x="3180" fg:w="45"/><text x="1.6774%" y="511.50"></text></g><g><title>ciField::ciField (75 samples, 0.03%)</title><rect x="1.4202%" y="517" width="0.0337%" height="15" fill="rgb(209,12,38)" fg:x="3164" fg:w="75"/><text x="1.6702%" y="527.50"></text></g><g><title>ciEnv::get_field_by_index (82 samples, 0.04%)</title><rect x="1.4175%" y="533" width="0.0368%" height="15" fill="rgb(227,1,9)" fg:x="3158" fg:w="82"/><text x="1.6675%" y="543.50"></text></g><g><title>ciBytecodeStream::get_field (90 samples, 0.04%)</title><rect x="1.4171%" y="549" width="0.0404%" height="15" fill="rgb(248,47,43)" fg:x="3157" fg:w="90"/><text x="1.6671%" y="559.50"></text></g><g><title>GraphBuilder::access_field (140 samples, 0.06%)</title><rect x="1.3991%" y="565" width="0.0628%" height="15" fill="rgb(221,10,30)" fg:x="3117" fg:w="140"/><text x="1.6491%" y="575.50"></text></g><g><title>ciField::ciField (30 samples, 0.01%)</title><rect x="1.5329%" y="437" width="0.0135%" height="15" fill="rgb(210,229,1)" fg:x="3415" fg:w="30"/><text x="1.7829%" y="447.50"></text></g><g><title>ciEnv::get_field_by_index (36 samples, 0.02%)</title><rect x="1.5311%" y="453" width="0.0162%" height="15" fill="rgb(222,148,37)" fg:x="3411" fg:w="36"/><text x="1.7811%" y="463.50"></text></g><g><title>ciBytecodeStream::get_field (37 samples, 0.02%)</title><rect x="1.5311%" y="469" width="0.0166%" height="15" fill="rgb(234,67,33)" fg:x="3411" fg:w="37"/><text x="1.7811%" y="479.50"></text></g><g><title>GraphBuilder::access_field (53 samples, 0.02%)</title><rect x="1.5262%" y="485" width="0.0238%" height="15" fill="rgb(247,98,35)" fg:x="3400" fg:w="53"/><text x="1.7762%" y="495.50"></text></g><g><title>ciEnv::get_field_by_index (25 samples, 0.01%)</title><rect x="1.5850%" y="373" width="0.0112%" height="15" fill="rgb(247,138,52)" fg:x="3531" fg:w="25"/><text x="1.8350%" y="383.50"></text></g><g><title>ciBytecodeStream::get_field (29 samples, 0.01%)</title><rect x="1.5850%" y="389" width="0.0130%" height="15" fill="rgb(213,79,30)" fg:x="3531" fg:w="29"/><text x="1.8350%" y="399.50"></text></g><g><title>GraphBuilder::access_field (37 samples, 0.02%)</title><rect x="1.5827%" y="405" width="0.0166%" height="15" fill="rgb(246,177,23)" fg:x="3526" fg:w="37"/><text x="1.8327%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (27 samples, 0.01%)</title><rect x="1.6294%" y="293" width="0.0121%" height="15" fill="rgb(230,62,27)" fg:x="3630" fg:w="27"/><text x="1.8794%" y="303.50"></text></g><g><title>GraphBuilder::try_inline (29 samples, 0.01%)</title><rect x="1.6290%" y="309" width="0.0130%" height="15" fill="rgb(216,154,8)" fg:x="3629" fg:w="29"/><text x="1.8790%" y="319.50"></text></g><g><title>GraphBuilder::invoke (49 samples, 0.02%)</title><rect x="1.6263%" y="325" width="0.0220%" height="15" fill="rgb(244,35,45)" fg:x="3623" fg:w="49"/><text x="1.8763%" y="335.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (89 samples, 0.04%)</title><rect x="1.6124%" y="357" width="0.0399%" height="15" fill="rgb(251,115,12)" fg:x="3592" fg:w="89"/><text x="1.8624%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (89 samples, 0.04%)</title><rect x="1.6124%" y="341" width="0.0399%" height="15" fill="rgb(240,54,50)" fg:x="3592" fg:w="89"/><text x="1.8624%" y="351.50"></text></g><g><title>GraphBuilder::try_inline_full (131 samples, 0.06%)</title><rect x="1.6092%" y="373" width="0.0588%" height="15" fill="rgb(233,84,52)" fg:x="3585" fg:w="131"/><text x="1.8592%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (141 samples, 0.06%)</title><rect x="1.6088%" y="389" width="0.0633%" height="15" fill="rgb(207,117,47)" fg:x="3584" fg:w="141"/><text x="1.8588%" y="399.50"></text></g><g><title>ciBytecodeStream::get_method (36 samples, 0.02%)</title><rect x="1.6730%" y="389" width="0.0162%" height="15" fill="rgb(249,43,39)" fg:x="3727" fg:w="36"/><text x="1.9230%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (31 samples, 0.01%)</title><rect x="1.6752%" y="373" width="0.0139%" height="15" fill="rgb(209,38,44)" fg:x="3732" fg:w="31"/><text x="1.9252%" y="383.50"></text></g><g><title>GraphBuilder::invoke (198 samples, 0.09%)</title><rect x="1.6043%" y="405" width="0.0889%" height="15" fill="rgb(236,212,23)" fg:x="3574" fg:w="198"/><text x="1.8543%" y="415.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (286 samples, 0.13%)</title><rect x="1.5729%" y="437" width="0.1284%" height="15" fill="rgb(242,79,21)" fg:x="3504" fg:w="286"/><text x="1.8229%" y="447.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (286 samples, 0.13%)</title><rect x="1.5729%" y="421" width="0.1284%" height="15" fill="rgb(211,96,35)" fg:x="3504" fg:w="286"/><text x="1.8229%" y="431.50"></text></g><g><title>BlockListBuilder::set_leaders (24 samples, 0.01%)</title><rect x="1.7035%" y="405" width="0.0108%" height="15" fill="rgb(253,215,40)" fg:x="3795" fg:w="24"/><text x="1.9535%" y="415.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (30 samples, 0.01%)</title><rect x="1.7017%" y="421" width="0.0135%" height="15" fill="rgb(211,81,21)" fg:x="3791" fg:w="30"/><text x="1.9517%" y="431.50"></text></g><g><title>GraphBuilder::push_scope (42 samples, 0.02%)</title><rect x="1.7017%" y="437" width="0.0189%" height="15" fill="rgb(208,190,38)" fg:x="3791" fg:w="42"/><text x="1.9517%" y="447.50"></text></g><g><title>ciMethod::ensure_method_data (23 samples, 0.01%)</title><rect x="1.7241%" y="437" width="0.0103%" height="15" fill="rgb(235,213,38)" fg:x="3841" fg:w="23"/><text x="1.9741%" y="447.50"></text></g><g><title>GraphBuilder::try_inline_full (374 samples, 0.17%)</title><rect x="1.5675%" y="453" width="0.1679%" height="15" fill="rgb(237,122,38)" fg:x="3492" fg:w="374"/><text x="1.8175%" y="463.50"></text></g><g><title>GraphBuilder::try_inline (23 samples, 0.01%)</title><rect x="1.7398%" y="357" width="0.0103%" height="15" fill="rgb(244,218,35)" fg:x="3876" fg:w="23"/><text x="1.9898%" y="367.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (33 samples, 0.01%)</title><rect x="1.7380%" y="405" width="0.0148%" height="15" fill="rgb(240,68,47)" fg:x="3872" fg:w="33"/><text x="1.9880%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (32 samples, 0.01%)</title><rect x="1.7385%" y="389" width="0.0144%" height="15" fill="rgb(210,16,53)" fg:x="3873" fg:w="32"/><text x="1.9885%" y="399.50"></text></g><g><title>GraphBuilder::invoke (29 samples, 0.01%)</title><rect x="1.7398%" y="373" width="0.0130%" height="15" fill="rgb(235,124,12)" fg:x="3876" fg:w="29"/><text x="1.9898%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (35 samples, 0.02%)</title><rect x="1.7380%" y="437" width="0.0157%" height="15" fill="rgb(224,169,11)" fg:x="3872" fg:w="35"/><text x="1.9880%" y="447.50"></text></g><g><title>GraphBuilder::try_inline_full (35 samples, 0.02%)</title><rect x="1.7380%" y="421" width="0.0157%" height="15" fill="rgb(250,166,2)" fg:x="3872" fg:w="35"/><text x="1.9880%" y="431.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (37 samples, 0.02%)</title><rect x="1.7380%" y="453" width="0.0166%" height="15" fill="rgb(242,216,29)" fg:x="3872" fg:w="37"/><text x="1.9880%" y="463.50"></text></g><g><title>GraphBuilder::try_inline (423 samples, 0.19%)</title><rect x="1.5652%" y="469" width="0.1899%" height="15" fill="rgb(230,116,27)" fg:x="3487" fg:w="423"/><text x="1.8152%" y="479.50"></text></g><g><title>ciEnv::lookup_method (24 samples, 0.01%)</title><rect x="1.7659%" y="437" width="0.0108%" height="15" fill="rgb(228,99,48)" fg:x="3934" fg:w="24"/><text x="2.0159%" y="447.50"></text></g><g><title>ciMethod::ciMethod (41 samples, 0.02%)</title><rect x="1.7793%" y="405" width="0.0184%" height="15" fill="rgb(253,11,6)" fg:x="3964" fg:w="41"/><text x="2.0293%" y="415.50"></text></g><g><title>ciSignature::ciSignature (34 samples, 0.02%)</title><rect x="1.7825%" y="389" width="0.0153%" height="15" fill="rgb(247,143,39)" fg:x="3971" fg:w="34"/><text x="2.0325%" y="399.50"></text></g><g><title>ciObjectFactory::get_metadata (48 samples, 0.02%)</title><rect x="1.7766%" y="437" width="0.0215%" height="15" fill="rgb(236,97,10)" fg:x="3958" fg:w="48"/><text x="2.0266%" y="447.50"></text></g><g><title>ciObjectFactory::create_new_metadata (44 samples, 0.02%)</title><rect x="1.7784%" y="421" width="0.0198%" height="15" fill="rgb(233,208,19)" fg:x="3962" fg:w="44"/><text x="2.0284%" y="431.50"></text></g><g><title>ciBytecodeStream::get_method (88 samples, 0.04%)</title><rect x="1.7591%" y="469" width="0.0395%" height="15" fill="rgb(216,164,2)" fg:x="3919" fg:w="88"/><text x="2.0091%" y="479.50"></text></g><g><title>ciEnv::get_method_by_index_impl (82 samples, 0.04%)</title><rect x="1.7618%" y="453" width="0.0368%" height="15" fill="rgb(220,129,5)" fg:x="3925" fg:w="82"/><text x="2.0118%" y="463.50"></text></g><g><title>GraphBuilder::invoke (543 samples, 0.24%)</title><rect x="1.5594%" y="485" width="0.2437%" height="15" fill="rgb(242,17,10)" fg:x="3474" fg:w="543"/><text x="1.8094%" y="495.50"></text></g><g><title>GraphBuilder::method_return (23 samples, 0.01%)</title><rect x="1.8045%" y="485" width="0.0103%" height="15" fill="rgb(242,107,0)" fg:x="4020" fg:w="23"/><text x="2.0545%" y="495.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (696 samples, 0.31%)</title><rect x="1.5055%" y="517" width="0.3124%" height="15" fill="rgb(251,28,31)" fg:x="3354" fg:w="696"/><text x="1.7555%" y="527.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (691 samples, 0.31%)</title><rect x="1.5078%" y="501" width="0.3102%" height="15" fill="rgb(233,223,10)" fg:x="3359" fg:w="691"/><text x="1.7578%" y="511.50"></text></g><g><title>MethodLiveness::compute_liveness (24 samples, 0.01%)</title><rect x="1.8274%" y="453" width="0.0108%" height="15" fill="rgb(215,21,27)" fg:x="4071" fg:w="24"/><text x="2.0774%" y="463.50"></text></g><g><title>BlockListBuilder::set_leaders (35 samples, 0.02%)</title><rect x="1.8229%" y="485" width="0.0157%" height="15" fill="rgb(232,23,21)" fg:x="4061" fg:w="35"/><text x="2.0729%" y="495.50"></text></g><g><title>ciMethod::bci_block_start (25 samples, 0.01%)</title><rect x="1.8274%" y="469" width="0.0112%" height="15" fill="rgb(244,5,23)" fg:x="4071" fg:w="25"/><text x="2.0774%" y="479.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (43 samples, 0.02%)</title><rect x="1.8206%" y="501" width="0.0193%" height="15" fill="rgb(226,81,46)" fg:x="4056" fg:w="43"/><text x="2.0706%" y="511.50"></text></g><g><title>GraphBuilder::push_scope (69 samples, 0.03%)</title><rect x="1.8202%" y="517" width="0.0310%" height="15" fill="rgb(247,70,30)" fg:x="4055" fg:w="69"/><text x="2.0702%" y="527.50"></text></g><g><title>ciMethodData::load_data (36 samples, 0.02%)</title><rect x="1.8624%" y="485" width="0.0162%" height="15" fill="rgb(212,68,19)" fg:x="4149" fg:w="36"/><text x="2.1124%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (68 samples, 0.03%)</title><rect x="1.8521%" y="517" width="0.0305%" height="15" fill="rgb(240,187,13)" fg:x="4126" fg:w="68"/><text x="2.1021%" y="527.50"></text></g><g><title>ciMethod::ensure_method_data (65 samples, 0.03%)</title><rect x="1.8534%" y="501" width="0.0292%" height="15" fill="rgb(223,113,26)" fg:x="4129" fg:w="65"/><text x="2.1034%" y="511.50"></text></g><g><title>GraphBuilder::try_inline_full (860 samples, 0.39%)</title><rect x="1.4974%" y="533" width="0.3860%" height="15" fill="rgb(206,192,2)" fg:x="3336" fg:w="860"/><text x="1.7474%" y="543.50"></text></g><g><title>GraphBuilder::try_inline (25 samples, 0.01%)</title><rect x="1.8871%" y="437" width="0.0112%" height="15" fill="rgb(241,108,4)" fg:x="4204" fg:w="25"/><text x="2.1371%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (33 samples, 0.01%)</title><rect x="1.8853%" y="517" width="0.0148%" height="15" fill="rgb(247,173,49)" fg:x="4200" fg:w="33"/><text x="2.1353%" y="527.50"></text></g><g><title>GraphBuilder::try_inline_full (33 samples, 0.01%)</title><rect x="1.8853%" y="501" width="0.0148%" height="15" fill="rgb(224,114,35)" fg:x="4200" fg:w="33"/><text x="2.1353%" y="511.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (32 samples, 0.01%)</title><rect x="1.8857%" y="485" width="0.0144%" height="15" fill="rgb(245,159,27)" fg:x="4201" fg:w="32"/><text x="2.1357%" y="495.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (32 samples, 0.01%)</title><rect x="1.8857%" y="469" width="0.0144%" height="15" fill="rgb(245,172,44)" fg:x="4201" fg:w="32"/><text x="2.1357%" y="479.50"></text></g><g><title>GraphBuilder::invoke (29 samples, 0.01%)</title><rect x="1.8871%" y="453" width="0.0130%" height="15" fill="rgb(236,23,11)" fg:x="4204" fg:w="29"/><text x="2.1371%" y="463.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (36 samples, 0.02%)</title><rect x="1.8853%" y="533" width="0.0162%" height="15" fill="rgb(205,117,38)" fg:x="4200" fg:w="36"/><text x="2.1353%" y="543.50"></text></g><g><title>GraphBuilder::try_inline (908 samples, 0.41%)</title><rect x="1.4947%" y="549" width="0.4076%" height="15" fill="rgb(237,72,25)" fg:x="3330" fg:w="908"/><text x="1.7447%" y="559.50"></text></g><g><title>ciEnv::lookup_method (45 samples, 0.02%)</title><rect x="1.9279%" y="517" width="0.0202%" height="15" fill="rgb(244,70,9)" fg:x="4295" fg:w="45"/><text x="2.1779%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (26 samples, 0.01%)</title><rect x="1.9719%" y="453" width="0.0117%" height="15" fill="rgb(217,125,39)" fg:x="4393" fg:w="26"/><text x="2.2219%" y="463.50"></text></g><g><title>ciMethod::ciMethod (65 samples, 0.03%)</title><rect x="1.9562%" y="485" width="0.0292%" height="15" fill="rgb(235,36,10)" fg:x="4358" fg:w="65"/><text x="2.2062%" y="495.50"></text></g><g><title>ciSignature::ciSignature (56 samples, 0.03%)</title><rect x="1.9602%" y="469" width="0.0251%" height="15" fill="rgb(251,123,47)" fg:x="4367" fg:w="56"/><text x="2.2102%" y="479.50"></text></g><g><title>ciObjectFactory::get_metadata (85 samples, 0.04%)</title><rect x="1.9481%" y="517" width="0.0382%" height="15" fill="rgb(221,13,13)" fg:x="4340" fg:w="85"/><text x="2.1981%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (70 samples, 0.03%)</title><rect x="1.9548%" y="501" width="0.0314%" height="15" fill="rgb(238,131,9)" fg:x="4355" fg:w="70"/><text x="2.2048%" y="511.50"></text></g><g><title>ciEnv::get_method_by_index_impl (148 samples, 0.07%)</title><rect x="1.9212%" y="533" width="0.0664%" height="15" fill="rgb(211,50,8)" fg:x="4280" fg:w="148"/><text x="2.1712%" y="543.50"></text></g><g><title>ciBytecodeStream::get_method (169 samples, 0.08%)</title><rect x="1.9122%" y="549" width="0.0759%" height="15" fill="rgb(245,182,24)" fg:x="4260" fg:w="169"/><text x="2.1622%" y="559.50"></text></g><g><title>ciMethod::find_monomorphic_target (24 samples, 0.01%)</title><rect x="1.9939%" y="549" width="0.0108%" height="15" fill="rgb(242,14,37)" fg:x="4442" fg:w="24"/><text x="2.2439%" y="559.50"></text></g><g><title>GraphBuilder::invoke (1,174 samples, 0.53%)</title><rect x="1.4786%" y="565" width="0.5270%" height="15" fill="rgb(246,228,12)" fg:x="3294" fg:w="1174"/><text x="1.7286%" y="575.50"></text></g><g><title>GraphBuilder::method_return (44 samples, 0.02%)</title><rect x="2.0078%" y="565" width="0.0198%" height="15" fill="rgb(213,55,15)" fg:x="4473" fg:w="44"/><text x="2.2578%" y="575.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,524 samples, 0.68%)</title><rect x="1.3587%" y="597" width="0.6841%" height="15" fill="rgb(209,9,3)" fg:x="3027" fg:w="1524"/><text x="1.6087%" y="607.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,512 samples, 0.68%)</title><rect x="1.3641%" y="581" width="0.6787%" height="15" fill="rgb(230,59,30)" fg:x="3039" fg:w="1512"/><text x="1.6141%" y="591.50"></text></g><g><title>MethodLiveness::init_basic_blocks (41 samples, 0.02%)</title><rect x="2.0733%" y="517" width="0.0184%" height="15" fill="rgb(209,121,21)" fg:x="4619" fg:w="41"/><text x="2.3233%" y="527.50"></text></g><g><title>BlockListBuilder::set_leaders (67 samples, 0.03%)</title><rect x="2.0621%" y="565" width="0.0301%" height="15" fill="rgb(220,109,13)" fg:x="4594" fg:w="67"/><text x="2.3121%" y="575.50"></text></g><g><title>ciMethod::bci_block_start (59 samples, 0.03%)</title><rect x="2.0657%" y="549" width="0.0265%" height="15" fill="rgb(232,18,1)" fg:x="4602" fg:w="59"/><text x="2.3157%" y="559.50"></text></g><g><title>MethodLiveness::compute_liveness (58 samples, 0.03%)</title><rect x="2.0662%" y="533" width="0.0260%" height="15" fill="rgb(215,41,42)" fg:x="4603" fg:w="58"/><text x="2.3162%" y="543.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (91 samples, 0.04%)</title><rect x="2.0527%" y="581" width="0.0408%" height="15" fill="rgb(224,123,36)" fg:x="4573" fg:w="91"/><text x="2.3027%" y="591.50"></text></g><g><title>GraphBuilder::push_scope (149 samples, 0.07%)</title><rect x="2.0491%" y="597" width="0.0669%" height="15" fill="rgb(240,125,3)" fg:x="4565" fg:w="149"/><text x="2.2991%" y="607.50"></text></g><g><title>Method::build_interpreter_method_data (52 samples, 0.02%)</title><rect x="2.1236%" y="565" width="0.0233%" height="15" fill="rgb(205,98,50)" fg:x="4731" fg:w="52"/><text x="2.3736%" y="575.50"></text></g><g><title>MethodData::allocate (52 samples, 0.02%)</title><rect x="2.1236%" y="549" width="0.0233%" height="15" fill="rgb(205,185,37)" fg:x="4731" fg:w="52"/><text x="2.3736%" y="559.50"></text></g><g><title>MethodData::initialize (28 samples, 0.01%)</title><rect x="2.1344%" y="533" width="0.0126%" height="15" fill="rgb(238,207,15)" fg:x="4755" fg:w="28"/><text x="2.3844%" y="543.50"></text></g><g><title>ciMethodData::load_data (57 samples, 0.03%)</title><rect x="2.1488%" y="565" width="0.0256%" height="15" fill="rgb(213,199,42)" fg:x="4787" fg:w="57"/><text x="2.3988%" y="575.50"></text></g><g><title>ciMethod::ensure_method_data (133 samples, 0.06%)</title><rect x="2.1209%" y="597" width="0.0597%" height="15" fill="rgb(235,201,11)" fg:x="4725" fg:w="133"/><text x="2.3709%" y="607.50"></text></g><g><title>ciMethod::ensure_method_data (128 samples, 0.06%)</title><rect x="2.1232%" y="581" width="0.0575%" height="15" fill="rgb(207,46,11)" fg:x="4730" fg:w="128"/><text x="2.3732%" y="591.50"></text></g><g><title>GraphBuilder::try_inline_full (1,896 samples, 0.85%)</title><rect x="1.3354%" y="613" width="0.8511%" height="15" fill="rgb(241,35,35)" fg:x="2975" fg:w="1896"/><text x="1.5854%" y="623.50"></text></g><g><title>GraphBuilder::try_inline (1,916 samples, 0.86%)</title><rect x="1.3300%" y="629" width="0.8600%" height="15" fill="rgb(243,32,47)" fg:x="2963" fg:w="1916"/><text x="1.5800%" y="639.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (25 samples, 0.01%)</title><rect x="2.2219%" y="597" width="0.0112%" height="15" fill="rgb(247,202,23)" fg:x="4950" fg:w="25"/><text x="2.4719%" y="607.50"></text></g><g><title>LinkResolver::resolve_method (33 samples, 0.01%)</title><rect x="2.2367%" y="565" width="0.0148%" height="15" fill="rgb(219,102,11)" fg:x="4983" fg:w="33"/><text x="2.4867%" y="575.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (35 samples, 0.02%)</title><rect x="2.2367%" y="581" width="0.0157%" height="15" fill="rgb(243,110,44)" fg:x="4983" fg:w="35"/><text x="2.4867%" y="591.50"></text></g><g><title>ciEnv::lookup_method (77 samples, 0.03%)</title><rect x="2.2331%" y="597" width="0.0346%" height="15" fill="rgb(222,74,54)" fg:x="4975" fg:w="77"/><text x="2.4831%" y="607.50"></text></g><g><title>SignatureStream::as_symbol (34 samples, 0.02%)</title><rect x="2.2973%" y="533" width="0.0153%" height="15" fill="rgb(216,99,12)" fg:x="5118" fg:w="34"/><text x="2.5473%" y="543.50"></text></g><g><title>SymbolTable::lookup (32 samples, 0.01%)</title><rect x="2.2982%" y="517" width="0.0144%" height="15" fill="rgb(226,22,26)" fg:x="5120" fg:w="32"/><text x="2.5482%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (45 samples, 0.02%)</title><rect x="2.3184%" y="533" width="0.0202%" height="15" fill="rgb(217,163,10)" fg:x="5165" fg:w="45"/><text x="2.5684%" y="543.50"></text></g><g><title>ciMethod::ciMethod (157 samples, 0.07%)</title><rect x="2.2735%" y="565" width="0.0705%" height="15" fill="rgb(213,25,53)" fg:x="5065" fg:w="157"/><text x="2.5235%" y="575.50"></text></g><g><title>ciSignature::ciSignature (125 samples, 0.06%)</title><rect x="2.2879%" y="549" width="0.0561%" height="15" fill="rgb(252,105,26)" fg:x="5097" fg:w="125"/><text x="2.5379%" y="559.50"></text></g><g><title>ciObjectFactory::get_metadata (178 samples, 0.08%)</title><rect x="2.2677%" y="597" width="0.0799%" height="15" fill="rgb(220,39,43)" fg:x="5052" fg:w="178"/><text x="2.5177%" y="607.50"></text></g><g><title>ciObjectFactory::create_new_metadata (171 samples, 0.08%)</title><rect x="2.2709%" y="581" width="0.0768%" height="15" fill="rgb(229,68,48)" fg:x="5059" fg:w="171"/><text x="2.5209%" y="591.50"></text></g><g><title>ciEnv::get_method_by_index_impl (305 samples, 0.14%)</title><rect x="2.2156%" y="613" width="0.1369%" height="15" fill="rgb(252,8,32)" fg:x="4936" fg:w="305"/><text x="2.4656%" y="623.50"></text></g><g><title>ciBytecodeStream::get_method (320 samples, 0.14%)</title><rect x="2.2094%" y="629" width="0.1436%" height="15" fill="rgb(223,20,43)" fg:x="4922" fg:w="320"/><text x="2.4594%" y="639.50"></text></g><g><title>InstanceKlass::find_instance_method (25 samples, 0.01%)</title><rect x="2.3732%" y="565" width="0.0112%" height="15" fill="rgb(229,81,49)" fg:x="5287" fg:w="25"/><text x="2.6232%" y="575.50"></text></g><g><title>InstanceKlass::find_method_index (25 samples, 0.01%)</title><rect x="2.3732%" y="549" width="0.0112%" height="15" fill="rgb(236,28,36)" fg:x="5287" fg:w="25"/><text x="2.6232%" y="559.50"></text></g><g><title>ClassHierarchyWalker::is_witness (30 samples, 0.01%)</title><rect x="2.3723%" y="581" width="0.0135%" height="15" fill="rgb(249,185,26)" fg:x="5285" fg:w="30"/><text x="2.6223%" y="591.50"></text></g><g><title>Dependencies::find_unique_concrete_method (36 samples, 0.02%)</title><rect x="2.3701%" y="613" width="0.0162%" height="15" fill="rgb(249,174,33)" fg:x="5280" fg:w="36"/><text x="2.6201%" y="623.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (36 samples, 0.02%)</title><rect x="2.3701%" y="597" width="0.0162%" height="15" fill="rgb(233,201,37)" fg:x="5280" fg:w="36"/><text x="2.6201%" y="607.50"></text></g><g><title>ciMethod::find_monomorphic_target (47 samples, 0.02%)</title><rect x="2.3696%" y="629" width="0.0211%" height="15" fill="rgb(221,78,26)" fg:x="5279" fg:w="47"/><text x="2.6196%" y="639.50"></text></g><g><title>GraphBuilder::invoke (2,451 samples, 1.10%)</title><rect x="1.2923%" y="645" width="1.1002%" height="15" fill="rgb(250,127,30)" fg:x="2879" fg:w="2451"/><text x="1.5423%" y="655.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,907 samples, 1.30%)</title><rect x="1.1163%" y="661" width="1.3049%" height="15" fill="rgb(230,49,44)" fg:x="2487" fg:w="2907"/><text x="1.3663%" y="671.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (2,940 samples, 1.32%)</title><rect x="1.1042%" y="677" width="1.3197%" height="15" fill="rgb(229,67,23)" fg:x="2460" fg:w="2940"/><text x="1.3542%" y="687.50"></text></g><g><title>GraphBuilder::setup_start_block (33 samples, 0.01%)</title><rect x="2.4253%" y="677" width="0.0148%" height="15" fill="rgb(249,83,47)" fg:x="5403" fg:w="33"/><text x="2.6753%" y="687.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,226 samples, 1.45%)</title><rect x="0.9983%" y="693" width="1.4481%" height="15" fill="rgb(215,43,3)" fg:x="2224" fg:w="3226"/><text x="1.2483%" y="703.50"></text></g><g><title>IR::IR (3,249 samples, 1.46%)</title><rect x="0.9952%" y="709" width="1.4584%" height="15" fill="rgb(238,154,13)" fg:x="2217" fg:w="3249"/><text x="1.2452%" y="719.50"></text></g><g><title>ComputeLinearScanOrder::compute_order (26 samples, 0.01%)</title><rect x="2.4598%" y="677" width="0.0117%" height="15" fill="rgb(219,56,2)" fg:x="5480" fg:w="26"/><text x="2.7098%" y="687.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (57 samples, 0.03%)</title><rect x="2.4535%" y="693" width="0.0256%" height="15" fill="rgb(233,0,4)" fg:x="5466" fg:w="57"/><text x="2.7035%" y="703.50"></text></g><g><title>IR::compute_code (61 samples, 0.03%)</title><rect x="2.4535%" y="709" width="0.0274%" height="15" fill="rgb(235,30,7)" fg:x="5466" fg:w="61"/><text x="2.7035%" y="719.50"></text></g><g><title>UseCountComputer::block_do (75 samples, 0.03%)</title><rect x="2.4859%" y="677" width="0.0337%" height="15" fill="rgb(250,79,13)" fg:x="5538" fg:w="75"/><text x="2.7359%" y="687.50"></text></g><g><title>ValueStack::values_do (36 samples, 0.02%)</title><rect x="2.5034%" y="661" width="0.0162%" height="15" fill="rgb(211,146,34)" fg:x="5577" fg:w="36"/><text x="2.7534%" y="671.50"></text></g><g><title>BlockList::iterate_backward (82 samples, 0.04%)</title><rect x="2.4836%" y="693" width="0.0368%" height="15" fill="rgb(228,22,38)" fg:x="5533" fg:w="82"/><text x="2.7336%" y="703.50"></text></g><g><title>ValueStack::pin_stack_for_linear_scan (27 samples, 0.01%)</title><rect x="2.5204%" y="693" width="0.0121%" height="15" fill="rgb(235,168,5)" fg:x="5615" fg:w="27"/><text x="2.7704%" y="703.50"></text></g><g><title>IR::compute_use_counts (116 samples, 0.05%)</title><rect x="2.4809%" y="709" width="0.0521%" height="15" fill="rgb(221,155,16)" fg:x="5527" fg:w="116"/><text x="2.7309%" y="719.50"></text></g><g><title>NullCheckEliminator::merge_state_for (23 samples, 0.01%)</title><rect x="2.5927%" y="661" width="0.0103%" height="15" fill="rgb(215,215,53)" fg:x="5776" fg:w="23"/><text x="2.8427%" y="671.50"></text></g><g><title>NullCheckEliminator::iterate_one (148 samples, 0.07%)</title><rect x="2.5424%" y="677" width="0.0664%" height="15" fill="rgb(223,4,10)" fg:x="5664" fg:w="148"/><text x="2.7924%" y="687.50"></text></g><g><title>IR::eliminate_null_checks (181 samples, 0.08%)</title><rect x="2.5330%" y="709" width="0.0812%" height="15" fill="rgb(234,103,6)" fg:x="5643" fg:w="181"/><text x="2.7830%" y="719.50"></text></g><g><title>Optimizer::eliminate_null_checks (181 samples, 0.08%)</title><rect x="2.5330%" y="693" width="0.0812%" height="15" fill="rgb(227,97,0)" fg:x="5643" fg:w="181"/><text x="2.7830%" y="703.50"></text></g><g><title>IR::optimize_blocks (51 samples, 0.02%)</title><rect x="2.6142%" y="709" width="0.0229%" height="15" fill="rgb(234,150,53)" fg:x="5824" fg:w="51"/><text x="2.8642%" y="719.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (35 samples, 0.02%)</title><rect x="2.6214%" y="693" width="0.0157%" height="15" fill="rgb(228,201,54)" fg:x="5840" fg:w="35"/><text x="2.8714%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (35 samples, 0.02%)</title><rect x="2.6214%" y="677" width="0.0157%" height="15" fill="rgb(222,22,37)" fg:x="5840" fg:w="35"/><text x="2.8714%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (35 samples, 0.02%)</title><rect x="2.6214%" y="661" width="0.0157%" height="15" fill="rgb(237,53,32)" fg:x="5840" fg:w="35"/><text x="2.8714%" y="671.50"></text></g><g><title>BlockBegin::insert_block_between (27 samples, 0.01%)</title><rect x="2.6385%" y="693" width="0.0121%" height="15" fill="rgb(233,25,53)" fg:x="5878" fg:w="27"/><text x="2.8885%" y="703.50"></text></g><g><title>IR::split_critical_edges (48 samples, 0.02%)</title><rect x="2.6371%" y="709" width="0.0215%" height="15" fill="rgb(210,40,34)" fg:x="5875" fg:w="48"/><text x="2.8871%" y="719.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (23 samples, 0.01%)</title><rect x="2.6654%" y="677" width="0.0103%" height="15" fill="rgb(241,220,44)" fg:x="5938" fg:w="23"/><text x="2.9154%" y="687.50"></text></g><g><title>RangeCheckElimination::eliminate (40 samples, 0.02%)</title><rect x="2.6587%" y="709" width="0.0180%" height="15" fill="rgb(235,28,35)" fg:x="5923" fg:w="40"/><text x="2.9087%" y="719.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (25 samples, 0.01%)</title><rect x="2.6654%" y="693" width="0.0112%" height="15" fill="rgb(210,56,17)" fg:x="5938" fg:w="25"/><text x="2.9154%" y="703.50"></text></g><g><title>Compilation::build_hir (4,081 samples, 1.83%)</title><rect x="0.8461%" y="725" width="1.8319%" height="15" fill="rgb(224,130,29)" fg:x="1885" fg:w="4081"/><text x="1.0961%" y="735.50">C..</text></g><g><title>CodeEmitInfo::record_debug_info (26 samples, 0.01%)</title><rect x="2.7305%" y="661" width="0.0117%" height="15" fill="rgb(235,212,8)" fg:x="6083" fg:w="26"/><text x="2.9805%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (27 samples, 0.01%)</title><rect x="2.7305%" y="677" width="0.0121%" height="15" fill="rgb(223,33,50)" fg:x="6083" fg:w="27"/><text x="2.9805%" y="687.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (23 samples, 0.01%)</title><rect x="2.7547%" y="613" width="0.0103%" height="15" fill="rgb(219,149,13)" fg:x="6137" fg:w="23"/><text x="3.0047%" y="623.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (38 samples, 0.02%)</title><rect x="2.7502%" y="629" width="0.0171%" height="15" fill="rgb(250,156,29)" fg:x="6127" fg:w="38"/><text x="3.0002%" y="639.50"></text></g><g><title>DebugInformationRecorder::describe_scope (26 samples, 0.01%)</title><rect x="2.7673%" y="629" width="0.0117%" height="15" fill="rgb(216,193,19)" fg:x="6165" fg:w="26"/><text x="3.0173%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (83 samples, 0.04%)</title><rect x="2.7467%" y="661" width="0.0373%" height="15" fill="rgb(216,135,14)" fg:x="6119" fg:w="83"/><text x="2.9967%" y="671.50"></text></g><g><title>CodeEmitInfo::record_debug_info (82 samples, 0.04%)</title><rect x="2.7471%" y="645" width="0.0368%" height="15" fill="rgb(241,47,5)" fg:x="6120" fg:w="82"/><text x="2.9971%" y="655.50"></text></g><g><title>LIR_Assembler::call (96 samples, 0.04%)</title><rect x="2.7431%" y="677" width="0.0431%" height="15" fill="rgb(233,42,35)" fg:x="6111" fg:w="96"/><text x="2.9931%" y="687.50"></text></g><g><title>LIR_Assembler::emit_static_call_stub (23 samples, 0.01%)</title><rect x="2.7862%" y="677" width="0.0103%" height="15" fill="rgb(231,13,6)" fg:x="6207" fg:w="23"/><text x="3.0362%" y="687.50"></text></g><g><title>LIR_Assembler::emit_call (165 samples, 0.07%)</title><rect x="2.7256%" y="693" width="0.0741%" height="15" fill="rgb(207,181,40)" fg:x="6072" fg:w="165"/><text x="2.9756%" y="703.50"></text></g><g><title>LIR_Assembler::emit_op0 (33 samples, 0.01%)</title><rect x="2.7996%" y="693" width="0.0148%" height="15" fill="rgb(254,173,49)" fg:x="6237" fg:w="33"/><text x="3.0496%" y="703.50"></text></g><g><title>LIR_Assembler::mem2reg (42 samples, 0.02%)</title><rect x="2.8315%" y="677" width="0.0189%" height="15" fill="rgb(221,1,38)" fg:x="6308" fg:w="42"/><text x="3.0815%" y="687.50"></text></g><g><title>LIR_Assembler::reg2mem (23 samples, 0.01%)</title><rect x="2.8571%" y="677" width="0.0103%" height="15" fill="rgb(206,124,46)" fg:x="6365" fg:w="23"/><text x="3.1071%" y="687.50"></text></g><g><title>LIR_Assembler::emit_op1 (149 samples, 0.07%)</title><rect x="2.8144%" y="693" width="0.0669%" height="15" fill="rgb(249,21,11)" fg:x="6270" fg:w="149"/><text x="3.0644%" y="703.50"></text></g><g><title>LIR_Assembler::emit_profile_call (51 samples, 0.02%)</title><rect x="2.8894%" y="693" width="0.0229%" height="15" fill="rgb(222,201,40)" fg:x="6437" fg:w="51"/><text x="3.1394%" y="703.50"></text></g><g><title>LIR_Assembler::emit_typecheck_helper (23 samples, 0.01%)</title><rect x="2.9442%" y="661" width="0.0103%" height="15" fill="rgb(235,61,29)" fg:x="6559" fg:w="23"/><text x="3.1942%" y="671.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (36 samples, 0.02%)</title><rect x="2.9428%" y="693" width="0.0162%" height="15" fill="rgb(219,207,3)" fg:x="6556" fg:w="36"/><text x="3.1928%" y="703.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (36 samples, 0.02%)</title><rect x="2.9428%" y="677" width="0.0162%" height="15" fill="rgb(222,56,46)" fg:x="6556" fg:w="36"/><text x="3.1928%" y="687.50"></text></g><g><title>LIR_Assembler::emit_code (611 samples, 0.27%)</title><rect x="2.6896%" y="709" width="0.2743%" height="15" fill="rgb(239,76,54)" fg:x="5992" fg:w="611"/><text x="2.9396%" y="719.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (38 samples, 0.02%)</title><rect x="2.9711%" y="709" width="0.0171%" height="15" fill="rgb(231,124,27)" fg:x="6619" fg:w="38"/><text x="3.2211%" y="719.50"></text></g><g><title>MacroAssembler::stop (34 samples, 0.02%)</title><rect x="2.9729%" y="693" width="0.0153%" height="15" fill="rgb(249,195,6)" fg:x="6623" fg:w="34"/><text x="3.2229%" y="703.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (25 samples, 0.01%)</title><rect x="3.0070%" y="629" width="0.0112%" height="15" fill="rgb(237,174,47)" fg:x="6699" fg:w="25"/><text x="3.2570%" y="639.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (41 samples, 0.02%)</title><rect x="3.0030%" y="645" width="0.0184%" height="15" fill="rgb(206,201,31)" fg:x="6690" fg:w="41"/><text x="3.2530%" y="655.50"></text></g><g><title>DebugInformationRecorder::describe_scope (32 samples, 0.01%)</title><rect x="3.0214%" y="645" width="0.0144%" height="15" fill="rgb(231,57,52)" fg:x="6731" fg:w="32"/><text x="3.2714%" y="655.50"></text></g><g><title>LIR_Assembler::add_call_info (103 samples, 0.05%)</title><rect x="2.9980%" y="677" width="0.0462%" height="15" fill="rgb(248,177,22)" fg:x="6679" fg:w="103"/><text x="3.2480%" y="687.50"></text></g><g><title>CodeEmitInfo::record_debug_info (103 samples, 0.05%)</title><rect x="2.9980%" y="661" width="0.0462%" height="15" fill="rgb(215,211,37)" fg:x="6679" fg:w="103"/><text x="3.2480%" y="671.50"></text></g><g><title>CounterOverflowStub::emit_code (137 samples, 0.06%)</title><rect x="2.9935%" y="693" width="0.0615%" height="15" fill="rgb(241,128,51)" fg:x="6669" fg:w="137"/><text x="3.2435%" y="703.50"></text></g><g><title>DebugInformationRecorder::describe_scope (23 samples, 0.01%)</title><rect x="3.0694%" y="645" width="0.0103%" height="15" fill="rgb(227,165,31)" fg:x="6838" fg:w="23"/><text x="3.3194%" y="655.50"></text></g><g><title>LIR_Assembler::add_call_info (46 samples, 0.02%)</title><rect x="3.0636%" y="677" width="0.0206%" height="15" fill="rgb(228,167,24)" fg:x="6825" fg:w="46"/><text x="3.3136%" y="687.50"></text></g><g><title>CodeEmitInfo::record_debug_info (43 samples, 0.02%)</title><rect x="3.0649%" y="661" width="0.0193%" height="15" fill="rgb(228,143,12)" fg:x="6828" fg:w="43"/><text x="3.3149%" y="671.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (58 samples, 0.03%)</title><rect x="3.0609%" y="693" width="0.0260%" height="15" fill="rgb(249,149,8)" fg:x="6819" fg:w="58"/><text x="3.3109%" y="703.50"></text></g><g><title>NewInstanceStub::emit_code (30 samples, 0.01%)</title><rect x="3.0878%" y="693" width="0.0135%" height="15" fill="rgb(243,35,44)" fg:x="6879" fg:w="30"/><text x="3.3378%" y="703.50"></text></g><g><title>LIR_Assembler::add_call_info (25 samples, 0.01%)</title><rect x="3.0900%" y="677" width="0.0112%" height="15" fill="rgb(246,89,9)" fg:x="6884" fg:w="25"/><text x="3.3400%" y="687.50"></text></g><g><title>CodeEmitInfo::record_debug_info (23 samples, 0.01%)</title><rect x="3.0909%" y="661" width="0.0103%" height="15" fill="rgb(233,213,13)" fg:x="6886" fg:w="23"/><text x="3.3409%" y="671.50"></text></g><g><title>PatchingStub::emit_code (28 samples, 0.01%)</title><rect x="3.1049%" y="693" width="0.0126%" height="15" fill="rgb(233,141,41)" fg:x="6917" fg:w="28"/><text x="3.3549%" y="703.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (313 samples, 0.14%)</title><rect x="2.9881%" y="709" width="0.1405%" height="15" fill="rgb(239,167,4)" fg:x="6657" fg:w="313"/><text x="3.2381%" y="719.50"></text></g><g><title>Compilation::emit_code_body (1,029 samples, 0.46%)</title><rect x="2.6780%" y="725" width="0.4619%" height="15" fill="rgb(209,217,16)" fg:x="5966" fg:w="1029"/><text x="2.9280%" y="735.50"></text></g><g><title>LIRGenerator::block_do_prolog (25 samples, 0.01%)</title><rect x="3.1533%" y="677" width="0.0112%" height="15" fill="rgb(219,88,35)" fg:x="7025" fg:w="25"/><text x="3.4033%" y="687.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (24 samples, 0.01%)</title><rect x="3.1901%" y="645" width="0.0108%" height="15" fill="rgb(220,193,23)" fg:x="7107" fg:w="24"/><text x="3.4401%" y="655.50"></text></g><g><title>LIRGenerator::increment_event_counter (32 samples, 0.01%)</title><rect x="3.1901%" y="661" width="0.0144%" height="15" fill="rgb(230,90,52)" fg:x="7107" fg:w="32"/><text x="3.4401%" y="671.50"></text></g><g><title>LIRGenerator::do_Base (98 samples, 0.04%)</title><rect x="3.1681%" y="677" width="0.0440%" height="15" fill="rgb(252,106,19)" fg:x="7058" fg:w="98"/><text x="3.4181%" y="687.50"></text></g><g><title>LIRGenerator::move_to_phi (49 samples, 0.02%)</title><rect x="3.2261%" y="645" width="0.0220%" height="15" fill="rgb(206,74,20)" fg:x="7187" fg:w="49"/><text x="3.4761%" y="655.50"></text></g><g><title>PhiResolver::create_node (43 samples, 0.02%)</title><rect x="3.2287%" y="629" width="0.0193%" height="15" fill="rgb(230,138,44)" fg:x="7193" fg:w="43"/><text x="3.4787%" y="639.50"></text></g><g><title>GrowableArray&lt;ResolveNode*&gt;::grow (28 samples, 0.01%)</title><rect x="3.2938%" y="629" width="0.0126%" height="15" fill="rgb(235,182,43)" fg:x="7338" fg:w="28"/><text x="3.5438%" y="639.50"></text></g><g><title>LIRGenerator::move_to_phi (193 samples, 0.09%)</title><rect x="3.2202%" y="661" width="0.0866%" height="15" fill="rgb(242,16,51)" fg:x="7174" fg:w="193"/><text x="3.4702%" y="671.50"></text></g><g><title>PhiResolverState::reset (129 samples, 0.06%)</title><rect x="3.2489%" y="645" width="0.0579%" height="15" fill="rgb(248,9,4)" fg:x="7238" fg:w="129"/><text x="3.4989%" y="655.50"></text></g><g><title>LIRGenerator::do_Goto (214 samples, 0.10%)</title><rect x="3.2157%" y="677" width="0.0961%" height="15" fill="rgb(210,31,22)" fg:x="7164" fg:w="214"/><text x="3.4657%" y="687.50"></text></g><g><title>LIRGenerator::profile_branch (29 samples, 0.01%)</title><rect x="3.3217%" y="661" width="0.0130%" height="15" fill="rgb(239,54,39)" fg:x="7400" fg:w="29"/><text x="3.5717%" y="671.50"></text></g><g><title>LIRGenerator::do_If (63 samples, 0.03%)</title><rect x="3.3118%" y="677" width="0.0283%" height="15" fill="rgb(230,99,41)" fg:x="7378" fg:w="63"/><text x="3.5618%" y="687.50"></text></g><g><title>FrameMap::java_calling_convention (27 samples, 0.01%)</title><rect x="3.3441%" y="661" width="0.0121%" height="15" fill="rgb(253,106,12)" fg:x="7450" fg:w="27"/><text x="3.5941%" y="671.50"></text></g><g><title>MethodLiveness::get_liveness_at (28 samples, 0.01%)</title><rect x="3.3800%" y="629" width="0.0126%" height="15" fill="rgb(213,46,41)" fg:x="7530" fg:w="28"/><text x="3.6300%" y="639.50"></text></g><g><title>LIRGenerator::state_for (43 samples, 0.02%)</title><rect x="3.3737%" y="661" width="0.0193%" height="15" fill="rgb(215,133,35)" fg:x="7516" fg:w="43"/><text x="3.6237%" y="671.50"></text></g><g><title>ciMethod::liveness_at_bci (32 samples, 0.01%)</title><rect x="3.3787%" y="645" width="0.0144%" height="15" fill="rgb(213,28,5)" fg:x="7527" fg:w="32"/><text x="3.6287%" y="655.50"></text></g><g><title>LIRGenerator::do_Invoke (122 samples, 0.05%)</title><rect x="3.3423%" y="677" width="0.0548%" height="15" fill="rgb(215,77,49)" fg:x="7446" fg:w="122"/><text x="3.5923%" y="687.50"></text></g><g><title>LIRGenerator::access_load_at (24 samples, 0.01%)</title><rect x="3.4002%" y="661" width="0.0108%" height="15" fill="rgb(248,100,22)" fg:x="7575" fg:w="24"/><text x="3.6502%" y="671.50"></text></g><g><title>LIRGenerator::do_LoadField (43 samples, 0.02%)</title><rect x="3.3971%" y="677" width="0.0193%" height="15" fill="rgb(208,67,9)" fg:x="7568" fg:w="43"/><text x="3.6471%" y="687.50"></text></g><g><title>LIRGenerator::do_ProfileCall (27 samples, 0.01%)</title><rect x="3.4330%" y="677" width="0.0121%" height="15" fill="rgb(219,133,21)" fg:x="7648" fg:w="27"/><text x="3.6830%" y="687.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (44 samples, 0.02%)</title><rect x="3.4451%" y="661" width="0.0198%" height="15" fill="rgb(246,46,29)" fg:x="7675" fg:w="44"/><text x="3.6951%" y="671.50"></text></g><g><title>LIRGenerator::state_for (39 samples, 0.02%)</title><rect x="3.4649%" y="661" width="0.0175%" height="15" fill="rgb(246,185,52)" fg:x="7719" fg:w="39"/><text x="3.7149%" y="671.50"></text></g><g><title>ciMethod::liveness_at_bci (27 samples, 0.01%)</title><rect x="3.4702%" y="645" width="0.0121%" height="15" fill="rgb(252,136,11)" fg:x="7731" fg:w="27"/><text x="3.7202%" y="655.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (90 samples, 0.04%)</title><rect x="3.4451%" y="677" width="0.0404%" height="15" fill="rgb(219,138,53)" fg:x="7675" fg:w="90"/><text x="3.6951%" y="687.50"></text></g><g><title>LIRGenerator::access_store_at (25 samples, 0.01%)</title><rect x="3.4895%" y="661" width="0.0112%" height="15" fill="rgb(211,51,23)" fg:x="7774" fg:w="25"/><text x="3.7395%" y="671.50"></text></g><g><title>LIRGenerator::do_StoreField (30 samples, 0.01%)</title><rect x="3.4886%" y="677" width="0.0135%" height="15" fill="rgb(247,221,28)" fg:x="7772" fg:w="30"/><text x="3.7386%" y="687.50"></text></g><g><title>LIRGenerator::block_do (825 samples, 0.37%)</title><rect x="3.1430%" y="693" width="0.3703%" height="15" fill="rgb(251,222,45)" fg:x="7002" fg:w="825"/><text x="3.3930%" y="703.50"></text></g><g><title>BlockList::iterate_forward (829 samples, 0.37%)</title><rect x="3.1417%" y="709" width="0.3721%" height="15" fill="rgb(217,162,53)" fg:x="6999" fg:w="829"/><text x="3.3917%" y="719.50"></text></g><g><title>ControlFlowOptimizer::optimize (32 samples, 0.01%)</title><rect x="3.5138%" y="709" width="0.0144%" height="15" fill="rgb(229,93,14)" fg:x="7828" fg:w="32"/><text x="3.7638%" y="719.50"></text></g><g><title>EdgeMoveOptimizer::optimize (27 samples, 0.01%)</title><rect x="3.5326%" y="693" width="0.0121%" height="15" fill="rgb(209,67,49)" fg:x="7870" fg:w="27"/><text x="3.7826%" y="703.50"></text></g><g><title>IntervalWalker::walk_to (124 samples, 0.06%)</title><rect x="3.5766%" y="661" width="0.0557%" height="15" fill="rgb(213,87,29)" fg:x="7968" fg:w="124"/><text x="3.8266%" y="671.50"></text></g><g><title>LinearScanWalker::find_free_reg (101 samples, 0.05%)</title><rect x="3.6799%" y="629" width="0.0453%" height="15" fill="rgb(205,151,52)" fg:x="8198" fg:w="101"/><text x="3.9299%" y="639.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (129 samples, 0.06%)</title><rect x="3.7328%" y="629" width="0.0579%" height="15" fill="rgb(253,215,39)" fg:x="8316" fg:w="129"/><text x="3.9828%" y="639.50"></text></g><g><title>Interval::new_split_child (30 samples, 0.01%)</title><rect x="3.8024%" y="597" width="0.0135%" height="15" fill="rgb(221,220,41)" fg:x="8471" fg:w="30"/><text x="4.0524%" y="607.50"></text></g><g><title>Interval::split (48 samples, 0.02%)</title><rect x="3.7966%" y="613" width="0.0215%" height="15" fill="rgb(218,133,21)" fg:x="8458" fg:w="48"/><text x="4.0466%" y="623.50"></text></g><g><title>LinearScanWalker::split_before_usage (69 samples, 0.03%)</title><rect x="3.7907%" y="629" width="0.0310%" height="15" fill="rgb(221,193,43)" fg:x="8445" fg:w="69"/><text x="4.0407%" y="639.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (401 samples, 0.18%)</title><rect x="3.6444%" y="645" width="0.1800%" height="15" fill="rgb(240,128,52)" fg:x="8119" fg:w="401"/><text x="3.8944%" y="655.50"></text></g><g><title>IntervalWalker::append_to_unhandled (24 samples, 0.01%)</title><rect x="3.8513%" y="613" width="0.0108%" height="15" fill="rgb(253,114,12)" fg:x="8580" fg:w="24"/><text x="4.1013%" y="623.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (48 samples, 0.02%)</title><rect x="3.8509%" y="629" width="0.0215%" height="15" fill="rgb(215,223,47)" fg:x="8579" fg:w="48"/><text x="4.1009%" y="639.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (138 samples, 0.06%)</title><rect x="3.8244%" y="645" width="0.0619%" height="15" fill="rgb(248,225,23)" fg:x="8520" fg:w="138"/><text x="4.0744%" y="655.50"></text></g><g><title>LinearScanWalker::split_for_spilling (31 samples, 0.01%)</title><rect x="3.8724%" y="629" width="0.0139%" height="15" fill="rgb(250,108,0)" fg:x="8627" fg:w="31"/><text x="4.1224%" y="639.50"></text></g><g><title>Interval::split_child_before_op_id (26 samples, 0.01%)</title><rect x="3.8747%" y="613" width="0.0117%" height="15" fill="rgb(228,208,7)" fg:x="8632" fg:w="26"/><text x="4.1247%" y="623.50"></text></g><g><title>LinearScanWalker::init_vars_for_alloc (23 samples, 0.01%)</title><rect x="3.8917%" y="645" width="0.0103%" height="15" fill="rgb(244,45,10)" fg:x="8670" fg:w="23"/><text x="4.1417%" y="655.50"></text></g><g><title>LinearScanWalker::insert_move (30 samples, 0.01%)</title><rect x="3.9021%" y="645" width="0.0135%" height="15" fill="rgb(207,125,25)" fg:x="8693" fg:w="30"/><text x="4.1521%" y="655.50"></text></g><g><title>IntervalWalker::walk_to (811 samples, 0.36%)</title><rect x="3.5551%" y="677" width="0.3640%" height="15" fill="rgb(210,195,18)" fg:x="7920" fg:w="811"/><text x="3.8051%" y="687.50"></text></g><g><title>LinearScanWalker::activate_current (639 samples, 0.29%)</title><rect x="3.6323%" y="661" width="0.2868%" height="15" fill="rgb(249,80,12)" fg:x="8092" fg:w="639"/><text x="3.8823%" y="671.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (70 samples, 0.03%)</title><rect x="3.9200%" y="677" width="0.0314%" height="15" fill="rgb(221,65,9)" fg:x="8733" fg:w="70"/><text x="4.1700%" y="687.50"></text></g><g><title>resource_allocate_bytes (48 samples, 0.02%)</title><rect x="3.9299%" y="661" width="0.0215%" height="15" fill="rgb(235,49,36)" fg:x="8755" fg:w="48"/><text x="4.1799%" y="671.50"></text></g><g><title>LinearScan::allocate_registers (911 samples, 0.41%)</title><rect x="3.5448%" y="693" width="0.4089%" height="15" fill="rgb(225,32,20)" fg:x="7897" fg:w="911"/><text x="3.7948%" y="703.50"></text></g><g><title>LIR_OpVisitState::visit (69 samples, 0.03%)</title><rect x="4.0102%" y="661" width="0.0310%" height="15" fill="rgb(215,141,46)" fg:x="8934" fg:w="69"/><text x="4.2602%" y="671.50"></text></g><g><title>LinearScan::color_lir_opr (47 samples, 0.02%)</title><rect x="4.0426%" y="661" width="0.0211%" height="15" fill="rgb(250,160,47)" fg:x="9006" fg:w="47"/><text x="4.2926%" y="671.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (24 samples, 0.01%)</title><rect x="4.1162%" y="613" width="0.0108%" height="15" fill="rgb(216,222,40)" fg:x="9170" fg:w="24"/><text x="4.3662%" y="623.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (46 samples, 0.02%)</title><rect x="4.1094%" y="629" width="0.0206%" height="15" fill="rgb(234,217,39)" fg:x="9155" fg:w="46"/><text x="4.3594%" y="639.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (89 samples, 0.04%)</title><rect x="4.0937%" y="645" width="0.0399%" height="15" fill="rgb(207,178,40)" fg:x="9120" fg:w="89"/><text x="4.3437%" y="655.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (172 samples, 0.08%)</title><rect x="4.0637%" y="661" width="0.0772%" height="15" fill="rgb(221,136,13)" fg:x="9053" fg:w="172"/><text x="4.3137%" y="671.50"></text></g><g><title>IntervalWalker::walk_to (69 samples, 0.03%)</title><rect x="4.1602%" y="629" width="0.0310%" height="15" fill="rgb(249,199,10)" fg:x="9268" fg:w="69"/><text x="4.4102%" y="639.50"></text></g><g><title>LinearScan::compute_oop_map (146 samples, 0.07%)</title><rect x="4.1489%" y="645" width="0.0655%" height="15" fill="rgb(249,222,13)" fg:x="9243" fg:w="146"/><text x="4.3989%" y="655.50"></text></g><g><title>LinearScan::assign_reg_num (576 samples, 0.26%)</title><rect x="3.9568%" y="677" width="0.2586%" height="15" fill="rgb(244,185,38)" fg:x="8815" fg:w="576"/><text x="4.2068%" y="687.50"></text></g><g><title>LinearScan::compute_oop_map (166 samples, 0.07%)</title><rect x="4.1409%" y="661" width="0.0745%" height="15" fill="rgb(236,202,9)" fg:x="9225" fg:w="166"/><text x="4.3909%" y="671.50"></text></g><g><title>LinearScan::assign_reg_num (611 samples, 0.27%)</title><rect x="3.9537%" y="693" width="0.2743%" height="15" fill="rgb(250,229,37)" fg:x="8808" fg:w="611"/><text x="4.2037%" y="703.50"></text></g><g><title>LinearScan::init_compute_oop_maps (24 samples, 0.01%)</title><rect x="4.2172%" y="677" width="0.0108%" height="15" fill="rgb(206,174,23)" fg:x="9395" fg:w="24"/><text x="4.4672%" y="687.50"></text></g><g><title>BitMap::get_next_one_offset (35 samples, 0.02%)</title><rect x="4.3074%" y="677" width="0.0157%" height="15" fill="rgb(211,33,43)" fg:x="9596" fg:w="35"/><text x="4.5574%" y="687.50"></text></g><g><title>LIR_OpVisitState::append (28 samples, 0.01%)</title><rect x="4.3702%" y="661" width="0.0126%" height="15" fill="rgb(245,58,50)" fg:x="9736" fg:w="28"/><text x="4.6202%" y="671.50"></text></g><g><title>LIR_OpVisitState::visit (87 samples, 0.04%)</title><rect x="4.3469%" y="677" width="0.0391%" height="15" fill="rgb(244,68,36)" fg:x="9684" fg:w="87"/><text x="4.5969%" y="687.50"></text></g><g><title>LinearScan::add_def (51 samples, 0.02%)</title><rect x="4.3859%" y="677" width="0.0229%" height="15" fill="rgb(232,229,15)" fg:x="9771" fg:w="51"/><text x="4.6359%" y="687.50"></text></g><g><title>Interval::add_range (35 samples, 0.02%)</title><rect x="4.4205%" y="661" width="0.0157%" height="15" fill="rgb(254,30,23)" fg:x="9848" fg:w="35"/><text x="4.6705%" y="671.50"></text></g><g><title>Interval::Interval (37 samples, 0.02%)</title><rect x="4.4421%" y="645" width="0.0166%" height="15" fill="rgb(235,160,14)" fg:x="9896" fg:w="37"/><text x="4.6921%" y="655.50"></text></g><g><title>LinearScan::add_temp (105 samples, 0.05%)</title><rect x="4.4160%" y="677" width="0.0471%" height="15" fill="rgb(212,155,44)" fg:x="9838" fg:w="105"/><text x="4.6660%" y="687.50"></text></g><g><title>LinearScan::create_interval (60 samples, 0.03%)</title><rect x="4.4362%" y="661" width="0.0269%" height="15" fill="rgb(226,2,50)" fg:x="9883" fg:w="60"/><text x="4.6862%" y="671.50"></text></g><g><title>Interval::add_range (45 samples, 0.02%)</title><rect x="4.4910%" y="661" width="0.0202%" height="15" fill="rgb(234,177,6)" fg:x="10005" fg:w="45"/><text x="4.7410%" y="671.50"></text></g><g><title>Interval::Interval (50 samples, 0.02%)</title><rect x="4.5157%" y="645" width="0.0224%" height="15" fill="rgb(217,24,9)" fg:x="10060" fg:w="50"/><text x="4.7657%" y="655.50"></text></g><g><title>resource_allocate_bytes (23 samples, 0.01%)</title><rect x="4.5278%" y="629" width="0.0103%" height="15" fill="rgb(220,13,46)" fg:x="10087" fg:w="23"/><text x="4.7778%" y="639.50"></text></g><g><title>LinearScan::add_use (174 samples, 0.08%)</title><rect x="4.4631%" y="677" width="0.0781%" height="15" fill="rgb(239,221,27)" fg:x="9943" fg:w="174"/><text x="4.7131%" y="687.50"></text></g><g><title>LinearScan::create_interval (66 samples, 0.03%)</title><rect x="4.5116%" y="661" width="0.0296%" height="15" fill="rgb(222,198,25)" fg:x="10051" fg:w="66"/><text x="4.7616%" y="671.50"></text></g><g><title>LinearScan::use_kind_of_input_operand (24 samples, 0.01%)</title><rect x="4.5453%" y="677" width="0.0108%" height="15" fill="rgb(211,99,13)" fg:x="10126" fg:w="24"/><text x="4.7953%" y="687.50"></text></g><g><title>LinearScan::use_kind_of_output_operand (34 samples, 0.02%)</title><rect x="4.5561%" y="677" width="0.0153%" height="15" fill="rgb(232,111,31)" fg:x="10150" fg:w="34"/><text x="4.8061%" y="687.50"></text></g><g><title>LinearScan::build_intervals (776 samples, 0.35%)</title><rect x="4.2279%" y="693" width="0.3483%" height="15" fill="rgb(245,82,37)" fg:x="9419" fg:w="776"/><text x="4.4779%" y="703.50"></text></g><g><title>LinearScan::compute_global_live_sets (57 samples, 0.03%)</title><rect x="4.5763%" y="693" width="0.0256%" height="15" fill="rgb(227,149,46)" fg:x="10195" fg:w="57"/><text x="4.8263%" y="703.50"></text></g><g><title>LIR_OpVisitState::visit (96 samples, 0.04%)</title><rect x="4.6665%" y="677" width="0.0431%" height="15" fill="rgb(218,36,50)" fg:x="10396" fg:w="96"/><text x="4.9165%" y="687.50"></text></g><g><title>LIR_OpVisitState::append (28 samples, 0.01%)</title><rect x="4.6970%" y="661" width="0.0126%" height="15" fill="rgb(226,80,48)" fg:x="10464" fg:w="28"/><text x="4.9470%" y="671.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (33 samples, 0.01%)</title><rect x="4.7154%" y="677" width="0.0148%" height="15" fill="rgb(238,224,15)" fg:x="10505" fg:w="33"/><text x="4.9654%" y="687.50"></text></g><g><title>LinearScan::compute_local_live_sets (287 samples, 0.13%)</title><rect x="4.6018%" y="693" width="0.1288%" height="15" fill="rgb(241,136,10)" fg:x="10252" fg:w="287"/><text x="4.8518%" y="703.50"></text></g><g><title>LinearScan::eliminate_spill_moves (54 samples, 0.02%)</title><rect x="4.7307%" y="693" width="0.0242%" height="15" fill="rgb(208,32,45)" fg:x="10539" fg:w="54"/><text x="4.9807%" y="703.50"></text></g><g><title>LinearScan::number_instructions (29 samples, 0.01%)</title><rect x="4.7549%" y="693" width="0.0130%" height="15" fill="rgb(207,135,9)" fg:x="10593" fg:w="29"/><text x="5.0049%" y="703.50"></text></g><g><title>LinearScan::resolve_collect_mappings (74 samples, 0.03%)</title><rect x="4.7832%" y="677" width="0.0332%" height="15" fill="rgb(206,86,44)" fg:x="10656" fg:w="74"/><text x="5.0332%" y="687.50"></text></g><g><title>Interval::split_child_at_op_id (29 samples, 0.01%)</title><rect x="4.8034%" y="661" width="0.0130%" height="15" fill="rgb(245,177,15)" fg:x="10701" fg:w="29"/><text x="5.0534%" y="671.50"></text></g><g><title>LinearScan::resolve_data_flow (127 samples, 0.06%)</title><rect x="4.7697%" y="693" width="0.0570%" height="15" fill="rgb(206,64,50)" fg:x="10626" fg:w="127"/><text x="5.0197%" y="703.50"></text></g><g><title>LinearScan::resolve_exception_handlers (37 samples, 0.02%)</title><rect x="4.8267%" y="693" width="0.0166%" height="15" fill="rgb(234,36,40)" fg:x="10753" fg:w="37"/><text x="5.0767%" y="703.50"></text></g><g><title>__GI___qsort_r (25 samples, 0.01%)</title><rect x="4.8510%" y="677" width="0.0112%" height="15" fill="rgb(213,64,8)" fg:x="10807" fg:w="25"/><text x="5.1010%" y="687.50"></text></g><g><title>msort_with_tmp (24 samples, 0.01%)</title><rect x="4.8514%" y="661" width="0.0108%" height="15" fill="rgb(210,75,36)" fg:x="10808" fg:w="24"/><text x="5.1014%" y="671.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (46 samples, 0.02%)</title><rect x="4.8433%" y="693" width="0.0206%" height="15" fill="rgb(229,88,21)" fg:x="10790" fg:w="46"/><text x="5.0933%" y="703.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (51 samples, 0.02%)</title><rect x="4.8640%" y="693" width="0.0229%" height="15" fill="rgb(252,204,47)" fg:x="10836" fg:w="51"/><text x="5.1140%" y="703.50"></text></g><g><title>LinearScan::do_linear_scan (3,024 samples, 1.36%)</title><rect x="3.5299%" y="709" width="1.3574%" height="15" fill="rgb(208,77,27)" fg:x="7864" fg:w="3024"/><text x="3.7799%" y="719.50"></text></g><g><title>Compilation::emit_lir (3,899 samples, 1.75%)</title><rect x="3.1399%" y="725" width="1.7502%" height="15" fill="rgb(221,76,26)" fg:x="6995" fg:w="3899"/><text x="3.3899%" y="735.50"></text></g><g><title>Method::build_interpreter_method_data (47 samples, 0.02%)</title><rect x="4.8999%" y="693" width="0.0211%" height="15" fill="rgb(225,139,18)" fg:x="10916" fg:w="47"/><text x="5.1499%" y="703.50"></text></g><g><title>MethodData::allocate (44 samples, 0.02%)</title><rect x="4.9012%" y="677" width="0.0198%" height="15" fill="rgb(230,137,11)" fg:x="10919" fg:w="44"/><text x="5.1512%" y="687.50"></text></g><g><title>ciMethodData::load_data (30 samples, 0.01%)</title><rect x="4.9219%" y="693" width="0.0135%" height="15" fill="rgb(212,28,1)" fg:x="10965" fg:w="30"/><text x="5.1719%" y="703.50"></text></g><g><title>Compilation::compile_java_method (9,127 samples, 4.10%)</title><rect x="0.8412%" y="741" width="4.0969%" height="15" fill="rgb(248,164,17)" fg:x="1874" fg:w="9127"/><text x="1.0912%" y="751.50">Comp..</text></g><g><title>ciMethod::ensure_method_data (88 samples, 0.04%)</title><rect x="4.8986%" y="725" width="0.0395%" height="15" fill="rgb(222,171,42)" fg:x="10913" fg:w="88"/><text x="5.1486%" y="735.50"></text></g><g><title>ciMethod::ensure_method_data (87 samples, 0.04%)</title><rect x="4.8990%" y="709" width="0.0391%" height="15" fill="rgb(243,84,45)" fg:x="10914" fg:w="87"/><text x="5.1490%" y="719.50"></text></g><g><title>DebugInformationRecorder::DebugInformationRecorder (25 samples, 0.01%)</title><rect x="4.9385%" y="725" width="0.0112%" height="15" fill="rgb(252,49,23)" fg:x="11002" fg:w="25"/><text x="5.1885%" y="735.50"></text></g><g><title>Dependencies::initialize (28 samples, 0.01%)</title><rect x="4.9497%" y="725" width="0.0126%" height="15" fill="rgb(215,19,7)" fg:x="11027" fg:w="28"/><text x="5.1997%" y="735.50"></text></g><g><title>Compilation::initialize (58 samples, 0.03%)</title><rect x="4.9381%" y="741" width="0.0260%" height="15" fill="rgb(238,81,41)" fg:x="11001" fg:w="58"/><text x="5.1881%" y="751.50"></text></g><g><title>CodeBuffer::finalize_oop_references (64 samples, 0.03%)</title><rect x="5.0081%" y="709" width="0.0287%" height="15" fill="rgb(210,199,37)" fg:x="11157" fg:w="64"/><text x="5.2581%" y="719.50"></text></g><g><title>CodeHeap::allocate (48 samples, 0.02%)</title><rect x="5.0368%" y="693" width="0.0215%" height="15" fill="rgb(244,192,49)" fg:x="11221" fg:w="48"/><text x="5.2868%" y="703.50"></text></g><g><title>CodeCache::allocate (68 samples, 0.03%)</title><rect x="5.0368%" y="709" width="0.0305%" height="15" fill="rgb(226,211,11)" fg:x="11221" fg:w="68"/><text x="5.2868%" y="719.50"></text></g><g><title>do_syscall_64 (25 samples, 0.01%)</title><rect x="5.0781%" y="661" width="0.0112%" height="15" fill="rgb(236,162,54)" fg:x="11313" fg:w="25"/><text x="5.3281%" y="671.50"></text></g><g><title>__x64_sys_futex (25 samples, 0.01%)</title><rect x="5.0781%" y="645" width="0.0112%" height="15" fill="rgb(220,229,9)" fg:x="11313" fg:w="25"/><text x="5.3281%" y="655.50"></text></g><g><title>do_futex (25 samples, 0.01%)</title><rect x="5.0781%" y="629" width="0.0112%" height="15" fill="rgb(250,87,22)" fg:x="11313" fg:w="25"/><text x="5.3281%" y="639.50"></text></g><g><title>futex_wake (25 samples, 0.01%)</title><rect x="5.0781%" y="613" width="0.0112%" height="15" fill="rgb(239,43,17)" fg:x="11313" fg:w="25"/><text x="5.3281%" y="623.50"></text></g><g><title>__pthread_cond_signal (37 samples, 0.02%)</title><rect x="5.0777%" y="709" width="0.0166%" height="15" fill="rgb(231,177,25)" fg:x="11312" fg:w="37"/><text x="5.3277%" y="719.50"></text></g><g><title>futex_wake (36 samples, 0.02%)</title><rect x="5.0781%" y="693" width="0.0162%" height="15" fill="rgb(219,179,1)" fg:x="11313" fg:w="36"/><text x="5.3281%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="5.0781%" y="677" width="0.0162%" height="15" fill="rgb(238,219,53)" fg:x="11313" fg:w="36"/><text x="5.3281%" y="687.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (36 samples, 0.02%)</title><rect x="5.1077%" y="661" width="0.0162%" height="15" fill="rgb(232,167,36)" fg:x="11379" fg:w="36"/><text x="5.3577%" y="671.50"></text></g><g><title>Relocation::pd_call_destination (31 samples, 0.01%)</title><rect x="5.1100%" y="645" width="0.0139%" height="15" fill="rgb(244,19,51)" fg:x="11384" fg:w="31"/><text x="5.3600%" y="655.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (24 samples, 0.01%)</title><rect x="5.1369%" y="661" width="0.0108%" height="15" fill="rgb(224,6,22)" fg:x="11444" fg:w="24"/><text x="5.3869%" y="671.50"></text></g><g><title>CodeBuffer::relocate_code_to (113 samples, 0.05%)</title><rect x="5.0983%" y="677" width="0.0507%" height="15" fill="rgb(224,145,5)" fg:x="11358" fg:w="113"/><text x="5.3483%" y="687.50"></text></g><g><title>CodeBuffer::copy_code_to (128 samples, 0.06%)</title><rect x="5.0961%" y="693" width="0.0575%" height="15" fill="rgb(234,130,49)" fg:x="11353" fg:w="128"/><text x="5.3461%" y="703.50"></text></g><g><title>CodeBlob::CodeBlob (38 samples, 0.02%)</title><rect x="5.1598%" y="677" width="0.0171%" height="15" fill="rgb(254,6,2)" fg:x="11495" fg:w="38"/><text x="5.4098%" y="687.50"></text></g><g><title>ImmutableOopMapSet::build_from (38 samples, 0.02%)</title><rect x="5.1598%" y="661" width="0.0171%" height="15" fill="rgb(208,96,46)" fg:x="11495" fg:w="38"/><text x="5.4098%" y="671.50"></text></g><g><title>CompiledMethod::CompiledMethod (42 samples, 0.02%)</title><rect x="5.1589%" y="693" width="0.0189%" height="15" fill="rgb(239,3,39)" fg:x="11493" fg:w="42"/><text x="5.4089%" y="703.50"></text></g><g><title>G1CodeRootSet::add (30 samples, 0.01%)</title><rect x="5.1849%" y="661" width="0.0135%" height="15" fill="rgb(233,210,1)" fg:x="11551" fg:w="30"/><text x="5.4349%" y="671.50"></text></g><g><title>G1CollectedHeap::register_nmethod (45 samples, 0.02%)</title><rect x="5.1795%" y="693" width="0.0202%" height="15" fill="rgb(244,137,37)" fg:x="11539" fg:w="45"/><text x="5.4295%" y="703.50"></text></g><g><title>nmethod::oops_do (45 samples, 0.02%)</title><rect x="5.1795%" y="677" width="0.0202%" height="15" fill="rgb(240,136,2)" fg:x="11539" fg:w="45"/><text x="5.4295%" y="687.50"></text></g><g><title>nmethod::nmethod (284 samples, 0.13%)</title><rect x="5.0947%" y="709" width="0.1275%" height="15" fill="rgb(239,18,37)" fg:x="11350" fg:w="284"/><text x="5.3447%" y="719.50"></text></g><g><title>ciEnv::register_method (575 samples, 0.26%)</title><rect x="4.9650%" y="741" width="0.2581%" height="15" fill="rgb(218,185,22)" fg:x="11061" fg:w="575"/><text x="5.2150%" y="751.50"></text></g><g><title>nmethod::new_nmethod (491 samples, 0.22%)</title><rect x="5.0027%" y="725" width="0.2204%" height="15" fill="rgb(225,218,4)" fg:x="11145" fg:w="491"/><text x="5.2527%" y="735.50"></text></g><g><title>Compilation::compile_method (9,768 samples, 4.38%)</title><rect x="0.8389%" y="757" width="4.3846%" height="15" fill="rgb(230,182,32)" fg:x="1869" fg:w="9768"/><text x="1.0889%" y="767.50">Compi..</text></g><g><title>Compilation::Compilation (9,779 samples, 4.39%)</title><rect x="0.8349%" y="773" width="4.3895%" height="15" fill="rgb(242,56,43)" fg:x="1860" fg:w="9779"/><text x="1.0849%" y="783.50">Compi..</text></g><g><title>Compiler::compile_method (9,800 samples, 4.40%)</title><rect x="0.8259%" y="789" width="4.3990%" height="15" fill="rgb(233,99,24)" fg:x="1840" fg:w="9800"/><text x="1.0759%" y="799.50">Compi..</text></g><g><title>ciObjectFactory::ciObjectFactory (30 samples, 0.01%)</title><rect x="5.2446%" y="773" width="0.0135%" height="15" fill="rgb(234,209,42)" fg:x="11684" fg:w="30"/><text x="5.4946%" y="783.50"></text></g><g><title>ciEnv::ciEnv (94 samples, 0.04%)</title><rect x="5.2401%" y="789" width="0.0422%" height="15" fill="rgb(227,7,12)" fg:x="11674" fg:w="94"/><text x="5.4901%" y="799.50"></text></g><g><title>ciObjectFactory::get (54 samples, 0.02%)</title><rect x="5.2581%" y="773" width="0.0242%" height="15" fill="rgb(245,203,43)" fg:x="11714" fg:w="54"/><text x="5.5081%" y="783.50"></text></g><g><title>ciObjectFactory::get_metadata (35 samples, 0.02%)</title><rect x="5.2666%" y="757" width="0.0157%" height="15" fill="rgb(238,205,33)" fg:x="11733" fg:w="35"/><text x="5.5166%" y="767.50"></text></g><g><title>ciObjectFactory::create_new_metadata (33 samples, 0.01%)</title><rect x="5.2675%" y="741" width="0.0148%" height="15" fill="rgb(231,56,7)" fg:x="11735" fg:w="33"/><text x="5.5175%" y="751.50"></text></g><g><title>ciInstanceKlass::ciInstanceKlass (29 samples, 0.01%)</title><rect x="5.2693%" y="725" width="0.0130%" height="15" fill="rgb(244,186,29)" fg:x="11739" fg:w="29"/><text x="5.5193%" y="735.50"></text></g><g><title>SignatureStream::as_symbol (29 samples, 0.01%)</title><rect x="5.2976%" y="709" width="0.0130%" height="15" fill="rgb(234,111,31)" fg:x="11802" fg:w="29"/><text x="5.5476%" y="719.50"></text></g><g><title>SymbolTable::lookup (28 samples, 0.01%)</title><rect x="5.2981%" y="693" width="0.0126%" height="15" fill="rgb(241,149,10)" fg:x="11803" fg:w="28"/><text x="5.5481%" y="703.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (40 samples, 0.02%)</title><rect x="5.3120%" y="709" width="0.0180%" height="15" fill="rgb(249,206,44)" fg:x="11834" fg:w="40"/><text x="5.5620%" y="719.50"></text></g><g><title>ciMethod::ciMethod (102 samples, 0.05%)</title><rect x="5.2877%" y="741" width="0.0458%" height="15" fill="rgb(251,153,30)" fg:x="11780" fg:w="102"/><text x="5.5377%" y="751.50"></text></g><g><title>ciSignature::ciSignature (90 samples, 0.04%)</title><rect x="5.2931%" y="725" width="0.0404%" height="15" fill="rgb(239,152,38)" fg:x="11792" fg:w="90"/><text x="5.5431%" y="735.50"></text></g><g><title>ciEnv::get_method_from_handle (123 samples, 0.06%)</title><rect x="5.2823%" y="789" width="0.0552%" height="15" fill="rgb(249,139,47)" fg:x="11768" fg:w="123"/><text x="5.5323%" y="799.50"></text></g><g><title>ciObjectFactory::get_metadata (120 samples, 0.05%)</title><rect x="5.2837%" y="773" width="0.0539%" height="15" fill="rgb(244,64,35)" fg:x="11771" fg:w="120"/><text x="5.5337%" y="783.50"></text></g><g><title>ciObjectFactory::create_new_metadata (114 samples, 0.05%)</title><rect x="5.2864%" y="757" width="0.0512%" height="15" fill="rgb(216,46,15)" fg:x="11777" fg:w="114"/><text x="5.5364%" y="767.50"></text></g><g><title>ciEnv::~ciEnv (27 samples, 0.01%)</title><rect x="5.3376%" y="789" width="0.0121%" height="15" fill="rgb(250,74,19)" fg:x="11891" fg:w="27"/><text x="5.5876%" y="799.50"></text></g><g><title>ciObjectFactory::remove_symbols (24 samples, 0.01%)</title><rect x="5.3389%" y="773" width="0.0108%" height="15" fill="rgb(249,42,33)" fg:x="11894" fg:w="24"/><text x="5.5889%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (10,325 samples, 4.63%)</title><rect x="0.7169%" y="805" width="4.6346%" height="15" fill="rgb(242,149,17)" fg:x="1597" fg:w="10325"/><text x="0.9669%" y="815.50">Compi..</text></g><g><title>__sysinfo (23 samples, 0.01%)</title><rect x="5.3573%" y="773" width="0.0103%" height="15" fill="rgb(244,29,21)" fg:x="11935" fg:w="23"/><text x="5.6073%" y="783.50"></text></g><g><title>CompileBroker::possibly_add_compiler_threads (37 samples, 0.02%)</title><rect x="5.3515%" y="805" width="0.0166%" height="15" fill="rgb(220,130,37)" fg:x="11922" fg:w="37"/><text x="5.6015%" y="815.50"></text></g><g><title>os::available_memory (29 samples, 0.01%)</title><rect x="5.3551%" y="789" width="0.0130%" height="15" fill="rgb(211,67,2)" fg:x="11930" fg:w="29"/><text x="5.6051%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (103 samples, 0.05%)</title><rect x="5.3874%" y="549" width="0.0462%" height="15" fill="rgb(235,68,52)" fg:x="12002" fg:w="103"/><text x="5.6374%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (101 samples, 0.05%)</title><rect x="5.3883%" y="533" width="0.0453%" height="15" fill="rgb(246,142,3)" fg:x="12004" fg:w="101"/><text x="5.6383%" y="543.50"></text></g><g><title>native_write_msr (100 samples, 0.04%)</title><rect x="5.3887%" y="517" width="0.0449%" height="15" fill="rgb(241,25,7)" fg:x="12005" fg:w="100"/><text x="5.6387%" y="527.50"></text></g><g><title>finish_task_switch (104 samples, 0.05%)</title><rect x="5.3874%" y="565" width="0.0467%" height="15" fill="rgb(242,119,39)" fg:x="12002" fg:w="104"/><text x="5.6374%" y="575.50"></text></g><g><title>futex_wait_queue_me (117 samples, 0.05%)</title><rect x="5.3847%" y="613" width="0.0525%" height="15" fill="rgb(241,98,45)" fg:x="11996" fg:w="117"/><text x="5.6347%" y="623.50"></text></g><g><title>schedule (113 samples, 0.05%)</title><rect x="5.3865%" y="597" width="0.0507%" height="15" fill="rgb(254,28,30)" fg:x="12000" fg:w="113"/><text x="5.6365%" y="607.50"></text></g><g><title>__schedule (112 samples, 0.05%)</title><rect x="5.3869%" y="581" width="0.0503%" height="15" fill="rgb(241,142,54)" fg:x="12001" fg:w="112"/><text x="5.6369%" y="591.50"></text></g><g><title>do_syscall_64 (124 samples, 0.06%)</title><rect x="5.3842%" y="677" width="0.0557%" height="15" fill="rgb(222,85,15)" fg:x="11995" fg:w="124"/><text x="5.6342%" y="687.50"></text></g><g><title>__x64_sys_futex (124 samples, 0.06%)</title><rect x="5.3842%" y="661" width="0.0557%" height="15" fill="rgb(210,85,47)" fg:x="11995" fg:w="124"/><text x="5.6342%" y="671.50"></text></g><g><title>do_futex (124 samples, 0.06%)</title><rect x="5.3842%" y="645" width="0.0557%" height="15" fill="rgb(224,206,25)" fg:x="11995" fg:w="124"/><text x="5.6342%" y="655.50"></text></g><g><title>futex_wait (124 samples, 0.06%)</title><rect x="5.3842%" y="629" width="0.0557%" height="15" fill="rgb(243,201,19)" fg:x="11995" fg:w="124"/><text x="5.6342%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (133 samples, 0.06%)</title><rect x="5.3824%" y="741" width="0.0597%" height="15" fill="rgb(236,59,4)" fg:x="11991" fg:w="133"/><text x="5.6324%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (133 samples, 0.06%)</title><rect x="5.3824%" y="725" width="0.0597%" height="15" fill="rgb(254,179,45)" fg:x="11991" fg:w="133"/><text x="5.6324%" y="735.50"></text></g><g><title>futex_abstimed_wait_cancelable (130 samples, 0.06%)</title><rect x="5.3838%" y="709" width="0.0584%" height="15" fill="rgb(226,14,10)" fg:x="11994" fg:w="130"/><text x="5.6338%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (129 samples, 0.06%)</title><rect x="5.3842%" y="693" width="0.0579%" height="15" fill="rgb(244,27,41)" fg:x="11995" fg:w="129"/><text x="5.6342%" y="703.50"></text></g><g><title>Monitor::wait (142 samples, 0.06%)</title><rect x="5.3806%" y="789" width="0.0637%" height="15" fill="rgb(235,35,32)" fg:x="11987" fg:w="142"/><text x="5.6306%" y="799.50"></text></g><g><title>Monitor::IWait (141 samples, 0.06%)</title><rect x="5.3811%" y="773" width="0.0633%" height="15" fill="rgb(218,68,31)" fg:x="11988" fg:w="141"/><text x="5.6311%" y="783.50"></text></g><g><title>os::PlatformEvent::park (139 samples, 0.06%)</title><rect x="5.3820%" y="757" width="0.0624%" height="15" fill="rgb(207,120,37)" fg:x="11990" fg:w="139"/><text x="5.6320%" y="767.50"></text></g><g><title>TieredThresholdPolicy::select_task (70 samples, 0.03%)</title><rect x="5.4444%" y="789" width="0.0314%" height="15" fill="rgb(227,98,0)" fg:x="12129" fg:w="70"/><text x="5.6944%" y="799.50"></text></g><g><title>CompileQueue::get (245 samples, 0.11%)</title><rect x="5.3681%" y="805" width="0.1100%" height="15" fill="rgb(207,7,3)" fg:x="11959" fg:w="245"/><text x="5.6181%" y="815.50"></text></g><g><title>__GI___clone (10,624 samples, 4.77%)</title><rect x="0.7155%" y="901" width="4.7688%" height="15" fill="rgb(206,98,19)" fg:x="1594" fg:w="10624"/><text x="0.9655%" y="911.50">__GI__..</text></g><g><title>start_thread (10,624 samples, 4.77%)</title><rect x="0.7155%" y="885" width="4.7688%" height="15" fill="rgb(217,5,26)" fg:x="1594" fg:w="10624"/><text x="0.9655%" y="895.50">start_..</text></g><g><title>thread_native_entry (10,624 samples, 4.77%)</title><rect x="0.7155%" y="869" width="4.7688%" height="15" fill="rgb(235,190,38)" fg:x="1594" fg:w="10624"/><text x="0.9655%" y="879.50">thread..</text></g><g><title>Thread::call_run (10,624 samples, 4.77%)</title><rect x="0.7155%" y="853" width="4.7688%" height="15" fill="rgb(247,86,24)" fg:x="1594" fg:w="10624"/><text x="0.9655%" y="863.50">Thread..</text></g><g><title>JavaThread::thread_main_inner (10,624 samples, 4.77%)</title><rect x="0.7155%" y="837" width="4.7688%" height="15" fill="rgb(205,101,16)" fg:x="1594" fg:w="10624"/><text x="0.9655%" y="847.50">JavaTh..</text></g><g><title>CompileBroker::compiler_thread_loop (10,624 samples, 4.77%)</title><rect x="0.7155%" y="821" width="4.7688%" height="15" fill="rgb(246,168,33)" fg:x="1594" fg:w="10624"/><text x="0.9655%" y="831.50">Compil..</text></g><g><title>C1_CompilerThre (12,234 samples, 5.49%)</title><rect x="0.0139%" y="917" width="5.4915%" height="15" fill="rgb(231,114,1)" fg:x="31" fg:w="12234"/><text x="0.2639%" y="927.50">C1_Comp..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (46 samples, 0.02%)</title><rect x="5.5422%" y="901" width="0.0206%" height="15" fill="rgb(207,184,53)" fg:x="12347" fg:w="46"/><text x="5.7922%" y="911.50"></text></g><g><title>RegMask::is_UP (46 samples, 0.02%)</title><rect x="5.5422%" y="885" width="0.0206%" height="15" fill="rgb(224,95,51)" fg:x="12347" fg:w="46"/><text x="5.7922%" y="895.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (26 samples, 0.01%)</title><rect x="5.5633%" y="901" width="0.0117%" height="15" fill="rgb(212,188,45)" fg:x="12394" fg:w="26"/><text x="5.8133%" y="911.50"></text></g><g><title>ProjNode::pinned (62 samples, 0.03%)</title><rect x="5.6078%" y="885" width="0.0278%" height="15" fill="rgb(223,154,38)" fg:x="12493" fg:w="62"/><text x="5.8578%" y="895.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (66 samples, 0.03%)</title><rect x="5.6073%" y="901" width="0.0296%" height="15" fill="rgb(251,22,52)" fg:x="12492" fg:w="66"/><text x="5.8573%" y="911.50"></text></g><g><title>CallStaticJavaNode::Opcode (23 samples, 0.01%)</title><rect x="5.7505%" y="885" width="0.0103%" height="15" fill="rgb(229,209,22)" fg:x="12811" fg:w="23"/><text x="6.0005%" y="895.50"></text></g><g><title>IfFalseNode::Opcode (26 samples, 0.01%)</title><rect x="5.8928%" y="885" width="0.0117%" height="15" fill="rgb(234,138,34)" fg:x="13128" fg:w="26"/><text x="6.1428%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (46 samples, 0.02%)</title><rect x="5.9377%" y="885" width="0.0206%" height="15" fill="rgb(212,95,11)" fg:x="13228" fg:w="46"/><text x="6.1877%" y="895.50"></text></g><g><title>MachNode::ideal_reg (27 samples, 0.01%)</title><rect x="6.0351%" y="885" width="0.0121%" height="15" fill="rgb(240,179,47)" fg:x="13445" fg:w="27"/><text x="6.2851%" y="895.50"></text></g><g><title>MultiNode::is_CFG (60 samples, 0.03%)</title><rect x="6.1352%" y="885" width="0.0269%" height="15" fill="rgb(240,163,11)" fg:x="13668" fg:w="60"/><text x="6.3852%" y="895.50"></text></g><g><title>Node::is_CFG (58 samples, 0.03%)</title><rect x="6.1931%" y="885" width="0.0260%" height="15" fill="rgb(236,37,12)" fg:x="13797" fg:w="58"/><text x="6.4431%" y="895.50"></text></g><g><title>Node::pinned (27 samples, 0.01%)</title><rect x="6.2362%" y="885" width="0.0121%" height="15" fill="rgb(232,164,16)" fg:x="13893" fg:w="27"/><text x="6.4862%" y="895.50"></text></g><g><title>PhiNode::Opcode (29 samples, 0.01%)</title><rect x="6.3893%" y="885" width="0.0130%" height="15" fill="rgb(244,205,15)" fg:x="14234" fg:w="29"/><text x="6.6393%" y="895.50"></text></g><g><title>ProjNode::pinned (34 samples, 0.02%)</title><rect x="6.4319%" y="885" width="0.0153%" height="15" fill="rgb(223,117,47)" fg:x="14329" fg:w="34"/><text x="6.6819%" y="895.50"></text></g><g><title>RegionNode::is_CFG (39 samples, 0.02%)</title><rect x="6.4943%" y="885" width="0.0175%" height="15" fill="rgb(244,107,35)" fg:x="14468" fg:w="39"/><text x="6.7443%" y="895.50"></text></g><g><title>_dl_update_slotinfo (191 samples, 0.09%)</title><rect x="6.6967%" y="885" width="0.0857%" height="15" fill="rgb(205,140,8)" fg:x="14919" fg:w="191"/><text x="6.9467%" y="895.50"></text></g><g><title>find_lowest_bit (46 samples, 0.02%)</title><rect x="6.8781%" y="885" width="0.0206%" height="15" fill="rgb(228,84,46)" fg:x="15323" fg:w="46"/><text x="7.1281%" y="895.50"></text></g><g><title>jmpDirNode::is_block_proj (27 samples, 0.01%)</title><rect x="6.9153%" y="885" width="0.0121%" height="15" fill="rgb(254,188,9)" fg:x="15406" fg:w="27"/><text x="7.1653%" y="895.50"></text></g><g><title>update_get_addr (61 samples, 0.03%)</title><rect x="7.0199%" y="885" width="0.0274%" height="15" fill="rgb(206,112,54)" fg:x="15639" fg:w="61"/><text x="7.2699%" y="895.50"></text></g><g><title>[anon] (3,122 samples, 1.40%)</title><rect x="5.6477%" y="901" width="1.4014%" height="15" fill="rgb(216,84,49)" fg:x="12582" fg:w="3122"/><text x="5.8977%" y="911.50"></text></g><g><title>[perf-945576.map] (31 samples, 0.01%)</title><rect x="7.0505%" y="901" width="0.0139%" height="15" fill="rgb(214,194,35)" fg:x="15707" fg:w="31"/><text x="7.3005%" y="911.50"></text></g><g><title>ciTypeFlow::df_flow_types (25 samples, 0.01%)</title><rect x="7.0801%" y="661" width="0.0112%" height="15" fill="rgb(249,28,3)" fg:x="15773" fg:w="25"/><text x="7.3301%" y="671.50"></text></g><g><title>ciTypeFlow::flow_block (24 samples, 0.01%)</title><rect x="7.0805%" y="645" width="0.0108%" height="15" fill="rgb(222,56,52)" fg:x="15774" fg:w="24"/><text x="7.3305%" y="655.50"></text></g><g><title>Compile::call_generator (37 samples, 0.02%)</title><rect x="7.0751%" y="741" width="0.0166%" height="15" fill="rgb(245,217,50)" fg:x="15762" fg:w="37"/><text x="7.3251%" y="751.50"></text></g><g><title>InlineTree::ok_to_inline (37 samples, 0.02%)</title><rect x="7.0751%" y="725" width="0.0166%" height="15" fill="rgb(213,201,24)" fg:x="15762" fg:w="37"/><text x="7.3251%" y="735.50"></text></g><g><title>ciMethod::get_flow_analysis (28 samples, 0.01%)</title><rect x="7.0792%" y="709" width="0.0126%" height="15" fill="rgb(248,116,28)" fg:x="15771" fg:w="28"/><text x="7.3292%" y="719.50"></text></g><g><title>ciTypeFlow::do_flow (26 samples, 0.01%)</title><rect x="7.0801%" y="693" width="0.0117%" height="15" fill="rgb(219,72,43)" fg:x="15773" fg:w="26"/><text x="7.3301%" y="703.50"></text></g><g><title>ciTypeFlow::flow_types (26 samples, 0.01%)</title><rect x="7.0801%" y="677" width="0.0117%" height="15" fill="rgb(209,138,14)" fg:x="15773" fg:w="26"/><text x="7.3301%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (23 samples, 0.01%)</title><rect x="7.1030%" y="629" width="0.0103%" height="15" fill="rgb(222,18,33)" fg:x="15824" fg:w="23"/><text x="7.3530%" y="639.50"></text></g><g><title>ciBytecodeStream::get_field (23 samples, 0.01%)</title><rect x="7.1030%" y="613" width="0.0103%" height="15" fill="rgb(213,199,7)" fg:x="15824" fg:w="23"/><text x="7.3530%" y="623.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (53 samples, 0.02%)</title><rect x="7.1133%" y="629" width="0.0238%" height="15" fill="rgb(250,110,10)" fg:x="15847" fg:w="53"/><text x="7.3633%" y="639.50"></text></g><g><title>ciBytecodeStream::get_method (53 samples, 0.02%)</title><rect x="7.1133%" y="613" width="0.0238%" height="15" fill="rgb(248,123,6)" fg:x="15847" fg:w="53"/><text x="7.3633%" y="623.50"></text></g><g><title>ciEnv::get_method_by_index_impl (53 samples, 0.02%)</title><rect x="7.1133%" y="597" width="0.0238%" height="15" fill="rgb(206,91,31)" fg:x="15847" fg:w="53"/><text x="7.3633%" y="607.50"></text></g><g><title>ciObjectFactory::get_metadata (36 samples, 0.02%)</title><rect x="7.1209%" y="581" width="0.0162%" height="15" fill="rgb(211,154,13)" fg:x="15864" fg:w="36"/><text x="7.3709%" y="591.50"></text></g><g><title>ciObjectFactory::create_new_metadata (34 samples, 0.02%)</title><rect x="7.1218%" y="565" width="0.0153%" height="15" fill="rgb(225,148,7)" fg:x="15866" fg:w="34"/><text x="7.3718%" y="575.50"></text></g><g><title>ciMethod::ciMethod (33 samples, 0.01%)</title><rect x="7.1223%" y="549" width="0.0148%" height="15" fill="rgb(220,160,43)" fg:x="15867" fg:w="33"/><text x="7.3723%" y="559.50"></text></g><g><title>ciSignature::ciSignature (26 samples, 0.01%)</title><rect x="7.1254%" y="533" width="0.0117%" height="15" fill="rgb(213,52,39)" fg:x="15874" fg:w="26"/><text x="7.3754%" y="543.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (90 samples, 0.04%)</title><rect x="7.1003%" y="645" width="0.0404%" height="15" fill="rgb(243,137,7)" fg:x="15818" fg:w="90"/><text x="7.3503%" y="655.50"></text></g><g><title>ciTypeFlow::df_flow_types (108 samples, 0.05%)</title><rect x="7.0935%" y="677" width="0.0485%" height="15" fill="rgb(230,79,13)" fg:x="15803" fg:w="108"/><text x="7.3435%" y="687.50"></text></g><g><title>ciTypeFlow::flow_block (108 samples, 0.05%)</title><rect x="7.0935%" y="661" width="0.0485%" height="15" fill="rgb(247,105,23)" fg:x="15803" fg:w="108"/><text x="7.3435%" y="671.50"></text></g><g><title>InlineTree::ok_to_inline (115 samples, 0.05%)</title><rect x="7.0917%" y="741" width="0.0516%" height="15" fill="rgb(223,179,41)" fg:x="15799" fg:w="115"/><text x="7.3417%" y="751.50"></text></g><g><title>ciMethod::get_flow_analysis (111 samples, 0.05%)</title><rect x="7.0935%" y="725" width="0.0498%" height="15" fill="rgb(218,9,34)" fg:x="15803" fg:w="111"/><text x="7.3435%" y="735.50"></text></g><g><title>ciTypeFlow::do_flow (111 samples, 0.05%)</title><rect x="7.0935%" y="709" width="0.0498%" height="15" fill="rgb(222,106,8)" fg:x="15803" fg:w="111"/><text x="7.3435%" y="719.50"></text></g><g><title>ciTypeFlow::flow_types (111 samples, 0.05%)</title><rect x="7.0935%" y="693" width="0.0498%" height="15" fill="rgb(211,220,0)" fg:x="15803" fg:w="111"/><text x="7.3435%" y="703.50"></text></g><g><title>Compile::call_generator (157 samples, 0.07%)</title><rect x="7.0751%" y="757" width="0.0705%" height="15" fill="rgb(229,52,16)" fg:x="15762" fg:w="157"/><text x="7.3251%" y="767.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (40 samples, 0.02%)</title><rect x="7.2062%" y="533" width="0.0180%" height="15" fill="rgb(212,155,18)" fg:x="16054" fg:w="40"/><text x="7.4562%" y="543.50"></text></g><g><title>ciBytecodeStream::get_method (38 samples, 0.02%)</title><rect x="7.2071%" y="517" width="0.0171%" height="15" fill="rgb(242,21,14)" fg:x="16056" fg:w="38"/><text x="7.4571%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (37 samples, 0.02%)</title><rect x="7.2076%" y="501" width="0.0166%" height="15" fill="rgb(222,19,48)" fg:x="16057" fg:w="37"/><text x="7.4576%" y="511.50"></text></g><g><title>ciTypeFlow::df_flow_types (80 samples, 0.04%)</title><rect x="7.1892%" y="581" width="0.0359%" height="15" fill="rgb(232,45,27)" fg:x="16016" fg:w="80"/><text x="7.4392%" y="591.50"></text></g><g><title>ciTypeFlow::flow_block (72 samples, 0.03%)</title><rect x="7.1927%" y="565" width="0.0323%" height="15" fill="rgb(249,103,42)" fg:x="16024" fg:w="72"/><text x="7.4427%" y="575.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (56 samples, 0.03%)</title><rect x="7.1999%" y="549" width="0.0251%" height="15" fill="rgb(246,81,33)" fg:x="16040" fg:w="56"/><text x="7.4499%" y="559.50"></text></g><g><title>ciTypeFlow::do_flow (84 samples, 0.04%)</title><rect x="7.1892%" y="613" width="0.0377%" height="15" fill="rgb(252,33,42)" fg:x="16016" fg:w="84"/><text x="7.4392%" y="623.50"></text></g><g><title>ciTypeFlow::flow_types (84 samples, 0.04%)</title><rect x="7.1892%" y="597" width="0.0377%" height="15" fill="rgb(209,212,41)" fg:x="16016" fg:w="84"/><text x="7.4392%" y="607.50"></text></g><g><title>InlineTree::ok_to_inline (111 samples, 0.05%)</title><rect x="7.1775%" y="645" width="0.0498%" height="15" fill="rgb(207,154,6)" fg:x="15990" fg:w="111"/><text x="7.4275%" y="655.50"></text></g><g><title>ciMethod::get_flow_analysis (91 samples, 0.04%)</title><rect x="7.1865%" y="629" width="0.0408%" height="15" fill="rgb(223,64,47)" fg:x="16010" fg:w="91"/><text x="7.4365%" y="639.50"></text></g><g><title>Compile::call_generator (129 samples, 0.06%)</title><rect x="7.1712%" y="661" width="0.0579%" height="15" fill="rgb(211,161,38)" fg:x="15976" fg:w="129"/><text x="7.4212%" y="671.50"></text></g><g><title>Parse::create_entry_map (26 samples, 0.01%)</title><rect x="7.2655%" y="629" width="0.0117%" height="15" fill="rgb(219,138,40)" fg:x="16186" fg:w="26"/><text x="7.5155%" y="639.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (23 samples, 0.01%)</title><rect x="7.3095%" y="453" width="0.0103%" height="15" fill="rgb(241,228,46)" fg:x="16284" fg:w="23"/><text x="7.5595%" y="463.50"></text></g><g><title>ciTypeFlow::df_flow_types (30 samples, 0.01%)</title><rect x="7.3068%" y="485" width="0.0135%" height="15" fill="rgb(223,209,38)" fg:x="16278" fg:w="30"/><text x="7.5568%" y="495.50"></text></g><g><title>ciTypeFlow::flow_block (27 samples, 0.01%)</title><rect x="7.3081%" y="469" width="0.0121%" height="15" fill="rgb(236,164,45)" fg:x="16281" fg:w="27"/><text x="7.5581%" y="479.50"></text></g><g><title>ciTypeFlow::do_flow (34 samples, 0.02%)</title><rect x="7.3059%" y="517" width="0.0153%" height="15" fill="rgb(231,15,5)" fg:x="16276" fg:w="34"/><text x="7.5559%" y="527.50"></text></g><g><title>ciTypeFlow::flow_types (34 samples, 0.02%)</title><rect x="7.3059%" y="501" width="0.0153%" height="15" fill="rgb(252,35,15)" fg:x="16276" fg:w="34"/><text x="7.5559%" y="511.50"></text></g><g><title>InlineTree::ok_to_inline (48 samples, 0.02%)</title><rect x="7.3000%" y="549" width="0.0215%" height="15" fill="rgb(248,181,18)" fg:x="16263" fg:w="48"/><text x="7.5500%" y="559.50"></text></g><g><title>ciMethod::get_flow_analysis (37 samples, 0.02%)</title><rect x="7.3050%" y="533" width="0.0166%" height="15" fill="rgb(233,39,42)" fg:x="16274" fg:w="37"/><text x="7.5550%" y="543.50"></text></g><g><title>Compile::call_generator (59 samples, 0.03%)</title><rect x="7.2960%" y="565" width="0.0265%" height="15" fill="rgb(238,110,33)" fg:x="16254" fg:w="59"/><text x="7.5460%" y="575.50"></text></g><g><title>InlineTree::ok_to_inline (30 samples, 0.01%)</title><rect x="7.3638%" y="453" width="0.0135%" height="15" fill="rgb(233,195,10)" fg:x="16405" fg:w="30"/><text x="7.6138%" y="463.50"></text></g><g><title>Compile::call_generator (36 samples, 0.02%)</title><rect x="7.3620%" y="469" width="0.0162%" height="15" fill="rgb(254,105,3)" fg:x="16401" fg:w="36"/><text x="7.6120%" y="479.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.03%)</title><rect x="7.4078%" y="437" width="0.0251%" height="15" fill="rgb(221,225,9)" fg:x="16503" fg:w="56"/><text x="7.6578%" y="447.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.02%)</title><rect x="7.4082%" y="421" width="0.0247%" height="15" fill="rgb(224,227,45)" fg:x="16504" fg:w="55"/><text x="7.6582%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.02%)</title><rect x="7.4100%" y="405" width="0.0229%" height="15" fill="rgb(229,198,43)" fg:x="16508" fg:w="51"/><text x="7.6600%" y="415.50"></text></g><g><title>ParseGenerator::generate (97 samples, 0.04%)</title><rect x="7.3970%" y="469" width="0.0435%" height="15" fill="rgb(206,209,35)" fg:x="16479" fg:w="97"/><text x="7.6470%" y="479.50"></text></g><g><title>Parse::Parse (97 samples, 0.04%)</title><rect x="7.3970%" y="453" width="0.0435%" height="15" fill="rgb(245,195,53)" fg:x="16479" fg:w="97"/><text x="7.6470%" y="463.50"></text></g><g><title>Parse::do_call (193 samples, 0.09%)</title><rect x="7.3615%" y="485" width="0.0866%" height="15" fill="rgb(240,92,26)" fg:x="16400" fg:w="193"/><text x="7.6115%" y="495.50"></text></g><g><title>Parse::do_get_xxx (24 samples, 0.01%)</title><rect x="7.4513%" y="469" width="0.0108%" height="15" fill="rgb(207,40,23)" fg:x="16600" fg:w="24"/><text x="7.7013%" y="479.50"></text></g><g><title>GraphKit::access_store_at (24 samples, 0.01%)</title><rect x="7.4621%" y="453" width="0.0108%" height="15" fill="rgb(223,111,35)" fg:x="16624" fg:w="24"/><text x="7.7121%" y="463.50"></text></g><g><title>BarrierSetC2::store_at (24 samples, 0.01%)</title><rect x="7.4621%" y="437" width="0.0108%" height="15" fill="rgb(229,147,28)" fg:x="16624" fg:w="24"/><text x="7.7121%" y="447.50"></text></g><g><title>Parse::do_put_xxx (25 samples, 0.01%)</title><rect x="7.4621%" y="469" width="0.0112%" height="15" fill="rgb(211,29,28)" fg:x="16624" fg:w="25"/><text x="7.7121%" y="479.50"></text></g><g><title>Parse::do_field_access (61 samples, 0.03%)</title><rect x="7.4504%" y="485" width="0.0274%" height="15" fill="rgb(228,72,33)" fg:x="16598" fg:w="61"/><text x="7.7004%" y="495.50"></text></g><g><title>Parse::do_one_block (330 samples, 0.15%)</title><rect x="7.3472%" y="517" width="0.1481%" height="15" fill="rgb(205,214,31)" fg:x="16368" fg:w="330"/><text x="7.5972%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (324 samples, 0.15%)</title><rect x="7.3499%" y="501" width="0.1454%" height="15" fill="rgb(224,111,15)" fg:x="16374" fg:w="324"/><text x="7.5999%" y="511.50"></text></g><g><title>Parse::do_all_blocks (337 samples, 0.15%)</title><rect x="7.3467%" y="533" width="0.1513%" height="15" fill="rgb(253,21,26)" fg:x="16367" fg:w="337"/><text x="7.5967%" y="543.50"></text></g><g><title>ParseGenerator::generate (373 samples, 0.17%)</title><rect x="7.3386%" y="565" width="0.1674%" height="15" fill="rgb(245,139,43)" fg:x="16349" fg:w="373"/><text x="7.5886%" y="575.50"></text></g><g><title>Parse::Parse (373 samples, 0.17%)</title><rect x="7.3386%" y="549" width="0.1674%" height="15" fill="rgb(252,170,7)" fg:x="16349" fg:w="373"/><text x="7.5886%" y="559.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.01%)</title><rect x="7.5088%" y="501" width="0.0126%" height="15" fill="rgb(231,118,14)" fg:x="16728" fg:w="28"/><text x="7.7588%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.01%)</title><rect x="7.5092%" y="485" width="0.0121%" height="15" fill="rgb(238,83,0)" fg:x="16729" fg:w="27"/><text x="7.7592%" y="495.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.01%)</title><rect x="7.5088%" y="549" width="0.0130%" height="15" fill="rgb(221,39,39)" fg:x="16728" fg:w="29"/><text x="7.7588%" y="559.50"></text></g><g><title>Parse::Parse (29 samples, 0.01%)</title><rect x="7.5088%" y="533" width="0.0130%" height="15" fill="rgb(222,119,46)" fg:x="16728" fg:w="29"/><text x="7.7588%" y="543.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.01%)</title><rect x="7.5088%" y="517" width="0.0130%" height="15" fill="rgb(222,165,49)" fg:x="16728" fg:w="29"/><text x="7.7588%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (40 samples, 0.02%)</title><rect x="7.5070%" y="565" width="0.0180%" height="15" fill="rgb(219,113,52)" fg:x="16724" fg:w="40"/><text x="7.7570%" y="575.50"></text></g><g><title>Parse::do_call (532 samples, 0.24%)</title><rect x="7.2955%" y="581" width="0.2388%" height="15" fill="rgb(214,7,15)" fg:x="16253" fg:w="532"/><text x="7.5455%" y="591.50"></text></g><g><title>Parse::do_get_xxx (44 samples, 0.02%)</title><rect x="7.5397%" y="565" width="0.0198%" height="15" fill="rgb(235,32,4)" fg:x="16797" fg:w="44"/><text x="7.7897%" y="575.50"></text></g><g><title>GraphKit::access_store_at (29 samples, 0.01%)</title><rect x="7.5599%" y="549" width="0.0130%" height="15" fill="rgb(238,90,54)" fg:x="16842" fg:w="29"/><text x="7.8099%" y="559.50"></text></g><g><title>BarrierSetC2::store_at (29 samples, 0.01%)</title><rect x="7.5599%" y="533" width="0.0130%" height="15" fill="rgb(213,208,19)" fg:x="16842" fg:w="29"/><text x="7.8099%" y="543.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (29 samples, 0.01%)</title><rect x="7.5599%" y="517" width="0.0130%" height="15" fill="rgb(233,156,4)" fg:x="16842" fg:w="29"/><text x="7.8099%" y="527.50"></text></g><g><title>Parse::do_put_xxx (35 samples, 0.02%)</title><rect x="7.5595%" y="565" width="0.0157%" height="15" fill="rgb(207,194,5)" fg:x="16841" fg:w="35"/><text x="7.8095%" y="575.50"></text></g><g><title>Parse::do_field_access (90 samples, 0.04%)</title><rect x="7.5370%" y="581" width="0.0404%" height="15" fill="rgb(206,111,30)" fg:x="16791" fg:w="90"/><text x="7.7870%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (717 samples, 0.32%)</title><rect x="7.2816%" y="597" width="0.3218%" height="15" fill="rgb(243,70,54)" fg:x="16222" fg:w="717"/><text x="7.5316%" y="607.50"></text></g><g><title>Parse::do_one_block (727 samples, 0.33%)</title><rect x="7.2776%" y="613" width="0.3263%" height="15" fill="rgb(242,28,8)" fg:x="16213" fg:w="727"/><text x="7.5276%" y="623.50"></text></g><g><title>Parse::do_all_blocks (738 samples, 0.33%)</title><rect x="7.2771%" y="629" width="0.3313%" height="15" fill="rgb(219,106,18)" fg:x="16212" fg:w="738"/><text x="7.5271%" y="639.50"></text></g><g><title>ParseGenerator::generate (816 samples, 0.37%)</title><rect x="7.2556%" y="661" width="0.3663%" height="15" fill="rgb(244,222,10)" fg:x="16164" fg:w="816"/><text x="7.5056%" y="671.50"></text></g><g><title>Parse::Parse (812 samples, 0.36%)</title><rect x="7.2574%" y="645" width="0.3645%" height="15" fill="rgb(236,179,52)" fg:x="16168" fg:w="812"/><text x="7.5074%" y="655.50"></text></g><g><title>Parse::do_call (25 samples, 0.01%)</title><rect x="7.6434%" y="469" width="0.0112%" height="15" fill="rgb(213,23,39)" fg:x="17028" fg:w="25"/><text x="7.8934%" y="479.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.02%)</title><rect x="7.6407%" y="501" width="0.0206%" height="15" fill="rgb(238,48,10)" fg:x="17022" fg:w="46"/><text x="7.8907%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (45 samples, 0.02%)</title><rect x="7.6412%" y="485" width="0.0202%" height="15" fill="rgb(251,196,23)" fg:x="17023" fg:w="45"/><text x="7.8912%" y="495.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.02%)</title><rect x="7.6407%" y="517" width="0.0211%" height="15" fill="rgb(250,152,24)" fg:x="17022" fg:w="47"/><text x="7.8907%" y="527.50"></text></g><g><title>ParseGenerator::generate (54 samples, 0.02%)</title><rect x="7.6389%" y="549" width="0.0242%" height="15" fill="rgb(209,150,17)" fg:x="17018" fg:w="54"/><text x="7.8889%" y="559.50"></text></g><g><title>Parse::Parse (54 samples, 0.02%)</title><rect x="7.6389%" y="533" width="0.0242%" height="15" fill="rgb(234,202,34)" fg:x="17018" fg:w="54"/><text x="7.8889%" y="543.50"></text></g><g><title>Parse::do_call (81 samples, 0.04%)</title><rect x="7.6317%" y="565" width="0.0364%" height="15" fill="rgb(253,148,53)" fg:x="17002" fg:w="81"/><text x="7.8817%" y="575.50"></text></g><g><title>Parse::do_one_block (97 samples, 0.04%)</title><rect x="7.6299%" y="597" width="0.0435%" height="15" fill="rgb(218,129,16)" fg:x="16998" fg:w="97"/><text x="7.8799%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.04%)</title><rect x="7.6304%" y="581" width="0.0431%" height="15" fill="rgb(216,85,19)" fg:x="16999" fg:w="96"/><text x="7.8804%" y="591.50"></text></g><g><title>Parse::do_all_blocks (99 samples, 0.04%)</title><rect x="7.6299%" y="613" width="0.0444%" height="15" fill="rgb(235,228,7)" fg:x="16998" fg:w="99"/><text x="7.8799%" y="623.50"></text></g><g><title>ParseGenerator::generate (109 samples, 0.05%)</title><rect x="7.6277%" y="645" width="0.0489%" height="15" fill="rgb(245,175,0)" fg:x="16993" fg:w="109"/><text x="7.8777%" y="655.50"></text></g><g><title>Parse::Parse (109 samples, 0.05%)</title><rect x="7.6277%" y="629" width="0.0489%" height="15" fill="rgb(208,168,36)" fg:x="16993" fg:w="109"/><text x="7.8777%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (24 samples, 0.01%)</title><rect x="7.6771%" y="645" width="0.0108%" height="15" fill="rgb(246,171,24)" fg:x="17103" fg:w="24"/><text x="7.9271%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (152 samples, 0.07%)</title><rect x="7.6223%" y="661" width="0.0682%" height="15" fill="rgb(215,142,24)" fg:x="16981" fg:w="152"/><text x="7.8723%" y="671.50"></text></g><g><title>Parse::do_call (1,195 samples, 0.54%)</title><rect x="7.1712%" y="677" width="0.5364%" height="15" fill="rgb(250,187,7)" fg:x="15976" fg:w="1195"/><text x="7.4212%" y="687.50"></text></g><g><title>GraphKit::access_load_at (23 samples, 0.01%)</title><rect x="7.7211%" y="645" width="0.0103%" height="15" fill="rgb(228,66,33)" fg:x="17201" fg:w="23"/><text x="7.9711%" y="655.50"></text></g><g><title>BarrierSetC2::load_at (23 samples, 0.01%)</title><rect x="7.7211%" y="629" width="0.0103%" height="15" fill="rgb(234,215,21)" fg:x="17201" fg:w="23"/><text x="7.9711%" y="639.50"></text></g><g><title>Parse::do_get_xxx (45 samples, 0.02%)</title><rect x="7.7152%" y="661" width="0.0202%" height="15" fill="rgb(222,191,20)" fg:x="17188" fg:w="45"/><text x="7.9652%" y="671.50"></text></g><g><title>G1BarrierSetC2::post_barrier (30 samples, 0.01%)</title><rect x="7.7395%" y="597" width="0.0135%" height="15" fill="rgb(245,79,54)" fg:x="17242" fg:w="30"/><text x="7.9895%" y="607.50"></text></g><g><title>Parse::do_put_xxx (55 samples, 0.02%)</title><rect x="7.7354%" y="661" width="0.0247%" height="15" fill="rgb(240,10,37)" fg:x="17233" fg:w="55"/><text x="7.9854%" y="671.50"></text></g><g><title>GraphKit::access_store_at (54 samples, 0.02%)</title><rect x="7.7359%" y="645" width="0.0242%" height="15" fill="rgb(214,192,32)" fg:x="17234" fg:w="54"/><text x="7.9859%" y="655.50"></text></g><g><title>BarrierSetC2::store_at (54 samples, 0.02%)</title><rect x="7.7359%" y="629" width="0.0242%" height="15" fill="rgb(209,36,54)" fg:x="17234" fg:w="54"/><text x="7.9859%" y="639.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (51 samples, 0.02%)</title><rect x="7.7372%" y="613" width="0.0229%" height="15" fill="rgb(220,10,11)" fg:x="17237" fg:w="51"/><text x="7.9872%" y="623.50"></text></g><g><title>Parse::do_field_access (110 samples, 0.05%)</title><rect x="7.7125%" y="677" width="0.0494%" height="15" fill="rgb(221,106,17)" fg:x="17182" fg:w="110"/><text x="7.9625%" y="687.50"></text></g><g><title>Parse::do_one_block (1,407 samples, 0.63%)</title><rect x="7.1528%" y="709" width="0.6316%" height="15" fill="rgb(251,142,44)" fg:x="15935" fg:w="1407"/><text x="7.4028%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (1,398 samples, 0.63%)</title><rect x="7.1568%" y="693" width="0.6275%" height="15" fill="rgb(238,13,15)" fg:x="15944" fg:w="1398"/><text x="7.4068%" y="703.50"></text></g><g><title>Parse::do_all_blocks (1,408 samples, 0.63%)</title><rect x="7.1528%" y="725" width="0.6320%" height="15" fill="rgb(208,107,27)" fg:x="15935" fg:w="1408"/><text x="7.4028%" y="735.50"></text></g><g><title>ParseGenerator::generate (1,422 samples, 0.64%)</title><rect x="7.1474%" y="757" width="0.6383%" height="15" fill="rgb(205,136,37)" fg:x="15923" fg:w="1422"/><text x="7.3974%" y="767.50"></text></g><g><title>Parse::Parse (1,422 samples, 0.64%)</title><rect x="7.1474%" y="741" width="0.6383%" height="15" fill="rgb(250,205,27)" fg:x="15923" fg:w="1422"/><text x="7.3974%" y="751.50"></text></g><g><title>InlineTree::ok_to_inline (23 samples, 0.01%)</title><rect x="7.7951%" y="629" width="0.0103%" height="15" fill="rgb(210,80,43)" fg:x="17366" fg:w="23"/><text x="8.0451%" y="639.50"></text></g><g><title>Compile::call_generator (30 samples, 0.01%)</title><rect x="7.7929%" y="645" width="0.0135%" height="15" fill="rgb(247,160,36)" fg:x="17361" fg:w="30"/><text x="8.0429%" y="655.50"></text></g><g><title>Parse::do_call (27 samples, 0.01%)</title><rect x="7.8423%" y="469" width="0.0121%" height="15" fill="rgb(234,13,49)" fg:x="17471" fg:w="27"/><text x="8.0923%" y="479.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.03%)</title><rect x="7.8355%" y="501" width="0.0283%" height="15" fill="rgb(234,122,0)" fg:x="17456" fg:w="63"/><text x="8.0855%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.03%)</title><rect x="7.8364%" y="485" width="0.0274%" height="15" fill="rgb(207,146,38)" fg:x="17458" fg:w="61"/><text x="8.0864%" y="495.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.03%)</title><rect x="7.8355%" y="517" width="0.0287%" height="15" fill="rgb(207,177,25)" fg:x="17456" fg:w="64"/><text x="8.0855%" y="527.50"></text></g><g><title>ParseGenerator::generate (76 samples, 0.03%)</title><rect x="7.8324%" y="549" width="0.0341%" height="15" fill="rgb(211,178,42)" fg:x="17449" fg:w="76"/><text x="8.0824%" y="559.50"></text></g><g><title>Parse::Parse (76 samples, 0.03%)</title><rect x="7.8324%" y="533" width="0.0341%" height="15" fill="rgb(230,69,54)" fg:x="17449" fg:w="76"/><text x="8.0824%" y="543.50"></text></g><g><title>Parse::do_call (104 samples, 0.05%)</title><rect x="7.8252%" y="565" width="0.0467%" height="15" fill="rgb(214,135,41)" fg:x="17433" fg:w="104"/><text x="8.0752%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.07%)</title><rect x="7.8185%" y="581" width="0.0700%" height="15" fill="rgb(237,67,25)" fg:x="17418" fg:w="156"/><text x="8.0685%" y="591.50"></text></g><g><title>Parse::do_all_blocks (162 samples, 0.07%)</title><rect x="7.8162%" y="613" width="0.0727%" height="15" fill="rgb(222,189,50)" fg:x="17413" fg:w="162"/><text x="8.0662%" y="623.50"></text></g><g><title>Parse::do_one_block (159 samples, 0.07%)</title><rect x="7.8176%" y="597" width="0.0714%" height="15" fill="rgb(245,148,34)" fg:x="17416" fg:w="159"/><text x="8.0676%" y="607.50"></text></g><g><title>ParseGenerator::generate (179 samples, 0.08%)</title><rect x="7.8122%" y="645" width="0.0803%" height="15" fill="rgb(222,29,6)" fg:x="17404" fg:w="179"/><text x="8.0622%" y="655.50"></text></g><g><title>Parse::Parse (178 samples, 0.08%)</title><rect x="7.8126%" y="629" width="0.0799%" height="15" fill="rgb(221,189,43)" fg:x="17405" fg:w="178"/><text x="8.0626%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (26 samples, 0.01%)</title><rect x="7.8925%" y="645" width="0.0117%" height="15" fill="rgb(207,36,27)" fg:x="17583" fg:w="26"/><text x="8.1425%" y="655.50"></text></g><g><title>Parse::do_call (258 samples, 0.12%)</title><rect x="7.7929%" y="661" width="0.1158%" height="15" fill="rgb(217,90,24)" fg:x="17361" fg:w="258"/><text x="8.0429%" y="671.50"></text></g><g><title>Parse::do_all_blocks (307 samples, 0.14%)</title><rect x="7.7871%" y="709" width="0.1378%" height="15" fill="rgb(224,66,35)" fg:x="17348" fg:w="307"/><text x="8.0371%" y="719.50"></text></g><g><title>Parse::do_one_block (307 samples, 0.14%)</title><rect x="7.7871%" y="693" width="0.1378%" height="15" fill="rgb(221,13,50)" fg:x="17348" fg:w="307"/><text x="8.0371%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (305 samples, 0.14%)</title><rect x="7.7880%" y="677" width="0.1369%" height="15" fill="rgb(236,68,49)" fg:x="17350" fg:w="305"/><text x="8.0380%" y="687.50"></text></g><g><title>ParseGenerator::generate (309 samples, 0.14%)</title><rect x="7.7871%" y="741" width="0.1387%" height="15" fill="rgb(229,146,28)" fg:x="17348" fg:w="309"/><text x="8.0371%" y="751.50"></text></g><g><title>Parse::Parse (309 samples, 0.14%)</title><rect x="7.7871%" y="725" width="0.1387%" height="15" fill="rgb(225,31,38)" fg:x="17348" fg:w="309"/><text x="8.0371%" y="735.50"></text></g><g><title>Parse::do_call (25 samples, 0.01%)</title><rect x="7.9280%" y="645" width="0.0112%" height="15" fill="rgb(250,208,3)" fg:x="17662" fg:w="25"/><text x="8.1780%" y="655.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.02%)</title><rect x="7.9271%" y="693" width="0.0166%" height="15" fill="rgb(246,54,23)" fg:x="17660" fg:w="37"/><text x="8.1771%" y="703.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.02%)</title><rect x="7.9271%" y="677" width="0.0166%" height="15" fill="rgb(243,76,11)" fg:x="17660" fg:w="37"/><text x="8.1771%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.02%)</title><rect x="7.9271%" y="661" width="0.0166%" height="15" fill="rgb(245,21,50)" fg:x="17660" fg:w="37"/><text x="8.1771%" y="671.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.02%)</title><rect x="7.9258%" y="725" width="0.0184%" height="15" fill="rgb(228,9,43)" fg:x="17657" fg:w="41"/><text x="8.1758%" y="735.50"></text></g><g><title>Parse::Parse (41 samples, 0.02%)</title><rect x="7.9258%" y="709" width="0.0184%" height="15" fill="rgb(208,100,47)" fg:x="17657" fg:w="41"/><text x="8.1758%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (42 samples, 0.02%)</title><rect x="7.9258%" y="741" width="0.0189%" height="15" fill="rgb(232,26,8)" fg:x="17657" fg:w="42"/><text x="8.1758%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (355 samples, 0.16%)</title><rect x="7.7857%" y="757" width="0.1594%" height="15" fill="rgb(216,166,38)" fg:x="17345" fg:w="355"/><text x="8.0357%" y="767.50"></text></g><g><title>Parse::do_call (1,946 samples, 0.87%)</title><rect x="7.0751%" y="773" width="0.8735%" height="15" fill="rgb(251,202,51)" fg:x="15762" fg:w="1946"/><text x="7.3251%" y="783.50"></text></g><g><title>Parse::do_all_blocks (1,959 samples, 0.88%)</title><rect x="7.0738%" y="821" width="0.8793%" height="15" fill="rgb(254,216,34)" fg:x="15759" fg:w="1959"/><text x="7.3238%" y="831.50"></text></g><g><title>Parse::do_one_block (1,959 samples, 0.88%)</title><rect x="7.0738%" y="805" width="0.8793%" height="15" fill="rgb(251,32,27)" fg:x="15759" fg:w="1959"/><text x="7.3238%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (1,959 samples, 0.88%)</title><rect x="7.0738%" y="789" width="0.8793%" height="15" fill="rgb(208,127,28)" fg:x="15759" fg:w="1959"/><text x="7.3238%" y="799.50"></text></g><g><title>C2Compiler::compile_method (1,979 samples, 0.89%)</title><rect x="7.0653%" y="885" width="0.8883%" height="15" fill="rgb(224,137,22)" fg:x="15740" fg:w="1979"/><text x="7.3153%" y="895.50"></text></g><g><title>Compile::Compile (1,979 samples, 0.89%)</title><rect x="7.0653%" y="869" width="0.8883%" height="15" fill="rgb(254,70,32)" fg:x="15740" fg:w="1979"/><text x="7.3153%" y="879.50"></text></g><g><title>ParseGenerator::generate (1,960 samples, 0.88%)</title><rect x="7.0738%" y="853" width="0.8798%" height="15" fill="rgb(229,75,37)" fg:x="15759" fg:w="1960"/><text x="7.3238%" y="863.50"></text></g><g><title>Parse::Parse (1,960 samples, 0.88%)</title><rect x="7.0738%" y="837" width="0.8798%" height="15" fill="rgb(252,64,23)" fg:x="15759" fg:w="1960"/><text x="7.3238%" y="847.50"></text></g><g><title>Monitor::lock_without_safepoint_check (24 samples, 0.01%)</title><rect x="7.9540%" y="773" width="0.0108%" height="15" fill="rgb(232,162,48)" fg:x="17720" fg:w="24"/><text x="8.2040%" y="783.50"></text></g><g><title>Monitor::ILock (24 samples, 0.01%)</title><rect x="7.9540%" y="757" width="0.0108%" height="15" fill="rgb(246,160,12)" fg:x="17720" fg:w="24"/><text x="8.2040%" y="767.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.01%)</title><rect x="7.9545%" y="741" width="0.0103%" height="15" fill="rgb(247,166,0)" fg:x="17721" fg:w="23"/><text x="8.2045%" y="751.50"></text></g><g><title>Compile::init_scratch_buffer_blob (25 samples, 0.01%)</title><rect x="7.9540%" y="837" width="0.0112%" height="15" fill="rgb(249,219,21)" fg:x="17720" fg:w="25"/><text x="8.2040%" y="847.50"></text></g><g><title>BufferBlob::create (25 samples, 0.01%)</title><rect x="7.9540%" y="821" width="0.0112%" height="15" fill="rgb(205,209,3)" fg:x="17720" fg:w="25"/><text x="8.2040%" y="831.50"></text></g><g><title>JavaThread::check_safepoint_and_suspend_for_native_trans (25 samples, 0.01%)</title><rect x="7.9540%" y="805" width="0.0112%" height="15" fill="rgb(243,44,1)" fg:x="17720" fg:w="25"/><text x="8.2040%" y="815.50"></text></g><g><title>SafepointSynchronize::block (25 samples, 0.01%)</title><rect x="7.9540%" y="789" width="0.0112%" height="15" fill="rgb(206,159,16)" fg:x="17720" fg:w="25"/><text x="8.2040%" y="799.50"></text></g><g><title>MachSpillCopyNode::implementation (43 samples, 0.02%)</title><rect x="7.9653%" y="805" width="0.0193%" height="15" fill="rgb(244,77,30)" fg:x="17745" fg:w="43"/><text x="8.2153%" y="815.50"></text></g><g><title>Compile::Output (72 samples, 0.03%)</title><rect x="7.9540%" y="869" width="0.0323%" height="15" fill="rgb(218,69,12)" fg:x="17720" fg:w="72"/><text x="8.2040%" y="879.50"></text></g><g><title>Compile::init_buffer (72 samples, 0.03%)</title><rect x="7.9540%" y="853" width="0.0323%" height="15" fill="rgb(212,87,7)" fg:x="17720" fg:w="72"/><text x="8.2040%" y="863.50"></text></g><g><title>Compile::shorten_branches (47 samples, 0.02%)</title><rect x="7.9653%" y="837" width="0.0211%" height="15" fill="rgb(245,114,25)" fg:x="17745" fg:w="47"/><text x="8.2153%" y="847.50"></text></g><g><title>Compile::scratch_emit_size (47 samples, 0.02%)</title><rect x="7.9653%" y="821" width="0.0211%" height="15" fill="rgb(210,61,42)" fg:x="17745" fg:w="47"/><text x="8.2153%" y="831.50"></text></g><g><title>PhaseCFG::schedule_late (47 samples, 0.02%)</title><rect x="7.9967%" y="837" width="0.0211%" height="15" fill="rgb(211,52,33)" fg:x="17815" fg:w="47"/><text x="8.2467%" y="847.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (47 samples, 0.02%)</title><rect x="7.9967%" y="821" width="0.0211%" height="15" fill="rgb(234,58,33)" fg:x="17815" fg:w="47"/><text x="8.2467%" y="831.50"></text></g><g><title>MachNode::adr_type (32 samples, 0.01%)</title><rect x="8.0034%" y="805" width="0.0144%" height="15" fill="rgb(220,115,36)" fg:x="17830" fg:w="32"/><text x="8.2534%" y="815.50"></text></g><g><title>PhaseCFG::schedule_local (172 samples, 0.08%)</title><rect x="8.0178%" y="837" width="0.0772%" height="15" fill="rgb(243,153,54)" fg:x="17862" fg:w="172"/><text x="8.2678%" y="847.50"></text></g><g><title>PhaseCFG::sched_call (172 samples, 0.08%)</title><rect x="8.0178%" y="821" width="0.0772%" height="15" fill="rgb(251,47,18)" fg:x="17862" fg:w="172"/><text x="8.2678%" y="831.50"></text></g><g><title>PhaseCFG::do_global_code_motion (231 samples, 0.10%)</title><rect x="7.9953%" y="869" width="0.1037%" height="15" fill="rgb(242,102,42)" fg:x="17812" fg:w="231"/><text x="8.2453%" y="879.50"></text></g><g><title>PhaseCFG::global_code_motion (231 samples, 0.10%)</title><rect x="7.9953%" y="853" width="0.1037%" height="15" fill="rgb(234,31,38)" fg:x="17812" fg:w="231"/><text x="8.2453%" y="863.50"></text></g><g><title>Node::add_req (27 samples, 0.01%)</title><rect x="8.1089%" y="805" width="0.0121%" height="15" fill="rgb(221,117,51)" fg:x="18065" fg:w="27"/><text x="8.3589%" y="815.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (45 samples, 0.02%)</title><rect x="8.1031%" y="821" width="0.0202%" height="15" fill="rgb(212,20,18)" fg:x="18052" fg:w="45"/><text x="8.3531%" y="831.50"></text></g><g><title>PhaseChaitin::Split (58 samples, 0.03%)</title><rect x="8.0990%" y="853" width="0.0260%" height="15" fill="rgb(245,133,36)" fg:x="18043" fg:w="58"/><text x="8.3490%" y="863.50"></text></g><g><title>PhaseChaitin::split_USE (49 samples, 0.02%)</title><rect x="8.1031%" y="837" width="0.0220%" height="15" fill="rgb(212,6,19)" fg:x="18052" fg:w="49"/><text x="8.3531%" y="847.50"></text></g><g><title>Compile::Code_Gen (388 samples, 0.17%)</title><rect x="7.9540%" y="885" width="0.1742%" height="15" fill="rgb(218,1,36)" fg:x="17720" fg:w="388"/><text x="8.2040%" y="895.50"></text></g><g><title>PhaseChaitin::Register_Allocate (65 samples, 0.03%)</title><rect x="8.0990%" y="869" width="0.0292%" height="15" fill="rgb(246,84,54)" fg:x="18043" fg:w="65"/><text x="8.3490%" y="879.50"></text></g><g><title>OopFlow::build_oop_map (98 samples, 0.04%)</title><rect x="8.3809%" y="805" width="0.0440%" height="15" fill="rgb(242,110,6)" fg:x="18671" fg:w="98"/><text x="8.6309%" y="815.50"></text></g><g><title>OopFlow::compute_reach (172 samples, 0.08%)</title><rect x="8.3481%" y="821" width="0.0772%" height="15" fill="rgb(214,47,5)" fg:x="18598" fg:w="172"/><text x="8.5981%" y="831.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (94 samples, 0.04%)</title><rect x="8.4307%" y="821" width="0.0422%" height="15" fill="rgb(218,159,25)" fg:x="18782" fg:w="94"/><text x="8.6807%" y="831.50"></text></g><g><title>Compile::BuildOopMaps (752 samples, 0.34%)</title><rect x="8.1363%" y="837" width="0.3376%" height="15" fill="rgb(215,211,28)" fg:x="18126" fg:w="752"/><text x="8.3863%" y="847.50"></text></g><g><title>BufferBlob::create (35 samples, 0.02%)</title><rect x="8.4779%" y="805" width="0.0157%" height="15" fill="rgb(238,59,32)" fg:x="18887" fg:w="35"/><text x="8.7279%" y="815.50"></text></g><g><title>CodeBuffer::initialize (36 samples, 0.02%)</title><rect x="8.4779%" y="821" width="0.0162%" height="15" fill="rgb(226,82,3)" fg:x="18887" fg:w="36"/><text x="8.7279%" y="831.50"></text></g><g><title>__pthread_cond_signal (28 samples, 0.01%)</title><rect x="8.4990%" y="789" width="0.0126%" height="15" fill="rgb(240,164,32)" fg:x="18934" fg:w="28"/><text x="8.7490%" y="799.50"></text></g><g><title>futex_wake (27 samples, 0.01%)</title><rect x="8.4994%" y="773" width="0.0121%" height="15" fill="rgb(232,46,7)" fg:x="18935" fg:w="27"/><text x="8.7494%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.01%)</title><rect x="8.4999%" y="757" width="0.0117%" height="15" fill="rgb(229,129,53)" fg:x="18936" fg:w="26"/><text x="8.7499%" y="767.50"></text></g><g><title>BufferBlob::create (39 samples, 0.02%)</title><rect x="8.4945%" y="805" width="0.0175%" height="15" fill="rgb(234,188,29)" fg:x="18924" fg:w="39"/><text x="8.7445%" y="815.50"></text></g><g><title>Compile::init_scratch_buffer_blob (40 samples, 0.02%)</title><rect x="8.4945%" y="821" width="0.0180%" height="15" fill="rgb(246,141,4)" fg:x="18924" fg:w="40"/><text x="8.7445%" y="831.50"></text></g><g><title>Compile::scratch_emit_size (162 samples, 0.07%)</title><rect x="8.5775%" y="805" width="0.0727%" height="15" fill="rgb(229,23,39)" fg:x="19109" fg:w="162"/><text x="8.8275%" y="815.50"></text></g><g><title>Compile::shorten_branches (338 samples, 0.15%)</title><rect x="8.5124%" y="821" width="0.1517%" height="15" fill="rgb(206,12,3)" fg:x="18964" fg:w="338"/><text x="8.7624%" y="831.50"></text></g><g><title>Compile::init_buffer (426 samples, 0.19%)</title><rect x="8.4738%" y="837" width="0.1912%" height="15" fill="rgb(252,226,20)" fg:x="18878" fg:w="426"/><text x="8.7238%" y="847.50"></text></g><g><title>Compile::Output (1,195 samples, 0.54%)</title><rect x="8.1300%" y="853" width="0.5364%" height="15" fill="rgb(216,123,35)" fg:x="18112" fg:w="1195"/><text x="8.3800%" y="863.50"></text></g><g><title>Compile::FillLocArray (35 samples, 0.02%)</title><rect x="8.7575%" y="821" width="0.0157%" height="15" fill="rgb(212,68,40)" fg:x="19510" fg:w="35"/><text x="9.0075%" y="831.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (36 samples, 0.02%)</title><rect x="8.7809%" y="805" width="0.0162%" height="15" fill="rgb(254,125,32)" fg:x="19562" fg:w="36"/><text x="9.0309%" y="815.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (54 samples, 0.02%)</title><rect x="8.7768%" y="821" width="0.0242%" height="15" fill="rgb(253,97,22)" fg:x="19553" fg:w="54"/><text x="9.0268%" y="831.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (36 samples, 0.02%)</title><rect x="8.8078%" y="805" width="0.0162%" height="15" fill="rgb(241,101,14)" fg:x="19622" fg:w="36"/><text x="9.0578%" y="815.50"></text></g><g><title>DebugInformationRecorder::describe_scope (53 samples, 0.02%)</title><rect x="8.8011%" y="821" width="0.0238%" height="15" fill="rgb(238,103,29)" fg:x="19607" fg:w="53"/><text x="9.0511%" y="831.50"></text></g><g><title>Compile::Process_OopMap_Node (219 samples, 0.10%)</title><rect x="8.7454%" y="837" width="0.0983%" height="15" fill="rgb(233,195,47)" fg:x="19483" fg:w="219"/><text x="8.9954%" y="847.50"></text></g><g><title>resource_allocate_bytes (26 samples, 0.01%)</title><rect x="8.8320%" y="821" width="0.0117%" height="15" fill="rgb(246,218,30)" fg:x="19676" fg:w="26"/><text x="9.0820%" y="831.50"></text></g><g><title>Compile::valid_bundle_info (56 samples, 0.03%)</title><rect x="8.8464%" y="837" width="0.0251%" height="15" fill="rgb(219,145,47)" fg:x="19708" fg:w="56"/><text x="9.0964%" y="847.50"></text></g><g><title>Compile::fill_buffer (564 samples, 0.25%)</title><rect x="8.6673%" y="853" width="0.2532%" height="15" fill="rgb(243,12,26)" fg:x="19309" fg:w="564"/><text x="8.9173%" y="863.50"></text></g><g><title>Matcher::init_first_stack_mask (30 samples, 0.01%)</title><rect x="8.9478%" y="821" width="0.0135%" height="15" fill="rgb(214,87,16)" fg:x="19934" fg:w="30"/><text x="9.1978%" y="831.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (37 samples, 0.02%)</title><rect x="8.9451%" y="837" width="0.0166%" height="15" fill="rgb(208,99,42)" fg:x="19928" fg:w="37"/><text x="9.1951%" y="847.50"></text></g><g><title>Matcher::is_bmi_pattern (38 samples, 0.02%)</title><rect x="9.0924%" y="821" width="0.0171%" height="15" fill="rgb(253,99,2)" fg:x="20256" fg:w="38"/><text x="9.3424%" y="831.50"></text></g><g><title>Matcher::find_shared (348 samples, 0.16%)</title><rect x="8.9618%" y="837" width="0.1562%" height="15" fill="rgb(220,168,23)" fg:x="19965" fg:w="348"/><text x="9.2118%" y="847.50"></text></g><g><title>Arena::contains (566 samples, 0.25%)</title><rect x="9.2728%" y="821" width="0.2541%" height="15" fill="rgb(242,38,24)" fg:x="20658" fg:w="566"/><text x="9.5228%" y="831.50"></text></g><g><title>Matcher::collect_null_checks (24 samples, 0.01%)</title><rect x="9.5318%" y="821" width="0.0108%" height="15" fill="rgb(225,182,9)" fg:x="21235" fg:w="24"/><text x="9.7818%" y="831.50"></text></g><g><title>Matcher::ReduceInst (26 samples, 0.01%)</title><rect x="9.5740%" y="789" width="0.0117%" height="15" fill="rgb(243,178,37)" fg:x="21329" fg:w="26"/><text x="9.8240%" y="799.50"></text></g><g><title>Matcher::match_tree (94 samples, 0.04%)</title><rect x="9.5525%" y="805" width="0.0422%" height="15" fill="rgb(232,139,19)" fg:x="21281" fg:w="94"/><text x="9.8025%" y="815.50"></text></g><g><title>Matcher::match_sfpt (126 samples, 0.06%)</title><rect x="9.5426%" y="821" width="0.0566%" height="15" fill="rgb(225,201,24)" fg:x="21259" fg:w="126"/><text x="9.7926%" y="831.50"></text></g><g><title>State::DFA (23 samples, 0.01%)</title><rect x="9.7881%" y="741" width="0.0103%" height="15" fill="rgb(221,47,46)" fg:x="21806" fg:w="23"/><text x="10.0381%" y="751.50"></text></g><g><title>Matcher::Label_Root (53 samples, 0.02%)</title><rect x="9.7756%" y="757" width="0.0238%" height="15" fill="rgb(249,23,13)" fg:x="21778" fg:w="53"/><text x="10.0256%" y="767.50"></text></g><g><title>State::DFA (41 samples, 0.02%)</title><rect x="9.7994%" y="757" width="0.0184%" height="15" fill="rgb(219,9,5)" fg:x="21831" fg:w="41"/><text x="10.0494%" y="767.50"></text></g><g><title>Matcher::Label_Root (123 samples, 0.06%)</title><rect x="9.7648%" y="773" width="0.0552%" height="15" fill="rgb(254,171,16)" fg:x="21754" fg:w="123"/><text x="10.0148%" y="783.50"></text></g><g><title>State::_sub_Op_AddP (25 samples, 0.01%)</title><rect x="9.8267%" y="757" width="0.0112%" height="15" fill="rgb(230,171,20)" fg:x="21892" fg:w="25"/><text x="10.0767%" y="767.50"></text></g><g><title>State::DFA (54 samples, 0.02%)</title><rect x="9.8218%" y="773" width="0.0242%" height="15" fill="rgb(210,71,41)" fg:x="21881" fg:w="54"/><text x="10.0718%" y="783.50"></text></g><g><title>Matcher::Label_Root (264 samples, 0.12%)</title><rect x="9.7307%" y="789" width="0.1185%" height="15" fill="rgb(206,173,20)" fg:x="21678" fg:w="264"/><text x="9.9807%" y="799.50"></text></g><g><title>State::DFA (48 samples, 0.02%)</title><rect x="9.8496%" y="789" width="0.0215%" height="15" fill="rgb(233,88,34)" fg:x="21943" fg:w="48"/><text x="10.0996%" y="799.50"></text></g><g><title>Matcher::Label_Root (420 samples, 0.19%)</title><rect x="9.6934%" y="805" width="0.1885%" height="15" fill="rgb(223,209,46)" fg:x="21595" fg:w="420"/><text x="9.9434%" y="815.50"></text></g><g><title>Matcher::ReduceInst (25 samples, 0.01%)</title><rect x="9.9075%" y="741" width="0.0112%" height="15" fill="rgb(250,43,18)" fg:x="22072" fg:w="25"/><text x="10.1575%" y="751.50"></text></g><g><title>Matcher::ReduceInst_Interior (52 samples, 0.02%)</title><rect x="9.9044%" y="757" width="0.0233%" height="15" fill="rgb(208,13,10)" fg:x="22065" fg:w="52"/><text x="10.1544%" y="767.50"></text></g><g><title>State::MachNodeGenerator (25 samples, 0.01%)</title><rect x="9.9309%" y="757" width="0.0112%" height="15" fill="rgb(212,200,36)" fg:x="22124" fg:w="25"/><text x="10.1809%" y="767.50"></text></g><g><title>Matcher::ReduceInst (107 samples, 0.05%)</title><rect x="9.8986%" y="773" width="0.0480%" height="15" fill="rgb(225,90,30)" fg:x="22052" fg:w="107"/><text x="10.1486%" y="783.50"></text></g><g><title>Matcher::ReduceInst_Interior (175 samples, 0.08%)</title><rect x="9.8914%" y="789" width="0.0786%" height="15" fill="rgb(236,182,39)" fg:x="22036" fg:w="175"/><text x="10.1414%" y="799.50"></text></g><g><title>State::MachOperGenerator (23 samples, 0.01%)</title><rect x="9.9596%" y="773" width="0.0103%" height="15" fill="rgb(212,144,35)" fg:x="22188" fg:w="23"/><text x="10.2096%" y="783.50"></text></g><g><title>State::MachNodeGenerator (69 samples, 0.03%)</title><rect x="9.9843%" y="789" width="0.0310%" height="15" fill="rgb(228,63,44)" fg:x="22243" fg:w="69"/><text x="10.2343%" y="799.50"></text></g><g><title>Matcher::ReduceInst (325 samples, 0.15%)</title><rect x="9.8819%" y="805" width="0.1459%" height="15" fill="rgb(228,109,6)" fg:x="22015" fg:w="325"/><text x="10.1319%" y="815.50"></text></g><g><title>Matcher::match_tree (968 samples, 0.43%)</title><rect x="9.5992%" y="821" width="0.4345%" height="15" fill="rgb(238,117,24)" fg:x="21385" fg:w="968"/><text x="9.8492%" y="831.50"></text></g><g><title>Node::clone (76 samples, 0.03%)</title><rect x="10.0359%" y="821" width="0.0341%" height="15" fill="rgb(242,26,26)" fg:x="22358" fg:w="76"/><text x="10.2859%" y="831.50"></text></g><g><title>Node::out_grow (46 samples, 0.02%)</title><rect x="10.0700%" y="821" width="0.0206%" height="15" fill="rgb(221,92,48)" fg:x="22434" fg:w="46"/><text x="10.3200%" y="831.50"></text></g><g><title>Matcher::xform (2,165 samples, 0.97%)</title><rect x="9.1211%" y="837" width="0.9718%" height="15" fill="rgb(209,209,32)" fg:x="20320" fg:w="2165"/><text x="9.3711%" y="847.50"></text></g><g><title>Matcher::match (2,610 samples, 1.17%)</title><rect x="8.9267%" y="853" width="1.1716%" height="15" fill="rgb(221,70,22)" fg:x="19887" fg:w="2610"/><text x="9.1767%" y="863.50"></text></g><g><title>PhaseBlockLayout::find_edges (64 samples, 0.03%)</title><rect x="10.1001%" y="837" width="0.0287%" height="15" fill="rgb(248,145,5)" fg:x="22501" fg:w="64"/><text x="10.3501%" y="847.50"></text></g><g><title>PhaseBlockLayout::grow_traces (48 samples, 0.02%)</title><rect x="10.1288%" y="837" width="0.0215%" height="15" fill="rgb(226,116,26)" fg:x="22565" fg:w="48"/><text x="10.3788%" y="847.50"></text></g><g><title>__GI___qsort_r (31 samples, 0.01%)</title><rect x="10.1365%" y="821" width="0.0139%" height="15" fill="rgb(244,5,17)" fg:x="22582" fg:w="31"/><text x="10.3865%" y="831.50"></text></g><g><title>msort_with_tmp (30 samples, 0.01%)</title><rect x="10.1369%" y="805" width="0.0135%" height="15" fill="rgb(252,159,33)" fg:x="22583" fg:w="30"/><text x="10.3869%" y="815.50"></text></g><g><title>msort_with_tmp (29 samples, 0.01%)</title><rect x="10.1374%" y="789" width="0.0130%" height="15" fill="rgb(206,71,0)" fg:x="22584" fg:w="29"/><text x="10.3874%" y="799.50"></text></g><g><title>msort_with_tmp (28 samples, 0.01%)</title><rect x="10.1378%" y="773" width="0.0126%" height="15" fill="rgb(233,118,54)" fg:x="22585" fg:w="28"/><text x="10.3878%" y="783.50"></text></g><g><title>msort_with_tmp (28 samples, 0.01%)</title><rect x="10.1378%" y="757" width="0.0126%" height="15" fill="rgb(234,83,48)" fg:x="22585" fg:w="28"/><text x="10.3878%" y="767.50"></text></g><g><title>msort_with_tmp (25 samples, 0.01%)</title><rect x="10.1392%" y="741" width="0.0112%" height="15" fill="rgb(228,3,54)" fg:x="22588" fg:w="25"/><text x="10.3892%" y="751.50"></text></g><g><title>msort_with_tmp (24 samples, 0.01%)</title><rect x="10.1396%" y="725" width="0.0108%" height="15" fill="rgb(226,155,13)" fg:x="22589" fg:w="24"/><text x="10.3896%" y="735.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (152 samples, 0.07%)</title><rect x="10.0983%" y="853" width="0.0682%" height="15" fill="rgb(241,28,37)" fg:x="22497" fg:w="152"/><text x="10.3483%" y="863.50"></text></g><g><title>PhaseBlockLayout::reorder_traces (29 samples, 0.01%)</title><rect x="10.1535%" y="837" width="0.0130%" height="15" fill="rgb(233,93,10)" fg:x="22620" fg:w="29"/><text x="10.4035%" y="847.50"></text></g><g><title>Trace::fixup_blocks (27 samples, 0.01%)</title><rect x="10.1544%" y="821" width="0.0121%" height="15" fill="rgb(225,113,19)" fg:x="22622" fg:w="27"/><text x="10.4044%" y="831.50"></text></g><g><title>PhaseCFG::PhaseCFG (153 samples, 0.07%)</title><rect x="10.1665%" y="853" width="0.0687%" height="15" fill="rgb(241,2,18)" fg:x="22649" fg:w="153"/><text x="10.4165%" y="863.50"></text></g><g><title>PhaseCFG::build_cfg (141 samples, 0.06%)</title><rect x="10.1719%" y="837" width="0.0633%" height="15" fill="rgb(228,207,21)" fg:x="22661" fg:w="141"/><text x="10.4219%" y="847.50"></text></g><g><title>PhaseCFG::do_DFS (32 samples, 0.01%)</title><rect x="10.2599%" y="821" width="0.0144%" height="15" fill="rgb(213,211,35)" fg:x="22857" fg:w="32"/><text x="10.5099%" y="831.50"></text></g><g><title>PhaseCFG::build_dominator_tree (87 samples, 0.04%)</title><rect x="10.2361%" y="837" width="0.0391%" height="15" fill="rgb(209,83,10)" fg:x="22804" fg:w="87"/><text x="10.4861%" y="847.50"></text></g><g><title>CFGLoop::compute_freq (25 samples, 0.01%)</title><rect x="10.2783%" y="821" width="0.0112%" height="15" fill="rgb(209,164,1)" fg:x="22898" fg:w="25"/><text x="10.5283%" y="831.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (55 samples, 0.02%)</title><rect x="10.2752%" y="837" width="0.0247%" height="15" fill="rgb(213,184,43)" fg:x="22891" fg:w="55"/><text x="10.5252%" y="847.50"></text></g><g><title>PhaseCFG::call_catch_cleanup (26 samples, 0.01%)</title><rect x="10.4601%" y="821" width="0.0117%" height="15" fill="rgb(231,61,34)" fg:x="23303" fg:w="26"/><text x="10.7101%" y="831.50"></text></g><g><title>PhaseCFG::implicit_null_check (53 samples, 0.02%)</title><rect x="10.4718%" y="821" width="0.0238%" height="15" fill="rgb(235,75,3)" fg:x="23329" fg:w="53"/><text x="10.7218%" y="831.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (31 samples, 0.01%)</title><rect x="10.4956%" y="821" width="0.0139%" height="15" fill="rgb(220,106,47)" fg:x="23382" fg:w="31"/><text x="10.7456%" y="831.50"></text></g><g><title>Node_Backward_Iterator::next (248 samples, 0.11%)</title><rect x="10.5597%" y="805" width="0.1113%" height="15" fill="rgb(210,196,33)" fg:x="23525" fg:w="248"/><text x="10.8097%" y="815.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (92 samples, 0.04%)</title><rect x="10.6711%" y="805" width="0.0413%" height="15" fill="rgb(229,154,42)" fg:x="23773" fg:w="92"/><text x="10.9211%" y="815.50"></text></g><g><title>MachNode::adr_type (41 samples, 0.02%)</title><rect x="10.7505%" y="789" width="0.0184%" height="15" fill="rgb(228,114,26)" fg:x="23950" fg:w="41"/><text x="11.0005%" y="799.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (154 samples, 0.07%)</title><rect x="10.7124%" y="805" width="0.0691%" height="15" fill="rgb(208,144,1)" fg:x="23865" fg:w="154"/><text x="10.9624%" y="815.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (64 samples, 0.03%)</title><rect x="10.7815%" y="805" width="0.0287%" height="15" fill="rgb(239,112,37)" fg:x="24019" fg:w="64"/><text x="11.0315%" y="815.50"></text></g><g><title>Node_Array::insert (36 samples, 0.02%)</title><rect x="10.7941%" y="789" width="0.0162%" height="15" fill="rgb(210,96,50)" fg:x="24047" fg:w="36"/><text x="11.0441%" y="799.50"></text></g><g><title>PhaseCFG::schedule_late (674 samples, 0.30%)</title><rect x="10.5095%" y="821" width="0.3025%" height="15" fill="rgb(222,178,2)" fg:x="23413" fg:w="674"/><text x="10.7595%" y="831.50"></text></g><g><title>Node::is_iteratively_computed (23 samples, 0.01%)</title><rect x="10.9121%" y="805" width="0.0103%" height="15" fill="rgb(226,74,18)" fg:x="24310" fg:w="23"/><text x="11.1621%" y="815.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (65 samples, 0.03%)</title><rect x="10.9233%" y="805" width="0.0292%" height="15" fill="rgb(225,67,54)" fg:x="24335" fg:w="65"/><text x="11.1733%" y="815.50"></text></g><g><title>PhaseCFG::needed_for_next_call (25 samples, 0.01%)</title><rect x="10.9525%" y="805" width="0.0112%" height="15" fill="rgb(251,92,32)" fg:x="24400" fg:w="25"/><text x="11.2025%" y="815.50"></text></g><g><title>PhaseCFG::select (85 samples, 0.04%)</title><rect x="10.9642%" y="805" width="0.0382%" height="15" fill="rgb(228,149,22)" fg:x="24426" fg:w="85"/><text x="11.2142%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (26 samples, 0.01%)</title><rect x="11.0104%" y="789" width="0.0117%" height="15" fill="rgb(243,54,13)" fg:x="24529" fg:w="26"/><text x="11.2604%" y="799.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (68 samples, 0.03%)</title><rect x="11.0023%" y="805" width="0.0305%" height="15" fill="rgb(243,180,28)" fg:x="24511" fg:w="68"/><text x="11.2523%" y="815.50"></text></g><g><title>PhaseChaitin::raise_pressure (24 samples, 0.01%)</title><rect x="11.0221%" y="789" width="0.0108%" height="15" fill="rgb(208,167,24)" fg:x="24555" fg:w="24"/><text x="11.2721%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (23 samples, 0.01%)</title><rect x="11.0450%" y="789" width="0.0103%" height="15" fill="rgb(245,73,45)" fg:x="24606" fg:w="23"/><text x="11.2950%" y="799.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (59 samples, 0.03%)</title><rect x="11.0329%" y="805" width="0.0265%" height="15" fill="rgb(237,203,48)" fg:x="24579" fg:w="59"/><text x="11.2829%" y="815.50"></text></g><g><title>PhaseCFG::schedule_local (558 samples, 0.25%)</title><rect x="10.8120%" y="821" width="0.2505%" height="15" fill="rgb(211,197,16)" fg:x="24087" fg:w="558"/><text x="11.0620%" y="831.50"></text></g><g><title>RegMask::Size (91 samples, 0.04%)</title><rect x="11.2066%" y="805" width="0.0408%" height="15" fill="rgb(243,99,51)" fg:x="24966" fg:w="91"/><text x="11.4566%" y="815.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (440 samples, 0.20%)</title><rect x="11.0804%" y="821" width="0.1975%" height="15" fill="rgb(215,123,29)" fg:x="24685" fg:w="440"/><text x="11.3304%" y="831.50"></text></g><g><title>PhaseChaitin::mark_ssa (91 samples, 0.04%)</title><rect x="11.2779%" y="821" width="0.0408%" height="15" fill="rgb(239,186,37)" fg:x="25125" fg:w="91"/><text x="11.5279%" y="831.50"></text></g><g><title>IndexSet::initialize (106 samples, 0.05%)</title><rect x="11.3381%" y="805" width="0.0476%" height="15" fill="rgb(252,136,39)" fg:x="25259" fg:w="106"/><text x="11.5881%" y="815.50"></text></g><g><title>PhaseIFG::init (182 samples, 0.08%)</title><rect x="11.3188%" y="821" width="0.0817%" height="15" fill="rgb(223,213,32)" fg:x="25216" fg:w="182"/><text x="11.5688%" y="831.50"></text></g><g><title>[libc-2.31.so] (33 samples, 0.01%)</title><rect x="11.3857%" y="805" width="0.0148%" height="15" fill="rgb(233,115,5)" fg:x="25365" fg:w="33"/><text x="11.6357%" y="815.50"></text></g><g><title>IndexSet::initialize (53 samples, 0.02%)</title><rect x="11.5123%" y="805" width="0.0238%" height="15" fill="rgb(207,226,44)" fg:x="25647" fg:w="53"/><text x="11.7623%" y="815.50"></text></g><g><title>IndexSet::alloc_block_containing (29 samples, 0.01%)</title><rect x="11.5733%" y="789" width="0.0130%" height="15" fill="rgb(208,126,0)" fg:x="25783" fg:w="29"/><text x="11.8233%" y="799.50"></text></g><g><title>PhaseLive::add_livein (190 samples, 0.09%)</title><rect x="11.5369%" y="805" width="0.0853%" height="15" fill="rgb(244,66,21)" fg:x="25702" fg:w="190"/><text x="11.7869%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (80 samples, 0.04%)</title><rect x="11.5863%" y="789" width="0.0359%" height="15" fill="rgb(222,97,12)" fg:x="25812" fg:w="80"/><text x="11.8363%" y="799.50"></text></g><g><title>__tls_get_addr (26 samples, 0.01%)</title><rect x="11.7201%" y="773" width="0.0117%" height="15" fill="rgb(219,213,19)" fg:x="26110" fg:w="26"/><text x="11.9701%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (79 samples, 0.04%)</title><rect x="11.6999%" y="789" width="0.0355%" height="15" fill="rgb(252,169,30)" fg:x="26065" fg:w="79"/><text x="11.9499%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (106 samples, 0.05%)</title><rect x="11.7452%" y="789" width="0.0476%" height="15" fill="rgb(206,32,51)" fg:x="26166" fg:w="106"/><text x="11.9952%" y="799.50"></text></g><g><title>PhaseLive::add_liveout (384 samples, 0.17%)</title><rect x="11.6222%" y="805" width="0.1724%" height="15" fill="rgb(250,172,42)" fg:x="25892" fg:w="384"/><text x="11.8722%" y="815.50"></text></g><g><title>PhaseLive::compute (880 samples, 0.40%)</title><rect x="11.4005%" y="821" width="0.3950%" height="15" fill="rgb(209,34,43)" fg:x="25398" fg:w="880"/><text x="11.6505%" y="831.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,489 samples, 1.57%)</title><rect x="10.2352%" y="853" width="1.5661%" height="15" fill="rgb(223,11,35)" fg:x="22802" fg:w="3489"/><text x="10.4852%" y="863.50"></text></g><g><title>PhaseCFG::global_code_motion (3,345 samples, 1.50%)</title><rect x="10.2998%" y="837" width="1.5015%" height="15" fill="rgb(251,219,26)" fg:x="22946" fg:w="3345"/><text x="10.5498%" y="847.50"></text></g><g><title>PhaseCFG::fixup_flow (23 samples, 0.01%)</title><rect x="11.8013%" y="853" width="0.0103%" height="15" fill="rgb(231,119,3)" fg:x="26291" fg:w="23"/><text x="12.0513%" y="863.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (72 samples, 0.03%)</title><rect x="11.8117%" y="853" width="0.0323%" height="15" fill="rgb(216,97,11)" fg:x="26314" fg:w="72"/><text x="12.0617%" y="863.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,167 samples, 0.52%)</title><rect x="11.9100%" y="837" width="0.5238%" height="15" fill="rgb(223,59,9)" fg:x="26533" fg:w="1167"/><text x="12.1600%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (293 samples, 0.13%)</title><rect x="12.6870%" y="821" width="0.1315%" height="15" fill="rgb(233,93,31)" fg:x="28264" fg:w="293"/><text x="12.9370%" y="831.50"></text></g><g><title>RegMask::find_first_set (34 samples, 0.02%)</title><rect x="12.8674%" y="805" width="0.0153%" height="15" fill="rgb(239,81,33)" fg:x="28666" fg:w="34"/><text x="13.1174%" y="815.50"></text></g><g><title>PhaseChaitin::bias_color (155 samples, 0.07%)</title><rect x="12.8185%" y="821" width="0.0696%" height="15" fill="rgb(213,120,34)" fg:x="28557" fg:w="155"/><text x="13.0685%" y="831.50"></text></g><g><title>IndexSet::alloc_block_containing (54 samples, 0.02%)</title><rect x="13.0393%" y="805" width="0.0242%" height="15" fill="rgb(243,49,53)" fg:x="29049" fg:w="54"/><text x="13.2893%" y="815.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (55 samples, 0.02%)</title><rect x="13.0636%" y="805" width="0.0247%" height="15" fill="rgb(247,216,33)" fg:x="29103" fg:w="55"/><text x="13.3136%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (347 samples, 0.16%)</title><rect x="13.0882%" y="805" width="0.1558%" height="15" fill="rgb(226,26,14)" fg:x="29158" fg:w="347"/><text x="13.3382%" y="815.50"></text></g><g><title>PhaseIFG::re_insert (795 samples, 0.36%)</title><rect x="12.8903%" y="821" width="0.3569%" height="15" fill="rgb(215,49,53)" fg:x="28717" fg:w="795"/><text x="13.1403%" y="831.50"></text></g><g><title>RegMask::clear_to_sets (129 samples, 0.06%)</title><rect x="13.2471%" y="821" width="0.0579%" height="15" fill="rgb(245,162,40)" fg:x="29512" fg:w="129"/><text x="13.4971%" y="831.50"></text></g><g><title>PhaseChaitin::Select (1,947 samples, 0.87%)</title><rect x="12.4338%" y="837" width="0.8740%" height="15" fill="rgb(229,68,17)" fg:x="27700" fg:w="1947"/><text x="12.6838%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (293 samples, 0.13%)</title><rect x="13.4092%" y="821" width="0.1315%" height="15" fill="rgb(213,182,10)" fg:x="29873" fg:w="293"/><text x="13.6592%" y="831.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (69 samples, 0.03%)</title><rect x="13.7306%" y="805" width="0.0310%" height="15" fill="rgb(245,125,30)" fg:x="30589" fg:w="69"/><text x="13.9806%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (410 samples, 0.18%)</title><rect x="13.7616%" y="805" width="0.1840%" height="15" fill="rgb(232,202,2)" fg:x="30658" fg:w="410"/><text x="14.0116%" y="815.50"></text></g><g><title>PhaseIFG::remove_node (905 samples, 0.41%)</title><rect x="13.5407%" y="821" width="0.4062%" height="15" fill="rgb(237,140,51)" fg:x="30166" fg:w="905"/><text x="13.7907%" y="831.50"></text></g><g><title>PhaseChaitin::Simplify (1,426 samples, 0.64%)</title><rect x="13.3077%" y="837" width="0.6401%" height="15" fill="rgb(236,157,25)" fg:x="29647" fg:w="1426"/><text x="13.5577%" y="847.50"></text></g><g><title>MachNode::ideal_reg (29 samples, 0.01%)</title><rect x="15.1136%" y="805" width="0.0130%" height="15" fill="rgb(219,209,0)" fg:x="33670" fg:w="29"/><text x="15.3636%" y="815.50"></text></g><g><title>MachNode::rematerialize (139 samples, 0.06%)</title><rect x="15.0673%" y="821" width="0.0624%" height="15" fill="rgb(240,116,54)" fg:x="33567" fg:w="139"/><text x="15.3173%" y="831.50"></text></g><g><title>Node::rematerialize (142 samples, 0.06%)</title><rect x="15.1472%" y="821" width="0.0637%" height="15" fill="rgb(216,10,36)" fg:x="33745" fg:w="142"/><text x="15.3972%" y="831.50"></text></g><g><title>Node::replace_by (25 samples, 0.01%)</title><rect x="15.2110%" y="821" width="0.0112%" height="15" fill="rgb(222,72,44)" fg:x="33887" fg:w="25"/><text x="15.4610%" y="831.50"></text></g><g><title>PhaseChaitin::split_DEF (23 samples, 0.01%)</title><rect x="15.2392%" y="821" width="0.0103%" height="15" fill="rgb(232,159,9)" fg:x="33950" fg:w="23"/><text x="15.4892%" y="831.50"></text></g><g><title>PhaseChaitin::clone_projs (25 samples, 0.01%)</title><rect x="15.2572%" y="805" width="0.0112%" height="15" fill="rgb(210,39,32)" fg:x="33990" fg:w="25"/><text x="15.5072%" y="815.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (48 samples, 0.02%)</title><rect x="15.2496%" y="821" width="0.0215%" height="15" fill="rgb(216,194,45)" fg:x="33973" fg:w="48"/><text x="15.4996%" y="831.50"></text></g><g><title>RegMask::is_aligned_pairs (45 samples, 0.02%)</title><rect x="15.3138%" y="789" width="0.0202%" height="15" fill="rgb(218,18,35)" fg:x="34116" fg:w="45"/><text x="15.5638%" y="799.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (89 samples, 0.04%)</title><rect x="15.2994%" y="805" width="0.0399%" height="15" fill="rgb(207,83,51)" fg:x="34084" fg:w="89"/><text x="15.5494%" y="815.50"></text></g><g><title>PhaseChaitin::insert_proj (23 samples, 0.01%)</title><rect x="15.3393%" y="805" width="0.0103%" height="15" fill="rgb(225,63,43)" fg:x="34173" fg:w="23"/><text x="15.5893%" y="815.50"></text></g><g><title>PhaseChaitin::split_USE (181 samples, 0.08%)</title><rect x="15.2711%" y="821" width="0.0812%" height="15" fill="rgb(207,57,36)" fg:x="34021" fg:w="181"/><text x="15.5211%" y="831.50"></text></g><g><title>RegMask::Size (25 samples, 0.01%)</title><rect x="15.3578%" y="821" width="0.0112%" height="15" fill="rgb(216,99,33)" fg:x="34214" fg:w="25"/><text x="15.6078%" y="831.50"></text></g><g><title>handle_irq_event (29 samples, 0.01%)</title><rect x="15.3865%" y="773" width="0.0130%" height="15" fill="rgb(225,42,16)" fg:x="34278" fg:w="29"/><text x="15.6365%" y="783.50"></text></g><g><title>__handle_irq_event_percpu (29 samples, 0.01%)</title><rect x="15.3865%" y="757" width="0.0130%" height="15" fill="rgb(220,201,45)" fg:x="34278" fg:w="29"/><text x="15.6365%" y="767.50"></text></g><g><title>nvme_irq (29 samples, 0.01%)</title><rect x="15.3865%" y="741" width="0.0130%" height="15" fill="rgb(225,33,4)" fg:x="34278" fg:w="29"/><text x="15.6365%" y="751.50"></text></g><g><title>nvme_process_cq (29 samples, 0.01%)</title><rect x="15.3865%" y="725" width="0.0130%" height="15" fill="rgb(224,33,50)" fg:x="34278" fg:w="29"/><text x="15.6365%" y="735.50"></text></g><g><title>blk_mq_end_request (28 samples, 0.01%)</title><rect x="15.3869%" y="709" width="0.0126%" height="15" fill="rgb(246,198,51)" fg:x="34279" fg:w="28"/><text x="15.6369%" y="719.50"></text></g><g><title>blk_update_request (28 samples, 0.01%)</title><rect x="15.3869%" y="693" width="0.0126%" height="15" fill="rgb(205,22,4)" fg:x="34279" fg:w="28"/><text x="15.6369%" y="703.50"></text></g><g><title>asm_common_interrupt (30 samples, 0.01%)</title><rect x="15.3865%" y="821" width="0.0135%" height="15" fill="rgb(206,3,8)" fg:x="34278" fg:w="30"/><text x="15.6365%" y="831.50"></text></g><g><title>common_interrupt (30 samples, 0.01%)</title><rect x="15.3865%" y="805" width="0.0135%" height="15" fill="rgb(251,23,15)" fg:x="34278" fg:w="30"/><text x="15.6365%" y="815.50"></text></g><g><title>handle_edge_irq (30 samples, 0.01%)</title><rect x="15.3865%" y="789" width="0.0135%" height="15" fill="rgb(252,88,28)" fg:x="34278" fg:w="30"/><text x="15.6365%" y="799.50"></text></g><g><title>PhaseChaitin::Split (3,267 samples, 1.47%)</title><rect x="13.9478%" y="837" width="1.4665%" height="15" fill="rgb(212,127,14)" fg:x="31073" fg:w="3267"/><text x="14.1978%" y="847.50"></text></g><g><title>__tls_get_addr (33 samples, 0.01%)</title><rect x="15.8955%" y="805" width="0.0148%" height="15" fill="rgb(247,145,37)" fg:x="35412" fg:w="33"/><text x="16.1455%" y="815.50"></text></g><g><title>IndexSet::IndexSet (283 samples, 0.13%)</title><rect x="15.7851%" y="821" width="0.1270%" height="15" fill="rgb(209,117,53)" fg:x="35166" fg:w="283"/><text x="16.0351%" y="831.50"></text></g><g><title>MachNode::rematerialize (87 samples, 0.04%)</title><rect x="15.9170%" y="821" width="0.0391%" height="15" fill="rgb(212,90,42)" fg:x="35460" fg:w="87"/><text x="16.1670%" y="831.50"></text></g><g><title>IndexSet::alloc_block_containing (37 samples, 0.02%)</title><rect x="16.1469%" y="805" width="0.0166%" height="15" fill="rgb(218,164,37)" fg:x="35972" fg:w="37"/><text x="16.3969%" y="815.50"></text></g><g><title>JVMState::debug_start (26 samples, 0.01%)</title><rect x="16.1635%" y="805" width="0.0117%" height="15" fill="rgb(246,65,34)" fg:x="36009" fg:w="26"/><text x="16.4135%" y="815.50"></text></g><g><title>MachNode::rematerialize (90 samples, 0.04%)</title><rect x="16.1760%" y="805" width="0.0404%" height="15" fill="rgb(231,100,33)" fg:x="36037" fg:w="90"/><text x="16.4260%" y="815.50"></text></g><g><title>RegMask::is_UP (50 samples, 0.02%)</title><rect x="16.2582%" y="789" width="0.0224%" height="15" fill="rgb(228,126,14)" fg:x="36220" fg:w="50"/><text x="16.5082%" y="799.50"></text></g><g><title>PhaseChaitin::raise_pressure (134 samples, 0.06%)</title><rect x="16.2209%" y="805" width="0.0601%" height="15" fill="rgb(215,173,21)" fg:x="36137" fg:w="134"/><text x="16.4709%" y="815.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (714 samples, 0.32%)</title><rect x="15.9633%" y="821" width="0.3205%" height="15" fill="rgb(210,6,40)" fg:x="35563" fg:w="714"/><text x="16.2133%" y="831.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (40 samples, 0.02%)</title><rect x="16.2838%" y="821" width="0.0180%" height="15" fill="rgb(212,48,18)" fg:x="36277" fg:w="40"/><text x="16.5338%" y="831.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (50 samples, 0.02%)</title><rect x="16.3017%" y="821" width="0.0224%" height="15" fill="rgb(230,214,11)" fg:x="36317" fg:w="50"/><text x="16.5517%" y="831.50"></text></g><g><title>RegMask::Size (33 samples, 0.01%)</title><rect x="16.3094%" y="805" width="0.0148%" height="15" fill="rgb(254,105,39)" fg:x="36334" fg:w="33"/><text x="16.5594%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (169 samples, 0.08%)</title><rect x="16.4427%" y="805" width="0.0759%" height="15" fill="rgb(245,158,5)" fg:x="36631" fg:w="169"/><text x="16.6927%" y="815.50"></text></g><g><title>RegMask::is_UP (86 samples, 0.04%)</title><rect x="16.5185%" y="805" width="0.0386%" height="15" fill="rgb(249,208,11)" fg:x="36800" fg:w="86"/><text x="16.7685%" y="815.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (520 samples, 0.23%)</title><rect x="16.3242%" y="821" width="0.2334%" height="15" fill="rgb(210,39,28)" fg:x="36367" fg:w="520"/><text x="16.5742%" y="831.50"></text></g><g><title>__tls_get_addr (29 samples, 0.01%)</title><rect x="17.4230%" y="789" width="0.0130%" height="15" fill="rgb(211,56,53)" fg:x="38815" fg:w="29"/><text x="17.6730%" y="799.50"></text></g><g><title>IndexSet::alloc_block_containing (107 samples, 0.05%)</title><rect x="17.3889%" y="805" width="0.0480%" height="15" fill="rgb(226,201,30)" fg:x="38739" fg:w="107"/><text x="17.6389%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (808 samples, 0.36%)</title><rect x="17.4401%" y="805" width="0.3627%" height="15" fill="rgb(239,101,34)" fg:x="38853" fg:w="808"/><text x="17.6901%" y="815.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,781 samples, 1.25%)</title><rect x="16.5576%" y="821" width="1.2483%" height="15" fill="rgb(226,209,5)" fg:x="36887" fg:w="2781"/><text x="16.8076%" y="831.50"></text></g><g><title>PhaseChaitin::lower_pressure (90 samples, 0.04%)</title><rect x="17.8059%" y="821" width="0.0404%" height="15" fill="rgb(250,105,47)" fg:x="39668" fg:w="90"/><text x="18.0559%" y="831.50"></text></g><g><title>RegMask::is_UP (32 samples, 0.01%)</title><rect x="17.8319%" y="805" width="0.0144%" height="15" fill="rgb(230,72,3)" fg:x="39726" fg:w="32"/><text x="18.0819%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (231 samples, 0.10%)</title><rect x="18.0492%" y="805" width="0.1037%" height="15" fill="rgb(232,218,39)" fg:x="40210" fg:w="231"/><text x="18.2992%" y="815.50"></text></g><g><title>RegMask::Size (317 samples, 0.14%)</title><rect x="18.1529%" y="805" width="0.1423%" height="15" fill="rgb(248,166,6)" fg:x="40441" fg:w="317"/><text x="18.4029%" y="815.50"></text></g><g><title>RegMask::smear_to_sets (696 samples, 0.31%)</title><rect x="18.2952%" y="805" width="0.3124%" height="15" fill="rgb(247,89,20)" fg:x="40758" fg:w="696"/><text x="18.5452%" y="815.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,702 samples, 0.76%)</title><rect x="17.8463%" y="821" width="0.7640%" height="15" fill="rgb(248,130,54)" fg:x="39758" fg:w="1702"/><text x="18.0963%" y="831.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (23 samples, 0.01%)</title><rect x="18.6103%" y="821" width="0.0103%" height="15" fill="rgb(234,196,4)" fg:x="41460" fg:w="23"/><text x="18.8603%" y="831.50"></text></g><g><title>RegMask::smear_to_sets (49 samples, 0.02%)</title><rect x="18.6273%" y="821" width="0.0220%" height="15" fill="rgb(250,143,31)" fg:x="41498" fg:w="49"/><text x="18.8773%" y="831.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,212 samples, 3.24%)</title><rect x="15.4152%" y="837" width="3.2373%" height="15" fill="rgb(211,110,34)" fg:x="34342" fg:w="7212"/><text x="15.6652%" y="847.50">Pha..</text></g><g><title>PhaseChaitin::interfere_with_live (332 samples, 0.15%)</title><rect x="18.7122%" y="821" width="0.1490%" height="15" fill="rgb(215,124,48)" fg:x="41687" fg:w="332"/><text x="18.9622%" y="831.50"></text></g><g><title>IndexSetIterator::advance_and_next (66 samples, 0.03%)</title><rect x="18.8316%" y="805" width="0.0296%" height="15" fill="rgb(216,46,13)" fg:x="41953" fg:w="66"/><text x="19.0816%" y="815.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (468 samples, 0.21%)</title><rect x="18.6525%" y="837" width="0.2101%" height="15" fill="rgb(205,184,25)" fg:x="41554" fg:w="468"/><text x="18.9025%" y="847.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (101 samples, 0.05%)</title><rect x="18.8626%" y="837" width="0.0453%" height="15" fill="rgb(228,1,10)" fg:x="42022" fg:w="101"/><text x="19.1126%" y="847.50"></text></g><g><title>find_hihghest_bit (35 samples, 0.02%)</title><rect x="18.8922%" y="821" width="0.0157%" height="15" fill="rgb(213,116,27)" fg:x="42088" fg:w="35"/><text x="19.1422%" y="831.50"></text></g><g><title>PhaseChaitin::compact (33 samples, 0.01%)</title><rect x="18.9079%" y="837" width="0.0148%" height="15" fill="rgb(241,95,50)" fg:x="42123" fg:w="33"/><text x="19.1579%" y="847.50"></text></g><g><title>PhaseChaitin::de_ssa (92 samples, 0.04%)</title><rect x="18.9227%" y="837" width="0.0413%" height="15" fill="rgb(238,48,32)" fg:x="42156" fg:w="92"/><text x="19.1727%" y="847.50"></text></g><g><title>PhaseChaitin::fixup_spills (53 samples, 0.02%)</title><rect x="18.9649%" y="837" width="0.0238%" height="15" fill="rgb(235,113,49)" fg:x="42250" fg:w="53"/><text x="19.2149%" y="847.50"></text></g><g><title>MachCallJavaNode::in_RegMask (66 samples, 0.03%)</title><rect x="19.7329%" y="821" width="0.0296%" height="15" fill="rgb(205,127,43)" fg:x="43961" fg:w="66"/><text x="19.9829%" y="831.50"></text></g><g><title>MachNode::ideal_reg (73 samples, 0.03%)</title><rect x="19.7666%" y="821" width="0.0328%" height="15" fill="rgb(250,162,2)" fg:x="44036" fg:w="73"/><text x="20.0166%" y="831.50"></text></g><g><title>MachNode::in_RegMask (50 samples, 0.02%)</title><rect x="19.7994%" y="821" width="0.0224%" height="15" fill="rgb(220,13,41)" fg:x="44109" fg:w="50"/><text x="20.0494%" y="831.50"></text></g><g><title>MachProjNode::bottom_type (34 samples, 0.02%)</title><rect x="19.8236%" y="821" width="0.0153%" height="15" fill="rgb(249,221,25)" fg:x="44163" fg:w="34"/><text x="20.0736%" y="831.50"></text></g><g><title>PhiNode::in_RegMask (24 samples, 0.01%)</title><rect x="19.8496%" y="821" width="0.0108%" height="15" fill="rgb(215,208,19)" fg:x="44221" fg:w="24"/><text x="20.0996%" y="831.50"></text></g><g><title>RegMask::Size (1,113 samples, 0.50%)</title><rect x="19.8653%" y="821" width="0.4996%" height="15" fill="rgb(236,175,2)" fg:x="44256" fg:w="1113"/><text x="20.1153%" y="831.50"></text></g><g><title>RegMask::clear_to_sets (218 samples, 0.10%)</title><rect x="20.3649%" y="821" width="0.0979%" height="15" fill="rgb(241,52,2)" fg:x="45369" fg:w="218"/><text x="20.6149%" y="831.50"></text></g><g><title>RegMask::is_aligned_pairs (114 samples, 0.05%)</title><rect x="20.4628%" y="821" width="0.0512%" height="15" fill="rgb(248,140,14)" fg:x="45587" fg:w="114"/><text x="20.7128%" y="831.50"></text></g><g><title>RegMask::is_bound1 (142 samples, 0.06%)</title><rect x="20.5140%" y="821" width="0.0637%" height="15" fill="rgb(253,22,42)" fg:x="45701" fg:w="142"/><text x="20.7640%" y="831.50"></text></g><g><title>RegMask::is_bound_pair (80 samples, 0.04%)</title><rect x="20.5777%" y="821" width="0.0359%" height="15" fill="rgb(234,61,47)" fg:x="45843" fg:w="80"/><text x="20.8277%" y="831.50"></text></g><g><title>RegMask::is_vector (30 samples, 0.01%)</title><rect x="20.6136%" y="821" width="0.0135%" height="15" fill="rgb(208,226,15)" fg:x="45923" fg:w="30"/><text x="20.8636%" y="831.50"></text></g><g><title>Dict::Insert (28 samples, 0.01%)</title><rect x="20.6271%" y="805" width="0.0126%" height="15" fill="rgb(217,221,4)" fg:x="45953" fg:w="28"/><text x="20.8771%" y="815.50"></text></g><g><title>Type::hashcons (30 samples, 0.01%)</title><rect x="20.6271%" y="821" width="0.0135%" height="15" fill="rgb(212,174,34)" fg:x="45953" fg:w="30"/><text x="20.8771%" y="831.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,770 samples, 1.69%)</title><rect x="18.9887%" y="837" width="1.6923%" height="15" fill="rgb(253,83,4)" fg:x="42303" fg:w="3770"/><text x="19.2387%" y="847.50"></text></g><g><title>PhaseChaitin::merge_multidefs (492 samples, 0.22%)</title><rect x="20.6814%" y="837" width="0.2208%" height="15" fill="rgb(250,195,49)" fg:x="46074" fg:w="492"/><text x="20.9314%" y="847.50"></text></g><g><title>Node::replace_by (34 samples, 0.02%)</title><rect x="21.6312%" y="821" width="0.0153%" height="15" fill="rgb(241,192,25)" fg:x="48190" fg:w="34"/><text x="21.8812%" y="831.50"></text></g><g><title>RegMask::Size (33 samples, 0.01%)</title><rect x="22.4791%" y="789" width="0.0148%" height="15" fill="rgb(208,124,10)" fg:x="50079" fg:w="33"/><text x="22.7291%" y="799.50"></text></g><g><title>PhaseChaitin::use_prior_register (82 samples, 0.04%)</title><rect x="22.4612%" y="805" width="0.0368%" height="15" fill="rgb(222,33,0)" fg:x="50039" fg:w="82"/><text x="22.7112%" y="815.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (33 samples, 0.01%)</title><rect x="22.4980%" y="805" width="0.0148%" height="15" fill="rgb(234,209,28)" fg:x="50121" fg:w="33"/><text x="22.7480%" y="815.50"></text></g><g><title>PhaseChaitin::elide_copy (1,929 samples, 0.87%)</title><rect x="21.6532%" y="821" width="0.8659%" height="15" fill="rgb(224,11,23)" fg:x="48239" fg:w="1929"/><text x="21.9032%" y="831.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (41 samples, 0.02%)</title><rect x="22.5236%" y="821" width="0.0184%" height="15" fill="rgb(232,99,1)" fg:x="50178" fg:w="41"/><text x="22.7736%" y="831.50"></text></g><g><title>[libc-2.31.so] (57 samples, 0.03%)</title><rect x="22.5442%" y="821" width="0.0256%" height="15" fill="rgb(237,95,45)" fg:x="50224" fg:w="57"/><text x="22.7942%" y="831.50"></text></g><g><title>find_lowest_bit (318 samples, 0.14%)</title><rect x="22.5734%" y="821" width="0.1427%" height="15" fill="rgb(208,109,11)" fg:x="50289" fg:w="318"/><text x="22.8234%" y="831.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (4,047 samples, 1.82%)</title><rect x="20.9022%" y="837" width="1.8166%" height="15" fill="rgb(216,190,48)" fg:x="46566" fg:w="4047"/><text x="21.1522%" y="847.50">P..</text></g><g><title>IndexSet::IndexSet (33 samples, 0.01%)</title><rect x="22.7871%" y="821" width="0.0148%" height="15" fill="rgb(251,171,36)" fg:x="50765" fg:w="33"/><text x="23.0371%" y="831.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (202 samples, 0.09%)</title><rect x="22.7188%" y="837" width="0.0907%" height="15" fill="rgb(230,62,22)" fg:x="50613" fg:w="202"/><text x="22.9688%" y="847.50"></text></g><g><title>PhaseIFG::Union (50 samples, 0.02%)</title><rect x="22.8652%" y="789" width="0.0224%" height="15" fill="rgb(225,114,35)" fg:x="50939" fg:w="50"/><text x="23.1152%" y="799.50"></text></g><g><title>PhaseCoalesce::combine_these_two (75 samples, 0.03%)</title><rect x="22.8548%" y="805" width="0.0337%" height="15" fill="rgb(215,118,42)" fg:x="50916" fg:w="75"/><text x="23.1048%" y="815.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (172 samples, 0.08%)</title><rect x="22.8117%" y="821" width="0.0772%" height="15" fill="rgb(243,119,21)" fg:x="50820" fg:w="172"/><text x="23.0617%" y="831.50"></text></g><g><title>Block::has_uncommon_code (27 samples, 0.01%)</title><rect x="22.9464%" y="789" width="0.0121%" height="15" fill="rgb(252,177,53)" fg:x="51120" fg:w="27"/><text x="23.1964%" y="799.50"></text></g><g><title>PhaseCFG::is_uncommon (110 samples, 0.05%)</title><rect x="22.9096%" y="805" width="0.0494%" height="15" fill="rgb(237,209,29)" fg:x="51038" fg:w="110"/><text x="23.1596%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (50 samples, 0.02%)</title><rect x="23.2391%" y="773" width="0.0224%" height="15" fill="rgb(212,65,23)" fg:x="51772" fg:w="50"/><text x="23.4891%" y="783.50"></text></g><g><title>IndexSet::lrg_union (637 samples, 0.29%)</title><rect x="22.9805%" y="789" width="0.2859%" height="15" fill="rgb(230,222,46)" fg:x="51196" fg:w="637"/><text x="23.2305%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (37 samples, 0.02%)</title><rect x="23.8401%" y="773" width="0.0166%" height="15" fill="rgb(215,135,32)" fg:x="53111" fg:w="37"/><text x="24.0901%" y="783.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (1,320 samples, 0.59%)</title><rect x="23.2750%" y="789" width="0.5925%" height="15" fill="rgb(246,101,22)" fg:x="51852" fg:w="1320"/><text x="23.5250%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (25 samples, 0.01%)</title><rect x="23.9855%" y="773" width="0.0112%" height="15" fill="rgb(206,107,13)" fg:x="53435" fg:w="25"/><text x="24.2355%" y="783.50"></text></g><g><title>PhaseIFG::effective_degree (290 samples, 0.13%)</title><rect x="23.8675%" y="789" width="0.1302%" height="15" fill="rgb(250,100,44)" fg:x="53172" fg:w="290"/><text x="24.1175%" y="799.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (2,337 samples, 1.05%)</title><rect x="22.9590%" y="805" width="1.0490%" height="15" fill="rgb(231,147,38)" fg:x="51148" fg:w="2337"/><text x="23.2090%" y="815.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (2,673 samples, 1.20%)</title><rect x="22.8095%" y="837" width="1.1998%" height="15" fill="rgb(229,8,40)" fg:x="50815" fg:w="2673"/><text x="23.0595%" y="847.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (2,496 samples, 1.12%)</title><rect x="22.8889%" y="821" width="1.1204%" height="15" fill="rgb(221,135,30)" fg:x="50992" fg:w="2496"/><text x="23.1389%" y="831.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (51 samples, 0.02%)</title><rect x="24.1866%" y="821" width="0.0229%" height="15" fill="rgb(249,193,18)" fg:x="53883" fg:w="51"/><text x="24.4366%" y="831.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (955 samples, 0.43%)</title><rect x="24.0098%" y="837" width="0.4287%" height="15" fill="rgb(209,133,39)" fg:x="53489" fg:w="955"/><text x="24.2598%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (510 samples, 0.23%)</title><rect x="24.2095%" y="821" width="0.2289%" height="15" fill="rgb(232,100,14)" fg:x="53934" fg:w="510"/><text x="24.4595%" y="831.50"></text></g><g><title>IndexSet::alloc_block_containing (36 samples, 0.02%)</title><rect x="24.5969%" y="821" width="0.0162%" height="15" fill="rgb(224,185,1)" fg:x="54797" fg:w="36"/><text x="24.8469%" y="831.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (73 samples, 0.03%)</title><rect x="24.6131%" y="821" width="0.0328%" height="15" fill="rgb(223,139,8)" fg:x="54833" fg:w="73"/><text x="24.8631%" y="831.50"></text></g><g><title>PhaseIFG::SquareUp (884 samples, 0.40%)</title><rect x="24.4385%" y="837" width="0.3968%" height="15" fill="rgb(232,213,38)" fg:x="54444" fg:w="884"/><text x="24.6885%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (422 samples, 0.19%)</title><rect x="24.6458%" y="821" width="0.1894%" height="15" fill="rgb(207,94,22)" fg:x="54906" fg:w="422"/><text x="24.8958%" y="831.50"></text></g><g><title>IndexSet::initialize (197 samples, 0.09%)</title><rect x="24.8833%" y="821" width="0.0884%" height="15" fill="rgb(219,183,54)" fg:x="55435" fg:w="197"/><text x="25.1333%" y="831.50"></text></g><g><title>[libc-2.31.so] (74 samples, 0.03%)</title><rect x="24.9717%" y="821" width="0.0332%" height="15" fill="rgb(216,185,54)" fg:x="55632" fg:w="74"/><text x="25.2217%" y="831.50"></text></g><g><title>PhaseIFG::init (382 samples, 0.17%)</title><rect x="24.8353%" y="837" width="0.1715%" height="15" fill="rgb(254,217,39)" fg:x="55328" fg:w="382"/><text x="25.0853%" y="847.50"></text></g><g><title>IndexSet::alloc_block_containing (48 samples, 0.02%)</title><rect x="25.5544%" y="821" width="0.0215%" height="15" fill="rgb(240,178,23)" fg:x="56930" fg:w="48"/><text x="25.8044%" y="831.50"></text></g><g><title>IndexSet::free_block (49 samples, 0.02%)</title><rect x="25.5759%" y="821" width="0.0220%" height="15" fill="rgb(218,11,47)" fg:x="56978" fg:w="49"/><text x="25.8259%" y="831.50"></text></g><g><title>IndexSet::initialize (116 samples, 0.05%)</title><rect x="25.5979%" y="821" width="0.0521%" height="15" fill="rgb(218,51,51)" fg:x="57027" fg:w="116"/><text x="25.8479%" y="831.50"></text></g><g><title>__tls_get_addr (53 samples, 0.02%)</title><rect x="26.0234%" y="789" width="0.0238%" height="15" fill="rgb(238,126,27)" fg:x="57975" fg:w="53"/><text x="26.2734%" y="799.50"></text></g><g><title>update_get_addr (34 samples, 0.02%)</title><rect x="26.0320%" y="773" width="0.0153%" height="15" fill="rgb(249,202,22)" fg:x="57994" fg:w="34"/><text x="26.2820%" y="783.50"></text></g><g><title>_dl_update_slotinfo (24 samples, 0.01%)</title><rect x="26.0364%" y="757" width="0.0108%" height="15" fill="rgb(254,195,49)" fg:x="58004" fg:w="24"/><text x="26.2864%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (178 samples, 0.08%)</title><rect x="25.9691%" y="805" width="0.0799%" height="15" fill="rgb(208,123,14)" fg:x="57854" fg:w="178"/><text x="26.2191%" y="815.50"></text></g><g><title>IndexSet::initialize (43 samples, 0.02%)</title><rect x="26.0490%" y="805" width="0.0193%" height="15" fill="rgb(224,200,8)" fg:x="58032" fg:w="43"/><text x="26.2990%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (289 samples, 0.13%)</title><rect x="26.0692%" y="805" width="0.1297%" height="15" fill="rgb(217,61,36)" fg:x="58077" fg:w="289"/><text x="26.3192%" y="815.50"></text></g><g><title>PhaseLive::add_liveout (1,234 samples, 0.55%)</title><rect x="25.6513%" y="821" width="0.5539%" height="15" fill="rgb(206,35,45)" fg:x="57146" fg:w="1234"/><text x="25.9013%" y="831.50"></text></g><g><title>PhaseLive::compute (2,686 samples, 1.21%)</title><rect x="25.0072%" y="837" width="1.2057%" height="15" fill="rgb(217,65,33)" fg:x="55711" fg:w="2686"/><text x="25.2572%" y="847.50"></text></g><g><title>RegMask::Size (38 samples, 0.02%)</title><rect x="26.2160%" y="837" width="0.0171%" height="15" fill="rgb(222,158,48)" fg:x="58404" fg:w="38"/><text x="26.4660%" y="847.50"></text></g><g><title>find_lowest_bit (45 samples, 0.02%)</title><rect x="26.2492%" y="837" width="0.0202%" height="15" fill="rgb(254,2,54)" fg:x="58478" fg:w="45"/><text x="26.4992%" y="847.50"></text></g><g><title>PhaseChaitin::Register_Allocate (32,130 samples, 14.42%)</title><rect x="11.8521%" y="853" width="14.4223%" height="15" fill="rgb(250,143,38)" fg:x="26404" fg:w="32130"/><text x="12.1021%" y="863.50">PhaseChaitin::Register..</text></g><g><title>Compile::Code_Gen (40,476 samples, 18.17%)</title><rect x="8.1282%" y="869" width="18.1686%" height="15" fill="rgb(248,25,0)" fg:x="18108" fg:w="40476"/><text x="8.3782%" y="879.50">Compile::Code_Gen</text></g><g><title>PhasePeephole::do_transform (46 samples, 0.02%)</title><rect x="26.2761%" y="853" width="0.0206%" height="15" fill="rgb(206,152,27)" fg:x="58538" fg:w="46"/><text x="26.5261%" y="863.50"></text></g><g><title>Compile::call_generator (29 samples, 0.01%)</title><rect x="26.3094%" y="485" width="0.0130%" height="15" fill="rgb(240,77,30)" fg:x="58612" fg:w="29"/><text x="26.5594%" y="495.50"></text></g><g><title>InlineTree::ok_to_inline (23 samples, 0.01%)</title><rect x="26.3121%" y="469" width="0.0103%" height="15" fill="rgb(231,5,3)" fg:x="58618" fg:w="23"/><text x="26.5621%" y="479.50"></text></g><g><title>ciMethod::get_flow_analysis (23 samples, 0.01%)</title><rect x="26.3121%" y="453" width="0.0103%" height="15" fill="rgb(207,226,32)" fg:x="58618" fg:w="23"/><text x="26.5621%" y="463.50"></text></g><g><title>ciTypeFlow::do_flow (23 samples, 0.01%)</title><rect x="26.3121%" y="437" width="0.0103%" height="15" fill="rgb(222,207,47)" fg:x="58618" fg:w="23"/><text x="26.5621%" y="447.50"></text></g><g><title>ciTypeFlow::flow_types (23 samples, 0.01%)</title><rect x="26.3121%" y="421" width="0.0103%" height="15" fill="rgb(229,115,45)" fg:x="58618" fg:w="23"/><text x="26.5621%" y="431.50"></text></g><g><title>Compile::call_generator (25 samples, 0.01%)</title><rect x="26.3300%" y="389" width="0.0112%" height="15" fill="rgb(224,191,6)" fg:x="58658" fg:w="25"/><text x="26.5800%" y="399.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.01%)</title><rect x="26.3960%" y="149" width="0.0103%" height="15" fill="rgb(230,227,24)" fg:x="58805" fg:w="23"/><text x="26.6460%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.01%)</title><rect x="26.3960%" y="133" width="0.0103%" height="15" fill="rgb(228,80,19)" fg:x="58805" fg:w="23"/><text x="26.6460%" y="143.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.01%)</title><rect x="26.3955%" y="165" width="0.0117%" height="15" fill="rgb(247,229,0)" fg:x="58804" fg:w="26"/><text x="26.6455%" y="175.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.01%)</title><rect x="26.3951%" y="197" width="0.0130%" height="15" fill="rgb(237,194,15)" fg:x="58803" fg:w="29"/><text x="26.6451%" y="207.50"></text></g><g><title>Parse::Parse (29 samples, 0.01%)</title><rect x="26.3951%" y="181" width="0.0130%" height="15" fill="rgb(219,203,20)" fg:x="58803" fg:w="29"/><text x="26.6451%" y="191.50"></text></g><g><title>Parse::do_call (74 samples, 0.03%)</title><rect x="26.3825%" y="213" width="0.0332%" height="15" fill="rgb(234,128,8)" fg:x="58775" fg:w="74"/><text x="26.6325%" y="223.50"></text></g><g><title>Parse::do_one_block (127 samples, 0.06%)</title><rect x="26.3767%" y="245" width="0.0570%" height="15" fill="rgb(248,202,8)" fg:x="58762" fg:w="127"/><text x="26.6267%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (124 samples, 0.06%)</title><rect x="26.3780%" y="229" width="0.0557%" height="15" fill="rgb(206,104,37)" fg:x="58765" fg:w="124"/><text x="26.6280%" y="239.50"></text></g><g><title>Parse::do_all_blocks (128 samples, 0.06%)</title><rect x="26.3767%" y="261" width="0.0575%" height="15" fill="rgb(223,8,27)" fg:x="58762" fg:w="128"/><text x="26.6267%" y="271.50"></text></g><g><title>ParseGenerator::generate (145 samples, 0.07%)</title><rect x="26.3727%" y="293" width="0.0651%" height="15" fill="rgb(216,217,28)" fg:x="58753" fg:w="145"/><text x="26.6227%" y="303.50"></text></g><g><title>Parse::Parse (145 samples, 0.07%)</title><rect x="26.3727%" y="277" width="0.0651%" height="15" fill="rgb(249,199,1)" fg:x="58753" fg:w="145"/><text x="26.6227%" y="287.50"></text></g><g><title>Parse::do_call (206 samples, 0.09%)</title><rect x="26.3574%" y="309" width="0.0925%" height="15" fill="rgb(240,85,17)" fg:x="58719" fg:w="206"/><text x="26.6074%" y="319.50"></text></g><g><title>Parse::do_field_access (27 samples, 0.01%)</title><rect x="26.4499%" y="309" width="0.0121%" height="15" fill="rgb(206,108,45)" fg:x="58925" fg:w="27"/><text x="26.6999%" y="319.50"></text></g><g><title>Parse::do_one_block (262 samples, 0.12%)</title><rect x="26.3534%" y="341" width="0.1176%" height="15" fill="rgb(245,210,41)" fg:x="58710" fg:w="262"/><text x="26.6034%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (260 samples, 0.12%)</title><rect x="26.3543%" y="325" width="0.1167%" height="15" fill="rgb(206,13,37)" fg:x="58712" fg:w="260"/><text x="26.6043%" y="335.50"></text></g><g><title>Parse::do_all_blocks (267 samples, 0.12%)</title><rect x="26.3529%" y="357" width="0.1198%" height="15" fill="rgb(250,61,18)" fg:x="58709" fg:w="267"/><text x="26.6029%" y="367.50"></text></g><g><title>ParseGenerator::generate (285 samples, 0.13%)</title><rect x="26.3507%" y="389" width="0.1279%" height="15" fill="rgb(235,172,48)" fg:x="58704" fg:w="285"/><text x="26.6007%" y="399.50"></text></g><g><title>Parse::Parse (285 samples, 0.13%)</title><rect x="26.3507%" y="373" width="0.1279%" height="15" fill="rgb(249,201,17)" fg:x="58704" fg:w="285"/><text x="26.6007%" y="383.50"></text></g><g><title>Parse::do_call (360 samples, 0.16%)</title><rect x="26.3300%" y="405" width="0.1616%" height="15" fill="rgb(219,208,6)" fg:x="58658" fg:w="360"/><text x="26.5800%" y="415.50"></text></g><g><title>GraphKit::access_store_at (24 samples, 0.01%)</title><rect x="26.5024%" y="373" width="0.0108%" height="15" fill="rgb(248,31,23)" fg:x="59042" fg:w="24"/><text x="26.7524%" y="383.50"></text></g><g><title>BarrierSetC2::store_at (24 samples, 0.01%)</title><rect x="26.5024%" y="357" width="0.0108%" height="15" fill="rgb(245,15,42)" fg:x="59042" fg:w="24"/><text x="26.7524%" y="367.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (23 samples, 0.01%)</title><rect x="26.5028%" y="341" width="0.0103%" height="15" fill="rgb(222,217,39)" fg:x="59043" fg:w="23"/><text x="26.7528%" y="351.50"></text></g><g><title>Parse::do_put_xxx (25 samples, 0.01%)</title><rect x="26.5024%" y="389" width="0.0112%" height="15" fill="rgb(210,219,27)" fg:x="59042" fg:w="25"/><text x="26.7524%" y="399.50"></text></g><g><title>Parse::do_field_access (46 samples, 0.02%)</title><rect x="26.4934%" y="405" width="0.0206%" height="15" fill="rgb(252,166,36)" fg:x="59022" fg:w="46"/><text x="26.7434%" y="415.50"></text></g><g><title>Parse::do_all_blocks (432 samples, 0.19%)</title><rect x="26.3251%" y="453" width="0.1939%" height="15" fill="rgb(245,132,34)" fg:x="58647" fg:w="432"/><text x="26.5751%" y="463.50"></text></g><g><title>Parse::do_one_block (432 samples, 0.19%)</title><rect x="26.3251%" y="437" width="0.1939%" height="15" fill="rgb(236,54,3)" fg:x="58647" fg:w="432"/><text x="26.5751%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (432 samples, 0.19%)</title><rect x="26.3251%" y="421" width="0.1939%" height="15" fill="rgb(241,173,43)" fg:x="58647" fg:w="432"/><text x="26.5751%" y="431.50"></text></g><g><title>ParseGenerator::generate (438 samples, 0.20%)</title><rect x="26.3233%" y="485" width="0.1966%" height="15" fill="rgb(215,190,9)" fg:x="58643" fg:w="438"/><text x="26.5733%" y="495.50"></text></g><g><title>Parse::Parse (438 samples, 0.20%)</title><rect x="26.3233%" y="469" width="0.1966%" height="15" fill="rgb(242,101,16)" fg:x="58643" fg:w="438"/><text x="26.5733%" y="479.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="26.5239%" y="341" width="0.0148%" height="15" fill="rgb(223,190,21)" fg:x="59090" fg:w="33"/><text x="26.7739%" y="351.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="26.5239%" y="325" width="0.0148%" height="15" fill="rgb(215,228,25)" fg:x="59090" fg:w="33"/><text x="26.7739%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="26.5239%" y="309" width="0.0148%" height="15" fill="rgb(225,36,22)" fg:x="59090" fg:w="33"/><text x="26.7739%" y="319.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.02%)</title><rect x="26.5226%" y="373" width="0.0175%" height="15" fill="rgb(251,106,46)" fg:x="59087" fg:w="39"/><text x="26.7726%" y="383.50"></text></g><g><title>Parse::Parse (39 samples, 0.02%)</title><rect x="26.5226%" y="357" width="0.0175%" height="15" fill="rgb(208,90,1)" fg:x="59087" fg:w="39"/><text x="26.7726%" y="367.50"></text></g><g><title>Parse::do_call (55 samples, 0.02%)</title><rect x="26.5203%" y="389" width="0.0247%" height="15" fill="rgb(243,10,4)" fg:x="59082" fg:w="55"/><text x="26.7703%" y="399.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.03%)</title><rect x="26.5199%" y="437" width="0.0283%" height="15" fill="rgb(212,137,27)" fg:x="59081" fg:w="63"/><text x="26.7699%" y="447.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.03%)</title><rect x="26.5199%" y="421" width="0.0283%" height="15" fill="rgb(231,220,49)" fg:x="59081" fg:w="63"/><text x="26.7699%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (62 samples, 0.03%)</title><rect x="26.5203%" y="405" width="0.0278%" height="15" fill="rgb(237,96,20)" fg:x="59082" fg:w="62"/><text x="26.7703%" y="415.50"></text></g><g><title>ParseGenerator::generate (64 samples, 0.03%)</title><rect x="26.5199%" y="469" width="0.0287%" height="15" fill="rgb(239,229,30)" fg:x="59081" fg:w="64"/><text x="26.7699%" y="479.50"></text></g><g><title>Parse::Parse (64 samples, 0.03%)</title><rect x="26.5199%" y="453" width="0.0287%" height="15" fill="rgb(219,65,33)" fg:x="59081" fg:w="64"/><text x="26.7699%" y="463.50"></text></g><g><title>PredictedCallGenerator::generate (73 samples, 0.03%)</title><rect x="26.5199%" y="485" width="0.0328%" height="15" fill="rgb(243,134,7)" fg:x="59081" fg:w="73"/><text x="26.7699%" y="495.50"></text></g><g><title>Parse::do_call (548 samples, 0.25%)</title><rect x="26.3094%" y="501" width="0.2460%" height="15" fill="rgb(216,177,54)" fg:x="58612" fg:w="548"/><text x="26.5594%" y="511.50"></text></g><g><title>Parse::do_all_blocks (555 samples, 0.25%)</title><rect x="26.3089%" y="549" width="0.2491%" height="15" fill="rgb(211,160,20)" fg:x="58611" fg:w="555"/><text x="26.5589%" y="559.50"></text></g><g><title>Parse::do_one_block (555 samples, 0.25%)</title><rect x="26.3089%" y="533" width="0.2491%" height="15" fill="rgb(239,85,39)" fg:x="58611" fg:w="555"/><text x="26.5589%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (555 samples, 0.25%)</title><rect x="26.3089%" y="517" width="0.2491%" height="15" fill="rgb(232,125,22)" fg:x="58611" fg:w="555"/><text x="26.5589%" y="527.50"></text></g><g><title>ParseGenerator::generate (556 samples, 0.25%)</title><rect x="26.3089%" y="581" width="0.2496%" height="15" fill="rgb(244,57,34)" fg:x="58611" fg:w="556"/><text x="26.5589%" y="591.50"></text></g><g><title>Parse::Parse (556 samples, 0.25%)</title><rect x="26.3089%" y="565" width="0.2496%" height="15" fill="rgb(214,203,32)" fg:x="58611" fg:w="556"/><text x="26.5589%" y="575.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.01%)</title><rect x="26.5607%" y="469" width="0.0103%" height="15" fill="rgb(207,58,43)" fg:x="59172" fg:w="23"/><text x="26.8107%" y="479.50"></text></g><g><title>Parse::Parse (23 samples, 0.01%)</title><rect x="26.5607%" y="453" width="0.0103%" height="15" fill="rgb(215,193,15)" fg:x="59172" fg:w="23"/><text x="26.8107%" y="463.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.01%)</title><rect x="26.5607%" y="437" width="0.0103%" height="15" fill="rgb(232,15,44)" fg:x="59172" fg:w="23"/><text x="26.8107%" y="447.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.01%)</title><rect x="26.5607%" y="421" width="0.0103%" height="15" fill="rgb(212,3,48)" fg:x="59172" fg:w="23"/><text x="26.8107%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.01%)</title><rect x="26.5607%" y="405" width="0.0103%" height="15" fill="rgb(218,128,7)" fg:x="59172" fg:w="23"/><text x="26.8107%" y="415.50"></text></g><g><title>Parse::do_call (29 samples, 0.01%)</title><rect x="26.5715%" y="373" width="0.0130%" height="15" fill="rgb(226,216,39)" fg:x="59196" fg:w="29"/><text x="26.8215%" y="383.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.01%)</title><rect x="26.5742%" y="357" width="0.0103%" height="15" fill="rgb(243,47,51)" fg:x="59202" fg:w="23"/><text x="26.8242%" y="367.50"></text></g><g><title>Parse::Parse (23 samples, 0.01%)</title><rect x="26.5742%" y="341" width="0.0103%" height="15" fill="rgb(241,183,40)" fg:x="59202" fg:w="23"/><text x="26.8242%" y="351.50"></text></g><g><title>PredictedCallGenerator::generate (32 samples, 0.01%)</title><rect x="26.5711%" y="469" width="0.0144%" height="15" fill="rgb(231,217,32)" fg:x="59195" fg:w="32"/><text x="26.8211%" y="479.50"></text></g><g><title>ParseGenerator::generate (32 samples, 0.01%)</title><rect x="26.5711%" y="453" width="0.0144%" height="15" fill="rgb(229,61,38)" fg:x="59195" fg:w="32"/><text x="26.8211%" y="463.50"></text></g><g><title>Parse::Parse (32 samples, 0.01%)</title><rect x="26.5711%" y="437" width="0.0144%" height="15" fill="rgb(225,210,5)" fg:x="59195" fg:w="32"/><text x="26.8211%" y="447.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="26.5711%" y="421" width="0.0144%" height="15" fill="rgb(231,79,45)" fg:x="59195" fg:w="32"/><text x="26.8211%" y="431.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="26.5711%" y="405" width="0.0144%" height="15" fill="rgb(224,100,7)" fg:x="59195" fg:w="32"/><text x="26.8211%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.01%)</title><rect x="26.5715%" y="389" width="0.0139%" height="15" fill="rgb(241,198,18)" fg:x="59196" fg:w="31"/><text x="26.8215%" y="399.50"></text></g><g><title>Parse::do_call (61 samples, 0.03%)</title><rect x="26.5585%" y="485" width="0.0274%" height="15" fill="rgb(252,97,53)" fg:x="59167" fg:w="61"/><text x="26.8085%" y="495.50"></text></g><g><title>ParseGenerator::generate (62 samples, 0.03%)</title><rect x="26.5585%" y="565" width="0.0278%" height="15" fill="rgb(220,88,7)" fg:x="59167" fg:w="62"/><text x="26.8085%" y="575.50"></text></g><g><title>Parse::Parse (62 samples, 0.03%)</title><rect x="26.5585%" y="549" width="0.0278%" height="15" fill="rgb(213,176,14)" fg:x="59167" fg:w="62"/><text x="26.8085%" y="559.50"></text></g><g><title>Parse::do_all_blocks (62 samples, 0.03%)</title><rect x="26.5585%" y="533" width="0.0278%" height="15" fill="rgb(246,73,7)" fg:x="59167" fg:w="62"/><text x="26.8085%" y="543.50"></text></g><g><title>Parse::do_one_block (62 samples, 0.03%)</title><rect x="26.5585%" y="517" width="0.0278%" height="15" fill="rgb(245,64,36)" fg:x="59167" fg:w="62"/><text x="26.8085%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (62 samples, 0.03%)</title><rect x="26.5585%" y="501" width="0.0278%" height="15" fill="rgb(245,80,10)" fg:x="59167" fg:w="62"/><text x="26.8085%" y="511.50"></text></g><g><title>Parse::do_call (635 samples, 0.29%)</title><rect x="26.3017%" y="597" width="0.2850%" height="15" fill="rgb(232,107,50)" fg:x="58595" fg:w="635"/><text x="26.5517%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (63 samples, 0.03%)</title><rect x="26.5585%" y="581" width="0.0283%" height="15" fill="rgb(253,3,0)" fg:x="59167" fg:w="63"/><text x="26.8085%" y="591.50"></text></g><g><title>Parse::do_all_blocks (636 samples, 0.29%)</title><rect x="26.3017%" y="645" width="0.2855%" height="15" fill="rgb(212,99,53)" fg:x="58595" fg:w="636"/><text x="26.5517%" y="655.50"></text></g><g><title>Parse::do_one_block (636 samples, 0.29%)</title><rect x="26.3017%" y="629" width="0.2855%" height="15" fill="rgb(249,111,54)" fg:x="58595" fg:w="636"/><text x="26.5517%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (636 samples, 0.29%)</title><rect x="26.3017%" y="613" width="0.2855%" height="15" fill="rgb(249,55,30)" fg:x="58595" fg:w="636"/><text x="26.5517%" y="623.50"></text></g><g><title>ParseGenerator::generate (644 samples, 0.29%)</title><rect x="26.3013%" y="677" width="0.2891%" height="15" fill="rgb(237,47,42)" fg:x="58594" fg:w="644"/><text x="26.5513%" y="687.50"></text></g><g><title>Parse::Parse (644 samples, 0.29%)</title><rect x="26.3013%" y="661" width="0.2891%" height="15" fill="rgb(211,20,18)" fg:x="58594" fg:w="644"/><text x="26.5513%" y="671.50"></text></g><g><title>Parse::do_call (34 samples, 0.02%)</title><rect x="26.6025%" y="389" width="0.0153%" height="15" fill="rgb(231,203,46)" fg:x="59265" fg:w="34"/><text x="26.8525%" y="399.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.02%)</title><rect x="26.6011%" y="437" width="0.0229%" height="15" fill="rgb(237,142,3)" fg:x="59262" fg:w="51"/><text x="26.8511%" y="447.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.02%)</title><rect x="26.6011%" y="421" width="0.0229%" height="15" fill="rgb(241,107,1)" fg:x="59262" fg:w="51"/><text x="26.8511%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (50 samples, 0.02%)</title><rect x="26.6016%" y="405" width="0.0224%" height="15" fill="rgb(229,83,13)" fg:x="59263" fg:w="50"/><text x="26.8516%" y="415.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.02%)</title><rect x="26.6007%" y="469" width="0.0238%" height="15" fill="rgb(241,91,40)" fg:x="59261" fg:w="53"/><text x="26.8507%" y="479.50"></text></g><g><title>Parse::Parse (53 samples, 0.02%)</title><rect x="26.6007%" y="453" width="0.0238%" height="15" fill="rgb(225,3,45)" fg:x="59261" fg:w="53"/><text x="26.8507%" y="463.50"></text></g><g><title>ParseGenerator::generate (75 samples, 0.03%)</title><rect x="26.5966%" y="565" width="0.0337%" height="15" fill="rgb(244,223,14)" fg:x="59252" fg:w="75"/><text x="26.8466%" y="575.50"></text></g><g><title>Parse::Parse (75 samples, 0.03%)</title><rect x="26.5966%" y="549" width="0.0337%" height="15" fill="rgb(224,124,37)" fg:x="59252" fg:w="75"/><text x="26.8466%" y="559.50"></text></g><g><title>Parse::do_all_blocks (75 samples, 0.03%)</title><rect x="26.5966%" y="533" width="0.0337%" height="15" fill="rgb(251,171,30)" fg:x="59252" fg:w="75"/><text x="26.8466%" y="543.50"></text></g><g><title>Parse::do_one_block (75 samples, 0.03%)</title><rect x="26.5966%" y="517" width="0.0337%" height="15" fill="rgb(236,46,54)" fg:x="59252" fg:w="75"/><text x="26.8466%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (75 samples, 0.03%)</title><rect x="26.5966%" y="501" width="0.0337%" height="15" fill="rgb(245,213,5)" fg:x="59252" fg:w="75"/><text x="26.8466%" y="511.50"></text></g><g><title>Parse::do_call (74 samples, 0.03%)</title><rect x="26.5971%" y="485" width="0.0332%" height="15" fill="rgb(230,144,27)" fg:x="59253" fg:w="74"/><text x="26.8471%" y="495.50"></text></g><g><title>ParseGenerator::generate (97 samples, 0.04%)</title><rect x="26.5904%" y="661" width="0.0435%" height="15" fill="rgb(220,86,6)" fg:x="59238" fg:w="97"/><text x="26.8404%" y="671.50"></text></g><g><title>Parse::Parse (97 samples, 0.04%)</title><rect x="26.5904%" y="645" width="0.0435%" height="15" fill="rgb(240,20,13)" fg:x="59238" fg:w="97"/><text x="26.8404%" y="655.50"></text></g><g><title>Parse::do_all_blocks (97 samples, 0.04%)</title><rect x="26.5904%" y="629" width="0.0435%" height="15" fill="rgb(217,89,34)" fg:x="59238" fg:w="97"/><text x="26.8404%" y="639.50"></text></g><g><title>Parse::do_one_block (97 samples, 0.04%)</title><rect x="26.5904%" y="613" width="0.0435%" height="15" fill="rgb(229,13,5)" fg:x="59238" fg:w="97"/><text x="26.8404%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (97 samples, 0.04%)</title><rect x="26.5904%" y="597" width="0.0435%" height="15" fill="rgb(244,67,35)" fg:x="59238" fg:w="97"/><text x="26.8404%" y="607.50"></text></g><g><title>Parse::do_call (97 samples, 0.04%)</title><rect x="26.5904%" y="581" width="0.0435%" height="15" fill="rgb(221,40,2)" fg:x="59238" fg:w="97"/><text x="26.8404%" y="591.50"></text></g><g><title>Parse::do_call (756 samples, 0.34%)</title><rect x="26.3008%" y="693" width="0.3393%" height="15" fill="rgb(237,157,21)" fg:x="58593" fg:w="756"/><text x="26.5508%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (111 samples, 0.05%)</title><rect x="26.5904%" y="677" width="0.0498%" height="15" fill="rgb(222,94,11)" fg:x="59238" fg:w="111"/><text x="26.8404%" y="687.50"></text></g><g><title>ParseGenerator::generate (757 samples, 0.34%)</title><rect x="26.3008%" y="773" width="0.3398%" height="15" fill="rgb(249,113,6)" fg:x="58593" fg:w="757"/><text x="26.5508%" y="783.50"></text></g><g><title>Parse::Parse (757 samples, 0.34%)</title><rect x="26.3008%" y="757" width="0.3398%" height="15" fill="rgb(238,137,36)" fg:x="58593" fg:w="757"/><text x="26.5508%" y="767.50"></text></g><g><title>Parse::do_all_blocks (757 samples, 0.34%)</title><rect x="26.3008%" y="741" width="0.3398%" height="15" fill="rgb(210,102,26)" fg:x="58593" fg:w="757"/><text x="26.5508%" y="751.50"></text></g><g><title>Parse::do_one_block (757 samples, 0.34%)</title><rect x="26.3008%" y="725" width="0.3398%" height="15" fill="rgb(218,30,30)" fg:x="58593" fg:w="757"/><text x="26.5508%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (757 samples, 0.34%)</title><rect x="26.3008%" y="709" width="0.3398%" height="15" fill="rgb(214,67,26)" fg:x="58593" fg:w="757"/><text x="26.5508%" y="719.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="26.6635%" y="341" width="0.0148%" height="15" fill="rgb(251,9,53)" fg:x="59401" fg:w="33"/><text x="26.9135%" y="351.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="26.6635%" y="325" width="0.0148%" height="15" fill="rgb(228,204,25)" fg:x="59401" fg:w="33"/><text x="26.9135%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="26.6635%" y="309" width="0.0148%" height="15" fill="rgb(207,153,8)" fg:x="59401" fg:w="33"/><text x="26.9135%" y="319.50"></text></g><g><title>ParseGenerator::generate (45 samples, 0.02%)</title><rect x="26.6604%" y="373" width="0.0202%" height="15" fill="rgb(242,9,16)" fg:x="59394" fg:w="45"/><text x="26.9104%" y="383.50"></text></g><g><title>Parse::Parse (45 samples, 0.02%)</title><rect x="26.6604%" y="357" width="0.0202%" height="15" fill="rgb(217,211,10)" fg:x="59394" fg:w="45"/><text x="26.9104%" y="367.50"></text></g><g><title>Parse::do_call (61 samples, 0.03%)</title><rect x="26.6568%" y="389" width="0.0274%" height="15" fill="rgb(219,228,52)" fg:x="59386" fg:w="61"/><text x="26.9068%" y="399.50"></text></g><g><title>Parse::do_all_blocks (88 samples, 0.04%)</title><rect x="26.6554%" y="437" width="0.0395%" height="15" fill="rgb(231,92,29)" fg:x="59383" fg:w="88"/><text x="26.9054%" y="447.50"></text></g><g><title>Parse::do_one_block (88 samples, 0.04%)</title><rect x="26.6554%" y="421" width="0.0395%" height="15" fill="rgb(232,8,23)" fg:x="59383" fg:w="88"/><text x="26.9054%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (88 samples, 0.04%)</title><rect x="26.6554%" y="405" width="0.0395%" height="15" fill="rgb(216,211,34)" fg:x="59383" fg:w="88"/><text x="26.9054%" y="415.50"></text></g><g><title>ParseGenerator::generate (91 samples, 0.04%)</title><rect x="26.6545%" y="469" width="0.0408%" height="15" fill="rgb(236,151,0)" fg:x="59381" fg:w="91"/><text x="26.9045%" y="479.50"></text></g><g><title>Parse::Parse (91 samples, 0.04%)</title><rect x="26.6545%" y="453" width="0.0408%" height="15" fill="rgb(209,168,3)" fg:x="59381" fg:w="91"/><text x="26.9045%" y="463.50"></text></g><g><title>PredictedCallGenerator::generate (25 samples, 0.01%)</title><rect x="26.6954%" y="469" width="0.0112%" height="15" fill="rgb(208,129,28)" fg:x="59472" fg:w="25"/><text x="26.9454%" y="479.50"></text></g><g><title>Parse::do_call (127 samples, 0.06%)</title><rect x="26.6505%" y="485" width="0.0570%" height="15" fill="rgb(229,78,22)" fg:x="59372" fg:w="127"/><text x="26.9005%" y="495.50"></text></g><g><title>ParseGenerator::generate (135 samples, 0.06%)</title><rect x="26.6492%" y="565" width="0.0606%" height="15" fill="rgb(228,187,13)" fg:x="59369" fg:w="135"/><text x="26.8992%" y="575.50"></text></g><g><title>Parse::Parse (135 samples, 0.06%)</title><rect x="26.6492%" y="549" width="0.0606%" height="15" fill="rgb(240,119,24)" fg:x="59369" fg:w="135"/><text x="26.8992%" y="559.50"></text></g><g><title>Parse::do_all_blocks (134 samples, 0.06%)</title><rect x="26.6496%" y="533" width="0.0601%" height="15" fill="rgb(209,194,42)" fg:x="59370" fg:w="134"/><text x="26.8996%" y="543.50"></text></g><g><title>Parse::do_one_block (134 samples, 0.06%)</title><rect x="26.6496%" y="517" width="0.0601%" height="15" fill="rgb(247,200,46)" fg:x="59370" fg:w="134"/><text x="26.8996%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (134 samples, 0.06%)</title><rect x="26.6496%" y="501" width="0.0601%" height="15" fill="rgb(218,76,16)" fg:x="59370" fg:w="134"/><text x="26.8996%" y="511.50"></text></g><g><title>Parse::do_call (170 samples, 0.08%)</title><rect x="26.6415%" y="581" width="0.0763%" height="15" fill="rgb(225,21,48)" fg:x="59352" fg:w="170"/><text x="26.8915%" y="591.50"></text></g><g><title>ParseGenerator::generate (171 samples, 0.08%)</title><rect x="26.6415%" y="661" width="0.0768%" height="15" fill="rgb(239,223,50)" fg:x="59352" fg:w="171"/><text x="26.8915%" y="671.50"></text></g><g><title>Parse::Parse (171 samples, 0.08%)</title><rect x="26.6415%" y="645" width="0.0768%" height="15" fill="rgb(244,45,21)" fg:x="59352" fg:w="171"/><text x="26.8915%" y="655.50"></text></g><g><title>Parse::do_all_blocks (171 samples, 0.08%)</title><rect x="26.6415%" y="629" width="0.0768%" height="15" fill="rgb(232,33,43)" fg:x="59352" fg:w="171"/><text x="26.8915%" y="639.50"></text></g><g><title>Parse::do_one_block (171 samples, 0.08%)</title><rect x="26.6415%" y="613" width="0.0768%" height="15" fill="rgb(209,8,3)" fg:x="59352" fg:w="171"/><text x="26.8915%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (171 samples, 0.08%)</title><rect x="26.6415%" y="597" width="0.0768%" height="15" fill="rgb(214,25,53)" fg:x="59352" fg:w="171"/><text x="26.8915%" y="607.50"></text></g><g><title>ParseGenerator::generate (190 samples, 0.09%)</title><rect x="26.6406%" y="757" width="0.0853%" height="15" fill="rgb(254,186,54)" fg:x="59350" fg:w="190"/><text x="26.8906%" y="767.50"></text></g><g><title>Parse::Parse (190 samples, 0.09%)</title><rect x="26.6406%" y="741" width="0.0853%" height="15" fill="rgb(208,174,49)" fg:x="59350" fg:w="190"/><text x="26.8906%" y="751.50"></text></g><g><title>Parse::do_all_blocks (190 samples, 0.09%)</title><rect x="26.6406%" y="725" width="0.0853%" height="15" fill="rgb(233,191,51)" fg:x="59350" fg:w="190"/><text x="26.8906%" y="735.50"></text></g><g><title>Parse::do_one_block (190 samples, 0.09%)</title><rect x="26.6406%" y="709" width="0.0853%" height="15" fill="rgb(222,134,10)" fg:x="59350" fg:w="190"/><text x="26.8906%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (190 samples, 0.09%)</title><rect x="26.6406%" y="693" width="0.0853%" height="15" fill="rgb(230,226,20)" fg:x="59350" fg:w="190"/><text x="26.8906%" y="703.50"></text></g><g><title>Parse::do_call (190 samples, 0.09%)</title><rect x="26.6406%" y="677" width="0.0853%" height="15" fill="rgb(251,111,25)" fg:x="59350" fg:w="190"/><text x="26.8906%" y="687.50"></text></g><g><title>Parse::do_call (980 samples, 0.44%)</title><rect x="26.3008%" y="789" width="0.4399%" height="15" fill="rgb(224,40,46)" fg:x="58593" fg:w="980"/><text x="26.5508%" y="799.50"></text></g><g><title>PredictedCallGenerator::generate (223 samples, 0.10%)</title><rect x="26.6406%" y="773" width="0.1001%" height="15" fill="rgb(236,108,47)" fg:x="59350" fg:w="223"/><text x="26.8906%" y="783.50"></text></g><g><title>PredictedCallGenerator::generate (33 samples, 0.01%)</title><rect x="26.7259%" y="757" width="0.0148%" height="15" fill="rgb(234,93,0)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="767.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.01%)</title><rect x="26.7259%" y="741" width="0.0148%" height="15" fill="rgb(224,213,32)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="751.50"></text></g><g><title>Parse::Parse (33 samples, 0.01%)</title><rect x="26.7259%" y="725" width="0.0148%" height="15" fill="rgb(251,11,48)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="735.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="26.7259%" y="709" width="0.0148%" height="15" fill="rgb(236,173,5)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="719.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="26.7259%" y="693" width="0.0148%" height="15" fill="rgb(230,95,12)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="26.7259%" y="677" width="0.0148%" height="15" fill="rgb(232,209,1)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="687.50"></text></g><g><title>Parse::do_call (33 samples, 0.01%)</title><rect x="26.7259%" y="661" width="0.0148%" height="15" fill="rgb(232,6,1)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="671.50"></text></g><g><title>ParseGenerator::generate (988 samples, 0.44%)</title><rect x="26.3008%" y="869" width="0.4435%" height="15" fill="rgb(210,224,50)" fg:x="58593" fg:w="988"/><text x="26.5508%" y="879.50"></text></g><g><title>Parse::Parse (988 samples, 0.44%)</title><rect x="26.3008%" y="853" width="0.4435%" height="15" fill="rgb(228,127,35)" fg:x="58593" fg:w="988"/><text x="26.5508%" y="863.50"></text></g><g><title>Parse::do_all_blocks (988 samples, 0.44%)</title><rect x="26.3008%" y="837" width="0.4435%" height="15" fill="rgb(245,102,45)" fg:x="58593" fg:w="988"/><text x="26.5508%" y="847.50"></text></g><g><title>Parse::do_one_block (988 samples, 0.44%)</title><rect x="26.3008%" y="821" width="0.4435%" height="15" fill="rgb(214,1,49)" fg:x="58593" fg:w="988"/><text x="26.5508%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (988 samples, 0.44%)</title><rect x="26.3008%" y="805" width="0.4435%" height="15" fill="rgb(226,163,40)" fg:x="58593" fg:w="988"/><text x="26.5508%" y="815.50"></text></g><g><title>Compile::Compile (41,474 samples, 18.62%)</title><rect x="8.1282%" y="885" width="18.6166%" height="15" fill="rgb(239,212,28)" fg:x="18108" fg:w="41474"/><text x="8.3782%" y="895.50">Compile::Compile</text></g><g><title>Compile::final_graph_reshaping_impl (109 samples, 0.05%)</title><rect x="26.8179%" y="837" width="0.0489%" height="15" fill="rgb(220,20,13)" fg:x="59745" fg:w="109"/><text x="27.0679%" y="847.50"></text></g><g><title>Compile::final_graph_reshaping_walk (284 samples, 0.13%)</title><rect x="26.7488%" y="853" width="0.1275%" height="15" fill="rgb(210,164,35)" fg:x="59591" fg:w="284"/><text x="26.9988%" y="863.50"></text></g><g><title>Compile::final_graph_reshaping (290 samples, 0.13%)</title><rect x="26.7466%" y="869" width="0.1302%" height="15" fill="rgb(248,109,41)" fg:x="59586" fg:w="290"/><text x="26.9966%" y="879.50"></text></g><g><title>Compile::identify_useful_nodes (36 samples, 0.02%)</title><rect x="26.8844%" y="821" width="0.0162%" height="15" fill="rgb(238,23,50)" fg:x="59893" fg:w="36"/><text x="27.1344%" y="831.50"></text></g><g><title>Compile::remove_useless_nodes (24 samples, 0.01%)</title><rect x="26.9005%" y="821" width="0.0108%" height="15" fill="rgb(211,48,49)" fg:x="59929" fg:w="24"/><text x="27.1505%" y="831.50"></text></g><g><title>Compile::inline_incrementally_one (82 samples, 0.04%)</title><rect x="26.8772%" y="853" width="0.0368%" height="15" fill="rgb(223,36,21)" fg:x="59877" fg:w="82"/><text x="27.1272%" y="863.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (71 samples, 0.03%)</title><rect x="26.8821%" y="837" width="0.0319%" height="15" fill="rgb(207,123,46)" fg:x="59888" fg:w="71"/><text x="27.1321%" y="847.50"></text></g><g><title>Compile::inline_incrementally (86 samples, 0.04%)</title><rect x="26.8767%" y="869" width="0.0386%" height="15" fill="rgb(240,218,32)" fg:x="59876" fg:w="86"/><text x="27.1267%" y="879.50"></text></g><g><title>PhaseIterGVN::optimize (51 samples, 0.02%)</title><rect x="26.9849%" y="853" width="0.0229%" height="15" fill="rgb(252,5,43)" fg:x="60117" fg:w="51"/><text x="27.2349%" y="863.50"></text></g><g><title>PhaseIterGVN::transform_old (50 samples, 0.02%)</title><rect x="26.9854%" y="837" width="0.0224%" height="15" fill="rgb(252,84,19)" fg:x="60118" fg:w="50"/><text x="27.2354%" y="847.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (43 samples, 0.02%)</title><rect x="27.0078%" y="853" width="0.0193%" height="15" fill="rgb(243,152,39)" fg:x="60168" fg:w="43"/><text x="27.2578%" y="863.50"></text></g><g><title>Compile::remove_speculative_types (239 samples, 0.11%)</title><rect x="26.9216%" y="869" width="0.1073%" height="15" fill="rgb(234,160,15)" fg:x="59976" fg:w="239"/><text x="27.1716%" y="879.50"></text></g><g><title>ConnectionGraph::process_call_arguments (26 samples, 0.01%)</title><rect x="27.0783%" y="821" width="0.0117%" height="15" fill="rgb(237,34,20)" fg:x="60325" fg:w="26"/><text x="27.3283%" y="831.50"></text></g><g><title>ciMethod::get_bcea (23 samples, 0.01%)</title><rect x="27.0796%" y="805" width="0.0103%" height="15" fill="rgb(229,97,13)" fg:x="60328" fg:w="23"/><text x="27.3296%" y="815.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (23 samples, 0.01%)</title><rect x="27.0796%" y="789" width="0.0103%" height="15" fill="rgb(234,71,50)" fg:x="60328" fg:w="23"/><text x="27.3296%" y="799.50"></text></g><g><title>ConnectionGraph::add_final_edges (36 samples, 0.02%)</title><rect x="27.0751%" y="837" width="0.0162%" height="15" fill="rgb(253,155,4)" fg:x="60318" fg:w="36"/><text x="27.3251%" y="847.50"></text></g><g><title>ConnectionGraph::is_oop_field (24 samples, 0.01%)</title><rect x="27.1155%" y="805" width="0.0108%" height="15" fill="rgb(222,185,37)" fg:x="60408" fg:w="24"/><text x="27.3655%" y="815.50"></text></g><g><title>ConnectionGraph::add_field (32 samples, 0.01%)</title><rect x="27.1142%" y="821" width="0.0144%" height="15" fill="rgb(251,177,13)" fg:x="60405" fg:w="32"/><text x="27.3642%" y="831.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (84 samples, 0.04%)</title><rect x="27.0944%" y="837" width="0.0377%" height="15" fill="rgb(250,179,40)" fg:x="60361" fg:w="84"/><text x="27.3444%" y="847.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (41 samples, 0.02%)</title><rect x="27.1447%" y="821" width="0.0184%" height="15" fill="rgb(242,44,2)" fg:x="60473" fg:w="41"/><text x="27.3947%" y="831.50"></text></g><g><title>ConnectionGraph::add_java_object_edges (23 samples, 0.01%)</title><rect x="27.1631%" y="821" width="0.0103%" height="15" fill="rgb(216,177,13)" fg:x="60514" fg:w="23"/><text x="27.4131%" y="831.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (110 samples, 0.05%)</title><rect x="27.1335%" y="837" width="0.0494%" height="15" fill="rgb(216,106,43)" fg:x="60448" fg:w="110"/><text x="27.3835%" y="847.50"></text></g><g><title>ConnectionGraph::find_inst_mem (27 samples, 0.01%)</title><rect x="27.1959%" y="789" width="0.0121%" height="15" fill="rgb(216,183,2)" fg:x="60587" fg:w="27"/><text x="27.4459%" y="799.50"></text></g><g><title>ConnectionGraph::split_memory_phi (33 samples, 0.01%)</title><rect x="27.1936%" y="805" width="0.0148%" height="15" fill="rgb(249,75,3)" fg:x="60582" fg:w="33"/><text x="27.4436%" y="815.50"></text></g><g><title>ConnectionGraph::find_inst_mem (38 samples, 0.02%)</title><rect x="27.1923%" y="821" width="0.0171%" height="15" fill="rgb(219,67,39)" fg:x="60579" fg:w="38"/><text x="27.4423%" y="831.50"></text></g><g><title>ConnectionGraph::split_unique_types (58 samples, 0.03%)</title><rect x="27.1896%" y="837" width="0.0260%" height="15" fill="rgb(253,228,2)" fg:x="60573" fg:w="58"/><text x="27.4396%" y="847.50"></text></g><g><title>ConnectionGraph::compute_escape (423 samples, 0.19%)</title><rect x="27.0316%" y="853" width="0.1899%" height="15" fill="rgb(235,138,27)" fg:x="60221" fg:w="423"/><text x="27.2816%" y="863.50"></text></g><g><title>ConnectionGraph::do_analysis (429 samples, 0.19%)</title><rect x="27.0294%" y="869" width="0.1926%" height="15" fill="rgb(236,97,51)" fg:x="60216" fg:w="429"/><text x="27.2794%" y="879.50"></text></g><g><title>PhiNode::Value (41 samples, 0.02%)</title><rect x="27.4333%" y="853" width="0.0184%" height="15" fill="rgb(240,80,30)" fg:x="61116" fg:w="41"/><text x="27.6833%" y="863.50"></text></g><g><title>TypeInstPtr::add_offset (45 samples, 0.02%)</title><rect x="27.4841%" y="853" width="0.0202%" height="15" fill="rgb(230,178,19)" fg:x="61229" fg:w="45"/><text x="27.7341%" y="863.50"></text></g><g><title>TypeInstPtr::make (23 samples, 0.01%)</title><rect x="27.4939%" y="837" width="0.0103%" height="15" fill="rgb(210,190,27)" fg:x="61251" fg:w="23"/><text x="27.7439%" y="847.50"></text></g><g><title>PhaseCCP::analyze (664 samples, 0.30%)</title><rect x="27.2237%" y="869" width="0.2981%" height="15" fill="rgb(222,107,31)" fg:x="60649" fg:w="664"/><text x="27.4737%" y="879.50"></text></g><g><title>PhaseCCP::transform_once (92 samples, 0.04%)</title><rect x="27.5658%" y="837" width="0.0413%" height="15" fill="rgb(216,127,34)" fg:x="61411" fg:w="92"/><text x="27.8158%" y="847.50"></text></g><g><title>PhaseCCP::do_transform (191 samples, 0.09%)</title><rect x="27.5218%" y="869" width="0.0857%" height="15" fill="rgb(234,116,52)" fg:x="61313" fg:w="191"/><text x="27.7718%" y="879.50"></text></g><g><title>PhaseCCP::transform (191 samples, 0.09%)</title><rect x="27.5218%" y="853" width="0.0857%" height="15" fill="rgb(222,124,15)" fg:x="61313" fg:w="191"/><text x="27.7718%" y="863.50"></text></g><g><title>IdealLoopTree::counted_loop (25 samples, 0.01%)</title><rect x="27.6362%" y="821" width="0.0112%" height="15" fill="rgb(231,179,28)" fg:x="61568" fg:w="25"/><text x="27.8862%" y="831.50"></text></g><g><title>IdealLoopTree::counted_loop (35 samples, 0.02%)</title><rect x="27.6358%" y="837" width="0.0157%" height="15" fill="rgb(226,93,45)" fg:x="61567" fg:w="35"/><text x="27.8858%" y="847.50"></text></g><g><title>IdealLoopTree::counted_loop (37 samples, 0.02%)</title><rect x="27.6353%" y="853" width="0.0166%" height="15" fill="rgb(215,8,51)" fg:x="61566" fg:w="37"/><text x="27.8853%" y="863.50"></text></g><g><title>IdealLoopTree::iteration_split (24 samples, 0.01%)</title><rect x="27.6618%" y="677" width="0.0108%" height="15" fill="rgb(223,106,5)" fg:x="61625" fg:w="24"/><text x="27.9118%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (30 samples, 0.01%)</title><rect x="27.6618%" y="693" width="0.0135%" height="15" fill="rgb(250,191,5)" fg:x="61625" fg:w="30"/><text x="27.9118%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (42 samples, 0.02%)</title><rect x="27.6614%" y="709" width="0.0189%" height="15" fill="rgb(242,132,44)" fg:x="61624" fg:w="42"/><text x="27.9114%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (45 samples, 0.02%)</title><rect x="27.6614%" y="725" width="0.0202%" height="15" fill="rgb(251,152,29)" fg:x="61624" fg:w="45"/><text x="27.9114%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (52 samples, 0.02%)</title><rect x="27.6605%" y="741" width="0.0233%" height="15" fill="rgb(218,179,5)" fg:x="61622" fg:w="52"/><text x="27.9105%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (63 samples, 0.03%)</title><rect x="27.6600%" y="757" width="0.0283%" height="15" fill="rgb(227,67,19)" fg:x="61621" fg:w="63"/><text x="27.9100%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (70 samples, 0.03%)</title><rect x="27.6600%" y="773" width="0.0314%" height="15" fill="rgb(233,119,31)" fg:x="61621" fg:w="70"/><text x="27.9100%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (77 samples, 0.03%)</title><rect x="27.6600%" y="789" width="0.0346%" height="15" fill="rgb(241,120,22)" fg:x="61621" fg:w="77"/><text x="27.9100%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (92 samples, 0.04%)</title><rect x="27.6591%" y="805" width="0.0413%" height="15" fill="rgb(224,102,30)" fg:x="61619" fg:w="92"/><text x="27.9091%" y="815.50"></text></g><g><title>PhaseIdealLoop::do_unroll (25 samples, 0.01%)</title><rect x="27.7031%" y="789" width="0.0112%" height="15" fill="rgb(210,164,37)" fg:x="61717" fg:w="25"/><text x="27.9531%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (138 samples, 0.06%)</title><rect x="27.6569%" y="821" width="0.0619%" height="15" fill="rgb(226,191,16)" fg:x="61614" fg:w="138"/><text x="27.9069%" y="831.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (41 samples, 0.02%)</title><rect x="27.7004%" y="805" width="0.0184%" height="15" fill="rgb(214,40,45)" fg:x="61711" fg:w="41"/><text x="27.9504%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (34 samples, 0.02%)</title><rect x="27.7188%" y="821" width="0.0153%" height="15" fill="rgb(244,29,26)" fg:x="61752" fg:w="34"/><text x="27.9688%" y="831.50"></text></g><g><title>IdealLoopTree::iteration_split (179 samples, 0.08%)</title><rect x="27.6555%" y="837" width="0.0803%" height="15" fill="rgb(216,16,5)" fg:x="61611" fg:w="179"/><text x="27.9055%" y="847.50"></text></g><g><title>IdealLoopTree::iteration_split (203 samples, 0.09%)</title><rect x="27.6519%" y="853" width="0.0911%" height="15" fill="rgb(249,76,35)" fg:x="61603" fg:w="203"/><text x="27.9019%" y="863.50"></text></g><g><title>IdealLoopTree::loop_predication (39 samples, 0.02%)</title><rect x="27.7435%" y="821" width="0.0175%" height="15" fill="rgb(207,11,44)" fg:x="61807" fg:w="39"/><text x="27.9935%" y="831.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (31 samples, 0.01%)</title><rect x="27.7471%" y="805" width="0.0139%" height="15" fill="rgb(228,190,49)" fg:x="61815" fg:w="31"/><text x="27.9971%" y="815.50"></text></g><g><title>IdealLoopTree::loop_predication (73 samples, 0.03%)</title><rect x="27.7435%" y="837" width="0.0328%" height="15" fill="rgb(214,173,12)" fg:x="61807" fg:w="73"/><text x="27.9935%" y="847.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (34 samples, 0.02%)</title><rect x="27.7610%" y="821" width="0.0153%" height="15" fill="rgb(218,26,35)" fg:x="61846" fg:w="34"/><text x="28.0110%" y="831.50"></text></g><g><title>PathFrequency::to (25 samples, 0.01%)</title><rect x="27.7821%" y="821" width="0.0112%" height="15" fill="rgb(220,200,19)" fg:x="61893" fg:w="25"/><text x="28.0321%" y="831.50"></text></g><g><title>PathFrequency::to (23 samples, 0.01%)</title><rect x="27.7978%" y="805" width="0.0103%" height="15" fill="rgb(239,95,49)" fg:x="61928" fg:w="23"/><text x="28.0478%" y="815.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (68 samples, 0.03%)</title><rect x="27.7933%" y="821" width="0.0305%" height="15" fill="rgb(235,85,53)" fg:x="61918" fg:w="68"/><text x="28.0433%" y="831.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (30 samples, 0.01%)</title><rect x="27.8239%" y="821" width="0.0135%" height="15" fill="rgb(233,133,31)" fg:x="61986" fg:w="30"/><text x="28.0739%" y="831.50"></text></g><g><title>IdealLoopTree::loop_predication (229 samples, 0.10%)</title><rect x="27.7431%" y="853" width="0.1028%" height="15" fill="rgb(218,25,20)" fg:x="61806" fg:w="229"/><text x="27.9931%" y="863.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (155 samples, 0.07%)</title><rect x="27.7763%" y="837" width="0.0696%" height="15" fill="rgb(252,210,38)" fg:x="61880" fg:w="155"/><text x="28.0263%" y="847.50"></text></g><g><title>NTarjan::DFS (306 samples, 0.14%)</title><rect x="28.1830%" y="837" width="0.1374%" height="15" fill="rgb(242,134,21)" fg:x="62786" fg:w="306"/><text x="28.4330%" y="847.50"></text></g><g><title>asm_exc_page_fault (28 samples, 0.01%)</title><rect x="28.3356%" y="837" width="0.0126%" height="15" fill="rgb(213,28,48)" fg:x="63126" fg:w="28"/><text x="28.5856%" y="847.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,085 samples, 0.49%)</title><rect x="27.8643%" y="853" width="0.4870%" height="15" fill="rgb(250,196,2)" fg:x="62076" fg:w="1085"/><text x="28.1143%" y="863.50"></text></g><g><title>PhaseIdealLoop::dom_depth (56 samples, 0.03%)</title><rect x="28.8922%" y="805" width="0.0251%" height="15" fill="rgb(227,5,17)" fg:x="64366" fg:w="56"/><text x="29.1422%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (150 samples, 0.07%)</title><rect x="28.9173%" y="805" width="0.0673%" height="15" fill="rgb(221,226,24)" fg:x="64422" fg:w="150"/><text x="29.1673%" y="815.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (363 samples, 0.16%)</title><rect x="28.8222%" y="837" width="0.1629%" height="15" fill="rgb(211,5,48)" fg:x="64210" fg:w="363"/><text x="29.0722%" y="847.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (331 samples, 0.15%)</title><rect x="28.8365%" y="821" width="0.1486%" height="15" fill="rgb(219,150,6)" fg:x="64242" fg:w="331"/><text x="29.0865%" y="831.50"></text></g><g><title>PhiNode::pinned (37 samples, 0.02%)</title><rect x="28.9855%" y="837" width="0.0166%" height="15" fill="rgb(251,46,16)" fg:x="64574" fg:w="37"/><text x="29.2355%" y="847.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,492 samples, 0.67%)</title><rect x="28.3513%" y="853" width="0.6697%" height="15" fill="rgb(220,204,40)" fg:x="63161" fg:w="1492"/><text x="28.6013%" y="863.50"></text></g><g><title>Node::unique_ctrl_out (70 samples, 0.03%)</title><rect x="29.7742%" y="821" width="0.0314%" height="15" fill="rgb(211,85,2)" fg:x="66331" fg:w="70"/><text x="30.0242%" y="831.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (78 samples, 0.04%)</title><rect x="29.8065%" y="821" width="0.0350%" height="15" fill="rgb(229,17,7)" fg:x="66403" fg:w="78"/><text x="30.0565%" y="831.50"></text></g><g><title>PhaseIdealLoop::dom_depth (50 samples, 0.02%)</title><rect x="30.0808%" y="773" width="0.0224%" height="15" fill="rgb(239,72,28)" fg:x="67014" fg:w="50"/><text x="30.3308%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (250 samples, 0.11%)</title><rect x="30.0413%" y="789" width="0.1122%" height="15" fill="rgb(230,47,54)" fg:x="66926" fg:w="250"/><text x="30.2913%" y="799.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (112 samples, 0.05%)</title><rect x="30.1032%" y="773" width="0.0503%" height="15" fill="rgb(214,50,8)" fg:x="67064" fg:w="112"/><text x="30.3532%" y="783.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (371 samples, 0.17%)</title><rect x="30.0022%" y="805" width="0.1665%" height="15" fill="rgb(216,198,43)" fg:x="66839" fg:w="371"/><text x="30.2522%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (34 samples, 0.02%)</title><rect x="30.1535%" y="789" width="0.0153%" height="15" fill="rgb(234,20,35)" fg:x="67176" fg:w="34"/><text x="30.4035%" y="799.50"></text></g><g><title>PhaseIdealLoop::dom_depth (33 samples, 0.01%)</title><rect x="30.2024%" y="789" width="0.0148%" height="15" fill="rgb(254,45,19)" fg:x="67285" fg:w="33"/><text x="30.4524%" y="799.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (116 samples, 0.05%)</title><rect x="30.1688%" y="805" width="0.0521%" height="15" fill="rgb(219,14,44)" fg:x="67210" fg:w="116"/><text x="30.4188%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (26 samples, 0.01%)</title><rect x="30.2208%" y="805" width="0.0117%" height="15" fill="rgb(217,220,26)" fg:x="67326" fg:w="26"/><text x="30.4708%" y="815.50"></text></g><g><title>PhaseIdealLoop::dom_depth (307 samples, 0.14%)</title><rect x="30.6563%" y="789" width="0.1378%" height="15" fill="rgb(213,158,28)" fg:x="68296" fg:w="307"/><text x="30.9063%" y="799.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,268 samples, 0.57%)</title><rect x="30.2325%" y="805" width="0.5692%" height="15" fill="rgb(252,51,52)" fg:x="67352" fg:w="1268"/><text x="30.4825%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,166 samples, 0.97%)</title><rect x="29.8415%" y="821" width="0.9723%" height="15" fill="rgb(246,89,16)" fg:x="66481" fg:w="2166"/><text x="30.0915%" y="831.50"></text></g><g><title>PhaseIdealLoop::get_loop (48 samples, 0.02%)</title><rect x="30.8138%" y="821" width="0.0215%" height="15" fill="rgb(216,158,49)" fg:x="68647" fg:w="48"/><text x="31.0638%" y="831.50"></text></g><g><title>ProjNode::is_uncommon_trap_if_pattern (27 samples, 0.01%)</title><rect x="30.8371%" y="821" width="0.0121%" height="15" fill="rgb(236,107,19)" fg:x="68699" fg:w="27"/><text x="31.0871%" y="831.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (2,938 samples, 1.32%)</title><rect x="29.5314%" y="837" width="1.3188%" height="15" fill="rgb(228,185,30)" fg:x="65790" fg:w="2938"/><text x="29.7814%" y="847.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (4,088 samples, 1.83%)</title><rect x="29.0210%" y="853" width="1.8350%" height="15" fill="rgb(246,134,8)" fg:x="64653" fg:w="4088"/><text x="29.2710%" y="863.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (209 samples, 0.09%)</title><rect x="31.1217%" y="837" width="0.0938%" height="15" fill="rgb(214,143,50)" fg:x="69333" fg:w="209"/><text x="31.3717%" y="847.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (810 samples, 0.36%)</title><rect x="30.8573%" y="853" width="0.3636%" height="15" fill="rgb(228,75,8)" fg:x="68744" fg:w="810"/><text x="31.1073%" y="863.50"></text></g><g><title>PhaseIdealLoop::collect_potentially_useful_predicates (29 samples, 0.01%)</title><rect x="31.2250%" y="837" width="0.0130%" height="15" fill="rgb(207,175,4)" fg:x="69563" fg:w="29"/><text x="31.4750%" y="847.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (33 samples, 0.01%)</title><rect x="31.2241%" y="853" width="0.0148%" height="15" fill="rgb(205,108,24)" fg:x="69561" fg:w="33"/><text x="31.4741%" y="863.50"></text></g><g><title>PhaseIdealLoop::handle_use (25 samples, 0.01%)</title><rect x="31.4763%" y="821" width="0.0112%" height="15" fill="rgb(244,120,49)" fg:x="70123" fg:w="25"/><text x="31.7263%" y="831.50"></text></g><g><title>PhaseIdealLoop::do_split_if (83 samples, 0.04%)</title><rect x="31.4728%" y="837" width="0.0373%" height="15" fill="rgb(223,47,38)" fg:x="70115" fg:w="83"/><text x="31.7228%" y="847.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (24 samples, 0.01%)</title><rect x="31.5737%" y="821" width="0.0108%" height="15" fill="rgb(229,179,11)" fg:x="70340" fg:w="24"/><text x="31.8237%" y="831.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (27 samples, 0.01%)</title><rect x="31.5989%" y="821" width="0.0121%" height="15" fill="rgb(231,122,1)" fg:x="70396" fg:w="27"/><text x="31.8489%" y="831.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (242 samples, 0.11%)</title><rect x="31.5123%" y="837" width="0.1086%" height="15" fill="rgb(245,119,9)" fg:x="70203" fg:w="242"/><text x="31.7623%" y="847.50"></text></g><g><title>ConstraintCastNode::dominating_cast (37 samples, 0.02%)</title><rect x="31.6698%" y="821" width="0.0166%" height="15" fill="rgb(241,163,25)" fg:x="70554" fg:w="37"/><text x="31.9198%" y="831.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (54 samples, 0.02%)</title><rect x="31.6976%" y="821" width="0.0242%" height="15" fill="rgb(217,214,3)" fg:x="70616" fg:w="54"/><text x="31.9476%" y="831.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (89 samples, 0.04%)</title><rect x="31.7219%" y="821" width="0.0399%" height="15" fill="rgb(240,86,28)" fg:x="70670" fg:w="89"/><text x="31.9719%" y="831.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (28 samples, 0.01%)</title><rect x="31.7493%" y="805" width="0.0126%" height="15" fill="rgb(215,47,9)" fg:x="70731" fg:w="28"/><text x="31.9993%" y="815.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (165 samples, 0.07%)</title><rect x="31.7627%" y="821" width="0.0741%" height="15" fill="rgb(252,25,45)" fg:x="70761" fg:w="165"/><text x="32.0127%" y="831.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (53 samples, 0.02%)</title><rect x="31.8130%" y="805" width="0.0238%" height="15" fill="rgb(251,164,9)" fg:x="70873" fg:w="53"/><text x="32.0630%" y="815.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (46 samples, 0.02%)</title><rect x="31.8790%" y="805" width="0.0206%" height="15" fill="rgb(233,194,0)" fg:x="71020" fg:w="46"/><text x="32.1290%" y="815.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (157 samples, 0.07%)</title><rect x="31.8368%" y="821" width="0.0705%" height="15" fill="rgb(249,111,24)" fg:x="70926" fg:w="157"/><text x="32.0868%" y="831.50"></text></g><g><title>PhaseIdealLoop::try_move_store_before_loop (24 samples, 0.01%)</title><rect x="31.9073%" y="821" width="0.0108%" height="15" fill="rgb(250,223,3)" fg:x="71083" fg:w="24"/><text x="32.1573%" y="831.50"></text></g><g><title>PhaseIterGVN::subsume_node (30 samples, 0.01%)</title><rect x="31.9212%" y="821" width="0.0135%" height="15" fill="rgb(236,178,37)" fg:x="71114" fg:w="30"/><text x="32.1712%" y="831.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (701 samples, 0.31%)</title><rect x="31.6209%" y="837" width="0.3147%" height="15" fill="rgb(241,158,50)" fg:x="70445" fg:w="701"/><text x="31.8709%" y="847.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,534 samples, 0.69%)</title><rect x="31.2501%" y="853" width="0.6886%" height="15" fill="rgb(213,121,41)" fg:x="69619" fg:w="1534"/><text x="31.5001%" y="863.50"></text></g><g><title>CallNode::Ideal (36 samples, 0.02%)</title><rect x="32.0280%" y="821" width="0.0162%" height="15" fill="rgb(240,92,3)" fg:x="71352" fg:w="36"/><text x="32.2780%" y="831.50"></text></g><g><title>Node::remove_dead_region (34 samples, 0.02%)</title><rect x="32.0289%" y="805" width="0.0153%" height="15" fill="rgb(205,123,3)" fg:x="71354" fg:w="34"/><text x="32.2789%" y="815.50"></text></g><g><title>CastIINode::Value (28 samples, 0.01%)</title><rect x="32.0473%" y="821" width="0.0126%" height="15" fill="rgb(205,97,47)" fg:x="71395" fg:w="28"/><text x="32.2973%" y="831.50"></text></g><g><title>ConvI2LNode::Value (23 samples, 0.01%)</title><rect x="32.0900%" y="821" width="0.0103%" height="15" fill="rgb(247,152,14)" fg:x="71490" fg:w="23"/><text x="32.3400%" y="831.50"></text></g><g><title>MemNode::all_controls_dominate (27 samples, 0.01%)</title><rect x="32.1353%" y="789" width="0.0121%" height="15" fill="rgb(248,195,53)" fg:x="71591" fg:w="27"/><text x="32.3853%" y="799.50"></text></g><g><title>LoadNode::Ideal (78 samples, 0.04%)</title><rect x="32.1160%" y="821" width="0.0350%" height="15" fill="rgb(226,201,16)" fg:x="71548" fg:w="78"/><text x="32.3660%" y="831.50"></text></g><g><title>MemNode::find_previous_store (36 samples, 0.02%)</title><rect x="32.1348%" y="805" width="0.0162%" height="15" fill="rgb(205,98,0)" fg:x="71590" fg:w="36"/><text x="32.3848%" y="815.50"></text></g><g><title>NodeHash::grow (29 samples, 0.01%)</title><rect x="32.1981%" y="805" width="0.0130%" height="15" fill="rgb(214,191,48)" fg:x="71731" fg:w="29"/><text x="32.4481%" y="815.50"></text></g><g><title>NodeHash::hash_find_insert (103 samples, 0.05%)</title><rect x="32.1672%" y="821" width="0.0462%" height="15" fill="rgb(237,112,39)" fg:x="71662" fg:w="103"/><text x="32.4172%" y="831.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (55 samples, 0.02%)</title><rect x="32.2134%" y="821" width="0.0247%" height="15" fill="rgb(247,203,27)" fg:x="71765" fg:w="55"/><text x="32.4634%" y="831.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (45 samples, 0.02%)</title><rect x="32.2489%" y="805" width="0.0202%" height="15" fill="rgb(235,124,28)" fg:x="71844" fg:w="45"/><text x="32.4989%" y="815.50"></text></g><g><title>PhaseIterGVN::subsume_node (78 samples, 0.04%)</title><rect x="32.2381%" y="821" width="0.0350%" height="15" fill="rgb(208,207,46)" fg:x="71820" fg:w="78"/><text x="32.4881%" y="831.50"></text></g><g><title>PhiNode::Ideal (43 samples, 0.02%)</title><rect x="32.2731%" y="821" width="0.0193%" height="15" fill="rgb(234,176,4)" fg:x="71898" fg:w="43"/><text x="32.5231%" y="831.50"></text></g><g><title>PhiNode::Value (34 samples, 0.02%)</title><rect x="32.2946%" y="821" width="0.0153%" height="15" fill="rgb(230,133,28)" fg:x="71946" fg:w="34"/><text x="32.5446%" y="831.50"></text></g><g><title>PhaseIterGVN::subsume_node (25 samples, 0.01%)</title><rect x="32.3391%" y="805" width="0.0112%" height="15" fill="rgb(211,137,40)" fg:x="72045" fg:w="25"/><text x="32.5891%" y="815.50"></text></g><g><title>RegionNode::is_unreachable_region (125 samples, 0.06%)</title><rect x="32.3597%" y="805" width="0.0561%" height="15" fill="rgb(254,35,13)" fg:x="72091" fg:w="125"/><text x="32.6097%" y="815.50"></text></g><g><title>RegionNode::Ideal (216 samples, 0.10%)</title><rect x="32.3193%" y="821" width="0.0970%" height="15" fill="rgb(225,49,51)" fg:x="72001" fg:w="216"/><text x="32.5693%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (23 samples, 0.01%)</title><rect x="32.4221%" y="549" width="0.0103%" height="15" fill="rgb(251,10,15)" fg:x="72230" fg:w="23"/><text x="32.6721%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (26 samples, 0.01%)</title><rect x="32.4221%" y="565" width="0.0117%" height="15" fill="rgb(228,207,15)" fg:x="72230" fg:w="26"/><text x="32.6721%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (32 samples, 0.01%)</title><rect x="32.4221%" y="581" width="0.0144%" height="15" fill="rgb(241,99,19)" fg:x="72230" fg:w="32"/><text x="32.6721%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (34 samples, 0.02%)</title><rect x="32.4221%" y="597" width="0.0153%" height="15" fill="rgb(207,104,49)" fg:x="72230" fg:w="34"/><text x="32.6721%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (36 samples, 0.02%)</title><rect x="32.4221%" y="613" width="0.0162%" height="15" fill="rgb(234,99,18)" fg:x="72230" fg:w="36"/><text x="32.6721%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (41 samples, 0.02%)</title><rect x="32.4221%" y="629" width="0.0184%" height="15" fill="rgb(213,191,49)" fg:x="72230" fg:w="41"/><text x="32.6721%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (44 samples, 0.02%)</title><rect x="32.4221%" y="645" width="0.0198%" height="15" fill="rgb(210,226,19)" fg:x="72230" fg:w="44"/><text x="32.6721%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (46 samples, 0.02%)</title><rect x="32.4221%" y="661" width="0.0206%" height="15" fill="rgb(229,97,18)" fg:x="72230" fg:w="46"/><text x="32.6721%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (47 samples, 0.02%)</title><rect x="32.4221%" y="677" width="0.0211%" height="15" fill="rgb(211,167,15)" fg:x="72230" fg:w="47"/><text x="32.6721%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (49 samples, 0.02%)</title><rect x="32.4221%" y="693" width="0.0220%" height="15" fill="rgb(210,169,34)" fg:x="72230" fg:w="49"/><text x="32.6721%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (50 samples, 0.02%)</title><rect x="32.4221%" y="709" width="0.0224%" height="15" fill="rgb(241,121,31)" fg:x="72230" fg:w="50"/><text x="32.6721%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (53 samples, 0.02%)</title><rect x="32.4221%" y="725" width="0.0238%" height="15" fill="rgb(232,40,11)" fg:x="72230" fg:w="53"/><text x="32.6721%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (56 samples, 0.03%)</title><rect x="32.4221%" y="741" width="0.0251%" height="15" fill="rgb(205,86,26)" fg:x="72230" fg:w="56"/><text x="32.6721%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (60 samples, 0.03%)</title><rect x="32.4217%" y="757" width="0.0269%" height="15" fill="rgb(231,126,28)" fg:x="72229" fg:w="60"/><text x="32.6717%" y="767.50"></text></g><g><title>InitializeNode::can_capture_store (69 samples, 0.03%)</title><rect x="32.4217%" y="805" width="0.0310%" height="15" fill="rgb(219,221,18)" fg:x="72229" fg:w="69"/><text x="32.6717%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.03%)</title><rect x="32.4217%" y="789" width="0.0310%" height="15" fill="rgb(211,40,0)" fg:x="72229" fg:w="69"/><text x="32.6717%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.03%)</title><rect x="32.4217%" y="773" width="0.0310%" height="15" fill="rgb(239,85,43)" fg:x="72229" fg:w="69"/><text x="32.6717%" y="783.50"></text></g><g><title>StoreNode::Ideal (78 samples, 0.04%)</title><rect x="32.4217%" y="821" width="0.0350%" height="15" fill="rgb(231,55,21)" fg:x="72229" fg:w="78"/><text x="32.6717%" y="831.50"></text></g><g><title>PhaseIterGVN::transform_old (1,156 samples, 0.52%)</title><rect x="31.9584%" y="837" width="0.5189%" height="15" fill="rgb(225,184,43)" fg:x="71197" fg:w="1156"/><text x="32.2084%" y="847.50"></text></g><g><title>PhaseIterGVN::optimize (1,206 samples, 0.54%)</title><rect x="31.9405%" y="853" width="0.5413%" height="15" fill="rgb(251,158,41)" fg:x="71157" fg:w="1206"/><text x="32.1905%" y="863.50"></text></g><g><title>SuperWord::SLP_extract (35 samples, 0.02%)</title><rect x="32.4998%" y="837" width="0.0157%" height="15" fill="rgb(234,159,37)" fg:x="72403" fg:w="35"/><text x="32.7498%" y="847.50"></text></g><g><title>SuperWord::transform_loop (36 samples, 0.02%)</title><rect x="32.4998%" y="853" width="0.0162%" height="15" fill="rgb(216,204,22)" fg:x="72403" fg:w="36"/><text x="32.7498%" y="863.50"></text></g><g><title>[libc-2.31.so] (23 samples, 0.01%)</title><rect x="32.5159%" y="853" width="0.0103%" height="15" fill="rgb(214,17,3)" fg:x="72439" fg:w="23"/><text x="32.7659%" y="863.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (10,943 samples, 4.91%)</title><rect x="27.6165%" y="869" width="4.9120%" height="15" fill="rgb(212,111,17)" fg:x="61524" fg:w="10943"/><text x="27.8665%" y="879.50">PhaseI..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (69 samples, 0.03%)</title><rect x="32.5518%" y="853" width="0.0310%" height="15" fill="rgb(221,157,24)" fg:x="72519" fg:w="69"/><text x="32.8018%" y="863.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (123 samples, 0.06%)</title><rect x="32.5285%" y="869" width="0.0552%" height="15" fill="rgb(252,16,13)" fg:x="72467" fg:w="123"/><text x="32.7785%" y="879.50"></text></g><g><title>CallNode::Ideal (29 samples, 0.01%)</title><rect x="32.6946%" y="837" width="0.0130%" height="15" fill="rgb(221,62,2)" fg:x="72837" fg:w="29"/><text x="32.9446%" y="847.50"></text></g><g><title>Node::remove_dead_region (26 samples, 0.01%)</title><rect x="32.6959%" y="821" width="0.0117%" height="15" fill="rgb(247,87,22)" fg:x="72840" fg:w="26"/><text x="32.9459%" y="831.50"></text></g><g><title>IfNode::search_identical (45 samples, 0.02%)</title><rect x="32.7588%" y="821" width="0.0202%" height="15" fill="rgb(215,73,9)" fg:x="72980" fg:w="45"/><text x="33.0088%" y="831.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (92 samples, 0.04%)</title><rect x="32.7906%" y="805" width="0.0413%" height="15" fill="rgb(207,175,33)" fg:x="73051" fg:w="92"/><text x="33.0406%" y="815.50"></text></g><g><title>Unique_Node_List::remove (81 samples, 0.04%)</title><rect x="32.7956%" y="789" width="0.0364%" height="15" fill="rgb(243,129,54)" fg:x="73062" fg:w="81"/><text x="33.0456%" y="799.50"></text></g><g><title>PhaseIterGVN::subsume_node (96 samples, 0.04%)</title><rect x="32.7893%" y="821" width="0.0431%" height="15" fill="rgb(227,119,45)" fg:x="73048" fg:w="96"/><text x="33.0393%" y="831.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (39 samples, 0.02%)</title><rect x="32.8477%" y="805" width="0.0175%" height="15" fill="rgb(205,109,36)" fg:x="73178" fg:w="39"/><text x="33.0977%" y="815.50"></text></g><g><title>Unique_Node_List::remove (30 samples, 0.01%)</title><rect x="32.8517%" y="789" width="0.0135%" height="15" fill="rgb(205,6,39)" fg:x="73187" fg:w="30"/><text x="33.1017%" y="799.50"></text></g><g><title>IfNode::Ideal (285 samples, 0.13%)</title><rect x="32.7422%" y="837" width="0.1279%" height="15" fill="rgb(221,32,16)" fg:x="72943" fg:w="285"/><text x="32.9922%" y="847.50"></text></g><g><title>split_if (70 samples, 0.03%)</title><rect x="32.8387%" y="821" width="0.0314%" height="15" fill="rgb(228,144,50)" fg:x="73158" fg:w="70"/><text x="33.0887%" y="831.50"></text></g><g><title>MemNode::adr_type (24 samples, 0.01%)</title><rect x="32.9051%" y="805" width="0.0108%" height="15" fill="rgb(229,201,53)" fg:x="73306" fg:w="24"/><text x="33.1551%" y="815.50"></text></g><g><title>MemNode::Ideal_common (71 samples, 0.03%)</title><rect x="32.8939%" y="821" width="0.0319%" height="15" fill="rgb(249,153,27)" fg:x="73281" fg:w="71"/><text x="33.1439%" y="831.50"></text></g><g><title>MemNode::all_controls_dominate (38 samples, 0.02%)</title><rect x="32.9307%" y="805" width="0.0171%" height="15" fill="rgb(227,106,25)" fg:x="73363" fg:w="38"/><text x="33.1807%" y="815.50"></text></g><g><title>Node::dominates (38 samples, 0.02%)</title><rect x="32.9307%" y="789" width="0.0171%" height="15" fill="rgb(230,65,29)" fg:x="73363" fg:w="38"/><text x="33.1807%" y="799.50"></text></g><g><title>MemNode::find_previous_store (64 samples, 0.03%)</title><rect x="32.9262%" y="821" width="0.0287%" height="15" fill="rgb(221,57,46)" fg:x="73353" fg:w="64"/><text x="33.1762%" y="831.50"></text></g><g><title>LoadNode::Ideal (158 samples, 0.07%)</title><rect x="32.8854%" y="837" width="0.0709%" height="15" fill="rgb(229,161,17)" fg:x="73262" fg:w="158"/><text x="33.1354%" y="847.50"></text></g><g><title>LoadNode::Identity (23 samples, 0.01%)</title><rect x="32.9563%" y="837" width="0.0103%" height="15" fill="rgb(222,213,11)" fg:x="73420" fg:w="23"/><text x="33.2063%" y="847.50"></text></g><g><title>LoadNode::Value (27 samples, 0.01%)</title><rect x="32.9666%" y="837" width="0.0121%" height="15" fill="rgb(235,35,13)" fg:x="73443" fg:w="27"/><text x="33.2166%" y="847.50"></text></g><g><title>MergeMemNode::Ideal (27 samples, 0.01%)</title><rect x="32.9841%" y="837" width="0.0121%" height="15" fill="rgb(233,158,34)" fg:x="73482" fg:w="27"/><text x="33.2341%" y="847.50"></text></g><g><title>NodeHash::grow (53 samples, 0.02%)</title><rect x="33.0483%" y="821" width="0.0238%" height="15" fill="rgb(215,151,48)" fg:x="73625" fg:w="53"/><text x="33.2983%" y="831.50"></text></g><g><title>NodeHash::hash_find_insert (163 samples, 0.07%)</title><rect x="33.0052%" y="837" width="0.0732%" height="15" fill="rgb(229,84,14)" fg:x="73529" fg:w="163"/><text x="33.2552%" y="847.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (52 samples, 0.02%)</title><rect x="33.0788%" y="837" width="0.0233%" height="15" fill="rgb(229,68,14)" fg:x="73693" fg:w="52"/><text x="33.3288%" y="847.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (56 samples, 0.03%)</title><rect x="33.1340%" y="821" width="0.0251%" height="15" fill="rgb(243,106,26)" fg:x="73816" fg:w="56"/><text x="33.3840%" y="831.50"></text></g><g><title>Unique_Node_List::remove (25 samples, 0.01%)</title><rect x="33.1479%" y="805" width="0.0112%" height="15" fill="rgb(206,45,38)" fg:x="73847" fg:w="25"/><text x="33.3979%" y="815.50"></text></g><g><title>PhaseIterGVN::subsume_node (142 samples, 0.06%)</title><rect x="33.1026%" y="837" width="0.0637%" height="15" fill="rgb(226,6,15)" fg:x="73746" fg:w="142"/><text x="33.3526%" y="847.50"></text></g><g><title>PhiNode::Ideal (100 samples, 0.04%)</title><rect x="33.1673%" y="837" width="0.0449%" height="15" fill="rgb(232,22,54)" fg:x="73890" fg:w="100"/><text x="33.4173%" y="847.50"></text></g><g><title>PhiNode::Value (50 samples, 0.02%)</title><rect x="33.2171%" y="837" width="0.0224%" height="15" fill="rgb(229,222,32)" fg:x="74001" fg:w="50"/><text x="33.4671%" y="847.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (120 samples, 0.05%)</title><rect x="33.3154%" y="805" width="0.0539%" height="15" fill="rgb(228,62,29)" fg:x="74220" fg:w="120"/><text x="33.5654%" y="815.50"></text></g><g><title>Unique_Node_List::remove (106 samples, 0.05%)</title><rect x="33.3217%" y="789" width="0.0476%" height="15" fill="rgb(251,103,34)" fg:x="74234" fg:w="106"/><text x="33.5717%" y="799.50"></text></g><g><title>PhaseIterGVN::subsume_node (144 samples, 0.06%)</title><rect x="33.3077%" y="821" width="0.0646%" height="15" fill="rgb(233,12,30)" fg:x="74203" fg:w="144"/><text x="33.5577%" y="831.50"></text></g><g><title>RegionNode::is_unreachable_region (115 samples, 0.05%)</title><rect x="33.3796%" y="821" width="0.0516%" height="15" fill="rgb(238,52,0)" fg:x="74363" fg:w="115"/><text x="33.6296%" y="831.50"></text></g><g><title>RegionNode::Ideal (387 samples, 0.17%)</title><rect x="33.2620%" y="837" width="0.1737%" height="15" fill="rgb(223,98,5)" fg:x="74101" fg:w="387"/><text x="33.5120%" y="847.50"></text></g><g><title>InitializeNode::detect_init_independence (26 samples, 0.01%)</title><rect x="33.4424%" y="517" width="0.0117%" height="15" fill="rgb(228,75,37)" fg:x="74503" fg:w="26"/><text x="33.6924%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (32 samples, 0.01%)</title><rect x="33.4424%" y="533" width="0.0144%" height="15" fill="rgb(205,115,49)" fg:x="74503" fg:w="32"/><text x="33.6924%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (38 samples, 0.02%)</title><rect x="33.4424%" y="549" width="0.0171%" height="15" fill="rgb(250,154,43)" fg:x="74503" fg:w="38"/><text x="33.6924%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (49 samples, 0.02%)</title><rect x="33.4420%" y="565" width="0.0220%" height="15" fill="rgb(226,43,29)" fg:x="74502" fg:w="49"/><text x="33.6920%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (60 samples, 0.03%)</title><rect x="33.4420%" y="581" width="0.0269%" height="15" fill="rgb(249,228,39)" fg:x="74502" fg:w="60"/><text x="33.6920%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.03%)</title><rect x="33.4420%" y="597" width="0.0310%" height="15" fill="rgb(216,79,43)" fg:x="74502" fg:w="69"/><text x="33.6920%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (78 samples, 0.04%)</title><rect x="33.4420%" y="613" width="0.0350%" height="15" fill="rgb(228,95,12)" fg:x="74502" fg:w="78"/><text x="33.6920%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (85 samples, 0.04%)</title><rect x="33.4420%" y="629" width="0.0382%" height="15" fill="rgb(249,221,15)" fg:x="74502" fg:w="85"/><text x="33.6920%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (93 samples, 0.04%)</title><rect x="33.4420%" y="645" width="0.0417%" height="15" fill="rgb(233,34,13)" fg:x="74502" fg:w="93"/><text x="33.6920%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (101 samples, 0.05%)</title><rect x="33.4420%" y="661" width="0.0453%" height="15" fill="rgb(214,103,39)" fg:x="74502" fg:w="101"/><text x="33.6920%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (108 samples, 0.05%)</title><rect x="33.4420%" y="677" width="0.0485%" height="15" fill="rgb(251,126,39)" fg:x="74502" fg:w="108"/><text x="33.6920%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (120 samples, 0.05%)</title><rect x="33.4420%" y="693" width="0.0539%" height="15" fill="rgb(214,216,36)" fg:x="74502" fg:w="120"/><text x="33.6920%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (126 samples, 0.06%)</title><rect x="33.4420%" y="709" width="0.0566%" height="15" fill="rgb(220,221,8)" fg:x="74502" fg:w="126"/><text x="33.6920%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (129 samples, 0.06%)</title><rect x="33.4420%" y="725" width="0.0579%" height="15" fill="rgb(240,216,3)" fg:x="74502" fg:w="129"/><text x="33.6920%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (143 samples, 0.06%)</title><rect x="33.4420%" y="741" width="0.0642%" height="15" fill="rgb(232,218,17)" fg:x="74502" fg:w="143"/><text x="33.6920%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (156 samples, 0.07%)</title><rect x="33.4411%" y="757" width="0.0700%" height="15" fill="rgb(229,163,45)" fg:x="74500" fg:w="156"/><text x="33.6911%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (177 samples, 0.08%)</title><rect x="33.4411%" y="773" width="0.0795%" height="15" fill="rgb(231,110,42)" fg:x="74500" fg:w="177"/><text x="33.6911%" y="783.50"></text></g><g><title>InitializeNode::can_capture_store (193 samples, 0.09%)</title><rect x="33.4411%" y="821" width="0.0866%" height="15" fill="rgb(208,170,48)" fg:x="74500" fg:w="193"/><text x="33.6911%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (193 samples, 0.09%)</title><rect x="33.4411%" y="805" width="0.0866%" height="15" fill="rgb(239,116,25)" fg:x="74500" fg:w="193"/><text x="33.6911%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (193 samples, 0.09%)</title><rect x="33.4411%" y="789" width="0.0866%" height="15" fill="rgb(219,200,50)" fg:x="74500" fg:w="193"/><text x="33.6911%" y="799.50"></text></g><g><title>StoreNode::Ideal (217 samples, 0.10%)</title><rect x="33.4406%" y="837" width="0.0974%" height="15" fill="rgb(245,200,0)" fg:x="74499" fg:w="217"/><text x="33.6906%" y="847.50"></text></g><g><title>PhaseIterGVN::transform_old (2,098 samples, 0.94%)</title><rect x="32.6174%" y="853" width="0.9417%" height="15" fill="rgb(245,119,33)" fg:x="72665" fg:w="2098"/><text x="32.8674%" y="863.50"></text></g><g><title>PhaseIterGVN::optimize (2,188 samples, 0.98%)</title><rect x="32.5837%" y="869" width="0.9821%" height="15" fill="rgb(231,125,12)" fg:x="72590" fg:w="2188"/><text x="32.8337%" y="879.50"></text></g><g><title>PhaseIterGVN::transform_old (237 samples, 0.11%)</title><rect x="33.5869%" y="837" width="0.1064%" height="15" fill="rgb(216,96,41)" fg:x="74825" fg:w="237"/><text x="33.8369%" y="847.50"></text></g><g><title>PhaseIterGVN::optimize (254 samples, 0.11%)</title><rect x="33.5798%" y="853" width="0.1140%" height="15" fill="rgb(248,43,45)" fg:x="74809" fg:w="254"/><text x="33.8298%" y="863.50"></text></g><g><title>PhaseIterGVN::subsume_node (24 samples, 0.01%)</title><rect x="33.7072%" y="837" width="0.0108%" height="15" fill="rgb(217,222,7)" fg:x="75093" fg:w="24"/><text x="33.9572%" y="847.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (89 samples, 0.04%)</title><rect x="33.6947%" y="853" width="0.0399%" height="15" fill="rgb(233,28,6)" fg:x="75065" fg:w="89"/><text x="33.9447%" y="863.50"></text></g><g><title>PhaseMacroExpand::expand_arraycopy_node (25 samples, 0.01%)</title><rect x="33.7346%" y="853" width="0.0112%" height="15" fill="rgb(231,218,15)" fg:x="75154" fg:w="25"/><text x="33.9846%" y="863.50"></text></g><g><title>PhaseMacroExpand::generate_arraycopy (23 samples, 0.01%)</title><rect x="33.7355%" y="837" width="0.0103%" height="15" fill="rgb(226,171,48)" fg:x="75156" fg:w="23"/><text x="33.9855%" y="847.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (394 samples, 0.18%)</title><rect x="33.5748%" y="869" width="0.1769%" height="15" fill="rgb(235,201,9)" fg:x="74798" fg:w="394"/><text x="33.8248%" y="879.50"></text></g><g><title>Compile::identify_useful_nodes (64 samples, 0.03%)</title><rect x="33.7643%" y="837" width="0.0287%" height="15" fill="rgb(217,80,15)" fg:x="75220" fg:w="64"/><text x="34.0143%" y="847.50"></text></g><g><title>Compile::remove_useless_nodes (45 samples, 0.02%)</title><rect x="33.7930%" y="837" width="0.0202%" height="15" fill="rgb(219,152,8)" fg:x="75284" fg:w="45"/><text x="34.0430%" y="847.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (141 samples, 0.06%)</title><rect x="33.7571%" y="853" width="0.0633%" height="15" fill="rgb(243,107,38)" fg:x="75204" fg:w="141"/><text x="34.0071%" y="863.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (154 samples, 0.07%)</title><rect x="33.7517%" y="869" width="0.0691%" height="15" fill="rgb(231,17,5)" fg:x="75192" fg:w="154"/><text x="34.0017%" y="879.50"></text></g><g><title>Compile::Optimize (15,780 samples, 7.08%)</title><rect x="26.7448%" y="885" width="7.0832%" height="15" fill="rgb(209,25,54)" fg:x="59582" fg:w="15780"/><text x="26.9948%" y="895.50">Compile::O..</text></g><g><title>Parse::do_call (32 samples, 0.01%)</title><rect x="33.8522%" y="741" width="0.0144%" height="15" fill="rgb(219,0,2)" fg:x="75416" fg:w="32"/><text x="34.1022%" y="751.50"></text></g><g><title>Parse::do_field_access (28 samples, 0.01%)</title><rect x="33.8697%" y="741" width="0.0126%" height="15" fill="rgb(246,9,5)" fg:x="75455" fg:w="28"/><text x="34.1197%" y="751.50"></text></g><g><title>Parse::do_one_block (134 samples, 0.06%)</title><rect x="33.8379%" y="773" width="0.0601%" height="15" fill="rgb(226,159,4)" fg:x="75384" fg:w="134"/><text x="34.0879%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (122 samples, 0.05%)</title><rect x="33.8433%" y="757" width="0.0548%" height="15" fill="rgb(219,175,34)" fg:x="75396" fg:w="122"/><text x="34.0933%" y="767.50"></text></g><g><title>Parse::do_all_blocks (137 samples, 0.06%)</title><rect x="33.8379%" y="789" width="0.0615%" height="15" fill="rgb(236,10,46)" fg:x="75384" fg:w="137"/><text x="34.0879%" y="799.50"></text></g><g><title>ParseGenerator::generate (152 samples, 0.07%)</title><rect x="33.8379%" y="821" width="0.0682%" height="15" fill="rgb(240,211,16)" fg:x="75384" fg:w="152"/><text x="34.0879%" y="831.50"></text></g><g><title>Parse::Parse (152 samples, 0.07%)</title><rect x="33.8379%" y="805" width="0.0682%" height="15" fill="rgb(205,3,43)" fg:x="75384" fg:w="152"/><text x="34.0879%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (185 samples, 0.08%)</title><rect x="33.8311%" y="885" width="0.0830%" height="15" fill="rgb(245,7,22)" fg:x="75369" fg:w="185"/><text x="34.0811%" y="895.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (185 samples, 0.08%)</title><rect x="33.8311%" y="869" width="0.0830%" height="15" fill="rgb(239,132,32)" fg:x="75369" fg:w="185"/><text x="34.0811%" y="879.50"></text></g><g><title>C2Compiler::compile_method (185 samples, 0.08%)</title><rect x="33.8311%" y="853" width="0.0830%" height="15" fill="rgb(228,202,34)" fg:x="75369" fg:w="185"/><text x="34.0811%" y="863.50"></text></g><g><title>Compile::Compile (185 samples, 0.08%)</title><rect x="33.8311%" y="837" width="0.0830%" height="15" fill="rgb(254,200,22)" fg:x="75369" fg:w="185"/><text x="34.0811%" y="847.50"></text></g><g><title>ciMethod::ciMethod (31 samples, 0.01%)</title><rect x="33.9344%" y="629" width="0.0139%" height="15" fill="rgb(219,10,39)" fg:x="75599" fg:w="31"/><text x="34.1844%" y="639.50"></text></g><g><title>ciSignature::ciSignature (25 samples, 0.01%)</title><rect x="33.9371%" y="613" width="0.0112%" height="15" fill="rgb(226,210,39)" fg:x="75605" fg:w="25"/><text x="34.1871%" y="623.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (48 samples, 0.02%)</title><rect x="33.9276%" y="709" width="0.0215%" height="15" fill="rgb(208,219,16)" fg:x="75584" fg:w="48"/><text x="34.1776%" y="719.50"></text></g><g><title>ciBytecodeStream::get_method (48 samples, 0.02%)</title><rect x="33.9276%" y="693" width="0.0215%" height="15" fill="rgb(216,158,51)" fg:x="75584" fg:w="48"/><text x="34.1776%" y="703.50"></text></g><g><title>ciEnv::get_method_by_index_impl (44 samples, 0.02%)</title><rect x="33.9294%" y="677" width="0.0198%" height="15" fill="rgb(233,14,44)" fg:x="75588" fg:w="44"/><text x="34.1794%" y="687.50"></text></g><g><title>ciObjectFactory::get_metadata (36 samples, 0.02%)</title><rect x="33.9330%" y="661" width="0.0162%" height="15" fill="rgb(237,97,39)" fg:x="75596" fg:w="36"/><text x="34.1830%" y="671.50"></text></g><g><title>ciObjectFactory::create_new_metadata (35 samples, 0.02%)</title><rect x="33.9335%" y="645" width="0.0157%" height="15" fill="rgb(218,198,43)" fg:x="75597" fg:w="35"/><text x="34.1835%" y="655.50"></text></g><g><title>ciTypeFlow::df_flow_types (75 samples, 0.03%)</title><rect x="33.9178%" y="757" width="0.0337%" height="15" fill="rgb(231,104,20)" fg:x="75562" fg:w="75"/><text x="34.1678%" y="767.50"></text></g><g><title>ciTypeFlow::flow_block (75 samples, 0.03%)</title><rect x="33.9178%" y="741" width="0.0337%" height="15" fill="rgb(254,36,13)" fg:x="75562" fg:w="75"/><text x="34.1678%" y="751.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (75 samples, 0.03%)</title><rect x="33.9178%" y="725" width="0.0337%" height="15" fill="rgb(248,14,50)" fg:x="75562" fg:w="75"/><text x="34.1678%" y="735.50"></text></g><g><title>CallGenerator::for_inline (84 samples, 0.04%)</title><rect x="33.9142%" y="837" width="0.0377%" height="15" fill="rgb(217,107,29)" fg:x="75554" fg:w="84"/><text x="34.1642%" y="847.50"></text></g><g><title>InlineTree::check_can_parse (84 samples, 0.04%)</title><rect x="33.9142%" y="821" width="0.0377%" height="15" fill="rgb(251,169,33)" fg:x="75554" fg:w="84"/><text x="34.1642%" y="831.50"></text></g><g><title>ciMethod::get_flow_analysis (84 samples, 0.04%)</title><rect x="33.9142%" y="805" width="0.0377%" height="15" fill="rgb(217,108,32)" fg:x="75554" fg:w="84"/><text x="34.1642%" y="815.50"></text></g><g><title>ciTypeFlow::do_flow (84 samples, 0.04%)</title><rect x="33.9142%" y="789" width="0.0377%" height="15" fill="rgb(219,66,42)" fg:x="75554" fg:w="84"/><text x="34.1642%" y="799.50"></text></g><g><title>ciTypeFlow::flow_types (84 samples, 0.04%)</title><rect x="33.9142%" y="773" width="0.0377%" height="15" fill="rgb(206,180,7)" fg:x="75554" fg:w="84"/><text x="34.1642%" y="783.50"></text></g><g><title>ciTypeFlow::do_flow (23 samples, 0.01%)</title><rect x="33.9842%" y="693" width="0.0103%" height="15" fill="rgb(208,226,31)" fg:x="75710" fg:w="23"/><text x="34.2342%" y="703.50"></text></g><g><title>ciTypeFlow::flow_types (23 samples, 0.01%)</title><rect x="33.9842%" y="677" width="0.0103%" height="15" fill="rgb(218,26,49)" fg:x="75710" fg:w="23"/><text x="34.2342%" y="687.50"></text></g><g><title>InlineTree::ok_to_inline (51 samples, 0.02%)</title><rect x="33.9734%" y="725" width="0.0229%" height="15" fill="rgb(233,197,48)" fg:x="75686" fg:w="51"/><text x="34.2234%" y="735.50"></text></g><g><title>ciMethod::get_flow_analysis (34 samples, 0.02%)</title><rect x="33.9811%" y="709" width="0.0153%" height="15" fill="rgb(252,181,51)" fg:x="75703" fg:w="34"/><text x="34.2311%" y="719.50"></text></g><g><title>Compile::call_generator (67 samples, 0.03%)</title><rect x="33.9698%" y="741" width="0.0301%" height="15" fill="rgb(253,90,19)" fg:x="75678" fg:w="67"/><text x="34.2198%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (95 samples, 0.04%)</title><rect x="34.0484%" y="677" width="0.0426%" height="15" fill="rgb(215,171,30)" fg:x="75853" fg:w="95"/><text x="34.2984%" y="687.50"></text></g><g><title>Parse::do_one_block (112 samples, 0.05%)</title><rect x="34.0417%" y="693" width="0.0503%" height="15" fill="rgb(214,222,9)" fg:x="75838" fg:w="112"/><text x="34.2917%" y="703.50"></text></g><g><title>Parse::do_all_blocks (127 samples, 0.06%)</title><rect x="34.0390%" y="709" width="0.0570%" height="15" fill="rgb(223,3,22)" fg:x="75832" fg:w="127"/><text x="34.2890%" y="719.50"></text></g><g><title>ParseGenerator::generate (187 samples, 0.08%)</title><rect x="34.0250%" y="741" width="0.0839%" height="15" fill="rgb(225,196,46)" fg:x="75801" fg:w="187"/><text x="34.2750%" y="751.50"></text></g><g><title>Parse::Parse (186 samples, 0.08%)</title><rect x="34.0255%" y="725" width="0.0835%" height="15" fill="rgb(209,110,37)" fg:x="75802" fg:w="186"/><text x="34.2755%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (50 samples, 0.02%)</title><rect x="34.1090%" y="741" width="0.0224%" height="15" fill="rgb(249,89,12)" fg:x="75988" fg:w="50"/><text x="34.3590%" y="751.50"></text></g><g><title>Parse::do_call (394 samples, 0.18%)</title><rect x="33.9698%" y="757" width="0.1769%" height="15" fill="rgb(226,27,33)" fg:x="75678" fg:w="394"/><text x="34.2198%" y="767.50"></text></g><g><title>Parse::do_get_xxx (36 samples, 0.02%)</title><rect x="34.1543%" y="741" width="0.0162%" height="15" fill="rgb(213,82,22)" fg:x="76089" fg:w="36"/><text x="34.4043%" y="751.50"></text></g><g><title>Parse::do_field_access (63 samples, 0.03%)</title><rect x="34.1525%" y="757" width="0.0283%" height="15" fill="rgb(248,140,0)" fg:x="76085" fg:w="63"/><text x="34.4025%" y="767.50"></text></g><g><title>Parse::do_put_xxx (23 samples, 0.01%)</title><rect x="34.1705%" y="741" width="0.0103%" height="15" fill="rgb(228,106,3)" fg:x="76125" fg:w="23"/><text x="34.4205%" y="751.50"></text></g><g><title>Parse::do_if (26 samples, 0.01%)</title><rect x="34.1808%" y="757" width="0.0117%" height="15" fill="rgb(209,23,37)" fg:x="76148" fg:w="26"/><text x="34.4308%" y="767.50"></text></g><g><title>Parse::do_all_blocks (557 samples, 0.25%)</title><rect x="33.9537%" y="805" width="0.2500%" height="15" fill="rgb(241,93,50)" fg:x="75642" fg:w="557"/><text x="34.2037%" y="815.50"></text></g><g><title>Parse::do_one_block (557 samples, 0.25%)</title><rect x="33.9537%" y="789" width="0.2500%" height="15" fill="rgb(253,46,43)" fg:x="75642" fg:w="557"/><text x="34.2037%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (554 samples, 0.25%)</title><rect x="33.9550%" y="773" width="0.2487%" height="15" fill="rgb(226,206,43)" fg:x="75645" fg:w="554"/><text x="34.2050%" y="783.50"></text></g><g><title>ParseGenerator::generate (563 samples, 0.25%)</title><rect x="33.9537%" y="837" width="0.2527%" height="15" fill="rgb(217,54,7)" fg:x="75642" fg:w="563"/><text x="34.2037%" y="847.50"></text></g><g><title>Parse::Parse (563 samples, 0.25%)</title><rect x="33.9537%" y="821" width="0.2527%" height="15" fill="rgb(223,5,52)" fg:x="75642" fg:w="563"/><text x="34.2037%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (673 samples, 0.30%)</title><rect x="33.9142%" y="885" width="0.3021%" height="15" fill="rgb(206,52,46)" fg:x="75554" fg:w="673"/><text x="34.1642%" y="895.50"></text></g><g><title>C2Compiler::compile_method (673 samples, 0.30%)</title><rect x="33.9142%" y="869" width="0.3021%" height="15" fill="rgb(253,136,11)" fg:x="75554" fg:w="673"/><text x="34.1642%" y="879.50"></text></g><g><title>Compile::Compile (673 samples, 0.30%)</title><rect x="33.9142%" y="853" width="0.3021%" height="15" fill="rgb(208,106,33)" fg:x="75554" fg:w="673"/><text x="34.1642%" y="863.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.02%)</title><rect x="34.2419%" y="757" width="0.0242%" height="15" fill="rgb(206,54,4)" fg:x="76284" fg:w="54"/><text x="34.4919%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.02%)</title><rect x="34.2432%" y="741" width="0.0229%" height="15" fill="rgb(213,3,15)" fg:x="76287" fg:w="51"/><text x="34.4932%" y="751.50"></text></g><g><title>Parse::do_all_blocks (62 samples, 0.03%)</title><rect x="34.2414%" y="773" width="0.0278%" height="15" fill="rgb(252,211,39)" fg:x="76283" fg:w="62"/><text x="34.4914%" y="783.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.03%)</title><rect x="34.2414%" y="805" width="0.0301%" height="15" fill="rgb(223,6,36)" fg:x="76283" fg:w="67"/><text x="34.4914%" y="815.50"></text></g><g><title>Parse::Parse (67 samples, 0.03%)</title><rect x="34.2414%" y="789" width="0.0301%" height="15" fill="rgb(252,169,45)" fg:x="76283" fg:w="67"/><text x="34.4914%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (82 samples, 0.04%)</title><rect x="34.2369%" y="885" width="0.0368%" height="15" fill="rgb(212,48,26)" fg:x="76273" fg:w="82"/><text x="34.4869%" y="895.50"></text></g><g><title>CompileBroker::compiler_thread_loop (82 samples, 0.04%)</title><rect x="34.2369%" y="869" width="0.0368%" height="15" fill="rgb(251,102,48)" fg:x="76273" fg:w="82"/><text x="34.4869%" y="879.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (82 samples, 0.04%)</title><rect x="34.2369%" y="853" width="0.0368%" height="15" fill="rgb(243,208,16)" fg:x="76273" fg:w="82"/><text x="34.4869%" y="863.50"></text></g><g><title>C2Compiler::compile_method (82 samples, 0.04%)</title><rect x="34.2369%" y="837" width="0.0368%" height="15" fill="rgb(219,96,24)" fg:x="76273" fg:w="82"/><text x="34.4869%" y="847.50"></text></g><g><title>Compile::Compile (82 samples, 0.04%)</title><rect x="34.2369%" y="821" width="0.0368%" height="15" fill="rgb(219,33,29)" fg:x="76273" fg:w="82"/><text x="34.4869%" y="831.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.01%)</title><rect x="34.2800%" y="805" width="0.0117%" height="15" fill="rgb(223,176,5)" fg:x="76369" fg:w="26"/><text x="34.5300%" y="815.50"></text></g><g><title>Parse::Parse (26 samples, 0.01%)</title><rect x="34.2800%" y="789" width="0.0117%" height="15" fill="rgb(228,140,14)" fg:x="76369" fg:w="26"/><text x="34.5300%" y="799.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.01%)</title><rect x="34.2800%" y="773" width="0.0117%" height="15" fill="rgb(217,179,31)" fg:x="76369" fg:w="26"/><text x="34.5300%" y="783.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.01%)</title><rect x="34.2800%" y="757" width="0.0117%" height="15" fill="rgb(230,9,30)" fg:x="76369" fg:w="26"/><text x="34.5300%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.01%)</title><rect x="34.2800%" y="741" width="0.0117%" height="15" fill="rgb(230,136,20)" fg:x="76369" fg:w="26"/><text x="34.5300%" y="751.50"></text></g><g><title>Parse::do_call (26 samples, 0.01%)</title><rect x="34.2800%" y="725" width="0.0117%" height="15" fill="rgb(215,210,22)" fg:x="76369" fg:w="26"/><text x="34.5300%" y="735.50"></text></g><g><title>Parse::Parse (33 samples, 0.01%)</title><rect x="34.2800%" y="885" width="0.0148%" height="15" fill="rgb(218,43,5)" fg:x="76369" fg:w="33"/><text x="34.5300%" y="895.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="34.2800%" y="869" width="0.0148%" height="15" fill="rgb(216,11,5)" fg:x="76369" fg:w="33"/><text x="34.5300%" y="879.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="34.2800%" y="853" width="0.0148%" height="15" fill="rgb(209,82,29)" fg:x="76369" fg:w="33"/><text x="34.5300%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="34.2800%" y="837" width="0.0148%" height="15" fill="rgb(244,115,12)" fg:x="76369" fg:w="33"/><text x="34.5300%" y="847.50"></text></g><g><title>Parse::do_call (33 samples, 0.01%)</title><rect x="34.2800%" y="821" width="0.0148%" height="15" fill="rgb(222,82,18)" fg:x="76369" fg:w="33"/><text x="34.5300%" y="831.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.01%)</title><rect x="34.2953%" y="341" width="0.0103%" height="15" fill="rgb(249,227,8)" fg:x="76403" fg:w="23"/><text x="34.5453%" y="351.50"></text></g><g><title>Parse::Parse (23 samples, 0.01%)</title><rect x="34.2953%" y="325" width="0.0103%" height="15" fill="rgb(253,141,45)" fg:x="76403" fg:w="23"/><text x="34.5453%" y="335.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.01%)</title><rect x="34.2953%" y="309" width="0.0103%" height="15" fill="rgb(234,184,4)" fg:x="76403" fg:w="23"/><text x="34.5453%" y="319.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.01%)</title><rect x="34.2953%" y="293" width="0.0103%" height="15" fill="rgb(218,194,23)" fg:x="76403" fg:w="23"/><text x="34.5453%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.01%)</title><rect x="34.2953%" y="277" width="0.0103%" height="15" fill="rgb(235,66,41)" fg:x="76403" fg:w="23"/><text x="34.5453%" y="287.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.01%)</title><rect x="34.2948%" y="437" width="0.0117%" height="15" fill="rgb(245,217,1)" fg:x="76402" fg:w="26"/><text x="34.5448%" y="447.50"></text></g><g><title>Parse::Parse (26 samples, 0.01%)</title><rect x="34.2948%" y="421" width="0.0117%" height="15" fill="rgb(229,91,1)" fg:x="76402" fg:w="26"/><text x="34.5448%" y="431.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.01%)</title><rect x="34.2948%" y="405" width="0.0117%" height="15" fill="rgb(207,101,30)" fg:x="76402" fg:w="26"/><text x="34.5448%" y="415.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.01%)</title><rect x="34.2948%" y="389" width="0.0117%" height="15" fill="rgb(223,82,49)" fg:x="76402" fg:w="26"/><text x="34.5448%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.01%)</title><rect x="34.2948%" y="373" width="0.0117%" height="15" fill="rgb(218,167,17)" fg:x="76402" fg:w="26"/><text x="34.5448%" y="383.50"></text></g><g><title>Parse::do_call (26 samples, 0.01%)</title><rect x="34.2948%" y="357" width="0.0117%" height="15" fill="rgb(208,103,14)" fg:x="76402" fg:w="26"/><text x="34.5448%" y="367.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.01%)</title><rect x="34.2948%" y="533" width="0.0135%" height="15" fill="rgb(238,20,8)" fg:x="76402" fg:w="30"/><text x="34.5448%" y="543.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="34.2948%" y="517" width="0.0135%" height="15" fill="rgb(218,80,54)" fg:x="76402" fg:w="30"/><text x="34.5448%" y="527.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.01%)</title><rect x="34.2948%" y="501" width="0.0135%" height="15" fill="rgb(240,144,17)" fg:x="76402" fg:w="30"/><text x="34.5448%" y="511.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="34.2948%" y="485" width="0.0135%" height="15" fill="rgb(245,27,50)" fg:x="76402" fg:w="30"/><text x="34.5448%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.01%)</title><rect x="34.2948%" y="469" width="0.0135%" height="15" fill="rgb(251,51,7)" fg:x="76402" fg:w="30"/><text x="34.5448%" y="479.50"></text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="34.2948%" y="453" width="0.0135%" height="15" fill="rgb(245,217,29)" fg:x="76402" fg:w="30"/><text x="34.5448%" y="463.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.02%)</title><rect x="34.2948%" y="629" width="0.0153%" height="15" fill="rgb(221,176,29)" fg:x="76402" fg:w="34"/><text x="34.5448%" y="639.50"></text></g><g><title>Parse::Parse (34 samples, 0.02%)</title><rect x="34.2948%" y="613" width="0.0153%" height="15" fill="rgb(212,180,24)" fg:x="76402" fg:w="34"/><text x="34.5448%" y="623.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="34.2948%" y="597" width="0.0153%" height="15" fill="rgb(254,24,2)" fg:x="76402" fg:w="34"/><text x="34.5448%" y="607.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="34.2948%" y="581" width="0.0153%" height="15" fill="rgb(230,100,2)" fg:x="76402" fg:w="34"/><text x="34.5448%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.02%)</title><rect x="34.2948%" y="565" width="0.0153%" height="15" fill="rgb(219,142,25)" fg:x="76402" fg:w="34"/><text x="34.5448%" y="575.50"></text></g><g><title>Parse::do_call (34 samples, 0.02%)</title><rect x="34.2948%" y="549" width="0.0153%" height="15" fill="rgb(240,73,43)" fg:x="76402" fg:w="34"/><text x="34.5448%" y="559.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.02%)</title><rect x="34.2948%" y="725" width="0.0171%" height="15" fill="rgb(214,114,15)" fg:x="76402" fg:w="38"/><text x="34.5448%" y="735.50"></text></g><g><title>Parse::Parse (38 samples, 0.02%)</title><rect x="34.2948%" y="709" width="0.0171%" height="15" fill="rgb(207,130,4)" fg:x="76402" fg:w="38"/><text x="34.5448%" y="719.50"></text></g><g><title>Parse::do_all_blocks (38 samples, 0.02%)</title><rect x="34.2948%" y="693" width="0.0171%" height="15" fill="rgb(221,25,40)" fg:x="76402" fg:w="38"/><text x="34.5448%" y="703.50"></text></g><g><title>Parse::do_one_block (38 samples, 0.02%)</title><rect x="34.2948%" y="677" width="0.0171%" height="15" fill="rgb(241,184,7)" fg:x="76402" fg:w="38"/><text x="34.5448%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (38 samples, 0.02%)</title><rect x="34.2948%" y="661" width="0.0171%" height="15" fill="rgb(235,159,4)" fg:x="76402" fg:w="38"/><text x="34.5448%" y="671.50"></text></g><g><title>Parse::do_call (38 samples, 0.02%)</title><rect x="34.2948%" y="645" width="0.0171%" height="15" fill="rgb(214,87,48)" fg:x="76402" fg:w="38"/><text x="34.5448%" y="655.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.02%)</title><rect x="34.2948%" y="821" width="0.0184%" height="15" fill="rgb(246,198,24)" fg:x="76402" fg:w="41"/><text x="34.5448%" y="831.50"></text></g><g><title>Parse::Parse (41 samples, 0.02%)</title><rect x="34.2948%" y="805" width="0.0184%" height="15" fill="rgb(209,66,40)" fg:x="76402" fg:w="41"/><text x="34.5448%" y="815.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.02%)</title><rect x="34.2948%" y="789" width="0.0184%" height="15" fill="rgb(233,147,39)" fg:x="76402" fg:w="41"/><text x="34.5448%" y="799.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.02%)</title><rect x="34.2948%" y="773" width="0.0184%" height="15" fill="rgb(231,145,52)" fg:x="76402" fg:w="41"/><text x="34.5448%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.02%)</title><rect x="34.2948%" y="757" width="0.0184%" height="15" fill="rgb(206,20,26)" fg:x="76402" fg:w="41"/><text x="34.5448%" y="767.50"></text></g><g><title>Parse::do_call (41 samples, 0.02%)</title><rect x="34.2948%" y="741" width="0.0184%" height="15" fill="rgb(238,220,4)" fg:x="76402" fg:w="41"/><text x="34.5448%" y="751.50"></text></g><g><title>Parse::do_all_blocks (45 samples, 0.02%)</title><rect x="34.2948%" y="885" width="0.0202%" height="15" fill="rgb(252,195,42)" fg:x="76402" fg:w="45"/><text x="34.5448%" y="895.50"></text></g><g><title>Parse::do_one_block (45 samples, 0.02%)</title><rect x="34.2948%" y="869" width="0.0202%" height="15" fill="rgb(209,10,6)" fg:x="76402" fg:w="45"/><text x="34.5448%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (45 samples, 0.02%)</title><rect x="34.2948%" y="853" width="0.0202%" height="15" fill="rgb(229,3,52)" fg:x="76402" fg:w="45"/><text x="34.5448%" y="863.50"></text></g><g><title>Parse::do_call (45 samples, 0.02%)</title><rect x="34.2948%" y="837" width="0.0202%" height="15" fill="rgb(253,49,37)" fg:x="76402" fg:w="45"/><text x="34.5448%" y="847.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.01%)</title><rect x="34.3168%" y="165" width="0.0108%" height="15" fill="rgb(240,103,49)" fg:x="76451" fg:w="24"/><text x="34.5668%" y="175.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.01%)</title><rect x="34.3168%" y="149" width="0.0108%" height="15" fill="rgb(250,182,30)" fg:x="76451" fg:w="24"/><text x="34.5668%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.01%)</title><rect x="34.3168%" y="133" width="0.0108%" height="15" fill="rgb(248,8,30)" fg:x="76451" fg:w="24"/><text x="34.5668%" y="143.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.01%)</title><rect x="34.3159%" y="197" width="0.0121%" height="15" fill="rgb(237,120,30)" fg:x="76449" fg:w="27"/><text x="34.5659%" y="207.50"></text></g><g><title>Parse::Parse (27 samples, 0.01%)</title><rect x="34.3159%" y="181" width="0.0121%" height="15" fill="rgb(221,146,34)" fg:x="76449" fg:w="27"/><text x="34.5659%" y="191.50"></text></g><g><title>Parse::do_call (31 samples, 0.01%)</title><rect x="34.3159%" y="213" width="0.0139%" height="15" fill="rgb(242,55,13)" fg:x="76449" fg:w="31"/><text x="34.5659%" y="223.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.01%)</title><rect x="34.3159%" y="293" width="0.0148%" height="15" fill="rgb(242,112,31)" fg:x="76449" fg:w="33"/><text x="34.5659%" y="303.50"></text></g><g><title>Parse::Parse (33 samples, 0.01%)</title><rect x="34.3159%" y="277" width="0.0148%" height="15" fill="rgb(249,192,27)" fg:x="76449" fg:w="33"/><text x="34.5659%" y="287.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="34.3159%" y="261" width="0.0148%" height="15" fill="rgb(208,204,44)" fg:x="76449" fg:w="33"/><text x="34.5659%" y="271.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="34.3159%" y="245" width="0.0148%" height="15" fill="rgb(208,93,54)" fg:x="76449" fg:w="33"/><text x="34.5659%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="34.3159%" y="229" width="0.0148%" height="15" fill="rgb(242,1,31)" fg:x="76449" fg:w="33"/><text x="34.5659%" y="239.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.02%)</title><rect x="34.3150%" y="389" width="0.0175%" height="15" fill="rgb(241,83,25)" fg:x="76447" fg:w="39"/><text x="34.5650%" y="399.50"></text></g><g><title>Parse::Parse (39 samples, 0.02%)</title><rect x="34.3150%" y="373" width="0.0175%" height="15" fill="rgb(205,169,50)" fg:x="76447" fg:w="39"/><text x="34.5650%" y="383.50"></text></g><g><title>Parse::do_all_blocks (39 samples, 0.02%)</title><rect x="34.3150%" y="357" width="0.0175%" height="15" fill="rgb(239,186,37)" fg:x="76447" fg:w="39"/><text x="34.5650%" y="367.50"></text></g><g><title>Parse::do_one_block (39 samples, 0.02%)</title><rect x="34.3150%" y="341" width="0.0175%" height="15" fill="rgb(205,221,10)" fg:x="76447" fg:w="39"/><text x="34.5650%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.02%)</title><rect x="34.3150%" y="325" width="0.0175%" height="15" fill="rgb(218,196,15)" fg:x="76447" fg:w="39"/><text x="34.5650%" y="335.50"></text></g><g><title>Parse::do_call (39 samples, 0.02%)</title><rect x="34.3150%" y="309" width="0.0175%" height="15" fill="rgb(218,196,35)" fg:x="76447" fg:w="39"/><text x="34.5650%" y="319.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.02%)</title><rect x="34.3150%" y="485" width="0.0189%" height="15" fill="rgb(233,63,24)" fg:x="76447" fg:w="42"/><text x="34.5650%" y="495.50"></text></g><g><title>Parse::Parse (42 samples, 0.02%)</title><rect x="34.3150%" y="469" width="0.0189%" height="15" fill="rgb(225,8,4)" fg:x="76447" fg:w="42"/><text x="34.5650%" y="479.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.02%)</title><rect x="34.3150%" y="453" width="0.0189%" height="15" fill="rgb(234,105,35)" fg:x="76447" fg:w="42"/><text x="34.5650%" y="463.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.02%)</title><rect x="34.3150%" y="437" width="0.0189%" height="15" fill="rgb(236,21,32)" fg:x="76447" fg:w="42"/><text x="34.5650%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.02%)</title><rect x="34.3150%" y="421" width="0.0189%" height="15" fill="rgb(228,109,6)" fg:x="76447" fg:w="42"/><text x="34.5650%" y="431.50"></text></g><g><title>Parse::do_call (42 samples, 0.02%)</title><rect x="34.3150%" y="405" width="0.0189%" height="15" fill="rgb(229,215,31)" fg:x="76447" fg:w="42"/><text x="34.5650%" y="415.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.02%)</title><rect x="34.3150%" y="581" width="0.0215%" height="15" fill="rgb(221,52,54)" fg:x="76447" fg:w="48"/><text x="34.5650%" y="591.50"></text></g><g><title>Parse::Parse (48 samples, 0.02%)</title><rect x="34.3150%" y="565" width="0.0215%" height="15" fill="rgb(252,129,43)" fg:x="76447" fg:w="48"/><text x="34.5650%" y="575.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.02%)</title><rect x="34.3150%" y="549" width="0.0215%" height="15" fill="rgb(248,183,27)" fg:x="76447" fg:w="48"/><text x="34.5650%" y="559.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.02%)</title><rect x="34.3150%" y="533" width="0.0215%" height="15" fill="rgb(250,0,22)" fg:x="76447" fg:w="48"/><text x="34.5650%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (48 samples, 0.02%)</title><rect x="34.3150%" y="517" width="0.0215%" height="15" fill="rgb(213,166,10)" fg:x="76447" fg:w="48"/><text x="34.5650%" y="527.50"></text></g><g><title>Parse::do_call (48 samples, 0.02%)</title><rect x="34.3150%" y="501" width="0.0215%" height="15" fill="rgb(207,163,36)" fg:x="76447" fg:w="48"/><text x="34.5650%" y="511.50"></text></g><g><title>Parse::do_call (54 samples, 0.02%)</title><rect x="34.3150%" y="597" width="0.0242%" height="15" fill="rgb(208,122,22)" fg:x="76447" fg:w="54"/><text x="34.5650%" y="607.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.03%)</title><rect x="34.3150%" y="677" width="0.0274%" height="15" fill="rgb(207,104,49)" fg:x="76447" fg:w="61"/><text x="34.5650%" y="687.50"></text></g><g><title>Parse::Parse (61 samples, 0.03%)</title><rect x="34.3150%" y="661" width="0.0274%" height="15" fill="rgb(248,211,50)" fg:x="76447" fg:w="61"/><text x="34.5650%" y="671.50"></text></g><g><title>Parse::do_all_blocks (61 samples, 0.03%)</title><rect x="34.3150%" y="645" width="0.0274%" height="15" fill="rgb(217,13,45)" fg:x="76447" fg:w="61"/><text x="34.5650%" y="655.50"></text></g><g><title>Parse::do_one_block (61 samples, 0.03%)</title><rect x="34.3150%" y="629" width="0.0274%" height="15" fill="rgb(211,216,49)" fg:x="76447" fg:w="61"/><text x="34.5650%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.03%)</title><rect x="34.3150%" y="613" width="0.0274%" height="15" fill="rgb(221,58,53)" fg:x="76447" fg:w="61"/><text x="34.5650%" y="623.50"></text></g><g><title>ParseGenerator::generate (77 samples, 0.03%)</title><rect x="34.3150%" y="773" width="0.0346%" height="15" fill="rgb(220,112,41)" fg:x="76447" fg:w="77"/><text x="34.5650%" y="783.50"></text></g><g><title>Parse::Parse (77 samples, 0.03%)</title><rect x="34.3150%" y="757" width="0.0346%" height="15" fill="rgb(236,38,28)" fg:x="76447" fg:w="77"/><text x="34.5650%" y="767.50"></text></g><g><title>Parse::do_all_blocks (77 samples, 0.03%)</title><rect x="34.3150%" y="741" width="0.0346%" height="15" fill="rgb(227,195,22)" fg:x="76447" fg:w="77"/><text x="34.5650%" y="751.50"></text></g><g><title>Parse::do_one_block (77 samples, 0.03%)</title><rect x="34.3150%" y="725" width="0.0346%" height="15" fill="rgb(214,55,33)" fg:x="76447" fg:w="77"/><text x="34.5650%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (77 samples, 0.03%)</title><rect x="34.3150%" y="709" width="0.0346%" height="15" fill="rgb(248,80,13)" fg:x="76447" fg:w="77"/><text x="34.5650%" y="719.50"></text></g><g><title>Parse::do_call (77 samples, 0.03%)</title><rect x="34.3150%" y="693" width="0.0346%" height="15" fill="rgb(238,52,6)" fg:x="76447" fg:w="77"/><text x="34.5650%" y="703.50"></text></g><g><title>ParseGenerator::generate (82 samples, 0.04%)</title><rect x="34.3150%" y="869" width="0.0368%" height="15" fill="rgb(224,198,47)" fg:x="76447" fg:w="82"/><text x="34.5650%" y="879.50"></text></g><g><title>Parse::Parse (82 samples, 0.04%)</title><rect x="34.3150%" y="853" width="0.0368%" height="15" fill="rgb(233,171,20)" fg:x="76447" fg:w="82"/><text x="34.5650%" y="863.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.04%)</title><rect x="34.3150%" y="837" width="0.0368%" height="15" fill="rgb(241,30,25)" fg:x="76447" fg:w="82"/><text x="34.5650%" y="847.50"></text></g><g><title>Parse::do_one_block (82 samples, 0.04%)</title><rect x="34.3150%" y="821" width="0.0368%" height="15" fill="rgb(207,171,38)" fg:x="76447" fg:w="82"/><text x="34.5650%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (82 samples, 0.04%)</title><rect x="34.3150%" y="805" width="0.0368%" height="15" fill="rgb(234,70,1)" fg:x="76447" fg:w="82"/><text x="34.5650%" y="815.50"></text></g><g><title>Parse::do_call (82 samples, 0.04%)</title><rect x="34.3150%" y="789" width="0.0368%" height="15" fill="rgb(232,178,18)" fg:x="76447" fg:w="82"/><text x="34.5650%" y="799.50"></text></g><g><title>Parse::do_call (87 samples, 0.04%)</title><rect x="34.3150%" y="885" width="0.0391%" height="15" fill="rgb(241,78,40)" fg:x="76447" fg:w="87"/><text x="34.5650%" y="895.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.01%)</title><rect x="34.3541%" y="261" width="0.0103%" height="15" fill="rgb(222,35,25)" fg:x="76534" fg:w="23"/><text x="34.6041%" y="271.50"></text></g><g><title>Parse::Parse (23 samples, 0.01%)</title><rect x="34.3541%" y="245" width="0.0103%" height="15" fill="rgb(207,92,16)" fg:x="76534" fg:w="23"/><text x="34.6041%" y="255.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.01%)</title><rect x="34.3541%" y="229" width="0.0103%" height="15" fill="rgb(216,59,51)" fg:x="76534" fg:w="23"/><text x="34.6041%" y="239.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.01%)</title><rect x="34.3541%" y="213" width="0.0103%" height="15" fill="rgb(213,80,28)" fg:x="76534" fg:w="23"/><text x="34.6041%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.01%)</title><rect x="34.3541%" y="197" width="0.0103%" height="15" fill="rgb(220,93,7)" fg:x="76534" fg:w="23"/><text x="34.6041%" y="207.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.01%)</title><rect x="34.3541%" y="357" width="0.0108%" height="15" fill="rgb(225,24,44)" fg:x="76534" fg:w="24"/><text x="34.6041%" y="367.50"></text></g><g><title>Parse::Parse (24 samples, 0.01%)</title><rect x="34.3541%" y="341" width="0.0108%" height="15" fill="rgb(243,74,40)" fg:x="76534" fg:w="24"/><text x="34.6041%" y="351.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.01%)</title><rect x="34.3541%" y="325" width="0.0108%" height="15" fill="rgb(228,39,7)" fg:x="76534" fg:w="24"/><text x="34.6041%" y="335.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.01%)</title><rect x="34.3541%" y="309" width="0.0108%" height="15" fill="rgb(227,79,8)" fg:x="76534" fg:w="24"/><text x="34.6041%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.01%)</title><rect x="34.3541%" y="293" width="0.0108%" height="15" fill="rgb(236,58,11)" fg:x="76534" fg:w="24"/><text x="34.6041%" y="303.50"></text></g><g><title>Parse::do_call (24 samples, 0.01%)</title><rect x="34.3541%" y="277" width="0.0108%" height="15" fill="rgb(249,63,35)" fg:x="76534" fg:w="24"/><text x="34.6041%" y="287.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="34.3541%" y="421" width="0.0144%" height="15" fill="rgb(252,114,16)" fg:x="76534" fg:w="32"/><text x="34.6041%" y="431.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="34.3541%" y="405" width="0.0144%" height="15" fill="rgb(254,151,24)" fg:x="76534" fg:w="32"/><text x="34.6041%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.01%)</title><rect x="34.3541%" y="389" width="0.0144%" height="15" fill="rgb(253,54,39)" fg:x="76534" fg:w="32"/><text x="34.6041%" y="399.50"></text></g><g><title>Parse::do_call (32 samples, 0.01%)</title><rect x="34.3541%" y="373" width="0.0144%" height="15" fill="rgb(243,25,45)" fg:x="76534" fg:w="32"/><text x="34.6041%" y="383.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.01%)</title><rect x="34.3541%" y="453" width="0.0148%" height="15" fill="rgb(234,134,9)" fg:x="76534" fg:w="33"/><text x="34.6041%" y="463.50"></text></g><g><title>Parse::Parse (33 samples, 0.01%)</title><rect x="34.3541%" y="437" width="0.0148%" height="15" fill="rgb(227,166,31)" fg:x="76534" fg:w="33"/><text x="34.6041%" y="447.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.02%)</title><rect x="34.3541%" y="549" width="0.0157%" height="15" fill="rgb(245,143,41)" fg:x="76534" fg:w="35"/><text x="34.6041%" y="559.50"></text></g><g><title>Parse::Parse (35 samples, 0.02%)</title><rect x="34.3541%" y="533" width="0.0157%" height="15" fill="rgb(238,181,32)" fg:x="76534" fg:w="35"/><text x="34.6041%" y="543.50"></text></g><g><title>Parse::do_all_blocks (35 samples, 0.02%)</title><rect x="34.3541%" y="517" width="0.0157%" height="15" fill="rgb(224,113,18)" fg:x="76534" fg:w="35"/><text x="34.6041%" y="527.50"></text></g><g><title>Parse::do_one_block (35 samples, 0.02%)</title><rect x="34.3541%" y="501" width="0.0157%" height="15" fill="rgb(240,229,28)" fg:x="76534" fg:w="35"/><text x="34.6041%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (35 samples, 0.02%)</title><rect x="34.3541%" y="485" width="0.0157%" height="15" fill="rgb(250,185,3)" fg:x="76534" fg:w="35"/><text x="34.6041%" y="495.50"></text></g><g><title>Parse::do_call (35 samples, 0.02%)</title><rect x="34.3541%" y="469" width="0.0157%" height="15" fill="rgb(212,59,25)" fg:x="76534" fg:w="35"/><text x="34.6041%" y="479.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.02%)</title><rect x="34.3541%" y="645" width="0.0184%" height="15" fill="rgb(221,87,20)" fg:x="76534" fg:w="41"/><text x="34.6041%" y="655.50"></text></g><g><title>Parse::Parse (41 samples, 0.02%)</title><rect x="34.3541%" y="629" width="0.0184%" height="15" fill="rgb(213,74,28)" fg:x="76534" fg:w="41"/><text x="34.6041%" y="639.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.02%)</title><rect x="34.3541%" y="613" width="0.0184%" height="15" fill="rgb(224,132,34)" fg:x="76534" fg:w="41"/><text x="34.6041%" y="623.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.02%)</title><rect x="34.3541%" y="597" width="0.0184%" height="15" fill="rgb(222,101,24)" fg:x="76534" fg:w="41"/><text x="34.6041%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.02%)</title><rect x="34.3541%" y="581" width="0.0184%" height="15" fill="rgb(254,142,4)" fg:x="76534" fg:w="41"/><text x="34.6041%" y="591.50"></text></g><g><title>Parse::do_call (41 samples, 0.02%)</title><rect x="34.3541%" y="565" width="0.0184%" height="15" fill="rgb(230,229,49)" fg:x="76534" fg:w="41"/><text x="34.6041%" y="575.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.02%)</title><rect x="34.3541%" y="741" width="0.0198%" height="15" fill="rgb(238,70,47)" fg:x="76534" fg:w="44"/><text x="34.6041%" y="751.50"></text></g><g><title>Parse::Parse (44 samples, 0.02%)</title><rect x="34.3541%" y="725" width="0.0198%" height="15" fill="rgb(231,160,17)" fg:x="76534" fg:w="44"/><text x="34.6041%" y="735.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.02%)</title><rect x="34.3541%" y="709" width="0.0198%" height="15" fill="rgb(218,68,53)" fg:x="76534" fg:w="44"/><text x="34.6041%" y="719.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.02%)</title><rect x="34.3541%" y="693" width="0.0198%" height="15" fill="rgb(236,111,10)" fg:x="76534" fg:w="44"/><text x="34.6041%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.02%)</title><rect x="34.3541%" y="677" width="0.0198%" height="15" fill="rgb(224,34,41)" fg:x="76534" fg:w="44"/><text x="34.6041%" y="687.50"></text></g><g><title>Parse::do_call (44 samples, 0.02%)</title><rect x="34.3541%" y="661" width="0.0198%" height="15" fill="rgb(241,118,19)" fg:x="76534" fg:w="44"/><text x="34.6041%" y="671.50"></text></g><g><title>ParseGenerator::generate (47 samples, 0.02%)</title><rect x="34.3541%" y="837" width="0.0211%" height="15" fill="rgb(238,129,25)" fg:x="76534" fg:w="47"/><text x="34.6041%" y="847.50"></text></g><g><title>Parse::Parse (47 samples, 0.02%)</title><rect x="34.3541%" y="821" width="0.0211%" height="15" fill="rgb(238,22,31)" fg:x="76534" fg:w="47"/><text x="34.6041%" y="831.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.02%)</title><rect x="34.3541%" y="805" width="0.0211%" height="15" fill="rgb(222,174,48)" fg:x="76534" fg:w="47"/><text x="34.6041%" y="815.50"></text></g><g><title>Parse::do_one_block (47 samples, 0.02%)</title><rect x="34.3541%" y="789" width="0.0211%" height="15" fill="rgb(206,152,40)" fg:x="76534" fg:w="47"/><text x="34.6041%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (47 samples, 0.02%)</title><rect x="34.3541%" y="773" width="0.0211%" height="15" fill="rgb(218,99,54)" fg:x="76534" fg:w="47"/><text x="34.6041%" y="783.50"></text></g><g><title>Parse::do_call (47 samples, 0.02%)</title><rect x="34.3541%" y="757" width="0.0211%" height="15" fill="rgb(220,174,26)" fg:x="76534" fg:w="47"/><text x="34.6041%" y="767.50"></text></g><g><title>Parse::do_one_block (50 samples, 0.02%)</title><rect x="34.3541%" y="885" width="0.0224%" height="15" fill="rgb(245,116,9)" fg:x="76534" fg:w="50"/><text x="34.6041%" y="895.50"></text></g><g><title>Parse::do_one_bytecode (50 samples, 0.02%)</title><rect x="34.3541%" y="869" width="0.0224%" height="15" fill="rgb(209,72,35)" fg:x="76534" fg:w="50"/><text x="34.6041%" y="879.50"></text></g><g><title>Parse::do_call (50 samples, 0.02%)</title><rect x="34.3541%" y="853" width="0.0224%" height="15" fill="rgb(226,126,21)" fg:x="76534" fg:w="50"/><text x="34.6041%" y="863.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.01%)</title><rect x="34.3765%" y="565" width="0.0121%" height="15" fill="rgb(227,192,1)" fg:x="76584" fg:w="27"/><text x="34.6265%" y="575.50"></text></g><g><title>Parse::Parse (27 samples, 0.01%)</title><rect x="34.3765%" y="549" width="0.0121%" height="15" fill="rgb(237,180,29)" fg:x="76584" fg:w="27"/><text x="34.6265%" y="559.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.01%)</title><rect x="34.3765%" y="533" width="0.0121%" height="15" fill="rgb(230,197,35)" fg:x="76584" fg:w="27"/><text x="34.6265%" y="543.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.01%)</title><rect x="34.3765%" y="517" width="0.0121%" height="15" fill="rgb(246,193,31)" fg:x="76584" fg:w="27"/><text x="34.6265%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.01%)</title><rect x="34.3765%" y="501" width="0.0121%" height="15" fill="rgb(241,36,4)" fg:x="76584" fg:w="27"/><text x="34.6265%" y="511.50"></text></g><g><title>Parse::do_call (27 samples, 0.01%)</title><rect x="34.3765%" y="485" width="0.0121%" height="15" fill="rgb(241,130,17)" fg:x="76584" fg:w="27"/><text x="34.6265%" y="495.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.01%)</title><rect x="34.3765%" y="661" width="0.0135%" height="15" fill="rgb(206,137,32)" fg:x="76584" fg:w="30"/><text x="34.6265%" y="671.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="34.3765%" y="645" width="0.0135%" height="15" fill="rgb(237,228,51)" fg:x="76584" fg:w="30"/><text x="34.6265%" y="655.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.01%)</title><rect x="34.3765%" y="629" width="0.0135%" height="15" fill="rgb(243,6,42)" fg:x="76584" fg:w="30"/><text x="34.6265%" y="639.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="34.3765%" y="613" width="0.0135%" height="15" fill="rgb(251,74,28)" fg:x="76584" fg:w="30"/><text x="34.6265%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.01%)</title><rect x="34.3765%" y="597" width="0.0135%" height="15" fill="rgb(218,20,49)" fg:x="76584" fg:w="30"/><text x="34.6265%" y="607.50"></text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="34.3765%" y="581" width="0.0135%" height="15" fill="rgb(238,28,14)" fg:x="76584" fg:w="30"/><text x="34.6265%" y="591.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.02%)</title><rect x="34.3765%" y="757" width="0.0153%" height="15" fill="rgb(229,40,46)" fg:x="76584" fg:w="34"/><text x="34.6265%" y="767.50"></text></g><g><title>Parse::Parse (34 samples, 0.02%)</title><rect x="34.3765%" y="741" width="0.0153%" height="15" fill="rgb(244,195,20)" fg:x="76584" fg:w="34"/><text x="34.6265%" y="751.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="34.3765%" y="725" width="0.0153%" height="15" fill="rgb(253,56,35)" fg:x="76584" fg:w="34"/><text x="34.6265%" y="735.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="34.3765%" y="709" width="0.0153%" height="15" fill="rgb(210,149,44)" fg:x="76584" fg:w="34"/><text x="34.6265%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.02%)</title><rect x="34.3765%" y="693" width="0.0153%" height="15" fill="rgb(240,135,12)" fg:x="76584" fg:w="34"/><text x="34.6265%" y="703.50"></text></g><g><title>Parse::do_call (34 samples, 0.02%)</title><rect x="34.3765%" y="677" width="0.0153%" height="15" fill="rgb(251,24,50)" fg:x="76584" fg:w="34"/><text x="34.6265%" y="687.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.02%)</title><rect x="34.3765%" y="853" width="0.0166%" height="15" fill="rgb(243,200,47)" fg:x="76584" fg:w="37"/><text x="34.6265%" y="863.50"></text></g><g><title>Parse::Parse (37 samples, 0.02%)</title><rect x="34.3765%" y="837" width="0.0166%" height="15" fill="rgb(224,166,26)" fg:x="76584" fg:w="37"/><text x="34.6265%" y="847.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.02%)</title><rect x="34.3765%" y="821" width="0.0166%" height="15" fill="rgb(233,0,47)" fg:x="76584" fg:w="37"/><text x="34.6265%" y="831.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.02%)</title><rect x="34.3765%" y="805" width="0.0166%" height="15" fill="rgb(253,80,5)" fg:x="76584" fg:w="37"/><text x="34.6265%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.02%)</title><rect x="34.3765%" y="789" width="0.0166%" height="15" fill="rgb(214,133,25)" fg:x="76584" fg:w="37"/><text x="34.6265%" y="799.50"></text></g><g><title>Parse::do_call (37 samples, 0.02%)</title><rect x="34.3765%" y="773" width="0.0166%" height="15" fill="rgb(209,27,14)" fg:x="76584" fg:w="37"/><text x="34.6265%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.02%)</title><rect x="34.3765%" y="885" width="0.0175%" height="15" fill="rgb(219,102,51)" fg:x="76584" fg:w="39"/><text x="34.6265%" y="895.50"></text></g><g><title>Parse::do_call (39 samples, 0.02%)</title><rect x="34.3765%" y="869" width="0.0175%" height="15" fill="rgb(237,18,16)" fg:x="76584" fg:w="39"/><text x="34.6265%" y="879.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.01%)</title><rect x="34.4079%" y="117" width="0.0108%" height="15" fill="rgb(241,85,17)" fg:x="76654" fg:w="24"/><text x="34.6579%" y="127.50"></text></g><g><title>Parse::Parse (24 samples, 0.01%)</title><rect x="34.4079%" y="101" width="0.0108%" height="15" fill="rgb(236,90,42)" fg:x="76654" fg:w="24"/><text x="34.6579%" y="111.50"></text></g><g><title>Parse::do_call (47 samples, 0.02%)</title><rect x="34.3999%" y="133" width="0.0211%" height="15" fill="rgb(249,57,21)" fg:x="76636" fg:w="47"/><text x="34.6499%" y="143.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.03%)</title><rect x="34.3981%" y="213" width="0.0319%" height="15" fill="rgb(243,12,36)" fg:x="76632" fg:w="71"/><text x="34.6481%" y="223.50"></text></g><g><title>Parse::Parse (71 samples, 0.03%)</title><rect x="34.3981%" y="197" width="0.0319%" height="15" fill="rgb(253,128,47)" fg:x="76632" fg:w="71"/><text x="34.6481%" y="207.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.03%)</title><rect x="34.3981%" y="181" width="0.0319%" height="15" fill="rgb(207,33,20)" fg:x="76632" fg:w="71"/><text x="34.6481%" y="191.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.03%)</title><rect x="34.3981%" y="165" width="0.0319%" height="15" fill="rgb(233,215,35)" fg:x="76632" fg:w="71"/><text x="34.6481%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.03%)</title><rect x="34.3990%" y="149" width="0.0310%" height="15" fill="rgb(249,188,52)" fg:x="76634" fg:w="69"/><text x="34.6490%" y="159.50"></text></g><g><title>Parse::do_call (83 samples, 0.04%)</title><rect x="34.3958%" y="229" width="0.0373%" height="15" fill="rgb(225,12,32)" fg:x="76627" fg:w="83"/><text x="34.6458%" y="239.50"></text></g><g><title>ParseGenerator::generate (91 samples, 0.04%)</title><rect x="34.3958%" y="309" width="0.0408%" height="15" fill="rgb(247,98,14)" fg:x="76627" fg:w="91"/><text x="34.6458%" y="319.50"></text></g><g><title>Parse::Parse (91 samples, 0.04%)</title><rect x="34.3958%" y="293" width="0.0408%" height="15" fill="rgb(247,219,48)" fg:x="76627" fg:w="91"/><text x="34.6458%" y="303.50"></text></g><g><title>Parse::do_all_blocks (91 samples, 0.04%)</title><rect x="34.3958%" y="277" width="0.0408%" height="15" fill="rgb(253,60,48)" fg:x="76627" fg:w="91"/><text x="34.6458%" y="287.50"></text></g><g><title>Parse::do_one_block (91 samples, 0.04%)</title><rect x="34.3958%" y="261" width="0.0408%" height="15" fill="rgb(245,15,52)" fg:x="76627" fg:w="91"/><text x="34.6458%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (91 samples, 0.04%)</title><rect x="34.3958%" y="245" width="0.0408%" height="15" fill="rgb(220,133,28)" fg:x="76627" fg:w="91"/><text x="34.6458%" y="255.50"></text></g><g><title>ParseGenerator::generate (105 samples, 0.05%)</title><rect x="34.3940%" y="405" width="0.0471%" height="15" fill="rgb(217,180,4)" fg:x="76623" fg:w="105"/><text x="34.6440%" y="415.50"></text></g><g><title>Parse::Parse (105 samples, 0.05%)</title><rect x="34.3940%" y="389" width="0.0471%" height="15" fill="rgb(251,24,1)" fg:x="76623" fg:w="105"/><text x="34.6440%" y="399.50"></text></g><g><title>Parse::do_all_blocks (105 samples, 0.05%)</title><rect x="34.3940%" y="373" width="0.0471%" height="15" fill="rgb(212,185,49)" fg:x="76623" fg:w="105"/><text x="34.6440%" y="383.50"></text></g><g><title>Parse::do_one_block (105 samples, 0.05%)</title><rect x="34.3940%" y="357" width="0.0471%" height="15" fill="rgb(215,175,22)" fg:x="76623" fg:w="105"/><text x="34.6440%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (105 samples, 0.05%)</title><rect x="34.3940%" y="341" width="0.0471%" height="15" fill="rgb(250,205,14)" fg:x="76623" fg:w="105"/><text x="34.6440%" y="351.50"></text></g><g><title>Parse::do_call (105 samples, 0.05%)</title><rect x="34.3940%" y="325" width="0.0471%" height="15" fill="rgb(225,211,22)" fg:x="76623" fg:w="105"/><text x="34.6440%" y="335.50"></text></g><g><title>ParseGenerator::generate (115 samples, 0.05%)</title><rect x="34.3940%" y="501" width="0.0516%" height="15" fill="rgb(251,179,42)" fg:x="76623" fg:w="115"/><text x="34.6440%" y="511.50"></text></g><g><title>Parse::Parse (115 samples, 0.05%)</title><rect x="34.3940%" y="485" width="0.0516%" height="15" fill="rgb(208,216,51)" fg:x="76623" fg:w="115"/><text x="34.6440%" y="495.50"></text></g><g><title>Parse::do_all_blocks (115 samples, 0.05%)</title><rect x="34.3940%" y="469" width="0.0516%" height="15" fill="rgb(235,36,11)" fg:x="76623" fg:w="115"/><text x="34.6440%" y="479.50"></text></g><g><title>Parse::do_one_block (115 samples, 0.05%)</title><rect x="34.3940%" y="453" width="0.0516%" height="15" fill="rgb(213,189,28)" fg:x="76623" fg:w="115"/><text x="34.6440%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (115 samples, 0.05%)</title><rect x="34.3940%" y="437" width="0.0516%" height="15" fill="rgb(227,203,42)" fg:x="76623" fg:w="115"/><text x="34.6440%" y="447.50"></text></g><g><title>Parse::do_call (115 samples, 0.05%)</title><rect x="34.3940%" y="421" width="0.0516%" height="15" fill="rgb(244,72,36)" fg:x="76623" fg:w="115"/><text x="34.6440%" y="431.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.01%)</title><rect x="34.4456%" y="485" width="0.0108%" height="15" fill="rgb(213,53,17)" fg:x="76738" fg:w="24"/><text x="34.6956%" y="495.50"></text></g><g><title>Parse::Parse (24 samples, 0.01%)</title><rect x="34.4456%" y="469" width="0.0108%" height="15" fill="rgb(207,167,3)" fg:x="76738" fg:w="24"/><text x="34.6956%" y="479.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.01%)</title><rect x="34.4456%" y="453" width="0.0108%" height="15" fill="rgb(216,98,30)" fg:x="76738" fg:w="24"/><text x="34.6956%" y="463.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.01%)</title><rect x="34.4456%" y="437" width="0.0108%" height="15" fill="rgb(236,123,15)" fg:x="76738" fg:w="24"/><text x="34.6956%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.01%)</title><rect x="34.4456%" y="421" width="0.0108%" height="15" fill="rgb(248,81,50)" fg:x="76738" fg:w="24"/><text x="34.6956%" y="431.50"></text></g><g><title>Parse::do_call (24 samples, 0.01%)</title><rect x="34.4456%" y="405" width="0.0108%" height="15" fill="rgb(214,120,4)" fg:x="76738" fg:w="24"/><text x="34.6956%" y="415.50"></text></g><g><title>ParseGenerator::generate (141 samples, 0.06%)</title><rect x="34.3940%" y="597" width="0.0633%" height="15" fill="rgb(208,179,34)" fg:x="76623" fg:w="141"/><text x="34.6440%" y="607.50"></text></g><g><title>Parse::Parse (141 samples, 0.06%)</title><rect x="34.3940%" y="581" width="0.0633%" height="15" fill="rgb(227,140,7)" fg:x="76623" fg:w="141"/><text x="34.6440%" y="591.50"></text></g><g><title>Parse::do_all_blocks (141 samples, 0.06%)</title><rect x="34.3940%" y="565" width="0.0633%" height="15" fill="rgb(214,22,6)" fg:x="76623" fg:w="141"/><text x="34.6440%" y="575.50"></text></g><g><title>Parse::do_one_block (141 samples, 0.06%)</title><rect x="34.3940%" y="549" width="0.0633%" height="15" fill="rgb(207,137,27)" fg:x="76623" fg:w="141"/><text x="34.6440%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (141 samples, 0.06%)</title><rect x="34.3940%" y="533" width="0.0633%" height="15" fill="rgb(210,8,46)" fg:x="76623" fg:w="141"/><text x="34.6440%" y="543.50"></text></g><g><title>Parse::do_call (141 samples, 0.06%)</title><rect x="34.3940%" y="517" width="0.0633%" height="15" fill="rgb(240,16,54)" fg:x="76623" fg:w="141"/><text x="34.6440%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (26 samples, 0.01%)</title><rect x="34.4456%" y="501" width="0.0117%" height="15" fill="rgb(211,209,29)" fg:x="76738" fg:w="26"/><text x="34.6956%" y="511.50"></text></g><g><title>ParseGenerator::generate (167 samples, 0.07%)</title><rect x="34.3940%" y="693" width="0.0750%" height="15" fill="rgb(226,228,24)" fg:x="76623" fg:w="167"/><text x="34.6440%" y="703.50"></text></g><g><title>Parse::Parse (167 samples, 0.07%)</title><rect x="34.3940%" y="677" width="0.0750%" height="15" fill="rgb(222,84,9)" fg:x="76623" fg:w="167"/><text x="34.6440%" y="687.50"></text></g><g><title>Parse::do_all_blocks (167 samples, 0.07%)</title><rect x="34.3940%" y="661" width="0.0750%" height="15" fill="rgb(234,203,30)" fg:x="76623" fg:w="167"/><text x="34.6440%" y="671.50"></text></g><g><title>Parse::do_one_block (167 samples, 0.07%)</title><rect x="34.3940%" y="645" width="0.0750%" height="15" fill="rgb(238,109,14)" fg:x="76623" fg:w="167"/><text x="34.6440%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (167 samples, 0.07%)</title><rect x="34.3940%" y="629" width="0.0750%" height="15" fill="rgb(233,206,34)" fg:x="76623" fg:w="167"/><text x="34.6440%" y="639.50"></text></g><g><title>Parse::do_call (167 samples, 0.07%)</title><rect x="34.3940%" y="613" width="0.0750%" height="15" fill="rgb(220,167,47)" fg:x="76623" fg:w="167"/><text x="34.6440%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (26 samples, 0.01%)</title><rect x="34.4573%" y="597" width="0.0117%" height="15" fill="rgb(238,105,10)" fg:x="76764" fg:w="26"/><text x="34.7073%" y="607.50"></text></g><g><title>ParseGenerator::generate (190 samples, 0.09%)</title><rect x="34.3940%" y="789" width="0.0853%" height="15" fill="rgb(213,227,17)" fg:x="76623" fg:w="190"/><text x="34.6440%" y="799.50"></text></g><g><title>Parse::Parse (190 samples, 0.09%)</title><rect x="34.3940%" y="773" width="0.0853%" height="15" fill="rgb(217,132,38)" fg:x="76623" fg:w="190"/><text x="34.6440%" y="783.50"></text></g><g><title>Parse::do_all_blocks (190 samples, 0.09%)</title><rect x="34.3940%" y="757" width="0.0853%" height="15" fill="rgb(242,146,4)" fg:x="76623" fg:w="190"/><text x="34.6440%" y="767.50"></text></g><g><title>Parse::do_one_block (190 samples, 0.09%)</title><rect x="34.3940%" y="741" width="0.0853%" height="15" fill="rgb(212,61,9)" fg:x="76623" fg:w="190"/><text x="34.6440%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (190 samples, 0.09%)</title><rect x="34.3940%" y="725" width="0.0853%" height="15" fill="rgb(247,126,22)" fg:x="76623" fg:w="190"/><text x="34.6440%" y="735.50"></text></g><g><title>Parse::do_call (190 samples, 0.09%)</title><rect x="34.3940%" y="709" width="0.0853%" height="15" fill="rgb(220,196,2)" fg:x="76623" fg:w="190"/><text x="34.6440%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (23 samples, 0.01%)</title><rect x="34.4690%" y="693" width="0.0103%" height="15" fill="rgb(208,46,4)" fg:x="76790" fg:w="23"/><text x="34.7190%" y="703.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.01%)</title><rect x="34.4793%" y="677" width="0.0103%" height="15" fill="rgb(252,104,46)" fg:x="76813" fg:w="23"/><text x="34.7293%" y="687.50"></text></g><g><title>Parse::Parse (23 samples, 0.01%)</title><rect x="34.4793%" y="661" width="0.0103%" height="15" fill="rgb(237,152,48)" fg:x="76813" fg:w="23"/><text x="34.7293%" y="671.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.01%)</title><rect x="34.4793%" y="645" width="0.0103%" height="15" fill="rgb(221,59,37)" fg:x="76813" fg:w="23"/><text x="34.7293%" y="655.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.01%)</title><rect x="34.4793%" y="629" width="0.0103%" height="15" fill="rgb(209,202,51)" fg:x="76813" fg:w="23"/><text x="34.7293%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.01%)</title><rect x="34.4793%" y="613" width="0.0103%" height="15" fill="rgb(228,81,30)" fg:x="76813" fg:w="23"/><text x="34.7293%" y="623.50"></text></g><g><title>Parse::do_call (23 samples, 0.01%)</title><rect x="34.4793%" y="597" width="0.0103%" height="15" fill="rgb(227,42,39)" fg:x="76813" fg:w="23"/><text x="34.7293%" y="607.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.01%)</title><rect x="34.4793%" y="773" width="0.0108%" height="15" fill="rgb(221,26,2)" fg:x="76813" fg:w="24"/><text x="34.7293%" y="783.50"></text></g><g><title>Parse::Parse (24 samples, 0.01%)</title><rect x="34.4793%" y="757" width="0.0108%" height="15" fill="rgb(254,61,31)" fg:x="76813" fg:w="24"/><text x="34.7293%" y="767.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.01%)</title><rect x="34.4793%" y="741" width="0.0108%" height="15" fill="rgb(222,173,38)" fg:x="76813" fg:w="24"/><text x="34.7293%" y="751.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.01%)</title><rect x="34.4793%" y="725" width="0.0108%" height="15" fill="rgb(218,50,12)" fg:x="76813" fg:w="24"/><text x="34.7293%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.01%)</title><rect x="34.4793%" y="709" width="0.0108%" height="15" fill="rgb(223,88,40)" fg:x="76813" fg:w="24"/><text x="34.7293%" y="719.50"></text></g><g><title>Parse::do_call (24 samples, 0.01%)</title><rect x="34.4793%" y="693" width="0.0108%" height="15" fill="rgb(237,54,19)" fg:x="76813" fg:w="24"/><text x="34.7293%" y="703.50"></text></g><g><title>ParseGenerator::generate (223 samples, 0.10%)</title><rect x="34.3940%" y="885" width="0.1001%" height="15" fill="rgb(251,129,25)" fg:x="76623" fg:w="223"/><text x="34.6440%" y="895.50"></text></g><g><title>Parse::Parse (223 samples, 0.10%)</title><rect x="34.3940%" y="869" width="0.1001%" height="15" fill="rgb(238,97,19)" fg:x="76623" fg:w="223"/><text x="34.6440%" y="879.50"></text></g><g><title>Parse::do_all_blocks (223 samples, 0.10%)</title><rect x="34.3940%" y="853" width="0.1001%" height="15" fill="rgb(240,169,18)" fg:x="76623" fg:w="223"/><text x="34.6440%" y="863.50"></text></g><g><title>Parse::do_one_block (223 samples, 0.10%)</title><rect x="34.3940%" y="837" width="0.1001%" height="15" fill="rgb(230,187,49)" fg:x="76623" fg:w="223"/><text x="34.6440%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (223 samples, 0.10%)</title><rect x="34.3940%" y="821" width="0.1001%" height="15" fill="rgb(209,44,26)" fg:x="76623" fg:w="223"/><text x="34.6440%" y="831.50"></text></g><g><title>Parse::do_call (223 samples, 0.10%)</title><rect x="34.3940%" y="805" width="0.1001%" height="15" fill="rgb(244,0,6)" fg:x="76623" fg:w="223"/><text x="34.6440%" y="815.50"></text></g><g><title>PredictedCallGenerator::generate (33 samples, 0.01%)</title><rect x="34.4793%" y="789" width="0.0148%" height="15" fill="rgb(248,18,21)" fg:x="76813" fg:w="33"/><text x="34.7293%" y="799.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.01%)</title><rect x="34.5166%" y="757" width="0.0112%" height="15" fill="rgb(245,180,19)" fg:x="76896" fg:w="25"/><text x="34.7666%" y="767.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.02%)</title><rect x="34.5130%" y="789" width="0.0184%" height="15" fill="rgb(252,118,36)" fg:x="76888" fg:w="41"/><text x="34.7630%" y="799.50"></text></g><g><title>Parse::Parse (41 samples, 0.02%)</title><rect x="34.5130%" y="773" width="0.0184%" height="15" fill="rgb(210,224,19)" fg:x="76888" fg:w="41"/><text x="34.7630%" y="783.50"></text></g><g><title>Thread::call_run (68 samples, 0.03%)</title><rect x="34.5094%" y="885" width="0.0305%" height="15" fill="rgb(218,30,24)" fg:x="76880" fg:w="68"/><text x="34.7594%" y="895.50"></text></g><g><title>JavaThread::thread_main_inner (68 samples, 0.03%)</title><rect x="34.5094%" y="869" width="0.0305%" height="15" fill="rgb(219,75,50)" fg:x="76880" fg:w="68"/><text x="34.7594%" y="879.50"></text></g><g><title>CompileBroker::compiler_thread_loop (68 samples, 0.03%)</title><rect x="34.5094%" y="853" width="0.0305%" height="15" fill="rgb(234,72,50)" fg:x="76880" fg:w="68"/><text x="34.7594%" y="863.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (68 samples, 0.03%)</title><rect x="34.5094%" y="837" width="0.0305%" height="15" fill="rgb(219,100,48)" fg:x="76880" fg:w="68"/><text x="34.7594%" y="847.50"></text></g><g><title>C2Compiler::compile_method (68 samples, 0.03%)</title><rect x="34.5094%" y="821" width="0.0305%" height="15" fill="rgb(253,5,41)" fg:x="76880" fg:w="68"/><text x="34.7594%" y="831.50"></text></g><g><title>Compile::Compile (68 samples, 0.03%)</title><rect x="34.5094%" y="805" width="0.0305%" height="15" fill="rgb(247,181,11)" fg:x="76880" fg:w="68"/><text x="34.7594%" y="815.50"></text></g><g><title>_dl_update_slotinfo (39 samples, 0.02%)</title><rect x="34.5516%" y="885" width="0.0175%" height="15" fill="rgb(222,223,25)" fg:x="76974" fg:w="39"/><text x="34.8016%" y="895.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.01%)</title><rect x="34.5861%" y="757" width="0.0121%" height="15" fill="rgb(214,198,28)" fg:x="77051" fg:w="27"/><text x="34.8361%" y="767.50"></text></g><g><title>Parse::Parse (27 samples, 0.01%)</title><rect x="34.5861%" y="741" width="0.0121%" height="15" fill="rgb(230,46,43)" fg:x="77051" fg:w="27"/><text x="34.8361%" y="751.50"></text></g><g><title>start_thread (60 samples, 0.03%)</title><rect x="34.5763%" y="885" width="0.0269%" height="15" fill="rgb(233,65,53)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="895.50"></text></g><g><title>thread_native_entry (60 samples, 0.03%)</title><rect x="34.5763%" y="869" width="0.0269%" height="15" fill="rgb(221,121,27)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="879.50"></text></g><g><title>Thread::call_run (60 samples, 0.03%)</title><rect x="34.5763%" y="853" width="0.0269%" height="15" fill="rgb(247,70,47)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (60 samples, 0.03%)</title><rect x="34.5763%" y="837" width="0.0269%" height="15" fill="rgb(228,85,35)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="847.50"></text></g><g><title>CompileBroker::compiler_thread_loop (60 samples, 0.03%)</title><rect x="34.5763%" y="821" width="0.0269%" height="15" fill="rgb(209,50,18)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (60 samples, 0.03%)</title><rect x="34.5763%" y="805" width="0.0269%" height="15" fill="rgb(250,19,35)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="815.50"></text></g><g><title>C2Compiler::compile_method (60 samples, 0.03%)</title><rect x="34.5763%" y="789" width="0.0269%" height="15" fill="rgb(253,107,29)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="799.50"></text></g><g><title>Compile::Compile (60 samples, 0.03%)</title><rect x="34.5763%" y="773" width="0.0269%" height="15" fill="rgb(252,179,29)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="783.50"></text></g><g><title>[unknown] (61,367 samples, 27.55%)</title><rect x="7.0644%" y="901" width="27.5460%" height="15" fill="rgb(238,194,6)" fg:x="15738" fg:w="61367"/><text x="7.3144%" y="911.50">[unknown]</text></g><g><title>Dict::Insert (51 samples, 0.02%)</title><rect x="34.6611%" y="725" width="0.0229%" height="15" fill="rgb(238,164,29)" fg:x="77218" fg:w="51"/><text x="34.9111%" y="735.50"></text></g><g><title>Type::Initialize (69 samples, 0.03%)</title><rect x="34.6607%" y="741" width="0.0310%" height="15" fill="rgb(224,25,9)" fg:x="77217" fg:w="69"/><text x="34.9107%" y="751.50"></text></g><g><title>CompileWrapper::CompileWrapper (74 samples, 0.03%)</title><rect x="34.6589%" y="757" width="0.0332%" height="15" fill="rgb(244,153,23)" fg:x="77213" fg:w="74"/><text x="34.9089%" y="767.50"></text></g><g><title>Compile::identify_useful_nodes (154 samples, 0.07%)</title><rect x="34.7136%" y="741" width="0.0691%" height="15" fill="rgb(212,203,14)" fg:x="77335" fg:w="154"/><text x="34.9636%" y="751.50"></text></g><g><title>Compile::remove_useless_nodes (176 samples, 0.08%)</title><rect x="34.7827%" y="741" width="0.0790%" height="15" fill="rgb(220,164,20)" fg:x="77489" fg:w="176"/><text x="35.0327%" y="751.50"></text></g><g><title>Compile::update_dead_node_list (27 samples, 0.01%)</title><rect x="34.8617%" y="741" width="0.0121%" height="15" fill="rgb(222,203,48)" fg:x="77665" fg:w="27"/><text x="35.1117%" y="751.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (415 samples, 0.19%)</title><rect x="34.6970%" y="757" width="0.1863%" height="15" fill="rgb(215,159,22)" fg:x="77298" fg:w="415"/><text x="34.9470%" y="767.50"></text></g><g><title>C2Compiler::compile_method (635 samples, 0.29%)</title><rect x="34.6212%" y="789" width="0.2850%" height="15" fill="rgb(216,183,47)" fg:x="77129" fg:w="635"/><text x="34.8712%" y="799.50"></text></g><g><title>Compile::Compile (631 samples, 0.28%)</title><rect x="34.6229%" y="773" width="0.2832%" height="15" fill="rgb(229,195,25)" fg:x="77133" fg:w="631"/><text x="34.8729%" y="783.50"></text></g><g><title>CompileTask::print (24 samples, 0.01%)</title><rect x="34.9188%" y="789" width="0.0108%" height="15" fill="rgb(224,132,51)" fg:x="77792" fg:w="24"/><text x="35.1688%" y="799.50"></text></g><g><title>ciEnv::get_method_from_handle (27 samples, 0.01%)</title><rect x="34.9381%" y="789" width="0.0121%" height="15" fill="rgb(240,63,7)" fg:x="77835" fg:w="27"/><text x="35.1881%" y="799.50"></text></g><g><title>ciObjectFactory::get_metadata (27 samples, 0.01%)</title><rect x="34.9381%" y="773" width="0.0121%" height="15" fill="rgb(249,182,41)" fg:x="77835" fg:w="27"/><text x="35.1881%" y="783.50"></text></g><g><title>ciObjectFactory::create_new_metadata (26 samples, 0.01%)</title><rect x="34.9385%" y="757" width="0.0117%" height="15" fill="rgb(243,47,26)" fg:x="77836" fg:w="26"/><text x="35.1885%" y="767.50"></text></g><g><title>ciEnv::~ciEnv (24 samples, 0.01%)</title><rect x="34.9502%" y="789" width="0.0108%" height="15" fill="rgb(233,48,2)" fg:x="77862" fg:w="24"/><text x="35.2002%" y="799.50"></text></g><g><title>ciObjectFactory::remove_symbols (23 samples, 0.01%)</title><rect x="34.9506%" y="773" width="0.0103%" height="15" fill="rgb(244,165,34)" fg:x="77863" fg:w="23"/><text x="35.2006%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (762 samples, 0.34%)</title><rect x="34.6194%" y="805" width="0.3420%" height="15" fill="rgb(207,89,7)" fg:x="77125" fg:w="762"/><text x="34.8694%" y="815.50"></text></g><g><title>__pthread_cond_signal (34 samples, 0.02%)</title><rect x="34.9771%" y="757" width="0.0153%" height="15" fill="rgb(244,117,36)" fg:x="77922" fg:w="34"/><text x="35.2271%" y="767.50"></text></g><g><title>futex_wake (34 samples, 0.02%)</title><rect x="34.9771%" y="741" width="0.0153%" height="15" fill="rgb(226,144,34)" fg:x="77922" fg:w="34"/><text x="35.2271%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="34.9771%" y="725" width="0.0153%" height="15" fill="rgb(213,23,19)" fg:x="77922" fg:w="34"/><text x="35.2271%" y="735.50"></text></g><g><title>do_syscall_64 (33 samples, 0.01%)</title><rect x="34.9776%" y="709" width="0.0148%" height="15" fill="rgb(217,75,12)" fg:x="77923" fg:w="33"/><text x="35.2276%" y="719.50"></text></g><g><title>__x64_sys_futex (33 samples, 0.01%)</title><rect x="34.9776%" y="693" width="0.0148%" height="15" fill="rgb(224,159,17)" fg:x="77923" fg:w="33"/><text x="35.2276%" y="703.50"></text></g><g><title>do_futex (33 samples, 0.01%)</title><rect x="34.9776%" y="677" width="0.0148%" height="15" fill="rgb(217,118,1)" fg:x="77923" fg:w="33"/><text x="35.2276%" y="687.50"></text></g><g><title>futex_wake (33 samples, 0.01%)</title><rect x="34.9776%" y="661" width="0.0148%" height="15" fill="rgb(232,180,48)" fg:x="77923" fg:w="33"/><text x="35.2276%" y="671.50"></text></g><g><title>wake_up_q (28 samples, 0.01%)</title><rect x="34.9798%" y="645" width="0.0126%" height="15" fill="rgb(230,27,33)" fg:x="77928" fg:w="28"/><text x="35.2298%" y="655.50"></text></g><g><title>try_to_wake_up (28 samples, 0.01%)</title><rect x="34.9798%" y="629" width="0.0126%" height="15" fill="rgb(205,31,21)" fg:x="77928" fg:w="28"/><text x="35.2298%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (267 samples, 0.12%)</title><rect x="35.0153%" y="549" width="0.1198%" height="15" fill="rgb(253,59,4)" fg:x="78007" fg:w="267"/><text x="35.2653%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (261 samples, 0.12%)</title><rect x="35.0180%" y="533" width="0.1172%" height="15" fill="rgb(224,201,9)" fg:x="78013" fg:w="261"/><text x="35.2680%" y="543.50"></text></g><g><title>native_write_msr (261 samples, 0.12%)</title><rect x="35.0180%" y="517" width="0.1172%" height="15" fill="rgb(229,206,30)" fg:x="78013" fg:w="261"/><text x="35.2680%" y="527.50"></text></g><g><title>finish_task_switch (280 samples, 0.13%)</title><rect x="35.0139%" y="565" width="0.1257%" height="15" fill="rgb(212,67,47)" fg:x="78004" fg:w="280"/><text x="35.2639%" y="575.50"></text></g><g><title>futex_wait_queue_me (323 samples, 0.14%)</title><rect x="35.0013%" y="613" width="0.1450%" height="15" fill="rgb(211,96,50)" fg:x="77976" fg:w="323"/><text x="35.2513%" y="623.50"></text></g><g><title>schedule (317 samples, 0.14%)</title><rect x="35.0040%" y="597" width="0.1423%" height="15" fill="rgb(252,114,18)" fg:x="77982" fg:w="317"/><text x="35.2540%" y="607.50"></text></g><g><title>__schedule (314 samples, 0.14%)</title><rect x="35.0054%" y="581" width="0.1409%" height="15" fill="rgb(223,58,37)" fg:x="77985" fg:w="314"/><text x="35.2554%" y="591.50"></text></g><g><title>do_futex (343 samples, 0.15%)</title><rect x="34.9987%" y="645" width="0.1540%" height="15" fill="rgb(237,70,4)" fg:x="77970" fg:w="343"/><text x="35.2487%" y="655.50"></text></g><g><title>futex_wait (341 samples, 0.15%)</title><rect x="34.9996%" y="629" width="0.1531%" height="15" fill="rgb(244,85,46)" fg:x="77972" fg:w="341"/><text x="35.2496%" y="639.50"></text></g><g><title>do_syscall_64 (345 samples, 0.15%)</title><rect x="34.9982%" y="677" width="0.1549%" height="15" fill="rgb(223,39,52)" fg:x="77969" fg:w="345"/><text x="35.2482%" y="687.50"></text></g><g><title>__x64_sys_futex (344 samples, 0.15%)</title><rect x="34.9987%" y="661" width="0.1544%" height="15" fill="rgb(218,200,14)" fg:x="77970" fg:w="344"/><text x="35.2487%" y="671.50"></text></g><g><title>__pthread_cond_timedwait (362 samples, 0.16%)</title><rect x="34.9937%" y="741" width="0.1625%" height="15" fill="rgb(208,171,16)" fg:x="77959" fg:w="362"/><text x="35.2437%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (361 samples, 0.16%)</title><rect x="34.9942%" y="725" width="0.1620%" height="15" fill="rgb(234,200,18)" fg:x="77960" fg:w="361"/><text x="35.2442%" y="735.50"></text></g><g><title>futex_abstimed_wait_cancelable (359 samples, 0.16%)</title><rect x="34.9951%" y="709" width="0.1611%" height="15" fill="rgb(228,45,11)" fg:x="77962" fg:w="359"/><text x="35.2451%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (353 samples, 0.16%)</title><rect x="34.9978%" y="693" width="0.1585%" height="15" fill="rgb(237,182,11)" fg:x="77968" fg:w="353"/><text x="35.2478%" y="703.50"></text></g><g><title>Monitor::IWait (412 samples, 0.18%)</title><rect x="34.9744%" y="773" width="0.1849%" height="15" fill="rgb(241,175,49)" fg:x="77916" fg:w="412"/><text x="35.2244%" y="783.50"></text></g><g><title>os::PlatformEvent::park (372 samples, 0.17%)</title><rect x="34.9924%" y="757" width="0.1670%" height="15" fill="rgb(247,38,35)" fg:x="77956" fg:w="372"/><text x="35.2424%" y="767.50"></text></g><g><title>Monitor::wait (421 samples, 0.19%)</title><rect x="34.9717%" y="789" width="0.1890%" height="15" fill="rgb(228,39,49)" fg:x="77910" fg:w="421"/><text x="35.2217%" y="799.50"></text></g><g><title>CompileQueue::get (465 samples, 0.21%)</title><rect x="34.9668%" y="805" width="0.2087%" height="15" fill="rgb(226,101,26)" fg:x="77899" fg:w="465"/><text x="35.2168%" y="815.50"></text></g><g><title>__GI___clone (1,251 samples, 0.56%)</title><rect x="34.6153%" y="901" width="0.5615%" height="15" fill="rgb(206,141,19)" fg:x="77116" fg:w="1251"/><text x="34.8653%" y="911.50"></text></g><g><title>start_thread (1,245 samples, 0.56%)</title><rect x="34.6180%" y="885" width="0.5588%" height="15" fill="rgb(211,200,13)" fg:x="77122" fg:w="1245"/><text x="34.8680%" y="895.50"></text></g><g><title>thread_native_entry (1,245 samples, 0.56%)</title><rect x="34.6180%" y="869" width="0.5588%" height="15" fill="rgb(241,121,6)" fg:x="77122" fg:w="1245"/><text x="34.8680%" y="879.50"></text></g><g><title>Thread::call_run (1,245 samples, 0.56%)</title><rect x="34.6180%" y="853" width="0.5588%" height="15" fill="rgb(234,221,29)" fg:x="77122" fg:w="1245"/><text x="34.8680%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (1,244 samples, 0.56%)</title><rect x="34.6185%" y="837" width="0.5584%" height="15" fill="rgb(229,136,5)" fg:x="77123" fg:w="1244"/><text x="34.8685%" y="847.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,244 samples, 0.56%)</title><rect x="34.6185%" y="821" width="0.5584%" height="15" fill="rgb(238,36,11)" fg:x="77123" fg:w="1244"/><text x="34.8685%" y="831.50"></text></g><g><title>asm_exc_page_fault (71 samples, 0.03%)</title><rect x="35.1831%" y="901" width="0.0319%" height="15" fill="rgb(251,55,41)" fg:x="78381" fg:w="71"/><text x="35.4331%" y="911.50"></text></g><g><title>C2_CompilerThre (66,241 samples, 29.73%)</title><rect x="5.5054%" y="917" width="29.7338%" height="15" fill="rgb(242,34,40)" fg:x="12265" fg:w="66241"/><text x="5.7554%" y="927.50">C2_CompilerThre</text></g><g><title>__perf_event_task_sched_in (41 samples, 0.02%)</title><rect x="35.2684%" y="661" width="0.0184%" height="15" fill="rgb(215,42,17)" fg:x="78571" fg:w="41"/><text x="35.5184%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.02%)</title><rect x="35.2693%" y="645" width="0.0175%" height="15" fill="rgb(207,44,46)" fg:x="78573" fg:w="39"/><text x="35.5193%" y="655.50"></text></g><g><title>native_write_msr (39 samples, 0.02%)</title><rect x="35.2693%" y="629" width="0.0175%" height="15" fill="rgb(211,206,28)" fg:x="78573" fg:w="39"/><text x="35.5193%" y="639.50"></text></g><g><title>finish_task_switch (43 samples, 0.02%)</title><rect x="35.2680%" y="677" width="0.0193%" height="15" fill="rgb(237,167,16)" fg:x="78570" fg:w="43"/><text x="35.5180%" y="687.50"></text></g><g><title>do_syscall_64 (52 samples, 0.02%)</title><rect x="35.2648%" y="789" width="0.0233%" height="15" fill="rgb(233,66,6)" fg:x="78563" fg:w="52"/><text x="35.5148%" y="799.50"></text></g><g><title>__x64_sys_futex (52 samples, 0.02%)</title><rect x="35.2648%" y="773" width="0.0233%" height="15" fill="rgb(246,123,29)" fg:x="78563" fg:w="52"/><text x="35.5148%" y="783.50"></text></g><g><title>do_futex (52 samples, 0.02%)</title><rect x="35.2648%" y="757" width="0.0233%" height="15" fill="rgb(209,62,40)" fg:x="78563" fg:w="52"/><text x="35.5148%" y="767.50"></text></g><g><title>futex_wait (52 samples, 0.02%)</title><rect x="35.2648%" y="741" width="0.0233%" height="15" fill="rgb(218,4,25)" fg:x="78563" fg:w="52"/><text x="35.5148%" y="751.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.02%)</title><rect x="35.2657%" y="725" width="0.0224%" height="15" fill="rgb(253,91,49)" fg:x="78565" fg:w="50"/><text x="35.5157%" y="735.50"></text></g><g><title>schedule (48 samples, 0.02%)</title><rect x="35.2666%" y="709" width="0.0215%" height="15" fill="rgb(228,155,29)" fg:x="78567" fg:w="48"/><text x="35.5166%" y="719.50"></text></g><g><title>__schedule (48 samples, 0.02%)</title><rect x="35.2666%" y="693" width="0.0215%" height="15" fill="rgb(243,57,37)" fg:x="78567" fg:w="48"/><text x="35.5166%" y="703.50"></text></g><g><title>Unsafe_Park (56 samples, 0.03%)</title><rect x="35.2635%" y="885" width="0.0251%" height="15" fill="rgb(244,167,17)" fg:x="78560" fg:w="56"/><text x="35.5135%" y="895.50"></text></g><g><title>Parker::park (56 samples, 0.03%)</title><rect x="35.2635%" y="869" width="0.0251%" height="15" fill="rgb(207,181,38)" fg:x="78560" fg:w="56"/><text x="35.5135%" y="879.50"></text></g><g><title>__pthread_cond_timedwait (56 samples, 0.03%)</title><rect x="35.2635%" y="853" width="0.0251%" height="15" fill="rgb(211,8,23)" fg:x="78560" fg:w="56"/><text x="35.5135%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (56 samples, 0.03%)</title><rect x="35.2635%" y="837" width="0.0251%" height="15" fill="rgb(235,11,44)" fg:x="78560" fg:w="56"/><text x="35.5135%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (54 samples, 0.02%)</title><rect x="35.2644%" y="821" width="0.0242%" height="15" fill="rgb(248,18,52)" fg:x="78562" fg:w="54"/><text x="35.5144%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.02%)</title><rect x="35.2648%" y="805" width="0.0238%" height="15" fill="rgb(208,4,7)" fg:x="78563" fg:w="53"/><text x="35.5148%" y="815.50"></text></g><g><title>[perf-945576.map] (111 samples, 0.05%)</title><rect x="35.2410%" y="901" width="0.0498%" height="15" fill="rgb(240,17,39)" fg:x="78510" fg:w="111"/><text x="35.4910%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.03%)</title><rect x="35.2936%" y="677" width="0.0265%" height="15" fill="rgb(207,170,3)" fg:x="78627" fg:w="59"/><text x="35.5436%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.03%)</title><rect x="35.2936%" y="661" width="0.0265%" height="15" fill="rgb(236,100,52)" fg:x="78627" fg:w="59"/><text x="35.5436%" y="671.50"></text></g><g><title>native_write_msr (59 samples, 0.03%)</title><rect x="35.2936%" y="645" width="0.0265%" height="15" fill="rgb(246,78,51)" fg:x="78627" fg:w="59"/><text x="35.5436%" y="655.50"></text></g><g><title>finish_task_switch (63 samples, 0.03%)</title><rect x="35.2927%" y="693" width="0.0283%" height="15" fill="rgb(211,17,15)" fg:x="78625" fg:w="63"/><text x="35.5427%" y="703.50"></text></g><g><title>new_sync_read (68 samples, 0.03%)</title><rect x="35.2922%" y="757" width="0.0305%" height="15" fill="rgb(209,59,46)" fg:x="78624" fg:w="68"/><text x="35.5422%" y="767.50"></text></g><g><title>pipe_read (68 samples, 0.03%)</title><rect x="35.2922%" y="741" width="0.0305%" height="15" fill="rgb(210,92,25)" fg:x="78624" fg:w="68"/><text x="35.5422%" y="751.50"></text></g><g><title>schedule (68 samples, 0.03%)</title><rect x="35.2922%" y="725" width="0.0305%" height="15" fill="rgb(238,174,52)" fg:x="78624" fg:w="68"/><text x="35.5422%" y="735.50"></text></g><g><title>__schedule (68 samples, 0.03%)</title><rect x="35.2922%" y="709" width="0.0305%" height="15" fill="rgb(230,73,7)" fg:x="78624" fg:w="68"/><text x="35.5422%" y="719.50"></text></g><g><title>do_syscall_64 (70 samples, 0.03%)</title><rect x="35.2918%" y="805" width="0.0314%" height="15" fill="rgb(243,124,40)" fg:x="78623" fg:w="70"/><text x="35.5418%" y="815.50"></text></g><g><title>ksys_read (69 samples, 0.03%)</title><rect x="35.2922%" y="789" width="0.0310%" height="15" fill="rgb(244,170,11)" fg:x="78624" fg:w="69"/><text x="35.5422%" y="799.50"></text></g><g><title>vfs_read (69 samples, 0.03%)</title><rect x="35.2922%" y="773" width="0.0310%" height="15" fill="rgb(207,114,54)" fg:x="78624" fg:w="69"/><text x="35.5422%" y="783.50"></text></g><g><title>[unknown] (74 samples, 0.03%)</title><rect x="35.2909%" y="901" width="0.0332%" height="15" fill="rgb(205,42,20)" fg:x="78621" fg:w="74"/><text x="35.5409%" y="911.50"></text></g><g><title>readBytes (73 samples, 0.03%)</title><rect x="35.2913%" y="885" width="0.0328%" height="15" fill="rgb(230,30,28)" fg:x="78622" fg:w="73"/><text x="35.5413%" y="895.50"></text></g><g><title>handleRead (73 samples, 0.03%)</title><rect x="35.2913%" y="869" width="0.0328%" height="15" fill="rgb(205,73,54)" fg:x="78622" fg:w="73"/><text x="35.5413%" y="879.50"></text></g><g><title>__libc_read (73 samples, 0.03%)</title><rect x="35.2913%" y="853" width="0.0328%" height="15" fill="rgb(254,227,23)" fg:x="78622" fg:w="73"/><text x="35.5413%" y="863.50"></text></g><g><title>__libc_read (73 samples, 0.03%)</title><rect x="35.2913%" y="837" width="0.0328%" height="15" fill="rgb(228,202,34)" fg:x="78622" fg:w="73"/><text x="35.5413%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.03%)</title><rect x="35.2918%" y="821" width="0.0323%" height="15" fill="rgb(222,225,37)" fg:x="78623" fg:w="72"/><text x="35.5418%" y="831.50"></text></g><g><title>Command-Accumul (190 samples, 0.09%)</title><rect x="35.2392%" y="917" width="0.0853%" height="15" fill="rgb(221,14,54)" fg:x="78506" fg:w="190"/><text x="35.4892%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (203 samples, 0.09%)</title><rect x="35.4897%" y="661" width="0.0911%" height="15" fill="rgb(254,102,2)" fg:x="79064" fg:w="203"/><text x="35.7397%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (199 samples, 0.09%)</title><rect x="35.4915%" y="645" width="0.0893%" height="15" fill="rgb(232,104,17)" fg:x="79068" fg:w="199"/><text x="35.7415%" y="655.50"></text></g><g><title>native_write_msr (198 samples, 0.09%)</title><rect x="35.4920%" y="629" width="0.0889%" height="15" fill="rgb(250,220,14)" fg:x="79069" fg:w="198"/><text x="35.7420%" y="639.50"></text></g><g><title>finish_task_switch (210 samples, 0.09%)</title><rect x="35.4884%" y="677" width="0.0943%" height="15" fill="rgb(241,158,9)" fg:x="79061" fg:w="210"/><text x="35.7384%" y="687.50"></text></g><g><title>futex_wait_queue_me (230 samples, 0.10%)</title><rect x="35.4834%" y="725" width="0.1032%" height="15" fill="rgb(246,9,43)" fg:x="79050" fg:w="230"/><text x="35.7334%" y="735.50"></text></g><g><title>schedule (226 samples, 0.10%)</title><rect x="35.4852%" y="709" width="0.1014%" height="15" fill="rgb(206,73,33)" fg:x="79054" fg:w="226"/><text x="35.7352%" y="719.50"></text></g><g><title>__schedule (226 samples, 0.10%)</title><rect x="35.4852%" y="693" width="0.1014%" height="15" fill="rgb(222,79,8)" fg:x="79054" fg:w="226"/><text x="35.7352%" y="703.50"></text></g><g><title>do_syscall_64 (240 samples, 0.11%)</title><rect x="35.4821%" y="789" width="0.1077%" height="15" fill="rgb(234,8,54)" fg:x="79047" fg:w="240"/><text x="35.7321%" y="799.50"></text></g><g><title>__x64_sys_futex (239 samples, 0.11%)</title><rect x="35.4825%" y="773" width="0.1073%" height="15" fill="rgb(209,134,38)" fg:x="79048" fg:w="239"/><text x="35.7325%" y="783.50"></text></g><g><title>do_futex (239 samples, 0.11%)</title><rect x="35.4825%" y="757" width="0.1073%" height="15" fill="rgb(230,127,29)" fg:x="79048" fg:w="239"/><text x="35.7325%" y="767.50"></text></g><g><title>futex_wait (237 samples, 0.11%)</title><rect x="35.4834%" y="741" width="0.1064%" height="15" fill="rgb(242,44,41)" fg:x="79050" fg:w="237"/><text x="35.7334%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (256 samples, 0.11%)</title><rect x="35.4767%" y="853" width="0.1149%" height="15" fill="rgb(222,56,43)" fg:x="79035" fg:w="256"/><text x="35.7267%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (256 samples, 0.11%)</title><rect x="35.4767%" y="837" width="0.1149%" height="15" fill="rgb(238,39,47)" fg:x="79035" fg:w="256"/><text x="35.7267%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (253 samples, 0.11%)</title><rect x="35.4781%" y="821" width="0.1136%" height="15" fill="rgb(226,79,43)" fg:x="79038" fg:w="253"/><text x="35.7281%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (247 samples, 0.11%)</title><rect x="35.4807%" y="805" width="0.1109%" height="15" fill="rgb(242,105,53)" fg:x="79044" fg:w="247"/><text x="35.7307%" y="815.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.01%)</title><rect x="35.5943%" y="725" width="0.0126%" height="15" fill="rgb(251,132,46)" fg:x="79297" fg:w="28"/><text x="35.8443%" y="735.50"></text></g><g><title>schedule (27 samples, 0.01%)</title><rect x="35.5948%" y="709" width="0.0121%" height="15" fill="rgb(231,77,14)" fg:x="79298" fg:w="27"/><text x="35.8448%" y="719.50"></text></g><g><title>__schedule (27 samples, 0.01%)</title><rect x="35.5948%" y="693" width="0.0121%" height="15" fill="rgb(240,135,9)" fg:x="79298" fg:w="27"/><text x="35.8448%" y="703.50"></text></g><g><title>__pthread_cond_wait (35 samples, 0.02%)</title><rect x="35.5916%" y="853" width="0.0157%" height="15" fill="rgb(248,109,14)" fg:x="79291" fg:w="35"/><text x="35.8416%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (35 samples, 0.02%)</title><rect x="35.5916%" y="837" width="0.0157%" height="15" fill="rgb(227,146,52)" fg:x="79291" fg:w="35"/><text x="35.8416%" y="847.50"></text></g><g><title>futex_wait_cancelable (33 samples, 0.01%)</title><rect x="35.5925%" y="821" width="0.0148%" height="15" fill="rgb(232,54,3)" fg:x="79293" fg:w="33"/><text x="35.8425%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="35.5939%" y="805" width="0.0135%" height="15" fill="rgb(229,201,43)" fg:x="79296" fg:w="30"/><text x="35.8439%" y="815.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="35.5939%" y="789" width="0.0135%" height="15" fill="rgb(252,161,33)" fg:x="79296" fg:w="30"/><text x="35.8439%" y="799.50"></text></g><g><title>__x64_sys_futex (30 samples, 0.01%)</title><rect x="35.5939%" y="773" width="0.0135%" height="15" fill="rgb(226,146,40)" fg:x="79296" fg:w="30"/><text x="35.8439%" y="783.50"></text></g><g><title>do_futex (30 samples, 0.01%)</title><rect x="35.5939%" y="757" width="0.0135%" height="15" fill="rgb(219,47,25)" fg:x="79296" fg:w="30"/><text x="35.8439%" y="767.50"></text></g><g><title>futex_wait (29 samples, 0.01%)</title><rect x="35.5943%" y="741" width="0.0130%" height="15" fill="rgb(250,135,13)" fg:x="79297" fg:w="29"/><text x="35.8443%" y="751.50"></text></g><g><title>Parker::park (309 samples, 0.14%)</title><rect x="35.4718%" y="869" width="0.1387%" height="15" fill="rgb(219,229,18)" fg:x="79024" fg:w="309"/><text x="35.7218%" y="879.50"></text></g><g><title>Unsafe_Park (312 samples, 0.14%)</title><rect x="35.4709%" y="885" width="0.1400%" height="15" fill="rgb(217,152,27)" fg:x="79022" fg:w="312"/><text x="35.7209%" y="895.50"></text></g><g><title>[perf-945576.map] (589 samples, 0.26%)</title><rect x="35.3483%" y="901" width="0.2644%" height="15" fill="rgb(225,71,47)" fg:x="78749" fg:w="589"/><text x="35.5983%" y="911.50"></text></g><g><title>ForkJoinPool.co (601 samples, 0.27%)</title><rect x="35.3456%" y="917" width="0.2698%" height="15" fill="rgb(220,139,14)" fg:x="78743" fg:w="601"/><text x="35.5956%" y="927.50"></text></g><g><title>G1_Conc#0 (39 samples, 0.02%)</title><rect x="35.6154%" y="917" width="0.0175%" height="15" fill="rgb(247,54,32)" fg:x="79344" fg:w="39"/><text x="35.8654%" y="927.50"></text></g><g><title>__GI___clone (37 samples, 0.02%)</title><rect x="35.6163%" y="901" width="0.0166%" height="15" fill="rgb(252,131,39)" fg:x="79346" fg:w="37"/><text x="35.8663%" y="911.50"></text></g><g><title>start_thread (37 samples, 0.02%)</title><rect x="35.6163%" y="885" width="0.0166%" height="15" fill="rgb(210,108,39)" fg:x="79346" fg:w="37"/><text x="35.8663%" y="895.50"></text></g><g><title>thread_native_entry (37 samples, 0.02%)</title><rect x="35.6163%" y="869" width="0.0166%" height="15" fill="rgb(205,23,29)" fg:x="79346" fg:w="37"/><text x="35.8663%" y="879.50"></text></g><g><title>Thread::call_run (37 samples, 0.02%)</title><rect x="35.6163%" y="853" width="0.0166%" height="15" fill="rgb(246,139,46)" fg:x="79346" fg:w="37"/><text x="35.8663%" y="863.50"></text></g><g><title>GangWorker::loop (37 samples, 0.02%)</title><rect x="35.6163%" y="837" width="0.0166%" height="15" fill="rgb(250,81,26)" fg:x="79346" fg:w="37"/><text x="35.8663%" y="847.50"></text></g><g><title>__GI___clone (30 samples, 0.01%)</title><rect x="35.6329%" y="901" width="0.0135%" height="15" fill="rgb(214,104,7)" fg:x="79383" fg:w="30"/><text x="35.8829%" y="911.50"></text></g><g><title>start_thread (30 samples, 0.01%)</title><rect x="35.6329%" y="885" width="0.0135%" height="15" fill="rgb(233,189,8)" fg:x="79383" fg:w="30"/><text x="35.8829%" y="895.50"></text></g><g><title>thread_native_entry (30 samples, 0.01%)</title><rect x="35.6329%" y="869" width="0.0135%" height="15" fill="rgb(228,141,17)" fg:x="79383" fg:w="30"/><text x="35.8829%" y="879.50"></text></g><g><title>Thread::call_run (30 samples, 0.01%)</title><rect x="35.6329%" y="853" width="0.0135%" height="15" fill="rgb(247,157,1)" fg:x="79383" fg:w="30"/><text x="35.8829%" y="863.50"></text></g><g><title>GangWorker::loop (30 samples, 0.01%)</title><rect x="35.6329%" y="837" width="0.0135%" height="15" fill="rgb(249,225,5)" fg:x="79383" fg:w="30"/><text x="35.8829%" y="847.50"></text></g><g><title>G1_Conc#1 (31 samples, 0.01%)</title><rect x="35.6329%" y="917" width="0.0139%" height="15" fill="rgb(242,55,13)" fg:x="79383" fg:w="31"/><text x="35.8829%" y="927.50"></text></g><g><title>G1BlockOffsetTablePart::forward_to_block_containing_addr_slow (23 samples, 0.01%)</title><rect x="35.6545%" y="773" width="0.0103%" height="15" fill="rgb(230,49,50)" fg:x="79431" fg:w="23"/><text x="35.9045%" y="783.50"></text></g><g><title>OopOopIterateDispatch&lt;G1ConcurrentRefineOopClosure&gt;::Table::oop_oop_iterate&lt;InstanceKlass, unsigned int&gt; (24 samples, 0.01%)</title><rect x="35.6675%" y="773" width="0.0108%" height="15" fill="rgb(241,111,38)" fg:x="79460" fg:w="24"/><text x="35.9175%" y="783.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (61 samples, 0.03%)</title><rect x="35.6531%" y="805" width="0.0274%" height="15" fill="rgb(252,155,4)" fg:x="79428" fg:w="61"/><text x="35.9031%" y="815.50"></text></g><g><title>G1RemSet::refine_card_concurrently (61 samples, 0.03%)</title><rect x="35.6531%" y="789" width="0.0274%" height="15" fill="rgb(212,69,32)" fg:x="79428" fg:w="61"/><text x="35.9031%" y="799.50"></text></g><g><title>G1_Refine#0 (103 samples, 0.05%)</title><rect x="35.6518%" y="917" width="0.0462%" height="15" fill="rgb(243,107,47)" fg:x="79425" fg:w="103"/><text x="35.9018%" y="927.50"></text></g><g><title>__GI___clone (100 samples, 0.04%)</title><rect x="35.6531%" y="901" width="0.0449%" height="15" fill="rgb(247,130,12)" fg:x="79428" fg:w="100"/><text x="35.9031%" y="911.50"></text></g><g><title>start_thread (100 samples, 0.04%)</title><rect x="35.6531%" y="885" width="0.0449%" height="15" fill="rgb(233,74,16)" fg:x="79428" fg:w="100"/><text x="35.9031%" y="895.50"></text></g><g><title>thread_native_entry (100 samples, 0.04%)</title><rect x="35.6531%" y="869" width="0.0449%" height="15" fill="rgb(208,58,18)" fg:x="79428" fg:w="100"/><text x="35.9031%" y="879.50"></text></g><g><title>Thread::call_run (100 samples, 0.04%)</title><rect x="35.6531%" y="853" width="0.0449%" height="15" fill="rgb(242,225,1)" fg:x="79428" fg:w="100"/><text x="35.9031%" y="863.50"></text></g><g><title>ConcurrentGCThread::run (100 samples, 0.04%)</title><rect x="35.6531%" y="837" width="0.0449%" height="15" fill="rgb(249,39,40)" fg:x="79428" fg:w="100"/><text x="35.9031%" y="847.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (100 samples, 0.04%)</title><rect x="35.6531%" y="821" width="0.0449%" height="15" fill="rgb(207,72,44)" fg:x="79428" fg:w="100"/><text x="35.9031%" y="831.50"></text></g><g><title>ConcurrentGCThread::run (27 samples, 0.01%)</title><rect x="35.7034%" y="837" width="0.0121%" height="15" fill="rgb(215,193,12)" fg:x="79540" fg:w="27"/><text x="35.9534%" y="847.50"></text></g><g><title>G1_Young_RemSet (29 samples, 0.01%)</title><rect x="35.7029%" y="917" width="0.0130%" height="15" fill="rgb(248,41,39)" fg:x="79539" fg:w="29"/><text x="35.9529%" y="927.50"></text></g><g><title>__GI___clone (28 samples, 0.01%)</title><rect x="35.7034%" y="901" width="0.0126%" height="15" fill="rgb(253,85,4)" fg:x="79540" fg:w="28"/><text x="35.9534%" y="911.50"></text></g><g><title>start_thread (28 samples, 0.01%)</title><rect x="35.7034%" y="885" width="0.0126%" height="15" fill="rgb(243,70,31)" fg:x="79540" fg:w="28"/><text x="35.9534%" y="895.50"></text></g><g><title>thread_native_entry (28 samples, 0.01%)</title><rect x="35.7034%" y="869" width="0.0126%" height="15" fill="rgb(253,195,26)" fg:x="79540" fg:w="28"/><text x="35.9534%" y="879.50"></text></g><g><title>Thread::call_run (28 samples, 0.01%)</title><rect x="35.7034%" y="853" width="0.0126%" height="15" fill="rgb(243,42,11)" fg:x="79540" fg:w="28"/><text x="35.9534%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue (27 samples, 0.01%)</title><rect x="35.7267%" y="789" width="0.0121%" height="15" fill="rgb(239,66,17)" fg:x="79592" fg:w="27"/><text x="35.9767%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (100 samples, 0.04%)</title><rect x="35.7240%" y="805" width="0.0449%" height="15" fill="rgb(217,132,21)" fg:x="79586" fg:w="100"/><text x="35.9740%" y="815.50"></text></g><g><title>SpinPause (62 samples, 0.03%)</title><rect x="35.7411%" y="789" width="0.0278%" height="15" fill="rgb(252,202,21)" fg:x="79624" fg:w="62"/><text x="35.9911%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (28 samples, 0.01%)</title><rect x="35.7689%" y="725" width="0.0126%" height="15" fill="rgb(233,98,36)" fg:x="79686" fg:w="28"/><text x="36.0189%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (33 samples, 0.01%)</title><rect x="35.7689%" y="773" width="0.0148%" height="15" fill="rgb(216,153,54)" fg:x="79686" fg:w="33"/><text x="36.0189%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (33 samples, 0.01%)</title><rect x="35.7689%" y="757" width="0.0148%" height="15" fill="rgb(250,99,7)" fg:x="79686" fg:w="33"/><text x="36.0189%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (33 samples, 0.01%)</title><rect x="35.7689%" y="741" width="0.0148%" height="15" fill="rgb(207,56,50)" fg:x="79686" fg:w="33"/><text x="36.0189%" y="751.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (34 samples, 0.02%)</title><rect x="35.7689%" y="805" width="0.0153%" height="15" fill="rgb(244,61,34)" fg:x="79686" fg:w="34"/><text x="36.0189%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (34 samples, 0.02%)</title><rect x="35.7689%" y="789" width="0.0153%" height="15" fill="rgb(241,50,38)" fg:x="79686" fg:w="34"/><text x="36.0189%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (26 samples, 0.01%)</title><rect x="35.7842%" y="725" width="0.0117%" height="15" fill="rgb(212,166,30)" fg:x="79720" fg:w="26"/><text x="36.0342%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (29 samples, 0.01%)</title><rect x="35.7842%" y="741" width="0.0130%" height="15" fill="rgb(249,127,32)" fg:x="79720" fg:w="29"/><text x="36.0342%" y="751.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (31 samples, 0.01%)</title><rect x="35.7842%" y="757" width="0.0139%" height="15" fill="rgb(209,103,0)" fg:x="79720" fg:w="31"/><text x="36.0342%" y="767.50"></text></g><g><title>G1RemSet::scan_rem_set (32 samples, 0.01%)</title><rect x="35.7842%" y="805" width="0.0144%" height="15" fill="rgb(238,209,51)" fg:x="79720" fg:w="32"/><text x="36.0342%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (32 samples, 0.01%)</title><rect x="35.7842%" y="789" width="0.0144%" height="15" fill="rgb(237,56,23)" fg:x="79720" fg:w="32"/><text x="36.0342%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (32 samples, 0.01%)</title><rect x="35.7842%" y="773" width="0.0144%" height="15" fill="rgb(215,153,46)" fg:x="79720" fg:w="32"/><text x="36.0342%" y="783.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (30 samples, 0.01%)</title><rect x="35.7985%" y="773" width="0.0135%" height="15" fill="rgb(224,49,31)" fg:x="79752" fg:w="30"/><text x="36.0485%" y="783.50"></text></g><g><title>G1CLDScanClosure::do_cld (30 samples, 0.01%)</title><rect x="35.7985%" y="757" width="0.0135%" height="15" fill="rgb(250,18,42)" fg:x="79752" fg:w="30"/><text x="36.0485%" y="767.50"></text></g><g><title>ClassLoaderData::oops_do (30 samples, 0.01%)</title><rect x="35.7985%" y="741" width="0.0135%" height="15" fill="rgb(215,176,39)" fg:x="79752" fg:w="30"/><text x="36.0485%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (23 samples, 0.01%)</title><rect x="35.8017%" y="725" width="0.0103%" height="15" fill="rgb(223,77,29)" fg:x="79759" fg:w="23"/><text x="36.0517%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (41 samples, 0.02%)</title><rect x="35.8232%" y="677" width="0.0184%" height="15" fill="rgb(234,94,52)" fg:x="79807" fg:w="41"/><text x="36.0732%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (36 samples, 0.02%)</title><rect x="35.8255%" y="661" width="0.0162%" height="15" fill="rgb(220,154,50)" fg:x="79812" fg:w="36"/><text x="36.0755%" y="671.50"></text></g><g><title>InterpreterOopMap::iterate_oop (55 samples, 0.02%)</title><rect x="35.8183%" y="709" width="0.0247%" height="15" fill="rgb(212,11,10)" fg:x="79796" fg:w="55"/><text x="36.0683%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.02%)</title><rect x="35.8192%" y="693" width="0.0238%" height="15" fill="rgb(205,166,19)" fg:x="79798" fg:w="53"/><text x="36.0692%" y="703.50"></text></g><g><title>frame::oops_interpreted_do (58 samples, 0.03%)</title><rect x="35.8183%" y="725" width="0.0260%" height="15" fill="rgb(244,198,16)" fg:x="79796" fg:w="58"/><text x="36.0683%" y="735.50"></text></g><g><title>G1RootProcessor::process_java_roots (103 samples, 0.05%)</title><rect x="35.7985%" y="789" width="0.0462%" height="15" fill="rgb(219,69,12)" fg:x="79752" fg:w="103"/><text x="36.0485%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (73 samples, 0.03%)</title><rect x="35.8120%" y="773" width="0.0328%" height="15" fill="rgb(245,30,7)" fg:x="79782" fg:w="73"/><text x="36.0620%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (73 samples, 0.03%)</title><rect x="35.8120%" y="757" width="0.0328%" height="15" fill="rgb(218,221,48)" fg:x="79782" fg:w="73"/><text x="36.0620%" y="767.50"></text></g><g><title>JavaThread::oops_do (72 samples, 0.03%)</title><rect x="35.8125%" y="741" width="0.0323%" height="15" fill="rgb(216,66,15)" fg:x="79783" fg:w="72"/><text x="36.0625%" y="751.50"></text></g><g><title>G1ParTask::work (273 samples, 0.12%)</title><rect x="35.7240%" y="821" width="0.1225%" height="15" fill="rgb(226,122,50)" fg:x="79586" fg:w="273"/><text x="35.9740%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (107 samples, 0.05%)</title><rect x="35.7985%" y="805" width="0.0480%" height="15" fill="rgb(239,156,16)" fg:x="79752" fg:w="107"/><text x="36.0485%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (23 samples, 0.01%)</title><rect x="35.8542%" y="821" width="0.0103%" height="15" fill="rgb(224,27,38)" fg:x="79876" fg:w="23"/><text x="36.1042%" y="831.50"></text></g><g><title>JavaThread::nmethods_do (23 samples, 0.01%)</title><rect x="35.8704%" y="789" width="0.0103%" height="15" fill="rgb(224,39,27)" fg:x="79912" fg:w="23"/><text x="36.1204%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (34 samples, 0.02%)</title><rect x="35.8677%" y="821" width="0.0153%" height="15" fill="rgb(215,92,29)" fg:x="79906" fg:w="34"/><text x="36.1177%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (33 samples, 0.01%)</title><rect x="35.8681%" y="805" width="0.0148%" height="15" fill="rgb(207,159,16)" fg:x="79907" fg:w="33"/><text x="36.1181%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (93 samples, 0.04%)</title><rect x="35.8906%" y="597" width="0.0417%" height="15" fill="rgb(238,163,47)" fg:x="79957" fg:w="93"/><text x="36.1406%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (92 samples, 0.04%)</title><rect x="35.8910%" y="581" width="0.0413%" height="15" fill="rgb(219,91,49)" fg:x="79958" fg:w="92"/><text x="36.1410%" y="591.50"></text></g><g><title>native_write_msr (92 samples, 0.04%)</title><rect x="35.8910%" y="565" width="0.0413%" height="15" fill="rgb(227,167,31)" fg:x="79958" fg:w="92"/><text x="36.1410%" y="575.50"></text></g><g><title>finish_task_switch (97 samples, 0.04%)</title><rect x="35.8901%" y="613" width="0.0435%" height="15" fill="rgb(234,80,54)" fg:x="79956" fg:w="97"/><text x="36.1401%" y="623.50"></text></g><g><title>futex_wait_queue_me (119 samples, 0.05%)</title><rect x="35.8852%" y="661" width="0.0534%" height="15" fill="rgb(212,114,2)" fg:x="79945" fg:w="119"/><text x="36.1352%" y="671.50"></text></g><g><title>schedule (118 samples, 0.05%)</title><rect x="35.8856%" y="645" width="0.0530%" height="15" fill="rgb(234,50,24)" fg:x="79946" fg:w="118"/><text x="36.1356%" y="655.50"></text></g><g><title>__schedule (118 samples, 0.05%)</title><rect x="35.8856%" y="629" width="0.0530%" height="15" fill="rgb(221,68,8)" fg:x="79946" fg:w="118"/><text x="36.1356%" y="639.50"></text></g><g><title>__x64_sys_futex (123 samples, 0.06%)</title><rect x="35.8838%" y="709" width="0.0552%" height="15" fill="rgb(254,180,31)" fg:x="79942" fg:w="123"/><text x="36.1338%" y="719.50"></text></g><g><title>do_futex (123 samples, 0.06%)</title><rect x="35.8838%" y="693" width="0.0552%" height="15" fill="rgb(247,130,50)" fg:x="79942" fg:w="123"/><text x="36.1338%" y="703.50"></text></g><g><title>futex_wait (121 samples, 0.05%)</title><rect x="35.8847%" y="677" width="0.0543%" height="15" fill="rgb(211,109,4)" fg:x="79944" fg:w="121"/><text x="36.1347%" y="687.50"></text></g><g><title>do_syscall_64 (124 samples, 0.06%)</title><rect x="35.8838%" y="725" width="0.0557%" height="15" fill="rgb(238,50,21)" fg:x="79942" fg:w="124"/><text x="36.1338%" y="735.50"></text></g><g><title>__GI___clone (489 samples, 0.22%)</title><rect x="35.7213%" y="901" width="0.2195%" height="15" fill="rgb(225,57,45)" fg:x="79580" fg:w="489"/><text x="35.9713%" y="911.50"></text></g><g><title>start_thread (489 samples, 0.22%)</title><rect x="35.7213%" y="885" width="0.2195%" height="15" fill="rgb(209,196,50)" fg:x="79580" fg:w="489"/><text x="35.9713%" y="895.50"></text></g><g><title>thread_native_entry (489 samples, 0.22%)</title><rect x="35.7213%" y="869" width="0.2195%" height="15" fill="rgb(242,140,13)" fg:x="79580" fg:w="489"/><text x="35.9713%" y="879.50"></text></g><g><title>Thread::call_run (489 samples, 0.22%)</title><rect x="35.7213%" y="853" width="0.2195%" height="15" fill="rgb(217,111,7)" fg:x="79580" fg:w="489"/><text x="35.9713%" y="863.50"></text></g><g><title>GangWorker::loop (489 samples, 0.22%)</title><rect x="35.7213%" y="837" width="0.2195%" height="15" fill="rgb(253,193,51)" fg:x="79580" fg:w="489"/><text x="35.9713%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (127 samples, 0.06%)</title><rect x="35.8838%" y="821" width="0.0570%" height="15" fill="rgb(252,70,29)" fg:x="79942" fg:w="127"/><text x="36.1338%" y="831.50"></text></g><g><title>PosixSemaphore::wait (127 samples, 0.06%)</title><rect x="35.8838%" y="805" width="0.0570%" height="15" fill="rgb(232,127,12)" fg:x="79942" fg:w="127"/><text x="36.1338%" y="815.50"></text></g><g><title>__new_sem_wait_slow (127 samples, 0.06%)</title><rect x="35.8838%" y="789" width="0.0570%" height="15" fill="rgb(211,180,21)" fg:x="79942" fg:w="127"/><text x="36.1338%" y="799.50"></text></g><g><title>do_futex_wait (127 samples, 0.06%)</title><rect x="35.8838%" y="773" width="0.0570%" height="15" fill="rgb(229,72,13)" fg:x="79942" fg:w="127"/><text x="36.1338%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (127 samples, 0.06%)</title><rect x="35.8838%" y="757" width="0.0570%" height="15" fill="rgb(240,211,49)" fg:x="79942" fg:w="127"/><text x="36.1338%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (127 samples, 0.06%)</title><rect x="35.8838%" y="741" width="0.0570%" height="15" fill="rgb(219,149,40)" fg:x="79942" fg:w="127"/><text x="36.1338%" y="751.50"></text></g><g><title>GC_Thread#0 (502 samples, 0.23%)</title><rect x="35.7160%" y="917" width="0.2253%" height="15" fill="rgb(210,127,46)" fg:x="79568" fg:w="502"/><text x="35.9660%" y="927.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (27 samples, 0.01%)</title><rect x="35.9574%" y="773" width="0.0121%" height="15" fill="rgb(220,106,7)" fg:x="80106" fg:w="27"/><text x="36.2074%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue (39 samples, 0.02%)</title><rect x="35.9525%" y="789" width="0.0175%" height="15" fill="rgb(249,31,22)" fg:x="80095" fg:w="39"/><text x="36.2025%" y="799.50"></text></g><g><title>SpinPause (35 samples, 0.02%)</title><rect x="35.9714%" y="789" width="0.0157%" height="15" fill="rgb(253,1,49)" fg:x="80137" fg:w="35"/><text x="36.2214%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (82 samples, 0.04%)</title><rect x="35.9507%" y="805" width="0.0368%" height="15" fill="rgb(227,144,33)" fg:x="80091" fg:w="82"/><text x="36.2007%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (36 samples, 0.02%)</title><rect x="35.9898%" y="805" width="0.0162%" height="15" fill="rgb(249,163,44)" fg:x="80178" fg:w="36"/><text x="36.2398%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (36 samples, 0.02%)</title><rect x="35.9898%" y="789" width="0.0162%" height="15" fill="rgb(234,15,39)" fg:x="80178" fg:w="36"/><text x="36.2398%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (36 samples, 0.02%)</title><rect x="35.9898%" y="773" width="0.0162%" height="15" fill="rgb(207,66,16)" fg:x="80178" fg:w="36"/><text x="36.2398%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (29 samples, 0.01%)</title><rect x="36.0221%" y="693" width="0.0130%" height="15" fill="rgb(233,112,24)" fg:x="80250" fg:w="29"/><text x="36.2721%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (24 samples, 0.01%)</title><rect x="36.0243%" y="677" width="0.0108%" height="15" fill="rgb(230,90,22)" fg:x="80255" fg:w="24"/><text x="36.2743%" y="687.50"></text></g><g><title>HandleArea::oops_do (47 samples, 0.02%)</title><rect x="36.0154%" y="725" width="0.0211%" height="15" fill="rgb(229,61,13)" fg:x="80235" fg:w="47"/><text x="36.2654%" y="735.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (35 samples, 0.02%)</title><rect x="36.0207%" y="709" width="0.0157%" height="15" fill="rgb(225,57,24)" fg:x="80247" fg:w="35"/><text x="36.2707%" y="719.50"></text></g><g><title>G1RootProcessor::process_java_roots (82 samples, 0.04%)</title><rect x="36.0140%" y="789" width="0.0368%" height="15" fill="rgb(208,169,48)" fg:x="80232" fg:w="82"/><text x="36.2640%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (82 samples, 0.04%)</title><rect x="36.0140%" y="773" width="0.0368%" height="15" fill="rgb(244,218,51)" fg:x="80232" fg:w="82"/><text x="36.2640%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (82 samples, 0.04%)</title><rect x="36.0140%" y="757" width="0.0368%" height="15" fill="rgb(214,148,10)" fg:x="80232" fg:w="82"/><text x="36.2640%" y="767.50"></text></g><g><title>JavaThread::oops_do (81 samples, 0.04%)</title><rect x="36.0145%" y="741" width="0.0364%" height="15" fill="rgb(225,174,27)" fg:x="80233" fg:w="81"/><text x="36.2645%" y="751.50"></text></g><g><title>G1ParTask::work (247 samples, 0.11%)</title><rect x="35.9507%" y="821" width="0.1109%" height="15" fill="rgb(230,96,26)" fg:x="80091" fg:w="247"/><text x="36.2007%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (124 samples, 0.06%)</title><rect x="36.0059%" y="805" width="0.0557%" height="15" fill="rgb(232,10,30)" fg:x="80214" fg:w="124"/><text x="36.2559%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (39 samples, 0.02%)</title><rect x="36.0638%" y="821" width="0.0175%" height="15" fill="rgb(222,8,50)" fg:x="80343" fg:w="39"/><text x="36.3138%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (36 samples, 0.02%)</title><rect x="36.0652%" y="805" width="0.0162%" height="15" fill="rgb(213,81,27)" fg:x="80346" fg:w="36"/><text x="36.3152%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (36 samples, 0.02%)</title><rect x="36.0652%" y="789" width="0.0162%" height="15" fill="rgb(245,50,10)" fg:x="80346" fg:w="36"/><text x="36.3152%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (36 samples, 0.02%)</title><rect x="36.0652%" y="773" width="0.0162%" height="15" fill="rgb(216,100,18)" fg:x="80346" fg:w="36"/><text x="36.3152%" y="783.50"></text></g><g><title>SpinPause (35 samples, 0.02%)</title><rect x="36.0656%" y="757" width="0.0157%" height="15" fill="rgb(236,147,54)" fg:x="80347" fg:w="35"/><text x="36.3156%" y="767.50"></text></g><g><title>ParallelSPCleanupTask::work (27 samples, 0.01%)</title><rect x="36.0818%" y="821" width="0.0121%" height="15" fill="rgb(205,143,26)" fg:x="80383" fg:w="27"/><text x="36.3318%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (24 samples, 0.01%)</title><rect x="36.0831%" y="805" width="0.0108%" height="15" fill="rgb(236,26,9)" fg:x="80386" fg:w="24"/><text x="36.3331%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (85 samples, 0.04%)</title><rect x="36.1002%" y="597" width="0.0382%" height="15" fill="rgb(221,165,53)" fg:x="80424" fg:w="85"/><text x="36.3502%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.04%)</title><rect x="36.1006%" y="581" width="0.0377%" height="15" fill="rgb(214,110,17)" fg:x="80425" fg:w="84"/><text x="36.3506%" y="591.50"></text></g><g><title>native_write_msr (84 samples, 0.04%)</title><rect x="36.1006%" y="565" width="0.0377%" height="15" fill="rgb(237,197,12)" fg:x="80425" fg:w="84"/><text x="36.3506%" y="575.50"></text></g><g><title>finish_task_switch (88 samples, 0.04%)</title><rect x="36.0993%" y="613" width="0.0395%" height="15" fill="rgb(205,84,17)" fg:x="80422" fg:w="88"/><text x="36.3493%" y="623.50"></text></g><g><title>futex_wait_queue_me (96 samples, 0.04%)</title><rect x="36.0966%" y="661" width="0.0431%" height="15" fill="rgb(237,18,45)" fg:x="80416" fg:w="96"/><text x="36.3466%" y="671.50"></text></g><g><title>schedule (95 samples, 0.04%)</title><rect x="36.0970%" y="645" width="0.0426%" height="15" fill="rgb(221,87,14)" fg:x="80417" fg:w="95"/><text x="36.3470%" y="655.50"></text></g><g><title>__schedule (95 samples, 0.04%)</title><rect x="36.0970%" y="629" width="0.0426%" height="15" fill="rgb(238,186,15)" fg:x="80417" fg:w="95"/><text x="36.3470%" y="639.50"></text></g><g><title>do_syscall_64 (99 samples, 0.04%)</title><rect x="36.0961%" y="725" width="0.0444%" height="15" fill="rgb(208,115,11)" fg:x="80415" fg:w="99"/><text x="36.3461%" y="735.50"></text></g><g><title>__x64_sys_futex (99 samples, 0.04%)</title><rect x="36.0961%" y="709" width="0.0444%" height="15" fill="rgb(254,175,0)" fg:x="80415" fg:w="99"/><text x="36.3461%" y="719.50"></text></g><g><title>do_futex (99 samples, 0.04%)</title><rect x="36.0961%" y="693" width="0.0444%" height="15" fill="rgb(227,24,42)" fg:x="80415" fg:w="99"/><text x="36.3461%" y="703.50"></text></g><g><title>futex_wait (98 samples, 0.04%)</title><rect x="36.0966%" y="677" width="0.0440%" height="15" fill="rgb(223,211,37)" fg:x="80416" fg:w="98"/><text x="36.3466%" y="687.50"></text></g><g><title>GC_Thread#1 (447 samples, 0.20%)</title><rect x="35.9413%" y="917" width="0.2006%" height="15" fill="rgb(235,49,27)" fg:x="80070" fg:w="447"/><text x="36.1913%" y="927.50"></text></g><g><title>__GI___clone (438 samples, 0.20%)</title><rect x="35.9453%" y="901" width="0.1966%" height="15" fill="rgb(254,97,51)" fg:x="80079" fg:w="438"/><text x="36.1953%" y="911.50"></text></g><g><title>start_thread (438 samples, 0.20%)</title><rect x="35.9453%" y="885" width="0.1966%" height="15" fill="rgb(249,51,40)" fg:x="80079" fg:w="438"/><text x="36.1953%" y="895.50"></text></g><g><title>thread_native_entry (438 samples, 0.20%)</title><rect x="35.9453%" y="869" width="0.1966%" height="15" fill="rgb(210,128,45)" fg:x="80079" fg:w="438"/><text x="36.1953%" y="879.50"></text></g><g><title>Thread::call_run (438 samples, 0.20%)</title><rect x="35.9453%" y="853" width="0.1966%" height="15" fill="rgb(224,137,50)" fg:x="80079" fg:w="438"/><text x="36.1953%" y="863.50"></text></g><g><title>GangWorker::loop (438 samples, 0.20%)</title><rect x="35.9453%" y="837" width="0.1966%" height="15" fill="rgb(242,15,9)" fg:x="80079" fg:w="438"/><text x="36.1953%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (105 samples, 0.05%)</title><rect x="36.0948%" y="821" width="0.0471%" height="15" fill="rgb(233,187,41)" fg:x="80412" fg:w="105"/><text x="36.3448%" y="831.50"></text></g><g><title>PosixSemaphore::wait (105 samples, 0.05%)</title><rect x="36.0948%" y="805" width="0.0471%" height="15" fill="rgb(227,2,29)" fg:x="80412" fg:w="105"/><text x="36.3448%" y="815.50"></text></g><g><title>__new_sem_wait_slow (104 samples, 0.05%)</title><rect x="36.0953%" y="789" width="0.0467%" height="15" fill="rgb(222,70,3)" fg:x="80413" fg:w="104"/><text x="36.3453%" y="799.50"></text></g><g><title>do_futex_wait (102 samples, 0.05%)</title><rect x="36.0961%" y="773" width="0.0458%" height="15" fill="rgb(213,11,42)" fg:x="80415" fg:w="102"/><text x="36.3461%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (102 samples, 0.05%)</title><rect x="36.0961%" y="757" width="0.0458%" height="15" fill="rgb(225,150,9)" fg:x="80415" fg:w="102"/><text x="36.3461%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.05%)</title><rect x="36.0961%" y="741" width="0.0458%" height="15" fill="rgb(230,162,45)" fg:x="80415" fg:w="102"/><text x="36.3461%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (32 samples, 0.01%)</title><rect x="36.1487%" y="789" width="0.0144%" height="15" fill="rgb(222,14,52)" fg:x="80532" fg:w="32"/><text x="36.3987%" y="799.50"></text></g><g><title>SpinPause (101 samples, 0.05%)</title><rect x="36.1639%" y="789" width="0.0453%" height="15" fill="rgb(254,198,14)" fg:x="80566" fg:w="101"/><text x="36.4139%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (144 samples, 0.06%)</title><rect x="36.1455%" y="805" width="0.0646%" height="15" fill="rgb(220,217,30)" fg:x="80525" fg:w="144"/><text x="36.3955%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (27 samples, 0.01%)</title><rect x="36.2102%" y="725" width="0.0121%" height="15" fill="rgb(215,146,41)" fg:x="80669" fg:w="27"/><text x="36.4602%" y="735.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (31 samples, 0.01%)</title><rect x="36.2102%" y="805" width="0.0139%" height="15" fill="rgb(217,27,36)" fg:x="80669" fg:w="31"/><text x="36.4602%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (31 samples, 0.01%)</title><rect x="36.2102%" y="789" width="0.0139%" height="15" fill="rgb(219,218,39)" fg:x="80669" fg:w="31"/><text x="36.4602%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (31 samples, 0.01%)</title><rect x="36.2102%" y="773" width="0.0139%" height="15" fill="rgb(219,4,42)" fg:x="80669" fg:w="31"/><text x="36.4602%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (31 samples, 0.01%)</title><rect x="36.2102%" y="757" width="0.0139%" height="15" fill="rgb(249,119,36)" fg:x="80669" fg:w="31"/><text x="36.4602%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (31 samples, 0.01%)</title><rect x="36.2102%" y="741" width="0.0139%" height="15" fill="rgb(209,23,33)" fg:x="80669" fg:w="31"/><text x="36.4602%" y="751.50"></text></g><g><title>G1RemSet::scan_rem_set (32 samples, 0.01%)</title><rect x="36.2241%" y="805" width="0.0144%" height="15" fill="rgb(211,10,0)" fg:x="80700" fg:w="32"/><text x="36.4741%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (32 samples, 0.01%)</title><rect x="36.2241%" y="789" width="0.0144%" height="15" fill="rgb(208,99,37)" fg:x="80700" fg:w="32"/><text x="36.4741%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (32 samples, 0.01%)</title><rect x="36.2241%" y="773" width="0.0144%" height="15" fill="rgb(213,132,31)" fg:x="80700" fg:w="32"/><text x="36.4741%" y="783.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (114 samples, 0.05%)</title><rect x="36.2393%" y="773" width="0.0512%" height="15" fill="rgb(243,129,40)" fg:x="80734" fg:w="114"/><text x="36.4893%" y="783.50"></text></g><g><title>G1CLDScanClosure::do_cld (111 samples, 0.05%)</title><rect x="36.2407%" y="757" width="0.0498%" height="15" fill="rgb(210,66,33)" fg:x="80737" fg:w="111"/><text x="36.4907%" y="767.50"></text></g><g><title>ClassLoaderData::oops_do (111 samples, 0.05%)</title><rect x="36.2407%" y="741" width="0.0498%" height="15" fill="rgb(209,189,4)" fg:x="80737" fg:w="111"/><text x="36.4907%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (91 samples, 0.04%)</title><rect x="36.2497%" y="725" width="0.0408%" height="15" fill="rgb(214,107,37)" fg:x="80757" fg:w="91"/><text x="36.4997%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (70 samples, 0.03%)</title><rect x="36.2591%" y="709" width="0.0314%" height="15" fill="rgb(245,88,54)" fg:x="80778" fg:w="70"/><text x="36.5091%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (59 samples, 0.03%)</title><rect x="36.2640%" y="693" width="0.0265%" height="15" fill="rgb(205,146,20)" fg:x="80789" fg:w="59"/><text x="36.5140%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (134 samples, 0.06%)</title><rect x="36.2393%" y="789" width="0.0601%" height="15" fill="rgb(220,161,25)" fg:x="80734" fg:w="134"/><text x="36.4893%" y="799.50"></text></g><g><title>G1ParTask::work (351 samples, 0.16%)</title><rect x="36.1455%" y="821" width="0.1576%" height="15" fill="rgb(215,152,15)" fg:x="80525" fg:w="351"/><text x="36.3955%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (144 samples, 0.06%)</title><rect x="36.2384%" y="805" width="0.0646%" height="15" fill="rgb(233,192,44)" fg:x="80732" fg:w="144"/><text x="36.4884%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (43 samples, 0.02%)</title><rect x="36.3107%" y="821" width="0.0193%" height="15" fill="rgb(240,170,46)" fg:x="80893" fg:w="43"/><text x="36.5607%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (34 samples, 0.02%)</title><rect x="36.3147%" y="805" width="0.0153%" height="15" fill="rgb(207,104,33)" fg:x="80902" fg:w="34"/><text x="36.5647%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (34 samples, 0.02%)</title><rect x="36.3147%" y="789" width="0.0153%" height="15" fill="rgb(219,21,39)" fg:x="80902" fg:w="34"/><text x="36.5647%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (34 samples, 0.02%)</title><rect x="36.3147%" y="773" width="0.0153%" height="15" fill="rgb(214,133,29)" fg:x="80902" fg:w="34"/><text x="36.5647%" y="783.50"></text></g><g><title>SpinPause (34 samples, 0.02%)</title><rect x="36.3147%" y="757" width="0.0153%" height="15" fill="rgb(226,93,6)" fg:x="80902" fg:w="34"/><text x="36.5647%" y="767.50"></text></g><g><title>ParallelSPCleanupTask::work (26 samples, 0.01%)</title><rect x="36.3305%" y="821" width="0.0117%" height="15" fill="rgb(252,222,34)" fg:x="80937" fg:w="26"/><text x="36.5805%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (25 samples, 0.01%)</title><rect x="36.3309%" y="805" width="0.0112%" height="15" fill="rgb(252,92,48)" fg:x="80938" fg:w="25"/><text x="36.5809%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (105 samples, 0.05%)</title><rect x="36.3493%" y="597" width="0.0471%" height="15" fill="rgb(245,223,24)" fg:x="80979" fg:w="105"/><text x="36.5993%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (102 samples, 0.05%)</title><rect x="36.3507%" y="581" width="0.0458%" height="15" fill="rgb(205,176,3)" fg:x="80982" fg:w="102"/><text x="36.6007%" y="591.50"></text></g><g><title>native_write_msr (101 samples, 0.05%)</title><rect x="36.3511%" y="565" width="0.0453%" height="15" fill="rgb(235,151,15)" fg:x="80983" fg:w="101"/><text x="36.6011%" y="575.50"></text></g><g><title>finish_task_switch (110 samples, 0.05%)</title><rect x="36.3480%" y="613" width="0.0494%" height="15" fill="rgb(237,209,11)" fg:x="80976" fg:w="110"/><text x="36.5980%" y="623.50"></text></g><g><title>futex_wait_queue_me (122 samples, 0.05%)</title><rect x="36.3462%" y="661" width="0.0548%" height="15" fill="rgb(243,227,24)" fg:x="80972" fg:w="122"/><text x="36.5962%" y="671.50"></text></g><g><title>schedule (122 samples, 0.05%)</title><rect x="36.3462%" y="645" width="0.0548%" height="15" fill="rgb(239,193,16)" fg:x="80972" fg:w="122"/><text x="36.5962%" y="655.50"></text></g><g><title>__schedule (122 samples, 0.05%)</title><rect x="36.3462%" y="629" width="0.0548%" height="15" fill="rgb(231,27,9)" fg:x="80972" fg:w="122"/><text x="36.5962%" y="639.50"></text></g><g><title>do_syscall_64 (125 samples, 0.06%)</title><rect x="36.3453%" y="725" width="0.0561%" height="15" fill="rgb(219,169,10)" fg:x="80970" fg:w="125"/><text x="36.5953%" y="735.50"></text></g><g><title>__x64_sys_futex (125 samples, 0.06%)</title><rect x="36.3453%" y="709" width="0.0561%" height="15" fill="rgb(244,229,43)" fg:x="80970" fg:w="125"/><text x="36.5953%" y="719.50"></text></g><g><title>do_futex (125 samples, 0.06%)</title><rect x="36.3453%" y="693" width="0.0561%" height="15" fill="rgb(254,38,20)" fg:x="80970" fg:w="125"/><text x="36.5953%" y="703.50"></text></g><g><title>futex_wait (123 samples, 0.06%)</title><rect x="36.3462%" y="677" width="0.0552%" height="15" fill="rgb(250,47,30)" fg:x="80972" fg:w="123"/><text x="36.5962%" y="687.50"></text></g><g><title>__GI___clone (573 samples, 0.26%)</title><rect x="36.1446%" y="901" width="0.2572%" height="15" fill="rgb(224,124,36)" fg:x="80523" fg:w="573"/><text x="36.3946%" y="911.50"></text></g><g><title>start_thread (573 samples, 0.26%)</title><rect x="36.1446%" y="885" width="0.2572%" height="15" fill="rgb(246,68,51)" fg:x="80523" fg:w="573"/><text x="36.3946%" y="895.50"></text></g><g><title>thread_native_entry (573 samples, 0.26%)</title><rect x="36.1446%" y="869" width="0.2572%" height="15" fill="rgb(253,43,49)" fg:x="80523" fg:w="573"/><text x="36.3946%" y="879.50"></text></g><g><title>Thread::call_run (573 samples, 0.26%)</title><rect x="36.1446%" y="853" width="0.2572%" height="15" fill="rgb(219,54,36)" fg:x="80523" fg:w="573"/><text x="36.3946%" y="863.50"></text></g><g><title>GangWorker::loop (573 samples, 0.26%)</title><rect x="36.1446%" y="837" width="0.2572%" height="15" fill="rgb(227,133,34)" fg:x="80523" fg:w="573"/><text x="36.3946%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (129 samples, 0.06%)</title><rect x="36.3439%" y="821" width="0.0579%" height="15" fill="rgb(247,227,15)" fg:x="80967" fg:w="129"/><text x="36.5939%" y="831.50"></text></g><g><title>PosixSemaphore::wait (129 samples, 0.06%)</title><rect x="36.3439%" y="805" width="0.0579%" height="15" fill="rgb(229,96,14)" fg:x="80967" fg:w="129"/><text x="36.5939%" y="815.50"></text></g><g><title>__new_sem_wait_slow (129 samples, 0.06%)</title><rect x="36.3439%" y="789" width="0.0579%" height="15" fill="rgb(220,79,17)" fg:x="80967" fg:w="129"/><text x="36.5939%" y="799.50"></text></g><g><title>do_futex_wait (129 samples, 0.06%)</title><rect x="36.3439%" y="773" width="0.0579%" height="15" fill="rgb(205,131,53)" fg:x="80967" fg:w="129"/><text x="36.5939%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (129 samples, 0.06%)</title><rect x="36.3439%" y="757" width="0.0579%" height="15" fill="rgb(209,50,29)" fg:x="80967" fg:w="129"/><text x="36.5939%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (127 samples, 0.06%)</title><rect x="36.3448%" y="741" width="0.0570%" height="15" fill="rgb(245,86,46)" fg:x="80969" fg:w="127"/><text x="36.5948%" y="751.50"></text></g><g><title>GC_Thread#2 (581 samples, 0.26%)</title><rect x="36.1419%" y="917" width="0.2608%" height="15" fill="rgb(235,66,46)" fg:x="80517" fg:w="581"/><text x="36.3919%" y="927.50"></text></g><g><title>G1ParScanThreadState::trim_queue (25 samples, 0.01%)</title><rect x="36.4140%" y="789" width="0.0112%" height="15" fill="rgb(232,148,31)" fg:x="81123" fg:w="25"/><text x="36.6640%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (126 samples, 0.06%)</title><rect x="36.4113%" y="805" width="0.0566%" height="15" fill="rgb(217,149,8)" fg:x="81117" fg:w="126"/><text x="36.6613%" y="815.50"></text></g><g><title>SpinPause (93 samples, 0.04%)</title><rect x="36.4261%" y="789" width="0.0417%" height="15" fill="rgb(209,183,11)" fg:x="81150" fg:w="93"/><text x="36.6761%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (34 samples, 0.02%)</title><rect x="36.4934%" y="709" width="0.0153%" height="15" fill="rgb(208,55,20)" fg:x="81300" fg:w="34"/><text x="36.7434%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (30 samples, 0.01%)</title><rect x="36.4952%" y="693" width="0.0135%" height="15" fill="rgb(218,39,14)" fg:x="81304" fg:w="30"/><text x="36.7452%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (50 samples, 0.02%)</title><rect x="36.4867%" y="741" width="0.0224%" height="15" fill="rgb(216,169,33)" fg:x="81285" fg:w="50"/><text x="36.7367%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (41 samples, 0.02%)</title><rect x="36.4907%" y="725" width="0.0184%" height="15" fill="rgb(233,80,24)" fg:x="81294" fg:w="41"/><text x="36.7407%" y="735.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (51 samples, 0.02%)</title><rect x="36.4867%" y="773" width="0.0229%" height="15" fill="rgb(213,179,31)" fg:x="81285" fg:w="51"/><text x="36.7367%" y="783.50"></text></g><g><title>G1CLDScanClosure::do_cld (51 samples, 0.02%)</title><rect x="36.4867%" y="757" width="0.0229%" height="15" fill="rgb(209,19,5)" fg:x="81285" fg:w="51"/><text x="36.7367%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (31 samples, 0.01%)</title><rect x="36.5096%" y="757" width="0.0139%" height="15" fill="rgb(219,18,35)" fg:x="81336" fg:w="31"/><text x="36.7596%" y="767.50"></text></g><g><title>JavaThread::oops_do (31 samples, 0.01%)</title><rect x="36.5096%" y="741" width="0.0139%" height="15" fill="rgb(209,169,16)" fg:x="81336" fg:w="31"/><text x="36.7596%" y="751.50"></text></g><g><title>G1RootProcessor::process_java_roots (83 samples, 0.04%)</title><rect x="36.4867%" y="789" width="0.0373%" height="15" fill="rgb(245,90,51)" fg:x="81285" fg:w="83"/><text x="36.7367%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (32 samples, 0.01%)</title><rect x="36.5096%" y="773" width="0.0144%" height="15" fill="rgb(220,99,45)" fg:x="81336" fg:w="32"/><text x="36.7596%" y="783.50"></text></g><g><title>G1RootProcessor::process_vm_roots (27 samples, 0.01%)</title><rect x="36.5239%" y="789" width="0.0121%" height="15" fill="rgb(249,89,25)" fg:x="81368" fg:w="27"/><text x="36.7739%" y="799.50"></text></g><g><title>G1ParTask::work (288 samples, 0.13%)</title><rect x="36.4113%" y="821" width="0.1293%" height="15" fill="rgb(239,193,0)" fg:x="81117" fg:w="288"/><text x="36.6613%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (121 samples, 0.05%)</title><rect x="36.4862%" y="805" width="0.0543%" height="15" fill="rgb(231,126,1)" fg:x="81284" fg:w="121"/><text x="36.7362%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (34 samples, 0.02%)</title><rect x="36.5423%" y="821" width="0.0153%" height="15" fill="rgb(243,166,3)" fg:x="81409" fg:w="34"/><text x="36.7923%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (32 samples, 0.01%)</title><rect x="36.5432%" y="805" width="0.0144%" height="15" fill="rgb(223,22,34)" fg:x="81411" fg:w="32"/><text x="36.7932%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (32 samples, 0.01%)</title><rect x="36.5432%" y="789" width="0.0144%" height="15" fill="rgb(251,52,51)" fg:x="81411" fg:w="32"/><text x="36.7932%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (32 samples, 0.01%)</title><rect x="36.5432%" y="773" width="0.0144%" height="15" fill="rgb(221,165,28)" fg:x="81411" fg:w="32"/><text x="36.7932%" y="783.50"></text></g><g><title>SpinPause (32 samples, 0.01%)</title><rect x="36.5432%" y="757" width="0.0144%" height="15" fill="rgb(218,121,47)" fg:x="81411" fg:w="32"/><text x="36.7932%" y="767.50"></text></g><g><title>ParallelSPCleanupTask::work (32 samples, 0.01%)</title><rect x="36.5580%" y="821" width="0.0144%" height="15" fill="rgb(209,120,9)" fg:x="81444" fg:w="32"/><text x="36.8080%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (28 samples, 0.01%)</title><rect x="36.5598%" y="805" width="0.0126%" height="15" fill="rgb(236,68,12)" fg:x="81448" fg:w="28"/><text x="36.8098%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.03%)</title><rect x="36.5782%" y="597" width="0.0328%" height="15" fill="rgb(225,194,26)" fg:x="81489" fg:w="73"/><text x="36.8282%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.03%)</title><rect x="36.5800%" y="581" width="0.0310%" height="15" fill="rgb(231,84,39)" fg:x="81493" fg:w="69"/><text x="36.8300%" y="591.50"></text></g><g><title>native_write_msr (68 samples, 0.03%)</title><rect x="36.5805%" y="565" width="0.0305%" height="15" fill="rgb(210,11,45)" fg:x="81494" fg:w="68"/><text x="36.8305%" y="575.50"></text></g><g><title>finish_task_switch (75 samples, 0.03%)</title><rect x="36.5782%" y="613" width="0.0337%" height="15" fill="rgb(224,54,52)" fg:x="81489" fg:w="75"/><text x="36.8282%" y="623.50"></text></g><g><title>futex_wait_queue_me (88 samples, 0.04%)</title><rect x="36.5742%" y="661" width="0.0395%" height="15" fill="rgb(238,102,14)" fg:x="81480" fg:w="88"/><text x="36.8242%" y="671.50"></text></g><g><title>schedule (86 samples, 0.04%)</title><rect x="36.5751%" y="645" width="0.0386%" height="15" fill="rgb(243,160,52)" fg:x="81482" fg:w="86"/><text x="36.8251%" y="655.50"></text></g><g><title>__schedule (85 samples, 0.04%)</title><rect x="36.5755%" y="629" width="0.0382%" height="15" fill="rgb(216,114,19)" fg:x="81483" fg:w="85"/><text x="36.8255%" y="639.50"></text></g><g><title>do_syscall_64 (91 samples, 0.04%)</title><rect x="36.5733%" y="725" width="0.0408%" height="15" fill="rgb(244,166,37)" fg:x="81478" fg:w="91"/><text x="36.8233%" y="735.50"></text></g><g><title>__x64_sys_futex (91 samples, 0.04%)</title><rect x="36.5733%" y="709" width="0.0408%" height="15" fill="rgb(246,29,44)" fg:x="81478" fg:w="91"/><text x="36.8233%" y="719.50"></text></g><g><title>do_futex (91 samples, 0.04%)</title><rect x="36.5733%" y="693" width="0.0408%" height="15" fill="rgb(215,56,53)" fg:x="81478" fg:w="91"/><text x="36.8233%" y="703.50"></text></g><g><title>futex_wait (91 samples, 0.04%)</title><rect x="36.5733%" y="677" width="0.0408%" height="15" fill="rgb(217,60,2)" fg:x="81478" fg:w="91"/><text x="36.8233%" y="687.50"></text></g><g><title>GC_Thread#3 (473 samples, 0.21%)</title><rect x="36.4027%" y="917" width="0.2123%" height="15" fill="rgb(207,26,24)" fg:x="81098" fg:w="473"/><text x="36.6527%" y="927.50"></text></g><g><title>__GI___clone (459 samples, 0.21%)</title><rect x="36.4090%" y="901" width="0.2060%" height="15" fill="rgb(252,210,15)" fg:x="81112" fg:w="459"/><text x="36.6590%" y="911.50"></text></g><g><title>start_thread (459 samples, 0.21%)</title><rect x="36.4090%" y="885" width="0.2060%" height="15" fill="rgb(253,209,26)" fg:x="81112" fg:w="459"/><text x="36.6590%" y="895.50"></text></g><g><title>thread_native_entry (459 samples, 0.21%)</title><rect x="36.4090%" y="869" width="0.2060%" height="15" fill="rgb(238,170,14)" fg:x="81112" fg:w="459"/><text x="36.6590%" y="879.50"></text></g><g><title>Thread::call_run (459 samples, 0.21%)</title><rect x="36.4090%" y="853" width="0.2060%" height="15" fill="rgb(216,178,15)" fg:x="81112" fg:w="459"/><text x="36.6590%" y="863.50"></text></g><g><title>GangWorker::loop (459 samples, 0.21%)</title><rect x="36.4090%" y="837" width="0.2060%" height="15" fill="rgb(250,197,2)" fg:x="81112" fg:w="459"/><text x="36.6590%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (95 samples, 0.04%)</title><rect x="36.5724%" y="821" width="0.0426%" height="15" fill="rgb(212,70,42)" fg:x="81476" fg:w="95"/><text x="36.8224%" y="831.50"></text></g><g><title>PosixSemaphore::wait (94 samples, 0.04%)</title><rect x="36.5729%" y="805" width="0.0422%" height="15" fill="rgb(227,213,9)" fg:x="81477" fg:w="94"/><text x="36.8229%" y="815.50"></text></g><g><title>__new_sem_wait_slow (94 samples, 0.04%)</title><rect x="36.5729%" y="789" width="0.0422%" height="15" fill="rgb(245,99,25)" fg:x="81477" fg:w="94"/><text x="36.8229%" y="799.50"></text></g><g><title>do_futex_wait (93 samples, 0.04%)</title><rect x="36.5733%" y="773" width="0.0417%" height="15" fill="rgb(250,82,29)" fg:x="81478" fg:w="93"/><text x="36.8233%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (93 samples, 0.04%)</title><rect x="36.5733%" y="757" width="0.0417%" height="15" fill="rgb(241,226,54)" fg:x="81478" fg:w="93"/><text x="36.8233%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.04%)</title><rect x="36.5733%" y="741" width="0.0417%" height="15" fill="rgb(221,99,41)" fg:x="81478" fg:w="93"/><text x="36.8233%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (31 samples, 0.01%)</title><rect x="36.6335%" y="773" width="0.0139%" height="15" fill="rgb(213,90,21)" fg:x="81612" fg:w="31"/><text x="36.8835%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue (45 samples, 0.02%)</title><rect x="36.6285%" y="789" width="0.0202%" height="15" fill="rgb(205,208,24)" fg:x="81601" fg:w="45"/><text x="36.8785%" y="799.50"></text></g><g><title>SpinPause (80 samples, 0.04%)</title><rect x="36.6505%" y="789" width="0.0359%" height="15" fill="rgb(246,31,12)" fg:x="81650" fg:w="80"/><text x="36.9005%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (140 samples, 0.06%)</title><rect x="36.6249%" y="805" width="0.0628%" height="15" fill="rgb(213,154,6)" fg:x="81593" fg:w="140"/><text x="36.8749%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (32 samples, 0.01%)</title><rect x="36.6882%" y="725" width="0.0144%" height="15" fill="rgb(222,163,29)" fg:x="81734" fg:w="32"/><text x="36.9382%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (23 samples, 0.01%)</title><rect x="36.6923%" y="709" width="0.0103%" height="15" fill="rgb(227,201,8)" fg:x="81743" fg:w="23"/><text x="36.9423%" y="719.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (36 samples, 0.02%)</title><rect x="36.6882%" y="805" width="0.0162%" height="15" fill="rgb(233,9,32)" fg:x="81734" fg:w="36"/><text x="36.9382%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (36 samples, 0.02%)</title><rect x="36.6882%" y="789" width="0.0162%" height="15" fill="rgb(217,54,24)" fg:x="81734" fg:w="36"/><text x="36.9382%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (36 samples, 0.02%)</title><rect x="36.6882%" y="773" width="0.0162%" height="15" fill="rgb(235,192,0)" fg:x="81734" fg:w="36"/><text x="36.9382%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (36 samples, 0.02%)</title><rect x="36.6882%" y="757" width="0.0162%" height="15" fill="rgb(235,45,9)" fg:x="81734" fg:w="36"/><text x="36.9382%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (36 samples, 0.02%)</title><rect x="36.6882%" y="741" width="0.0162%" height="15" fill="rgb(246,42,40)" fg:x="81734" fg:w="36"/><text x="36.9382%" y="751.50"></text></g><g><title>G1RemSet::scan_rem_set (31 samples, 0.01%)</title><rect x="36.7044%" y="805" width="0.0139%" height="15" fill="rgb(248,111,24)" fg:x="81770" fg:w="31"/><text x="36.9544%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (31 samples, 0.01%)</title><rect x="36.7044%" y="789" width="0.0139%" height="15" fill="rgb(249,65,22)" fg:x="81770" fg:w="31"/><text x="36.9544%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (31 samples, 0.01%)</title><rect x="36.7044%" y="773" width="0.0139%" height="15" fill="rgb(238,111,51)" fg:x="81770" fg:w="31"/><text x="36.9544%" y="783.50"></text></g><g><title>InterpreterOopMap::iterate_oop (30 samples, 0.01%)</title><rect x="36.7362%" y="709" width="0.0135%" height="15" fill="rgb(250,118,22)" fg:x="81841" fg:w="30"/><text x="36.9862%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (28 samples, 0.01%)</title><rect x="36.7371%" y="693" width="0.0126%" height="15" fill="rgb(234,84,26)" fg:x="81843" fg:w="28"/><text x="36.9871%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (76 samples, 0.03%)</title><rect x="36.7187%" y="789" width="0.0341%" height="15" fill="rgb(243,172,12)" fg:x="81802" fg:w="76"/><text x="36.9687%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (76 samples, 0.03%)</title><rect x="36.7187%" y="773" width="0.0341%" height="15" fill="rgb(236,150,49)" fg:x="81802" fg:w="76"/><text x="36.9687%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (76 samples, 0.03%)</title><rect x="36.7187%" y="757" width="0.0341%" height="15" fill="rgb(225,197,26)" fg:x="81802" fg:w="76"/><text x="36.9687%" y="767.50"></text></g><g><title>JavaThread::oops_do (76 samples, 0.03%)</title><rect x="36.7187%" y="741" width="0.0341%" height="15" fill="rgb(214,17,42)" fg:x="81802" fg:w="76"/><text x="36.9687%" y="751.50"></text></g><g><title>frame::oops_interpreted_do (50 samples, 0.02%)</title><rect x="36.7304%" y="725" width="0.0224%" height="15" fill="rgb(224,165,40)" fg:x="81828" fg:w="50"/><text x="36.9804%" y="735.50"></text></g><g><title>G1ParTask::work (300 samples, 0.13%)</title><rect x="36.6249%" y="821" width="0.1347%" height="15" fill="rgb(246,100,4)" fg:x="81593" fg:w="300"/><text x="36.8749%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (92 samples, 0.04%)</title><rect x="36.7183%" y="805" width="0.0413%" height="15" fill="rgb(222,103,0)" fg:x="81801" fg:w="92"/><text x="36.9683%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (33 samples, 0.01%)</title><rect x="36.7623%" y="821" width="0.0148%" height="15" fill="rgb(227,189,26)" fg:x="81899" fg:w="33"/><text x="37.0123%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (23 samples, 0.01%)</title><rect x="36.7668%" y="805" width="0.0103%" height="15" fill="rgb(214,202,17)" fg:x="81909" fg:w="23"/><text x="37.0168%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (23 samples, 0.01%)</title><rect x="36.7668%" y="789" width="0.0103%" height="15" fill="rgb(229,111,3)" fg:x="81909" fg:w="23"/><text x="37.0168%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (23 samples, 0.01%)</title><rect x="36.7668%" y="773" width="0.0103%" height="15" fill="rgb(229,172,15)" fg:x="81909" fg:w="23"/><text x="37.0168%" y="783.50"></text></g><g><title>ParallelSPCleanupTask::work (23 samples, 0.01%)</title><rect x="36.7789%" y="821" width="0.0103%" height="15" fill="rgb(230,224,35)" fg:x="81936" fg:w="23"/><text x="37.0289%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (23 samples, 0.01%)</title><rect x="36.7789%" y="805" width="0.0103%" height="15" fill="rgb(251,141,6)" fg:x="81936" fg:w="23"/><text x="37.0289%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.04%)</title><rect x="36.7946%" y="597" width="0.0377%" height="15" fill="rgb(225,208,6)" fg:x="81971" fg:w="84"/><text x="37.0446%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.04%)</title><rect x="36.7959%" y="581" width="0.0364%" height="15" fill="rgb(246,181,16)" fg:x="81974" fg:w="81"/><text x="37.0459%" y="591.50"></text></g><g><title>native_write_msr (81 samples, 0.04%)</title><rect x="36.7959%" y="565" width="0.0364%" height="15" fill="rgb(227,129,36)" fg:x="81974" fg:w="81"/><text x="37.0459%" y="575.50"></text></g><g><title>finish_task_switch (85 samples, 0.04%)</title><rect x="36.7946%" y="613" width="0.0382%" height="15" fill="rgb(248,117,24)" fg:x="81971" fg:w="85"/><text x="37.0446%" y="623.50"></text></g><g><title>futex_wait_queue_me (97 samples, 0.04%)</title><rect x="36.7915%" y="661" width="0.0435%" height="15" fill="rgb(214,185,35)" fg:x="81964" fg:w="97"/><text x="37.0415%" y="671.50"></text></g><g><title>schedule (94 samples, 0.04%)</title><rect x="36.7928%" y="645" width="0.0422%" height="15" fill="rgb(236,150,34)" fg:x="81967" fg:w="94"/><text x="37.0428%" y="655.50"></text></g><g><title>__schedule (94 samples, 0.04%)</title><rect x="36.7928%" y="629" width="0.0422%" height="15" fill="rgb(243,228,27)" fg:x="81967" fg:w="94"/><text x="37.0428%" y="639.50"></text></g><g><title>do_syscall_64 (100 samples, 0.04%)</title><rect x="36.7906%" y="725" width="0.0449%" height="15" fill="rgb(245,77,44)" fg:x="81962" fg:w="100"/><text x="37.0406%" y="735.50"></text></g><g><title>__x64_sys_futex (100 samples, 0.04%)</title><rect x="36.7906%" y="709" width="0.0449%" height="15" fill="rgb(235,214,42)" fg:x="81962" fg:w="100"/><text x="37.0406%" y="719.50"></text></g><g><title>do_futex (99 samples, 0.04%)</title><rect x="36.7910%" y="693" width="0.0444%" height="15" fill="rgb(221,74,3)" fg:x="81963" fg:w="99"/><text x="37.0410%" y="703.50"></text></g><g><title>futex_wait (98 samples, 0.04%)</title><rect x="36.7915%" y="677" width="0.0440%" height="15" fill="rgb(206,121,29)" fg:x="81964" fg:w="98"/><text x="37.0415%" y="687.50"></text></g><g><title>GC_Thread#4 (492 samples, 0.22%)</title><rect x="36.6150%" y="917" width="0.2208%" height="15" fill="rgb(249,131,53)" fg:x="81571" fg:w="492"/><text x="36.8650%" y="927.50"></text></g><g><title>__GI___clone (478 samples, 0.21%)</title><rect x="36.6213%" y="901" width="0.2146%" height="15" fill="rgb(236,170,29)" fg:x="81585" fg:w="478"/><text x="36.8713%" y="911.50"></text></g><g><title>start_thread (478 samples, 0.21%)</title><rect x="36.6213%" y="885" width="0.2146%" height="15" fill="rgb(247,96,15)" fg:x="81585" fg:w="478"/><text x="36.8713%" y="895.50"></text></g><g><title>thread_native_entry (478 samples, 0.21%)</title><rect x="36.6213%" y="869" width="0.2146%" height="15" fill="rgb(211,210,7)" fg:x="81585" fg:w="478"/><text x="36.8713%" y="879.50"></text></g><g><title>Thread::call_run (478 samples, 0.21%)</title><rect x="36.6213%" y="853" width="0.2146%" height="15" fill="rgb(240,88,50)" fg:x="81585" fg:w="478"/><text x="36.8713%" y="863.50"></text></g><g><title>GangWorker::loop (478 samples, 0.21%)</title><rect x="36.6213%" y="837" width="0.2146%" height="15" fill="rgb(209,229,26)" fg:x="81585" fg:w="478"/><text x="36.8713%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (103 samples, 0.05%)</title><rect x="36.7897%" y="821" width="0.0462%" height="15" fill="rgb(210,68,23)" fg:x="81960" fg:w="103"/><text x="37.0397%" y="831.50"></text></g><g><title>PosixSemaphore::wait (103 samples, 0.05%)</title><rect x="36.7897%" y="805" width="0.0462%" height="15" fill="rgb(229,180,13)" fg:x="81960" fg:w="103"/><text x="37.0397%" y="815.50"></text></g><g><title>__new_sem_wait_slow (103 samples, 0.05%)</title><rect x="36.7897%" y="789" width="0.0462%" height="15" fill="rgb(236,53,44)" fg:x="81960" fg:w="103"/><text x="37.0397%" y="799.50"></text></g><g><title>do_futex_wait (102 samples, 0.05%)</title><rect x="36.7901%" y="773" width="0.0458%" height="15" fill="rgb(244,214,29)" fg:x="81961" fg:w="102"/><text x="37.0401%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (102 samples, 0.05%)</title><rect x="36.7901%" y="757" width="0.0458%" height="15" fill="rgb(220,75,29)" fg:x="81961" fg:w="102"/><text x="37.0401%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (101 samples, 0.05%)</title><rect x="36.7906%" y="741" width="0.0453%" height="15" fill="rgb(214,183,37)" fg:x="81962" fg:w="101"/><text x="37.0406%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (34 samples, 0.02%)</title><rect x="36.8494%" y="789" width="0.0153%" height="15" fill="rgb(239,117,29)" fg:x="82093" fg:w="34"/><text x="37.0994%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (81 samples, 0.04%)</title><rect x="36.8449%" y="805" width="0.0364%" height="15" fill="rgb(237,171,35)" fg:x="82083" fg:w="81"/><text x="37.0949%" y="815.50"></text></g><g><title>SpinPause (34 samples, 0.02%)</title><rect x="36.8660%" y="789" width="0.0153%" height="15" fill="rgb(229,178,53)" fg:x="82130" fg:w="34"/><text x="37.1160%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (25 samples, 0.01%)</title><rect x="36.8812%" y="725" width="0.0112%" height="15" fill="rgb(210,102,19)" fg:x="82164" fg:w="25"/><text x="37.1312%" y="735.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (30 samples, 0.01%)</title><rect x="36.8812%" y="805" width="0.0135%" height="15" fill="rgb(235,127,22)" fg:x="82164" fg:w="30"/><text x="37.1312%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (30 samples, 0.01%)</title><rect x="36.8812%" y="789" width="0.0135%" height="15" fill="rgb(244,31,31)" fg:x="82164" fg:w="30"/><text x="37.1312%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (30 samples, 0.01%)</title><rect x="36.8812%" y="773" width="0.0135%" height="15" fill="rgb(231,43,21)" fg:x="82164" fg:w="30"/><text x="37.1312%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (30 samples, 0.01%)</title><rect x="36.8812%" y="757" width="0.0135%" height="15" fill="rgb(217,131,35)" fg:x="82164" fg:w="30"/><text x="37.1312%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (30 samples, 0.01%)</title><rect x="36.8812%" y="741" width="0.0135%" height="15" fill="rgb(221,149,4)" fg:x="82164" fg:w="30"/><text x="37.1312%" y="751.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (25 samples, 0.01%)</title><rect x="36.8951%" y="741" width="0.0112%" height="15" fill="rgb(232,170,28)" fg:x="82195" fg:w="25"/><text x="37.1451%" y="751.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (26 samples, 0.01%)</title><rect x="36.8951%" y="757" width="0.0117%" height="15" fill="rgb(238,56,10)" fg:x="82195" fg:w="26"/><text x="37.1451%" y="767.50"></text></g><g><title>G1RemSet::scan_rem_set (32 samples, 0.01%)</title><rect x="36.8947%" y="805" width="0.0144%" height="15" fill="rgb(235,196,14)" fg:x="82194" fg:w="32"/><text x="37.1447%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (32 samples, 0.01%)</title><rect x="36.8947%" y="789" width="0.0144%" height="15" fill="rgb(216,45,48)" fg:x="82194" fg:w="32"/><text x="37.1447%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (32 samples, 0.01%)</title><rect x="36.8947%" y="773" width="0.0144%" height="15" fill="rgb(238,213,17)" fg:x="82194" fg:w="32"/><text x="37.1447%" y="783.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (23 samples, 0.01%)</title><rect x="36.9091%" y="773" width="0.0103%" height="15" fill="rgb(212,13,2)" fg:x="82226" fg:w="23"/><text x="37.1591%" y="783.50"></text></g><g><title>G1RootProcessor::process_java_roots (73 samples, 0.03%)</title><rect x="36.9091%" y="789" width="0.0328%" height="15" fill="rgb(240,114,20)" fg:x="82226" fg:w="73"/><text x="37.1591%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (50 samples, 0.02%)</title><rect x="36.9194%" y="773" width="0.0224%" height="15" fill="rgb(228,41,40)" fg:x="82249" fg:w="50"/><text x="37.1694%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (50 samples, 0.02%)</title><rect x="36.9194%" y="757" width="0.0224%" height="15" fill="rgb(244,132,35)" fg:x="82249" fg:w="50"/><text x="37.1694%" y="767.50"></text></g><g><title>JavaThread::oops_do (42 samples, 0.02%)</title><rect x="36.9230%" y="741" width="0.0189%" height="15" fill="rgb(253,189,4)" fg:x="82257" fg:w="42"/><text x="37.1730%" y="751.50"></text></g><g><title>frame::oops_interpreted_do (27 samples, 0.01%)</title><rect x="36.9297%" y="725" width="0.0121%" height="15" fill="rgb(224,37,19)" fg:x="82272" fg:w="27"/><text x="37.1797%" y="735.50"></text></g><g><title>G1ParTask::work (234 samples, 0.11%)</title><rect x="36.8449%" y="821" width="0.1050%" height="15" fill="rgb(235,223,18)" fg:x="82083" fg:w="234"/><text x="37.0949%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (91 samples, 0.04%)</title><rect x="36.9091%" y="805" width="0.0408%" height="15" fill="rgb(235,163,25)" fg:x="82226" fg:w="91"/><text x="37.1591%" y="815.50"></text></g><g><title>ParallelSPCleanupTask::work (33 samples, 0.01%)</title><rect x="36.9665%" y="821" width="0.0148%" height="15" fill="rgb(217,145,28)" fg:x="82354" fg:w="33"/><text x="37.2165%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (31 samples, 0.01%)</title><rect x="36.9674%" y="805" width="0.0139%" height="15" fill="rgb(223,223,32)" fg:x="82356" fg:w="31"/><text x="37.2174%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.03%)</title><rect x="36.9867%" y="597" width="0.0337%" height="15" fill="rgb(227,189,39)" fg:x="82399" fg:w="75"/><text x="37.2367%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.03%)</title><rect x="36.9885%" y="581" width="0.0319%" height="15" fill="rgb(248,10,22)" fg:x="82403" fg:w="71"/><text x="37.2385%" y="591.50"></text></g><g><title>native_write_msr (71 samples, 0.03%)</title><rect x="36.9885%" y="565" width="0.0319%" height="15" fill="rgb(248,46,39)" fg:x="82403" fg:w="71"/><text x="37.2385%" y="575.50"></text></g><g><title>finish_task_switch (79 samples, 0.04%)</title><rect x="36.9858%" y="613" width="0.0355%" height="15" fill="rgb(248,113,48)" fg:x="82397" fg:w="79"/><text x="37.2358%" y="623.50"></text></g><g><title>do_syscall_64 (88 samples, 0.04%)</title><rect x="36.9827%" y="725" width="0.0395%" height="15" fill="rgb(245,16,25)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="735.50"></text></g><g><title>__x64_sys_futex (88 samples, 0.04%)</title><rect x="36.9827%" y="709" width="0.0395%" height="15" fill="rgb(249,152,16)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="719.50"></text></g><g><title>do_futex (88 samples, 0.04%)</title><rect x="36.9827%" y="693" width="0.0395%" height="15" fill="rgb(250,16,1)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="703.50"></text></g><g><title>futex_wait (88 samples, 0.04%)</title><rect x="36.9827%" y="677" width="0.0395%" height="15" fill="rgb(249,138,3)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="687.50"></text></g><g><title>futex_wait_queue_me (88 samples, 0.04%)</title><rect x="36.9827%" y="661" width="0.0395%" height="15" fill="rgb(227,71,41)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="671.50"></text></g><g><title>schedule (88 samples, 0.04%)</title><rect x="36.9827%" y="645" width="0.0395%" height="15" fill="rgb(209,184,23)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="655.50"></text></g><g><title>__schedule (88 samples, 0.04%)</title><rect x="36.9827%" y="629" width="0.0395%" height="15" fill="rgb(223,215,31)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="639.50"></text></g><g><title>GC_Thread#5 (417 samples, 0.19%)</title><rect x="36.8359%" y="917" width="0.1872%" height="15" fill="rgb(210,146,28)" fg:x="82063" fg:w="417"/><text x="37.0859%" y="927.50"></text></g><g><title>__GI___clone (413 samples, 0.19%)</title><rect x="36.8377%" y="901" width="0.1854%" height="15" fill="rgb(209,183,41)" fg:x="82067" fg:w="413"/><text x="37.0877%" y="911.50"></text></g><g><title>start_thread (413 samples, 0.19%)</title><rect x="36.8377%" y="885" width="0.1854%" height="15" fill="rgb(209,224,45)" fg:x="82067" fg:w="413"/><text x="37.0877%" y="895.50"></text></g><g><title>thread_native_entry (413 samples, 0.19%)</title><rect x="36.8377%" y="869" width="0.1854%" height="15" fill="rgb(224,209,51)" fg:x="82067" fg:w="413"/><text x="37.0877%" y="879.50"></text></g><g><title>Thread::call_run (413 samples, 0.19%)</title><rect x="36.8377%" y="853" width="0.1854%" height="15" fill="rgb(223,17,39)" fg:x="82067" fg:w="413"/><text x="37.0877%" y="863.50"></text></g><g><title>GangWorker::loop (413 samples, 0.19%)</title><rect x="36.8377%" y="837" width="0.1854%" height="15" fill="rgb(234,204,37)" fg:x="82067" fg:w="413"/><text x="37.0877%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (92 samples, 0.04%)</title><rect x="36.9818%" y="821" width="0.0413%" height="15" fill="rgb(236,120,5)" fg:x="82388" fg:w="92"/><text x="37.2318%" y="831.50"></text></g><g><title>PosixSemaphore::wait (91 samples, 0.04%)</title><rect x="36.9822%" y="805" width="0.0408%" height="15" fill="rgb(248,97,27)" fg:x="82389" fg:w="91"/><text x="37.2322%" y="815.50"></text></g><g><title>__new_sem_wait_slow (90 samples, 0.04%)</title><rect x="36.9827%" y="789" width="0.0404%" height="15" fill="rgb(240,66,17)" fg:x="82390" fg:w="90"/><text x="37.2327%" y="799.50"></text></g><g><title>do_futex_wait (90 samples, 0.04%)</title><rect x="36.9827%" y="773" width="0.0404%" height="15" fill="rgb(210,79,3)" fg:x="82390" fg:w="90"/><text x="37.2327%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (90 samples, 0.04%)</title><rect x="36.9827%" y="757" width="0.0404%" height="15" fill="rgb(214,176,27)" fg:x="82390" fg:w="90"/><text x="37.2327%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (90 samples, 0.04%)</title><rect x="36.9827%" y="741" width="0.0404%" height="15" fill="rgb(235,185,3)" fg:x="82390" fg:w="90"/><text x="37.2327%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (44 samples, 0.02%)</title><rect x="37.0334%" y="789" width="0.0198%" height="15" fill="rgb(227,24,12)" fg:x="82503" fg:w="44"/><text x="37.2834%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (155 samples, 0.07%)</title><rect x="37.0312%" y="805" width="0.0696%" height="15" fill="rgb(252,169,48)" fg:x="82498" fg:w="155"/><text x="37.2812%" y="815.50"></text></g><g><title>SpinPause (102 samples, 0.05%)</title><rect x="37.0549%" y="789" width="0.0458%" height="15" fill="rgb(212,65,1)" fg:x="82551" fg:w="102"/><text x="37.3049%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (31 samples, 0.01%)</title><rect x="37.1007%" y="725" width="0.0139%" height="15" fill="rgb(242,39,24)" fg:x="82653" fg:w="31"/><text x="37.3507%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (27 samples, 0.01%)</title><rect x="37.1025%" y="709" width="0.0121%" height="15" fill="rgb(249,32,23)" fg:x="82657" fg:w="27"/><text x="37.3525%" y="719.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (40 samples, 0.02%)</title><rect x="37.1007%" y="805" width="0.0180%" height="15" fill="rgb(251,195,23)" fg:x="82653" fg:w="40"/><text x="37.3507%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (40 samples, 0.02%)</title><rect x="37.1007%" y="789" width="0.0180%" height="15" fill="rgb(236,174,8)" fg:x="82653" fg:w="40"/><text x="37.3507%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (40 samples, 0.02%)</title><rect x="37.1007%" y="773" width="0.0180%" height="15" fill="rgb(220,197,8)" fg:x="82653" fg:w="40"/><text x="37.3507%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (40 samples, 0.02%)</title><rect x="37.1007%" y="757" width="0.0180%" height="15" fill="rgb(240,108,37)" fg:x="82653" fg:w="40"/><text x="37.3507%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (40 samples, 0.02%)</title><rect x="37.1007%" y="741" width="0.0180%" height="15" fill="rgb(232,176,24)" fg:x="82653" fg:w="40"/><text x="37.3507%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (28 samples, 0.01%)</title><rect x="37.1187%" y="725" width="0.0126%" height="15" fill="rgb(243,35,29)" fg:x="82693" fg:w="28"/><text x="37.3687%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (31 samples, 0.01%)</title><rect x="37.1187%" y="757" width="0.0139%" height="15" fill="rgb(210,37,18)" fg:x="82693" fg:w="31"/><text x="37.3687%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (31 samples, 0.01%)</title><rect x="37.1187%" y="741" width="0.0139%" height="15" fill="rgb(224,184,40)" fg:x="82693" fg:w="31"/><text x="37.3687%" y="751.50"></text></g><g><title>G1RemSet::scan_rem_set (62 samples, 0.03%)</title><rect x="37.1187%" y="805" width="0.0278%" height="15" fill="rgb(236,39,29)" fg:x="82693" fg:w="62"/><text x="37.3687%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (62 samples, 0.03%)</title><rect x="37.1187%" y="789" width="0.0278%" height="15" fill="rgb(232,48,39)" fg:x="82693" fg:w="62"/><text x="37.3687%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (62 samples, 0.03%)</title><rect x="37.1187%" y="773" width="0.0278%" height="15" fill="rgb(236,34,42)" fg:x="82693" fg:w="62"/><text x="37.3687%" y="783.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (31 samples, 0.01%)</title><rect x="37.1326%" y="757" width="0.0139%" height="15" fill="rgb(243,106,37)" fg:x="82724" fg:w="31"/><text x="37.3826%" y="767.50"></text></g><g><title>G1CodeRootSet::nmethods_do (31 samples, 0.01%)</title><rect x="37.1326%" y="741" width="0.0139%" height="15" fill="rgb(218,96,6)" fg:x="82724" fg:w="31"/><text x="37.3826%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (36 samples, 0.02%)</title><rect x="37.1699%" y="677" width="0.0162%" height="15" fill="rgb(235,130,12)" fg:x="82807" fg:w="36"/><text x="37.4199%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (31 samples, 0.01%)</title><rect x="37.1721%" y="661" width="0.0139%" height="15" fill="rgb(231,95,0)" fg:x="82812" fg:w="31"/><text x="37.4221%" y="671.50"></text></g><g><title>InterpreterOopMap::iterate_oop (55 samples, 0.02%)</title><rect x="37.1627%" y="709" width="0.0247%" height="15" fill="rgb(228,12,23)" fg:x="82791" fg:w="55"/><text x="37.4127%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (55 samples, 0.02%)</title><rect x="37.1627%" y="693" width="0.0247%" height="15" fill="rgb(216,12,1)" fg:x="82791" fg:w="55"/><text x="37.4127%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (93 samples, 0.04%)</title><rect x="37.1483%" y="789" width="0.0417%" height="15" fill="rgb(219,59,3)" fg:x="82759" fg:w="93"/><text x="37.3983%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (93 samples, 0.04%)</title><rect x="37.1483%" y="773" width="0.0417%" height="15" fill="rgb(215,208,46)" fg:x="82759" fg:w="93"/><text x="37.3983%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (93 samples, 0.04%)</title><rect x="37.1483%" y="757" width="0.0417%" height="15" fill="rgb(254,224,29)" fg:x="82759" fg:w="93"/><text x="37.3983%" y="767.50"></text></g><g><title>JavaThread::oops_do (93 samples, 0.04%)</title><rect x="37.1483%" y="741" width="0.0417%" height="15" fill="rgb(232,14,29)" fg:x="82759" fg:w="93"/><text x="37.3983%" y="751.50"></text></g><g><title>frame::oops_interpreted_do (64 samples, 0.03%)</title><rect x="37.1613%" y="725" width="0.0287%" height="15" fill="rgb(208,45,52)" fg:x="82788" fg:w="64"/><text x="37.4113%" y="735.50"></text></g><g><title>G1ParTask::work (369 samples, 0.17%)</title><rect x="37.0312%" y="821" width="0.1656%" height="15" fill="rgb(234,191,28)" fg:x="82498" fg:w="369"/><text x="37.2812%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (112 samples, 0.05%)</title><rect x="37.1465%" y="805" width="0.0503%" height="15" fill="rgb(244,67,43)" fg:x="82755" fg:w="112"/><text x="37.3965%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (37 samples, 0.02%)</title><rect x="37.2026%" y="821" width="0.0166%" height="15" fill="rgb(236,189,24)" fg:x="82880" fg:w="37"/><text x="37.4526%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (29 samples, 0.01%)</title><rect x="37.2062%" y="805" width="0.0130%" height="15" fill="rgb(239,214,33)" fg:x="82888" fg:w="29"/><text x="37.4562%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (29 samples, 0.01%)</title><rect x="37.2062%" y="789" width="0.0130%" height="15" fill="rgb(226,176,41)" fg:x="82888" fg:w="29"/><text x="37.4562%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (29 samples, 0.01%)</title><rect x="37.2062%" y="773" width="0.0130%" height="15" fill="rgb(248,47,8)" fg:x="82888" fg:w="29"/><text x="37.4562%" y="783.50"></text></g><g><title>SpinPause (29 samples, 0.01%)</title><rect x="37.2062%" y="757" width="0.0130%" height="15" fill="rgb(218,81,44)" fg:x="82888" fg:w="29"/><text x="37.4562%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (65 samples, 0.03%)</title><rect x="37.2318%" y="597" width="0.0292%" height="15" fill="rgb(213,98,6)" fg:x="82945" fg:w="65"/><text x="37.4818%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.03%)</title><rect x="37.2318%" y="581" width="0.0292%" height="15" fill="rgb(222,85,22)" fg:x="82945" fg:w="65"/><text x="37.4818%" y="591.50"></text></g><g><title>native_write_msr (65 samples, 0.03%)</title><rect x="37.2318%" y="565" width="0.0292%" height="15" fill="rgb(239,46,39)" fg:x="82945" fg:w="65"/><text x="37.4818%" y="575.50"></text></g><g><title>finish_task_switch (68 samples, 0.03%)</title><rect x="37.2309%" y="613" width="0.0305%" height="15" fill="rgb(237,12,29)" fg:x="82943" fg:w="68"/><text x="37.4809%" y="623.50"></text></g><g><title>do_syscall_64 (74 samples, 0.03%)</title><rect x="37.2296%" y="725" width="0.0332%" height="15" fill="rgb(214,77,8)" fg:x="82940" fg:w="74"/><text x="37.4796%" y="735.50"></text></g><g><title>__x64_sys_futex (74 samples, 0.03%)</title><rect x="37.2296%" y="709" width="0.0332%" height="15" fill="rgb(217,168,37)" fg:x="82940" fg:w="74"/><text x="37.4796%" y="719.50"></text></g><g><title>do_futex (74 samples, 0.03%)</title><rect x="37.2296%" y="693" width="0.0332%" height="15" fill="rgb(221,217,23)" fg:x="82940" fg:w="74"/><text x="37.4796%" y="703.50"></text></g><g><title>futex_wait (74 samples, 0.03%)</title><rect x="37.2296%" y="677" width="0.0332%" height="15" fill="rgb(243,229,36)" fg:x="82940" fg:w="74"/><text x="37.4796%" y="687.50"></text></g><g><title>futex_wait_queue_me (74 samples, 0.03%)</title><rect x="37.2296%" y="661" width="0.0332%" height="15" fill="rgb(251,163,40)" fg:x="82940" fg:w="74"/><text x="37.4796%" y="671.50"></text></g><g><title>schedule (73 samples, 0.03%)</title><rect x="37.2300%" y="645" width="0.0328%" height="15" fill="rgb(237,222,12)" fg:x="82941" fg:w="73"/><text x="37.4800%" y="655.50"></text></g><g><title>__schedule (73 samples, 0.03%)</title><rect x="37.2300%" y="629" width="0.0328%" height="15" fill="rgb(248,132,6)" fg:x="82941" fg:w="73"/><text x="37.4800%" y="639.50"></text></g><g><title>__new_sem_wait_slow (79 samples, 0.04%)</title><rect x="37.2287%" y="789" width="0.0355%" height="15" fill="rgb(227,167,50)" fg:x="82938" fg:w="79"/><text x="37.4787%" y="799.50"></text></g><g><title>do_futex_wait (79 samples, 0.04%)</title><rect x="37.2287%" y="773" width="0.0355%" height="15" fill="rgb(242,84,37)" fg:x="82938" fg:w="79"/><text x="37.4787%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (79 samples, 0.04%)</title><rect x="37.2287%" y="757" width="0.0355%" height="15" fill="rgb(212,4,50)" fg:x="82938" fg:w="79"/><text x="37.4787%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.04%)</title><rect x="37.2291%" y="741" width="0.0350%" height="15" fill="rgb(230,228,32)" fg:x="82939" fg:w="78"/><text x="37.4791%" y="751.50"></text></g><g><title>__GI___clone (532 samples, 0.24%)</title><rect x="37.0258%" y="901" width="0.2388%" height="15" fill="rgb(248,217,23)" fg:x="82486" fg:w="532"/><text x="37.2758%" y="911.50"></text></g><g><title>start_thread (532 samples, 0.24%)</title><rect x="37.0258%" y="885" width="0.2388%" height="15" fill="rgb(238,197,32)" fg:x="82486" fg:w="532"/><text x="37.2758%" y="895.50"></text></g><g><title>thread_native_entry (532 samples, 0.24%)</title><rect x="37.0258%" y="869" width="0.2388%" height="15" fill="rgb(236,106,1)" fg:x="82486" fg:w="532"/><text x="37.2758%" y="879.50"></text></g><g><title>Thread::call_run (532 samples, 0.24%)</title><rect x="37.0258%" y="853" width="0.2388%" height="15" fill="rgb(219,228,13)" fg:x="82486" fg:w="532"/><text x="37.2758%" y="863.50"></text></g><g><title>GangWorker::loop (532 samples, 0.24%)</title><rect x="37.0258%" y="837" width="0.2388%" height="15" fill="rgb(238,30,35)" fg:x="82486" fg:w="532"/><text x="37.2758%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (81 samples, 0.04%)</title><rect x="37.2282%" y="821" width="0.0364%" height="15" fill="rgb(236,70,23)" fg:x="82937" fg:w="81"/><text x="37.4782%" y="831.50"></text></g><g><title>PosixSemaphore::wait (81 samples, 0.04%)</title><rect x="37.2282%" y="805" width="0.0364%" height="15" fill="rgb(249,104,48)" fg:x="82937" fg:w="81"/><text x="37.4782%" y="815.50"></text></g><g><title>GC_Thread#6 (540 samples, 0.24%)</title><rect x="37.0231%" y="917" width="0.2424%" height="15" fill="rgb(254,117,50)" fg:x="82480" fg:w="540"/><text x="37.2731%" y="927.50"></text></g><g><title>G1ParScanThreadState::trim_queue (27 samples, 0.01%)</title><rect x="37.2744%" y="789" width="0.0121%" height="15" fill="rgb(223,152,4)" fg:x="83040" fg:w="27"/><text x="37.5244%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (99 samples, 0.04%)</title><rect x="37.2735%" y="805" width="0.0444%" height="15" fill="rgb(245,6,2)" fg:x="83038" fg:w="99"/><text x="37.5235%" y="815.50"></text></g><g><title>SpinPause (66 samples, 0.03%)</title><rect x="37.2884%" y="789" width="0.0296%" height="15" fill="rgb(249,150,24)" fg:x="83071" fg:w="66"/><text x="37.5384%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (23 samples, 0.01%)</title><rect x="37.3247%" y="725" width="0.0103%" height="15" fill="rgb(228,185,42)" fg:x="83152" fg:w="23"/><text x="37.5747%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (27 samples, 0.01%)</title><rect x="37.3247%" y="757" width="0.0121%" height="15" fill="rgb(226,39,33)" fg:x="83152" fg:w="27"/><text x="37.5747%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (27 samples, 0.01%)</title><rect x="37.3247%" y="741" width="0.0121%" height="15" fill="rgb(221,166,19)" fg:x="83152" fg:w="27"/><text x="37.5747%" y="751.50"></text></g><g><title>G1RemSet::scan_rem_set (43 samples, 0.02%)</title><rect x="37.3247%" y="805" width="0.0193%" height="15" fill="rgb(209,109,2)" fg:x="83152" fg:w="43"/><text x="37.5747%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (43 samples, 0.02%)</title><rect x="37.3247%" y="789" width="0.0193%" height="15" fill="rgb(252,216,26)" fg:x="83152" fg:w="43"/><text x="37.5747%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (43 samples, 0.02%)</title><rect x="37.3247%" y="773" width="0.0193%" height="15" fill="rgb(227,173,36)" fg:x="83152" fg:w="43"/><text x="37.5747%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (43 samples, 0.02%)</title><rect x="37.3561%" y="709" width="0.0193%" height="15" fill="rgb(209,90,7)" fg:x="83222" fg:w="43"/><text x="37.6061%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (33 samples, 0.01%)</title><rect x="37.3606%" y="693" width="0.0148%" height="15" fill="rgb(250,194,11)" fg:x="83232" fg:w="33"/><text x="37.6106%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (26 samples, 0.01%)</title><rect x="37.3638%" y="677" width="0.0117%" height="15" fill="rgb(220,72,50)" fg:x="83239" fg:w="26"/><text x="37.6138%" y="687.50"></text></g><g><title>InterpreterOopMap::iterate_oop (28 samples, 0.01%)</title><rect x="37.3754%" y="709" width="0.0126%" height="15" fill="rgb(222,106,48)" fg:x="83265" fg:w="28"/><text x="37.6254%" y="719.50"></text></g><g><title>G1RootProcessor::process_java_roots (100 samples, 0.04%)</title><rect x="37.3445%" y="789" width="0.0449%" height="15" fill="rgb(216,220,45)" fg:x="83196" fg:w="100"/><text x="37.5945%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (100 samples, 0.04%)</title><rect x="37.3445%" y="773" width="0.0449%" height="15" fill="rgb(234,112,18)" fg:x="83196" fg:w="100"/><text x="37.5945%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (100 samples, 0.04%)</title><rect x="37.3445%" y="757" width="0.0449%" height="15" fill="rgb(206,179,9)" fg:x="83196" fg:w="100"/><text x="37.5945%" y="767.50"></text></g><g><title>JavaThread::oops_do (100 samples, 0.04%)</title><rect x="37.3445%" y="741" width="0.0449%" height="15" fill="rgb(215,115,40)" fg:x="83196" fg:w="100"/><text x="37.5945%" y="751.50"></text></g><g><title>frame::oops_interpreted_do (76 samples, 0.03%)</title><rect x="37.3552%" y="725" width="0.0341%" height="15" fill="rgb(222,69,34)" fg:x="83220" fg:w="76"/><text x="37.6052%" y="735.50"></text></g><g><title>G1ParTask::work (264 samples, 0.12%)</title><rect x="37.2735%" y="821" width="0.1185%" height="15" fill="rgb(209,161,10)" fg:x="83038" fg:w="264"/><text x="37.5235%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (107 samples, 0.05%)</title><rect x="37.3440%" y="805" width="0.0480%" height="15" fill="rgb(217,6,38)" fg:x="83195" fg:w="107"/><text x="37.5940%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (37 samples, 0.02%)</title><rect x="37.3934%" y="821" width="0.0166%" height="15" fill="rgb(229,229,48)" fg:x="83305" fg:w="37"/><text x="37.6434%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (33 samples, 0.01%)</title><rect x="37.3952%" y="805" width="0.0148%" height="15" fill="rgb(225,21,28)" fg:x="83309" fg:w="33"/><text x="37.6452%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (33 samples, 0.01%)</title><rect x="37.3952%" y="789" width="0.0148%" height="15" fill="rgb(206,33,13)" fg:x="83309" fg:w="33"/><text x="37.6452%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (33 samples, 0.01%)</title><rect x="37.3952%" y="773" width="0.0148%" height="15" fill="rgb(242,178,17)" fg:x="83309" fg:w="33"/><text x="37.6452%" y="783.50"></text></g><g><title>SpinPause (33 samples, 0.01%)</title><rect x="37.3952%" y="757" width="0.0148%" height="15" fill="rgb(220,162,5)" fg:x="83309" fg:w="33"/><text x="37.6452%" y="767.50"></text></g><g><title>ParallelSPCleanupTask::work (29 samples, 0.01%)</title><rect x="37.4109%" y="821" width="0.0130%" height="15" fill="rgb(210,33,43)" fg:x="83344" fg:w="29"/><text x="37.6609%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (24 samples, 0.01%)</title><rect x="37.4131%" y="805" width="0.0108%" height="15" fill="rgb(216,116,54)" fg:x="83349" fg:w="24"/><text x="37.6631%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (94 samples, 0.04%)</title><rect x="37.4289%" y="597" width="0.0422%" height="15" fill="rgb(249,92,24)" fg:x="83384" fg:w="94"/><text x="37.6789%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (91 samples, 0.04%)</title><rect x="37.4302%" y="581" width="0.0408%" height="15" fill="rgb(231,189,14)" fg:x="83387" fg:w="91"/><text x="37.6802%" y="591.50"></text></g><g><title>native_write_msr (90 samples, 0.04%)</title><rect x="37.4306%" y="565" width="0.0404%" height="15" fill="rgb(230,8,41)" fg:x="83388" fg:w="90"/><text x="37.6806%" y="575.50"></text></g><g><title>finish_task_switch (98 samples, 0.04%)</title><rect x="37.4289%" y="613" width="0.0440%" height="15" fill="rgb(249,7,27)" fg:x="83384" fg:w="98"/><text x="37.6789%" y="623.50"></text></g><g><title>futex_wait_queue_me (110 samples, 0.05%)</title><rect x="37.4262%" y="661" width="0.0494%" height="15" fill="rgb(232,86,5)" fg:x="83378" fg:w="110"/><text x="37.6762%" y="671.50"></text></g><g><title>schedule (109 samples, 0.05%)</title><rect x="37.4266%" y="645" width="0.0489%" height="15" fill="rgb(224,175,18)" fg:x="83379" fg:w="109"/><text x="37.6766%" y="655.50"></text></g><g><title>__schedule (108 samples, 0.05%)</title><rect x="37.4271%" y="629" width="0.0485%" height="15" fill="rgb(220,129,12)" fg:x="83380" fg:w="108"/><text x="37.6771%" y="639.50"></text></g><g><title>do_syscall_64 (113 samples, 0.05%)</title><rect x="37.4257%" y="725" width="0.0507%" height="15" fill="rgb(210,19,36)" fg:x="83377" fg:w="113"/><text x="37.6757%" y="735.50"></text></g><g><title>__x64_sys_futex (113 samples, 0.05%)</title><rect x="37.4257%" y="709" width="0.0507%" height="15" fill="rgb(219,96,14)" fg:x="83377" fg:w="113"/><text x="37.6757%" y="719.50"></text></g><g><title>do_futex (113 samples, 0.05%)</title><rect x="37.4257%" y="693" width="0.0507%" height="15" fill="rgb(249,106,1)" fg:x="83377" fg:w="113"/><text x="37.6757%" y="703.50"></text></g><g><title>futex_wait (113 samples, 0.05%)</title><rect x="37.4257%" y="677" width="0.0507%" height="15" fill="rgb(249,155,20)" fg:x="83377" fg:w="113"/><text x="37.6757%" y="687.50"></text></g><g><title>__GI___clone (466 samples, 0.21%)</title><rect x="37.2691%" y="901" width="0.2092%" height="15" fill="rgb(244,168,9)" fg:x="83028" fg:w="466"/><text x="37.5191%" y="911.50"></text></g><g><title>start_thread (466 samples, 0.21%)</title><rect x="37.2691%" y="885" width="0.2092%" height="15" fill="rgb(216,23,50)" fg:x="83028" fg:w="466"/><text x="37.5191%" y="895.50"></text></g><g><title>thread_native_entry (466 samples, 0.21%)</title><rect x="37.2691%" y="869" width="0.2092%" height="15" fill="rgb(224,219,20)" fg:x="83028" fg:w="466"/><text x="37.5191%" y="879.50"></text></g><g><title>Thread::call_run (466 samples, 0.21%)</title><rect x="37.2691%" y="853" width="0.2092%" height="15" fill="rgb(222,156,15)" fg:x="83028" fg:w="466"/><text x="37.5191%" y="863.50"></text></g><g><title>GangWorker::loop (466 samples, 0.21%)</title><rect x="37.2691%" y="837" width="0.2092%" height="15" fill="rgb(231,97,17)" fg:x="83028" fg:w="466"/><text x="37.5191%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (118 samples, 0.05%)</title><rect x="37.4253%" y="821" width="0.0530%" height="15" fill="rgb(218,70,48)" fg:x="83376" fg:w="118"/><text x="37.6753%" y="831.50"></text></g><g><title>PosixSemaphore::wait (118 samples, 0.05%)</title><rect x="37.4253%" y="805" width="0.0530%" height="15" fill="rgb(212,196,52)" fg:x="83376" fg:w="118"/><text x="37.6753%" y="815.50"></text></g><g><title>__new_sem_wait_slow (118 samples, 0.05%)</title><rect x="37.4253%" y="789" width="0.0530%" height="15" fill="rgb(243,203,18)" fg:x="83376" fg:w="118"/><text x="37.6753%" y="799.50"></text></g><g><title>do_futex_wait (117 samples, 0.05%)</title><rect x="37.4257%" y="773" width="0.0525%" height="15" fill="rgb(252,125,41)" fg:x="83377" fg:w="117"/><text x="37.6757%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (117 samples, 0.05%)</title><rect x="37.4257%" y="757" width="0.0525%" height="15" fill="rgb(223,180,33)" fg:x="83377" fg:w="117"/><text x="37.6757%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (117 samples, 0.05%)</title><rect x="37.4257%" y="741" width="0.0525%" height="15" fill="rgb(254,159,46)" fg:x="83377" fg:w="117"/><text x="37.6757%" y="751.50"></text></g><g><title>GC_Thread#7 (476 samples, 0.21%)</title><rect x="37.2655%" y="917" width="0.2137%" height="15" fill="rgb(254,38,10)" fg:x="83020" fg:w="476"/><text x="37.5155%" y="927.50"></text></g><g><title>[perf-945576.map] (102 samples, 0.05%)</title><rect x="37.4921%" y="901" width="0.0458%" height="15" fill="rgb(208,217,32)" fg:x="83525" fg:w="102"/><text x="37.7421%" y="911.50"></text></g><g><title>Service_Thread (123 samples, 0.06%)</title><rect x="37.4881%" y="917" width="0.0552%" height="15" fill="rgb(221,120,13)" fg:x="83516" fg:w="123"/><text x="37.7381%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (385 samples, 0.17%)</title><rect x="37.5990%" y="565" width="0.1728%" height="15" fill="rgb(246,54,52)" fg:x="83763" fg:w="385"/><text x="37.8490%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (382 samples, 0.17%)</title><rect x="37.6003%" y="549" width="0.1715%" height="15" fill="rgb(242,34,25)" fg:x="83766" fg:w="382"/><text x="37.8503%" y="559.50"></text></g><g><title>native_write_msr (380 samples, 0.17%)</title><rect x="37.6012%" y="533" width="0.1706%" height="15" fill="rgb(247,209,9)" fg:x="83768" fg:w="380"/><text x="37.8512%" y="543.50"></text></g><g><title>finish_task_switch (399 samples, 0.18%)</title><rect x="37.5963%" y="581" width="0.1791%" height="15" fill="rgb(228,71,26)" fg:x="83757" fg:w="399"/><text x="37.8463%" y="591.50"></text></g><g><title>futex_wait_queue_me (459 samples, 0.21%)</title><rect x="37.5783%" y="629" width="0.2060%" height="15" fill="rgb(222,145,49)" fg:x="83717" fg:w="459"/><text x="37.8283%" y="639.50"></text></g><g><title>schedule (443 samples, 0.20%)</title><rect x="37.5855%" y="613" width="0.1989%" height="15" fill="rgb(218,121,17)" fg:x="83733" fg:w="443"/><text x="37.8355%" y="623.50"></text></g><g><title>__schedule (441 samples, 0.20%)</title><rect x="37.5864%" y="597" width="0.1980%" height="15" fill="rgb(244,50,7)" fg:x="83735" fg:w="441"/><text x="37.8364%" y="607.50"></text></g><g><title>do_syscall_64 (495 samples, 0.22%)</title><rect x="37.5734%" y="693" width="0.2222%" height="15" fill="rgb(246,229,37)" fg:x="83706" fg:w="495"/><text x="37.8234%" y="703.50"></text></g><g><title>__x64_sys_futex (495 samples, 0.22%)</title><rect x="37.5734%" y="677" width="0.2222%" height="15" fill="rgb(225,18,5)" fg:x="83706" fg:w="495"/><text x="37.8234%" y="687.50"></text></g><g><title>do_futex (494 samples, 0.22%)</title><rect x="37.5738%" y="661" width="0.2217%" height="15" fill="rgb(213,204,8)" fg:x="83707" fg:w="494"/><text x="37.8238%" y="671.50"></text></g><g><title>futex_wait (493 samples, 0.22%)</title><rect x="37.5743%" y="645" width="0.2213%" height="15" fill="rgb(238,103,6)" fg:x="83708" fg:w="493"/><text x="37.8243%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (506 samples, 0.23%)</title><rect x="37.5729%" y="709" width="0.2271%" height="15" fill="rgb(222,25,35)" fg:x="83705" fg:w="506"/><text x="37.8229%" y="719.50"></text></g><g><title>__pthread_cond_timedwait (528 samples, 0.24%)</title><rect x="37.5635%" y="757" width="0.2370%" height="15" fill="rgb(213,203,35)" fg:x="83684" fg:w="528"/><text x="37.8135%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (528 samples, 0.24%)</title><rect x="37.5635%" y="741" width="0.2370%" height="15" fill="rgb(221,79,53)" fg:x="83684" fg:w="528"/><text x="37.8135%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (519 samples, 0.23%)</title><rect x="37.5676%" y="725" width="0.2330%" height="15" fill="rgb(243,200,35)" fg:x="83693" fg:w="519"/><text x="37.8176%" y="735.50"></text></g><g><title>os::PlatformEvent::park (553 samples, 0.25%)</title><rect x="37.5631%" y="773" width="0.2482%" height="15" fill="rgb(248,60,25)" fg:x="83683" fg:w="553"/><text x="37.8131%" y="783.50"></text></g><g><title>Monitor::wait (561 samples, 0.25%)</title><rect x="37.5599%" y="805" width="0.2518%" height="15" fill="rgb(227,53,46)" fg:x="83676" fg:w="561"/><text x="37.8099%" y="815.50"></text></g><g><title>Monitor::IWait (561 samples, 0.25%)</title><rect x="37.5599%" y="789" width="0.2518%" height="15" fill="rgb(216,120,32)" fg:x="83676" fg:w="561"/><text x="37.8099%" y="799.50"></text></g><g><title>Monitor::lock_without_safepoint_check (23 samples, 0.01%)</title><rect x="37.8221%" y="773" width="0.0103%" height="15" fill="rgb(220,134,1)" fg:x="84260" fg:w="23"/><text x="38.0721%" y="783.50"></text></g><g><title>Monitor::ILock (23 samples, 0.01%)</title><rect x="37.8221%" y="757" width="0.0103%" height="15" fill="rgb(237,168,5)" fg:x="84260" fg:w="23"/><text x="38.0721%" y="767.50"></text></g><g><title>clean_if_nmethod_is_unloaded&lt;CompiledIC&gt; (25 samples, 0.01%)</title><rect x="37.8750%" y="741" width="0.0112%" height="15" fill="rgb(231,100,33)" fg:x="84378" fg:w="25"/><text x="38.1250%" y="751.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (136 samples, 0.06%)</title><rect x="37.8342%" y="757" width="0.0610%" height="15" fill="rgb(236,177,47)" fg:x="84287" fg:w="136"/><text x="38.0842%" y="767.50"></text></g><g><title>NMethodSweeper::process_compiled_method (185 samples, 0.08%)</title><rect x="37.8328%" y="773" width="0.0830%" height="15" fill="rgb(235,7,49)" fg:x="84284" fg:w="185"/><text x="38.0828%" y="783.50"></text></g><g><title>NMethodSweeper::possibly_sweep (241 samples, 0.11%)</title><rect x="37.8117%" y="805" width="0.1082%" height="15" fill="rgb(232,119,22)" fg:x="84237" fg:w="241"/><text x="38.0617%" y="815.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (233 samples, 0.10%)</title><rect x="37.8153%" y="789" width="0.1046%" height="15" fill="rgb(254,73,53)" fg:x="84245" fg:w="233"/><text x="38.0653%" y="799.50"></text></g><g><title>__GI___clone (819 samples, 0.37%)</title><rect x="37.5572%" y="901" width="0.3676%" height="15" fill="rgb(251,35,20)" fg:x="83670" fg:w="819"/><text x="37.8072%" y="911.50"></text></g><g><title>start_thread (819 samples, 0.37%)</title><rect x="37.5572%" y="885" width="0.3676%" height="15" fill="rgb(241,119,20)" fg:x="83670" fg:w="819"/><text x="37.8072%" y="895.50"></text></g><g><title>thread_native_entry (819 samples, 0.37%)</title><rect x="37.5572%" y="869" width="0.3676%" height="15" fill="rgb(207,102,14)" fg:x="83670" fg:w="819"/><text x="37.8072%" y="879.50"></text></g><g><title>Thread::call_run (819 samples, 0.37%)</title><rect x="37.5572%" y="853" width="0.3676%" height="15" fill="rgb(248,201,50)" fg:x="83670" fg:w="819"/><text x="37.8072%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (819 samples, 0.37%)</title><rect x="37.5572%" y="837" width="0.3676%" height="15" fill="rgb(222,185,44)" fg:x="83670" fg:w="819"/><text x="37.8072%" y="847.50"></text></g><g><title>NMethodSweeper::sweeper_loop (819 samples, 0.37%)</title><rect x="37.5572%" y="821" width="0.3676%" height="15" fill="rgb(218,107,18)" fg:x="83670" fg:w="819"/><text x="37.8072%" y="831.50"></text></g><g><title>Sweeper_thread (843 samples, 0.38%)</title><rect x="37.5474%" y="917" width="0.3784%" height="15" fill="rgb(237,177,39)" fg:x="83648" fg:w="843"/><text x="37.7974%" y="927.50"></text></g><g><title>[perf-945576.map] (102 samples, 0.05%)</title><rect x="37.9271%" y="901" width="0.0458%" height="15" fill="rgb(246,69,6)" fg:x="84494" fg:w="102"/><text x="38.1771%" y="911.50"></text></g><g><title>Thread-0 (112 samples, 0.05%)</title><rect x="37.9258%" y="917" width="0.0503%" height="15" fill="rgb(234,208,37)" fg:x="84491" fg:w="112"/><text x="38.1758%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.04%)</title><rect x="37.9855%" y="565" width="0.0364%" height="15" fill="rgb(225,4,6)" fg:x="84624" fg:w="81"/><text x="38.2355%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (80 samples, 0.04%)</title><rect x="37.9859%" y="549" width="0.0359%" height="15" fill="rgb(233,45,0)" fg:x="84625" fg:w="80"/><text x="38.2359%" y="559.50"></text></g><g><title>native_write_msr (79 samples, 0.04%)</title><rect x="37.9864%" y="533" width="0.0355%" height="15" fill="rgb(226,136,5)" fg:x="84626" fg:w="79"/><text x="38.2364%" y="543.50"></text></g><g><title>finish_task_switch (85 samples, 0.04%)</title><rect x="37.9850%" y="581" width="0.0382%" height="15" fill="rgb(211,91,47)" fg:x="84623" fg:w="85"/><text x="38.2350%" y="591.50"></text></g><g><title>do_syscall_64 (91 samples, 0.04%)</title><rect x="37.9837%" y="693" width="0.0408%" height="15" fill="rgb(242,88,51)" fg:x="84620" fg:w="91"/><text x="38.2337%" y="703.50"></text></g><g><title>__x64_sys_futex (91 samples, 0.04%)</title><rect x="37.9837%" y="677" width="0.0408%" height="15" fill="rgb(230,91,28)" fg:x="84620" fg:w="91"/><text x="38.2337%" y="687.50"></text></g><g><title>do_futex (91 samples, 0.04%)</title><rect x="37.9837%" y="661" width="0.0408%" height="15" fill="rgb(254,186,29)" fg:x="84620" fg:w="91"/><text x="38.2337%" y="671.50"></text></g><g><title>futex_wait (91 samples, 0.04%)</title><rect x="37.9837%" y="645" width="0.0408%" height="15" fill="rgb(238,6,4)" fg:x="84620" fg:w="91"/><text x="38.2337%" y="655.50"></text></g><g><title>futex_wait_queue_me (90 samples, 0.04%)</title><rect x="37.9841%" y="629" width="0.0404%" height="15" fill="rgb(221,151,16)" fg:x="84621" fg:w="90"/><text x="38.2341%" y="639.50"></text></g><g><title>schedule (89 samples, 0.04%)</title><rect x="37.9846%" y="613" width="0.0399%" height="15" fill="rgb(251,143,52)" fg:x="84622" fg:w="89"/><text x="38.2346%" y="623.50"></text></g><g><title>__schedule (89 samples, 0.04%)</title><rect x="37.9846%" y="597" width="0.0399%" height="15" fill="rgb(206,90,15)" fg:x="84622" fg:w="89"/><text x="38.2346%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (100 samples, 0.04%)</title><rect x="37.9805%" y="757" width="0.0449%" height="15" fill="rgb(218,35,8)" fg:x="84613" fg:w="100"/><text x="38.2305%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (100 samples, 0.04%)</title><rect x="37.9805%" y="741" width="0.0449%" height="15" fill="rgb(239,215,6)" fg:x="84613" fg:w="100"/><text x="38.2305%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (96 samples, 0.04%)</title><rect x="37.9823%" y="725" width="0.0431%" height="15" fill="rgb(245,116,39)" fg:x="84617" fg:w="96"/><text x="38.2323%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.04%)</title><rect x="37.9837%" y="709" width="0.0417%" height="15" fill="rgb(242,65,28)" fg:x="84620" fg:w="93"/><text x="38.2337%" y="719.50"></text></g><g><title>Monitor::wait (103 samples, 0.05%)</title><rect x="37.9796%" y="805" width="0.0462%" height="15" fill="rgb(252,132,53)" fg:x="84611" fg:w="103"/><text x="38.2296%" y="815.50"></text></g><g><title>Monitor::IWait (102 samples, 0.05%)</title><rect x="37.9801%" y="789" width="0.0458%" height="15" fill="rgb(224,159,50)" fg:x="84612" fg:w="102"/><text x="38.2301%" y="799.50"></text></g><g><title>os::PlatformEvent::park (101 samples, 0.05%)</title><rect x="37.9805%" y="773" width="0.0453%" height="15" fill="rgb(224,93,4)" fg:x="84613" fg:w="101"/><text x="38.2305%" y="783.50"></text></g><g><title>VM_Periodic_Tas (112 samples, 0.05%)</title><rect x="37.9760%" y="917" width="0.0503%" height="15" fill="rgb(208,81,34)" fg:x="84603" fg:w="112"/><text x="38.2260%" y="927.50"></text></g><g><title>__GI___clone (109 samples, 0.05%)</title><rect x="37.9774%" y="901" width="0.0489%" height="15" fill="rgb(233,92,54)" fg:x="84606" fg:w="109"/><text x="38.2274%" y="911.50"></text></g><g><title>start_thread (109 samples, 0.05%)</title><rect x="37.9774%" y="885" width="0.0489%" height="15" fill="rgb(237,21,14)" fg:x="84606" fg:w="109"/><text x="38.2274%" y="895.50"></text></g><g><title>thread_native_entry (109 samples, 0.05%)</title><rect x="37.9774%" y="869" width="0.0489%" height="15" fill="rgb(249,128,51)" fg:x="84606" fg:w="109"/><text x="38.2274%" y="879.50"></text></g><g><title>Thread::call_run (109 samples, 0.05%)</title><rect x="37.9774%" y="853" width="0.0489%" height="15" fill="rgb(223,129,24)" fg:x="84606" fg:w="109"/><text x="38.2274%" y="863.50"></text></g><g><title>WatcherThread::run (109 samples, 0.05%)</title><rect x="37.9774%" y="837" width="0.0489%" height="15" fill="rgb(231,168,25)" fg:x="84606" fg:w="109"/><text x="38.2274%" y="847.50"></text></g><g><title>WatcherThread::sleep (104 samples, 0.05%)</title><rect x="37.9796%" y="821" width="0.0467%" height="15" fill="rgb(224,39,20)" fg:x="84611" fg:w="104"/><text x="38.2296%" y="831.50"></text></g><g><title>[unknown] (97 samples, 0.04%)</title><rect x="38.0353%" y="901" width="0.0435%" height="15" fill="rgb(225,152,53)" fg:x="84735" fg:w="97"/><text x="38.2853%" y="911.50"></text></g><g><title>vframe::sender (91 samples, 0.04%)</title><rect x="38.0380%" y="885" width="0.0408%" height="15" fill="rgb(252,17,24)" fg:x="84741" fg:w="91"/><text x="38.2880%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="38.0981%" y="565" width="0.0117%" height="15" fill="rgb(250,114,30)" fg:x="84875" fg:w="26"/><text x="38.3481%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="38.0981%" y="549" width="0.0117%" height="15" fill="rgb(229,5,4)" fg:x="84875" fg:w="26"/><text x="38.3481%" y="559.50"></text></g><g><title>native_write_msr (26 samples, 0.01%)</title><rect x="38.0981%" y="533" width="0.0117%" height="15" fill="rgb(225,176,49)" fg:x="84875" fg:w="26"/><text x="38.3481%" y="543.50"></text></g><g><title>do_syscall_64 (29 samples, 0.01%)</title><rect x="38.0972%" y="693" width="0.0130%" height="15" fill="rgb(224,221,49)" fg:x="84873" fg:w="29"/><text x="38.3472%" y="703.50"></text></g><g><title>__x64_sys_futex (29 samples, 0.01%)</title><rect x="38.0972%" y="677" width="0.0130%" height="15" fill="rgb(253,169,27)" fg:x="84873" fg:w="29"/><text x="38.3472%" y="687.50"></text></g><g><title>do_futex (29 samples, 0.01%)</title><rect x="38.0972%" y="661" width="0.0130%" height="15" fill="rgb(211,206,16)" fg:x="84873" fg:w="29"/><text x="38.3472%" y="671.50"></text></g><g><title>futex_wait (29 samples, 0.01%)</title><rect x="38.0972%" y="645" width="0.0130%" height="15" fill="rgb(244,87,35)" fg:x="84873" fg:w="29"/><text x="38.3472%" y="655.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.01%)</title><rect x="38.0977%" y="629" width="0.0126%" height="15" fill="rgb(246,28,10)" fg:x="84874" fg:w="28"/><text x="38.3477%" y="639.50"></text></g><g><title>schedule (28 samples, 0.01%)</title><rect x="38.0977%" y="613" width="0.0126%" height="15" fill="rgb(229,12,44)" fg:x="84874" fg:w="28"/><text x="38.3477%" y="623.50"></text></g><g><title>__schedule (27 samples, 0.01%)</title><rect x="38.0981%" y="597" width="0.0121%" height="15" fill="rgb(210,145,37)" fg:x="84875" fg:w="27"/><text x="38.3481%" y="607.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="38.0981%" y="581" width="0.0121%" height="15" fill="rgb(227,112,52)" fg:x="84875" fg:w="27"/><text x="38.3481%" y="591.50"></text></g><g><title>Monitor::lock_without_safepoint_check (30 samples, 0.01%)</title><rect x="38.0972%" y="805" width="0.0135%" height="15" fill="rgb(238,155,34)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="815.50"></text></g><g><title>Monitor::ILock (30 samples, 0.01%)</title><rect x="38.0972%" y="789" width="0.0135%" height="15" fill="rgb(239,226,36)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="799.50"></text></g><g><title>os::PlatformEvent::park (30 samples, 0.01%)</title><rect x="38.0972%" y="773" width="0.0135%" height="15" fill="rgb(230,16,23)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="783.50"></text></g><g><title>__pthread_cond_wait (30 samples, 0.01%)</title><rect x="38.0972%" y="757" width="0.0135%" height="15" fill="rgb(236,171,36)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (30 samples, 0.01%)</title><rect x="38.0972%" y="741" width="0.0135%" height="15" fill="rgb(221,22,14)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="751.50"></text></g><g><title>futex_wait_cancelable (30 samples, 0.01%)</title><rect x="38.0972%" y="725" width="0.0135%" height="15" fill="rgb(242,43,11)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="38.0972%" y="709" width="0.0135%" height="15" fill="rgb(232,69,23)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (162 samples, 0.07%)</title><rect x="38.1170%" y="565" width="0.0727%" height="15" fill="rgb(216,180,54)" fg:x="84917" fg:w="162"/><text x="38.3670%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (158 samples, 0.07%)</title><rect x="38.1188%" y="549" width="0.0709%" height="15" fill="rgb(216,5,24)" fg:x="84921" fg:w="158"/><text x="38.3688%" y="559.50"></text></g><g><title>native_write_msr (157 samples, 0.07%)</title><rect x="38.1192%" y="533" width="0.0705%" height="15" fill="rgb(225,89,9)" fg:x="84922" fg:w="157"/><text x="38.3692%" y="543.50"></text></g><g><title>futex_wait_queue_me (174 samples, 0.08%)</title><rect x="38.1129%" y="629" width="0.0781%" height="15" fill="rgb(243,75,33)" fg:x="84908" fg:w="174"/><text x="38.3629%" y="639.50"></text></g><g><title>schedule (172 samples, 0.08%)</title><rect x="38.1138%" y="613" width="0.0772%" height="15" fill="rgb(247,141,45)" fg:x="84910" fg:w="172"/><text x="38.3638%" y="623.50"></text></g><g><title>__schedule (172 samples, 0.08%)</title><rect x="38.1138%" y="597" width="0.0772%" height="15" fill="rgb(232,177,36)" fg:x="84910" fg:w="172"/><text x="38.3638%" y="607.50"></text></g><g><title>finish_task_switch (168 samples, 0.08%)</title><rect x="38.1156%" y="581" width="0.0754%" height="15" fill="rgb(219,125,36)" fg:x="84914" fg:w="168"/><text x="38.3656%" y="591.50"></text></g><g><title>do_syscall_64 (180 samples, 0.08%)</title><rect x="38.1120%" y="693" width="0.0808%" height="15" fill="rgb(227,94,9)" fg:x="84906" fg:w="180"/><text x="38.3620%" y="703.50"></text></g><g><title>__x64_sys_futex (180 samples, 0.08%)</title><rect x="38.1120%" y="677" width="0.0808%" height="15" fill="rgb(240,34,52)" fg:x="84906" fg:w="180"/><text x="38.3620%" y="687.50"></text></g><g><title>do_futex (179 samples, 0.08%)</title><rect x="38.1125%" y="661" width="0.0803%" height="15" fill="rgb(216,45,12)" fg:x="84907" fg:w="179"/><text x="38.3625%" y="671.50"></text></g><g><title>futex_wait (179 samples, 0.08%)</title><rect x="38.1125%" y="645" width="0.0803%" height="15" fill="rgb(246,21,19)" fg:x="84907" fg:w="179"/><text x="38.3625%" y="655.50"></text></g><g><title>__pthread_cond_timedwait (186 samples, 0.08%)</title><rect x="38.1116%" y="757" width="0.0835%" height="15" fill="rgb(213,98,42)" fg:x="84905" fg:w="186"/><text x="38.3616%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (186 samples, 0.08%)</title><rect x="38.1116%" y="741" width="0.0835%" height="15" fill="rgb(250,136,47)" fg:x="84905" fg:w="186"/><text x="38.3616%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (185 samples, 0.08%)</title><rect x="38.1120%" y="725" width="0.0830%" height="15" fill="rgb(251,124,27)" fg:x="84906" fg:w="185"/><text x="38.3620%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (185 samples, 0.08%)</title><rect x="38.1120%" y="709" width="0.0830%" height="15" fill="rgb(229,180,14)" fg:x="84906" fg:w="185"/><text x="38.3620%" y="719.50"></text></g><g><title>Monitor::wait (191 samples, 0.09%)</title><rect x="38.1107%" y="805" width="0.0857%" height="15" fill="rgb(245,216,25)" fg:x="84903" fg:w="191"/><text x="38.3607%" y="815.50"></text></g><g><title>Monitor::IWait (191 samples, 0.09%)</title><rect x="38.1107%" y="789" width="0.0857%" height="15" fill="rgb(251,43,5)" fg:x="84903" fg:w="191"/><text x="38.3607%" y="799.50"></text></g><g><title>os::PlatformEvent::park (190 samples, 0.09%)</title><rect x="38.1111%" y="773" width="0.0853%" height="15" fill="rgb(250,128,24)" fg:x="84904" fg:w="190"/><text x="38.3611%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (82 samples, 0.04%)</title><rect x="38.2530%" y="549" width="0.0368%" height="15" fill="rgb(217,117,27)" fg:x="85220" fg:w="82"/><text x="38.5030%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (79 samples, 0.04%)</title><rect x="38.2543%" y="533" width="0.0355%" height="15" fill="rgb(245,147,4)" fg:x="85223" fg:w="79"/><text x="38.5043%" y="543.50"></text></g><g><title>native_write_msr (77 samples, 0.03%)</title><rect x="38.2552%" y="517" width="0.0346%" height="15" fill="rgb(242,201,35)" fg:x="85225" fg:w="77"/><text x="38.5052%" y="527.50"></text></g><g><title>finish_task_switch (86 samples, 0.04%)</title><rect x="38.2521%" y="565" width="0.0386%" height="15" fill="rgb(218,181,1)" fg:x="85218" fg:w="86"/><text x="38.5021%" y="575.50"></text></g><g><title>Monitor::wait (102 samples, 0.05%)</title><rect x="38.2458%" y="789" width="0.0458%" height="15" fill="rgb(222,6,29)" fg:x="85204" fg:w="102"/><text x="38.4958%" y="799.50"></text></g><g><title>Monitor::IWait (102 samples, 0.05%)</title><rect x="38.2458%" y="773" width="0.0458%" height="15" fill="rgb(208,186,3)" fg:x="85204" fg:w="102"/><text x="38.4958%" y="783.50"></text></g><g><title>os::PlatformEvent::park (97 samples, 0.04%)</title><rect x="38.2480%" y="757" width="0.0435%" height="15" fill="rgb(216,36,26)" fg:x="85209" fg:w="97"/><text x="38.4980%" y="767.50"></text></g><g><title>__pthread_cond_wait (97 samples, 0.04%)</title><rect x="38.2480%" y="741" width="0.0435%" height="15" fill="rgb(248,201,23)" fg:x="85209" fg:w="97"/><text x="38.4980%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (97 samples, 0.04%)</title><rect x="38.2480%" y="725" width="0.0435%" height="15" fill="rgb(251,170,31)" fg:x="85209" fg:w="97"/><text x="38.4980%" y="735.50"></text></g><g><title>futex_wait_cancelable (96 samples, 0.04%)</title><rect x="38.2485%" y="709" width="0.0431%" height="15" fill="rgb(207,110,25)" fg:x="85210" fg:w="96"/><text x="38.4985%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.04%)</title><rect x="38.2485%" y="693" width="0.0431%" height="15" fill="rgb(250,54,15)" fg:x="85210" fg:w="96"/><text x="38.4985%" y="703.50"></text></g><g><title>do_syscall_64 (96 samples, 0.04%)</title><rect x="38.2485%" y="677" width="0.0431%" height="15" fill="rgb(227,68,33)" fg:x="85210" fg:w="96"/><text x="38.4985%" y="687.50"></text></g><g><title>__x64_sys_futex (96 samples, 0.04%)</title><rect x="38.2485%" y="661" width="0.0431%" height="15" fill="rgb(238,34,41)" fg:x="85210" fg:w="96"/><text x="38.4985%" y="671.50"></text></g><g><title>do_futex (96 samples, 0.04%)</title><rect x="38.2485%" y="645" width="0.0431%" height="15" fill="rgb(220,11,15)" fg:x="85210" fg:w="96"/><text x="38.4985%" y="655.50"></text></g><g><title>futex_wait (96 samples, 0.04%)</title><rect x="38.2485%" y="629" width="0.0431%" height="15" fill="rgb(246,111,35)" fg:x="85210" fg:w="96"/><text x="38.4985%" y="639.50"></text></g><g><title>futex_wait_queue_me (95 samples, 0.04%)</title><rect x="38.2489%" y="613" width="0.0426%" height="15" fill="rgb(209,88,53)" fg:x="85211" fg:w="95"/><text x="38.4989%" y="623.50"></text></g><g><title>schedule (94 samples, 0.04%)</title><rect x="38.2494%" y="597" width="0.0422%" height="15" fill="rgb(231,185,47)" fg:x="85212" fg:w="94"/><text x="38.4994%" y="607.50"></text></g><g><title>__schedule (93 samples, 0.04%)</title><rect x="38.2498%" y="581" width="0.0417%" height="15" fill="rgb(233,154,1)" fg:x="85213" fg:w="93"/><text x="38.4998%" y="591.50"></text></g><g><title>ttwu_do_activate (31 samples, 0.01%)</title><rect x="38.3185%" y="581" width="0.0139%" height="15" fill="rgb(225,15,46)" fg:x="85366" fg:w="31"/><text x="38.5685%" y="591.50"></text></g><g><title>do_syscall_64 (76 samples, 0.03%)</title><rect x="38.2997%" y="677" width="0.0341%" height="15" fill="rgb(211,135,41)" fg:x="85324" fg:w="76"/><text x="38.5497%" y="687.50"></text></g><g><title>__x64_sys_futex (76 samples, 0.03%)</title><rect x="38.2997%" y="661" width="0.0341%" height="15" fill="rgb(208,54,0)" fg:x="85324" fg:w="76"/><text x="38.5497%" y="671.50"></text></g><g><title>do_futex (76 samples, 0.03%)</title><rect x="38.2997%" y="645" width="0.0341%" height="15" fill="rgb(244,136,14)" fg:x="85324" fg:w="76"/><text x="38.5497%" y="655.50"></text></g><g><title>futex_wake (74 samples, 0.03%)</title><rect x="38.3006%" y="629" width="0.0332%" height="15" fill="rgb(241,56,14)" fg:x="85326" fg:w="74"/><text x="38.5506%" y="639.50"></text></g><g><title>wake_up_q (66 samples, 0.03%)</title><rect x="38.3042%" y="613" width="0.0296%" height="15" fill="rgb(205,80,24)" fg:x="85334" fg:w="66"/><text x="38.5542%" y="623.50"></text></g><g><title>try_to_wake_up (66 samples, 0.03%)</title><rect x="38.3042%" y="597" width="0.0296%" height="15" fill="rgb(220,57,4)" fg:x="85334" fg:w="66"/><text x="38.5542%" y="607.50"></text></g><g><title>__new_sem_post (81 samples, 0.04%)</title><rect x="38.2979%" y="725" width="0.0364%" height="15" fill="rgb(226,193,50)" fg:x="85320" fg:w="81"/><text x="38.5479%" y="735.50"></text></g><g><title>futex_wake (80 samples, 0.04%)</title><rect x="38.2983%" y="709" width="0.0359%" height="15" fill="rgb(231,168,22)" fg:x="85321" fg:w="80"/><text x="38.5483%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.04%)</title><rect x="38.2992%" y="693" width="0.0350%" height="15" fill="rgb(254,215,14)" fg:x="85323" fg:w="78"/><text x="38.5492%" y="703.50"></text></g><g><title>PosixSemaphore::signal (82 samples, 0.04%)</title><rect x="38.2979%" y="741" width="0.0368%" height="15" fill="rgb(211,115,16)" fg:x="85320" fg:w="82"/><text x="38.5479%" y="751.50"></text></g><g><title>finish_task_switch (49 samples, 0.02%)</title><rect x="38.3369%" y="549" width="0.0220%" height="15" fill="rgb(236,210,16)" fg:x="85407" fg:w="49"/><text x="38.5869%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (46 samples, 0.02%)</title><rect x="38.3383%" y="533" width="0.0206%" height="15" fill="rgb(221,94,12)" fg:x="85410" fg:w="46"/><text x="38.5883%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (44 samples, 0.02%)</title><rect x="38.3392%" y="517" width="0.0198%" height="15" fill="rgb(235,218,49)" fg:x="85412" fg:w="44"/><text x="38.5892%" y="527.50"></text></g><g><title>native_write_msr (44 samples, 0.02%)</title><rect x="38.3392%" y="501" width="0.0198%" height="15" fill="rgb(217,114,14)" fg:x="85412" fg:w="44"/><text x="38.5892%" y="511.50"></text></g><g><title>do_syscall_64 (58 samples, 0.03%)</title><rect x="38.3360%" y="661" width="0.0260%" height="15" fill="rgb(216,145,22)" fg:x="85405" fg:w="58"/><text x="38.5860%" y="671.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.03%)</title><rect x="38.3360%" y="645" width="0.0260%" height="15" fill="rgb(217,112,39)" fg:x="85405" fg:w="58"/><text x="38.5860%" y="655.50"></text></g><g><title>do_futex (58 samples, 0.03%)</title><rect x="38.3360%" y="629" width="0.0260%" height="15" fill="rgb(225,85,32)" fg:x="85405" fg:w="58"/><text x="38.5860%" y="639.50"></text></g><g><title>futex_wait (58 samples, 0.03%)</title><rect x="38.3360%" y="613" width="0.0260%" height="15" fill="rgb(245,209,47)" fg:x="85405" fg:w="58"/><text x="38.5860%" y="623.50"></text></g><g><title>futex_wait_queue_me (58 samples, 0.03%)</title><rect x="38.3360%" y="597" width="0.0260%" height="15" fill="rgb(218,220,15)" fg:x="85405" fg:w="58"/><text x="38.5860%" y="607.50"></text></g><g><title>schedule (57 samples, 0.03%)</title><rect x="38.3365%" y="581" width="0.0256%" height="15" fill="rgb(222,202,31)" fg:x="85406" fg:w="57"/><text x="38.5865%" y="591.50"></text></g><g><title>__schedule (57 samples, 0.03%)</title><rect x="38.3365%" y="565" width="0.0256%" height="15" fill="rgb(243,203,4)" fg:x="85406" fg:w="57"/><text x="38.5865%" y="575.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (152 samples, 0.07%)</title><rect x="38.2943%" y="789" width="0.0682%" height="15" fill="rgb(237,92,17)" fg:x="85312" fg:w="152"/><text x="38.5443%" y="799.50"></text></g><g><title>WorkGang::run_task (147 samples, 0.07%)</title><rect x="38.2965%" y="773" width="0.0660%" height="15" fill="rgb(231,119,7)" fg:x="85317" fg:w="147"/><text x="38.5465%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (144 samples, 0.06%)</title><rect x="38.2979%" y="757" width="0.0646%" height="15" fill="rgb(237,82,41)" fg:x="85320" fg:w="144"/><text x="38.5479%" y="767.50"></text></g><g><title>PosixSemaphore::wait (62 samples, 0.03%)</title><rect x="38.3347%" y="741" width="0.0278%" height="15" fill="rgb(226,81,48)" fg:x="85402" fg:w="62"/><text x="38.5847%" y="751.50"></text></g><g><title>__new_sem_wait_slow (60 samples, 0.03%)</title><rect x="38.3356%" y="725" width="0.0269%" height="15" fill="rgb(234,70,51)" fg:x="85404" fg:w="60"/><text x="38.5856%" y="735.50"></text></g><g><title>do_futex_wait (60 samples, 0.03%)</title><rect x="38.3356%" y="709" width="0.0269%" height="15" fill="rgb(251,86,4)" fg:x="85404" fg:w="60"/><text x="38.5856%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (60 samples, 0.03%)</title><rect x="38.3356%" y="693" width="0.0269%" height="15" fill="rgb(244,144,28)" fg:x="85404" fg:w="60"/><text x="38.5856%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.03%)</title><rect x="38.3360%" y="677" width="0.0265%" height="15" fill="rgb(232,161,39)" fg:x="85405" fg:w="59"/><text x="38.5860%" y="687.50"></text></g><g><title>__GI___sched_yield (31 samples, 0.01%)</title><rect x="38.3688%" y="789" width="0.0139%" height="15" fill="rgb(247,34,51)" fg:x="85478" fg:w="31"/><text x="38.6188%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="38.3724%" y="773" width="0.0103%" height="15" fill="rgb(225,132,2)" fg:x="85486" fg:w="23"/><text x="38.6224%" y="783.50"></text></g><g><title>SafepointSynchronize::begin (429 samples, 0.19%)</title><rect x="38.1964%" y="805" width="0.1926%" height="15" fill="rgb(209,159,44)" fg:x="85094" fg:w="429"/><text x="38.4464%" y="815.50"></text></g><g><title>CodeHeap::next_used (36 samples, 0.02%)</title><rect x="38.4276%" y="725" width="0.0162%" height="15" fill="rgb(251,214,1)" fg:x="85609" fg:w="36"/><text x="38.6776%" y="735.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (51 samples, 0.02%)</title><rect x="38.4227%" y="757" width="0.0229%" height="15" fill="rgb(247,84,47)" fg:x="85598" fg:w="51"/><text x="38.6727%" y="767.50"></text></g><g><title>CodeBlobIterator&lt;CompiledMethod, CompiledMethodFilter&gt;::next_alive (47 samples, 0.02%)</title><rect x="38.4245%" y="741" width="0.0211%" height="15" fill="rgb(240,111,43)" fg:x="85602" fg:w="47"/><text x="38.6745%" y="751.50"></text></g><g><title>VM_Deoptimize::doit (55 samples, 0.02%)</title><rect x="38.4227%" y="773" width="0.0247%" height="15" fill="rgb(215,214,35)" fg:x="85598" fg:w="55"/><text x="38.6727%" y="783.50"></text></g><g><title>VM_G1CollectForAllocation::doit (23 samples, 0.01%)</title><rect x="38.4478%" y="773" width="0.0103%" height="15" fill="rgb(248,207,23)" fg:x="85654" fg:w="23"/><text x="38.6978%" y="783.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (23 samples, 0.01%)</title><rect x="38.4478%" y="757" width="0.0103%" height="15" fill="rgb(214,186,4)" fg:x="85654" fg:w="23"/><text x="38.6978%" y="767.50"></text></g><g><title>VM_Operation::evaluate (135 samples, 0.06%)</title><rect x="38.4038%" y="789" width="0.0606%" height="15" fill="rgb(220,133,22)" fg:x="85556" fg:w="135"/><text x="38.6538%" y="799.50"></text></g><g><title>VMThread::evaluate_operation (139 samples, 0.06%)</title><rect x="38.4025%" y="805" width="0.0624%" height="15" fill="rgb(239,134,19)" fg:x="85553" fg:w="139"/><text x="38.6525%" y="815.50"></text></g><g><title>Thread::call_run (848 samples, 0.38%)</title><rect x="38.0887%" y="853" width="0.3806%" height="15" fill="rgb(250,140,9)" fg:x="84854" fg:w="848"/><text x="38.3387%" y="863.50"></text></g><g><title>VMThread::run (848 samples, 0.38%)</title><rect x="38.0887%" y="837" width="0.3806%" height="15" fill="rgb(225,59,14)" fg:x="84854" fg:w="848"/><text x="38.3387%" y="847.50"></text></g><g><title>VMThread::loop (848 samples, 0.38%)</title><rect x="38.0887%" y="821" width="0.3806%" height="15" fill="rgb(214,152,51)" fg:x="84854" fg:w="848"/><text x="38.3387%" y="831.50"></text></g><g><title>__GI___clone (872 samples, 0.39%)</title><rect x="38.0788%" y="901" width="0.3914%" height="15" fill="rgb(251,227,43)" fg:x="84832" fg:w="872"/><text x="38.3288%" y="911.50"></text></g><g><title>start_thread (851 samples, 0.38%)</title><rect x="38.0882%" y="885" width="0.3820%" height="15" fill="rgb(241,96,17)" fg:x="84853" fg:w="851"/><text x="38.3382%" y="895.50"></text></g><g><title>thread_native_entry (851 samples, 0.38%)</title><rect x="38.0882%" y="869" width="0.3820%" height="15" fill="rgb(234,198,43)" fg:x="84853" fg:w="851"/><text x="38.3382%" y="879.50"></text></g><g><title>VM_Thread (1,000 samples, 0.45%)</title><rect x="38.0263%" y="917" width="0.4489%" height="15" fill="rgb(220,108,29)" fg:x="84715" fg:w="1000"/><text x="38.2763%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (31 samples, 0.01%)</title><rect x="38.5650%" y="757" width="0.0139%" height="15" fill="rgb(226,163,33)" fg:x="85915" fg:w="31"/><text x="38.8150%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.01%)</title><rect x="38.5650%" y="741" width="0.0139%" height="15" fill="rgb(205,194,45)" fg:x="85915" fg:w="31"/><text x="38.8150%" y="751.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="38.5654%" y="725" width="0.0135%" height="15" fill="rgb(206,143,44)" fg:x="85916" fg:w="30"/><text x="38.8154%" y="735.50"></text></g><g><title>do_epoll_wait (39 samples, 0.02%)</title><rect x="38.5618%" y="837" width="0.0175%" height="15" fill="rgb(236,136,36)" fg:x="85908" fg:w="39"/><text x="38.8118%" y="847.50"></text></g><g><title>schedule_hrtimeout_range_clock (34 samples, 0.02%)</title><rect x="38.5641%" y="821" width="0.0153%" height="15" fill="rgb(249,172,42)" fg:x="85913" fg:w="34"/><text x="38.8141%" y="831.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="38.5650%" y="805" width="0.0144%" height="15" fill="rgb(216,139,23)" fg:x="85915" fg:w="32"/><text x="38.8150%" y="815.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="38.5650%" y="789" width="0.0144%" height="15" fill="rgb(207,166,20)" fg:x="85915" fg:w="32"/><text x="38.8150%" y="799.50"></text></g><g><title>finish_task_switch (32 samples, 0.01%)</title><rect x="38.5650%" y="773" width="0.0144%" height="15" fill="rgb(210,209,22)" fg:x="85915" fg:w="32"/><text x="38.8150%" y="783.50"></text></g><g><title>__x64_sys_epoll_pwait (40 samples, 0.02%)</title><rect x="38.5618%" y="853" width="0.0180%" height="15" fill="rgb(232,118,20)" fg:x="85908" fg:w="40"/><text x="38.8118%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (93 samples, 0.04%)</title><rect x="38.5852%" y="741" width="0.0417%" height="15" fill="rgb(238,113,42)" fg:x="85960" fg:w="93"/><text x="38.8352%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (90 samples, 0.04%)</title><rect x="38.5865%" y="725" width="0.0404%" height="15" fill="rgb(231,42,5)" fg:x="85963" fg:w="90"/><text x="38.8365%" y="735.50"></text></g><g><title>native_write_msr (90 samples, 0.04%)</title><rect x="38.5865%" y="709" width="0.0404%" height="15" fill="rgb(243,166,24)" fg:x="85963" fg:w="90"/><text x="38.8365%" y="719.50"></text></g><g><title>finish_task_switch (102 samples, 0.05%)</title><rect x="38.5843%" y="757" width="0.0458%" height="15" fill="rgb(237,226,12)" fg:x="85958" fg:w="102"/><text x="38.8343%" y="767.50"></text></g><g><title>futex_wait_queue_me (112 samples, 0.05%)</title><rect x="38.5820%" y="805" width="0.0503%" height="15" fill="rgb(229,133,24)" fg:x="85953" fg:w="112"/><text x="38.8320%" y="815.50"></text></g><g><title>schedule (111 samples, 0.05%)</title><rect x="38.5825%" y="789" width="0.0498%" height="15" fill="rgb(238,33,43)" fg:x="85954" fg:w="111"/><text x="38.8325%" y="799.50"></text></g><g><title>__schedule (111 samples, 0.05%)</title><rect x="38.5825%" y="773" width="0.0498%" height="15" fill="rgb(227,59,38)" fg:x="85954" fg:w="111"/><text x="38.8325%" y="783.50"></text></g><g><title>futex_wait (115 samples, 0.05%)</title><rect x="38.5811%" y="821" width="0.0516%" height="15" fill="rgb(230,97,0)" fg:x="85951" fg:w="115"/><text x="38.8311%" y="831.50"></text></g><g><title>__x64_sys_futex (132 samples, 0.06%)</title><rect x="38.5798%" y="853" width="0.0593%" height="15" fill="rgb(250,173,50)" fg:x="85948" fg:w="132"/><text x="38.8298%" y="863.50"></text></g><g><title>do_futex (132 samples, 0.06%)</title><rect x="38.5798%" y="837" width="0.0593%" height="15" fill="rgb(240,15,50)" fg:x="85948" fg:w="132"/><text x="38.8298%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.01%)</title><rect x="38.6422%" y="757" width="0.0126%" height="15" fill="rgb(221,93,22)" fg:x="86087" fg:w="28"/><text x="38.8922%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.01%)</title><rect x="38.6426%" y="741" width="0.0121%" height="15" fill="rgb(245,180,53)" fg:x="86088" fg:w="27"/><text x="38.8926%" y="751.50"></text></g><g><title>native_write_msr (27 samples, 0.01%)</title><rect x="38.6426%" y="725" width="0.0121%" height="15" fill="rgb(231,88,51)" fg:x="86088" fg:w="27"/><text x="38.8926%" y="735.50"></text></g><g><title>finish_task_switch (31 samples, 0.01%)</title><rect x="38.6417%" y="773" width="0.0139%" height="15" fill="rgb(240,58,21)" fg:x="86086" fg:w="31"/><text x="38.8917%" y="783.50"></text></g><g><title>__x64_sys_nanosleep (35 samples, 0.02%)</title><rect x="38.6404%" y="853" width="0.0157%" height="15" fill="rgb(237,21,10)" fg:x="86083" fg:w="35"/><text x="38.8904%" y="863.50"></text></g><g><title>hrtimer_nanosleep (35 samples, 0.02%)</title><rect x="38.6404%" y="837" width="0.0157%" height="15" fill="rgb(218,43,11)" fg:x="86083" fg:w="35"/><text x="38.8904%" y="847.50"></text></g><g><title>do_nanosleep (35 samples, 0.02%)</title><rect x="38.6404%" y="821" width="0.0157%" height="15" fill="rgb(218,221,29)" fg:x="86083" fg:w="35"/><text x="38.8904%" y="831.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="38.6413%" y="805" width="0.0148%" height="15" fill="rgb(214,118,42)" fg:x="86085" fg:w="33"/><text x="38.8913%" y="815.50"></text></g><g><title>__schedule (33 samples, 0.01%)</title><rect x="38.6413%" y="789" width="0.0148%" height="15" fill="rgb(251,200,26)" fg:x="86085" fg:w="33"/><text x="38.8913%" y="799.50"></text></g><g><title>do_syscall_64 (230 samples, 0.10%)</title><rect x="38.5596%" y="869" width="0.1032%" height="15" fill="rgb(237,101,39)" fg:x="85903" fg:w="230"/><text x="38.8096%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (238 samples, 0.11%)</title><rect x="38.5587%" y="885" width="0.1068%" height="15" fill="rgb(251,117,11)" fg:x="85901" fg:w="238"/><text x="38.8087%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.02%)</title><rect x="38.6677%" y="837" width="0.0229%" height="15" fill="rgb(216,223,23)" fg:x="86144" fg:w="51"/><text x="38.9177%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.02%)</title><rect x="38.6677%" y="821" width="0.0229%" height="15" fill="rgb(251,54,12)" fg:x="86144" fg:w="51"/><text x="38.9177%" y="831.50"></text></g><g><title>native_write_msr (51 samples, 0.02%)</title><rect x="38.6677%" y="805" width="0.0229%" height="15" fill="rgb(254,176,54)" fg:x="86144" fg:w="51"/><text x="38.9177%" y="815.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (473 samples, 0.21%)</title><rect x="38.4788%" y="901" width="0.2123%" height="15" fill="rgb(210,32,8)" fg:x="85723" fg:w="473"/><text x="38.7288%" y="911.50"></text></g><g><title>ret_from_fork (56 samples, 0.03%)</title><rect x="38.6659%" y="885" width="0.0251%" height="15" fill="rgb(235,52,38)" fg:x="86140" fg:w="56"/><text x="38.9159%" y="895.50"></text></g><g><title>schedule_tail (53 samples, 0.02%)</title><rect x="38.6673%" y="869" width="0.0238%" height="15" fill="rgb(231,4,44)" fg:x="86143" fg:w="53"/><text x="38.9173%" y="879.50"></text></g><g><title>finish_task_switch (53 samples, 0.02%)</title><rect x="38.6673%" y="853" width="0.0238%" height="15" fill="rgb(249,2,32)" fg:x="86143" fg:w="53"/><text x="38.9173%" y="863.50"></text></g><g><title>bazel (500 samples, 0.22%)</title><rect x="38.4765%" y="917" width="0.2244%" height="15" fill="rgb(224,65,26)" fg:x="85718" fg:w="500"/><text x="38.7265%" y="927.50"></text></g><g><title>RunfilesCreator::ReadManifest (32 samples, 0.01%)</title><rect x="38.7158%" y="885" width="0.0144%" height="15" fill="rgb(250,73,40)" fg:x="86251" fg:w="32"/><text x="38.9658%" y="895.50"></text></g><g><title>[unknown] (36 samples, 0.02%)</title><rect x="38.7158%" y="901" width="0.0162%" height="15" fill="rgb(253,177,16)" fg:x="86251" fg:w="36"/><text x="38.9658%" y="911.50"></text></g><g><title>_dl_start_user (23 samples, 0.01%)</title><rect x="38.7319%" y="901" width="0.0103%" height="15" fill="rgb(217,32,34)" fg:x="86287" fg:w="23"/><text x="38.9819%" y="911.50"></text></g><g><title>_dl_init (23 samples, 0.01%)</title><rect x="38.7319%" y="885" width="0.0103%" height="15" fill="rgb(212,7,10)" fg:x="86287" fg:w="23"/><text x="38.9819%" y="895.50"></text></g><g><title>call_init (23 samples, 0.01%)</title><rect x="38.7319%" y="869" width="0.0103%" height="15" fill="rgb(245,89,8)" fg:x="86287" fg:w="23"/><text x="38.9819%" y="879.50"></text></g><g><title>call_init (23 samples, 0.01%)</title><rect x="38.7319%" y="853" width="0.0103%" height="15" fill="rgb(237,16,53)" fg:x="86287" fg:w="23"/><text x="38.9819%" y="863.50"></text></g><g><title>RunfilesCreator::ScanTreeAndPrune (23 samples, 0.01%)</title><rect x="38.7530%" y="837" width="0.0103%" height="15" fill="rgb(250,204,30)" fg:x="86334" fg:w="23"/><text x="39.0030%" y="847.50"></text></g><g><title>btrfs_lock_root_node (27 samples, 0.01%)</title><rect x="38.7678%" y="677" width="0.0121%" height="15" fill="rgb(208,77,27)" fg:x="86367" fg:w="27"/><text x="39.0178%" y="687.50"></text></g><g><title>__btrfs_tree_lock (27 samples, 0.01%)</title><rect x="38.7678%" y="661" width="0.0121%" height="15" fill="rgb(250,204,28)" fg:x="86367" fg:w="27"/><text x="39.0178%" y="671.50"></text></g><g><title>schedule (26 samples, 0.01%)</title><rect x="38.7683%" y="645" width="0.0117%" height="15" fill="rgb(244,63,21)" fg:x="86368" fg:w="26"/><text x="39.0183%" y="655.50"></text></g><g><title>__schedule (26 samples, 0.01%)</title><rect x="38.7683%" y="629" width="0.0117%" height="15" fill="rgb(236,85,44)" fg:x="86368" fg:w="26"/><text x="39.0183%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (29 samples, 0.01%)</title><rect x="38.7678%" y="709" width="0.0130%" height="15" fill="rgb(215,98,4)" fg:x="86367" fg:w="29"/><text x="39.0178%" y="719.50"></text></g><g><title>btrfs_search_slot (29 samples, 0.01%)</title><rect x="38.7678%" y="693" width="0.0130%" height="15" fill="rgb(235,38,11)" fg:x="86367" fg:w="29"/><text x="39.0178%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (35 samples, 0.02%)</title><rect x="38.7656%" y="725" width="0.0157%" height="15" fill="rgb(254,186,25)" fg:x="86362" fg:w="35"/><text x="39.0156%" y="735.50"></text></g><g><title>btrfs_rename2 (41 samples, 0.02%)</title><rect x="38.7656%" y="741" width="0.0184%" height="15" fill="rgb(225,55,31)" fg:x="86362" fg:w="41"/><text x="39.0156%" y="751.50"></text></g><g><title>RunfilesCreator::CreateRunfiles (91 samples, 0.04%)</title><rect x="38.7445%" y="853" width="0.0408%" height="15" fill="rgb(211,15,21)" fg:x="86315" fg:w="91"/><text x="38.9945%" y="863.50"></text></g><g><title>rename (47 samples, 0.02%)</title><rect x="38.7643%" y="837" width="0.0211%" height="15" fill="rgb(215,187,41)" fg:x="86359" fg:w="47"/><text x="39.0143%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.02%)</title><rect x="38.7656%" y="821" width="0.0198%" height="15" fill="rgb(248,69,32)" fg:x="86362" fg:w="44"/><text x="39.0156%" y="831.50"></text></g><g><title>do_syscall_64 (44 samples, 0.02%)</title><rect x="38.7656%" y="805" width="0.0198%" height="15" fill="rgb(252,102,52)" fg:x="86362" fg:w="44"/><text x="39.0156%" y="815.50"></text></g><g><title>__x64_sys_rename (44 samples, 0.02%)</title><rect x="38.7656%" y="789" width="0.0198%" height="15" fill="rgb(253,140,32)" fg:x="86362" fg:w="44"/><text x="39.0156%" y="799.50"></text></g><g><title>do_renameat2 (44 samples, 0.02%)</title><rect x="38.7656%" y="773" width="0.0198%" height="15" fill="rgb(216,56,42)" fg:x="86362" fg:w="44"/><text x="39.0156%" y="783.50"></text></g><g><title>vfs_rename (44 samples, 0.02%)</title><rect x="38.7656%" y="757" width="0.0198%" height="15" fill="rgb(216,184,14)" fg:x="86362" fg:w="44"/><text x="39.0156%" y="767.50"></text></g><g><title>__libc_start_main (99 samples, 0.04%)</title><rect x="38.7432%" y="885" width="0.0444%" height="15" fill="rgb(237,187,27)" fg:x="86312" fg:w="99"/><text x="38.9932%" y="895.50"></text></g><g><title>main (96 samples, 0.04%)</title><rect x="38.7445%" y="869" width="0.0431%" height="15" fill="rgb(219,65,3)" fg:x="86315" fg:w="96"/><text x="38.9945%" y="879.50"></text></g><g><title>_dl_map_segments (32 samples, 0.01%)</title><rect x="38.7939%" y="741" width="0.0144%" height="15" fill="rgb(245,83,25)" fg:x="86425" fg:w="32"/><text x="39.0439%" y="751.50"></text></g><g><title>__mmap64 (27 samples, 0.01%)</title><rect x="38.7961%" y="725" width="0.0121%" height="15" fill="rgb(214,205,45)" fg:x="86430" fg:w="27"/><text x="39.0461%" y="735.50"></text></g><g><title>__mmap64 (27 samples, 0.01%)</title><rect x="38.7961%" y="709" width="0.0121%" height="15" fill="rgb(241,20,18)" fg:x="86430" fg:w="27"/><text x="39.0461%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.01%)</title><rect x="38.7961%" y="693" width="0.0121%" height="15" fill="rgb(232,163,23)" fg:x="86430" fg:w="27"/><text x="39.0461%" y="703.50"></text></g><g><title>do_syscall_64 (27 samples, 0.01%)</title><rect x="38.7961%" y="677" width="0.0121%" height="15" fill="rgb(214,5,46)" fg:x="86430" fg:w="27"/><text x="39.0461%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (45 samples, 0.02%)</title><rect x="38.7921%" y="757" width="0.0202%" height="15" fill="rgb(229,78,17)" fg:x="86421" fg:w="45"/><text x="39.0421%" y="767.50"></text></g><g><title>_dl_catch_exception (60 samples, 0.03%)</title><rect x="38.7898%" y="805" width="0.0269%" height="15" fill="rgb(248,89,10)" fg:x="86416" fg:w="60"/><text x="39.0398%" y="815.50"></text></g><g><title>openaux (60 samples, 0.03%)</title><rect x="38.7898%" y="789" width="0.0269%" height="15" fill="rgb(248,54,15)" fg:x="86416" fg:w="60"/><text x="39.0398%" y="799.50"></text></g><g><title>_dl_map_object (60 samples, 0.03%)</title><rect x="38.7898%" y="773" width="0.0269%" height="15" fill="rgb(223,116,6)" fg:x="86416" fg:w="60"/><text x="39.0398%" y="783.50"></text></g><g><title>_dl_map_object_deps (63 samples, 0.03%)</title><rect x="38.7894%" y="821" width="0.0283%" height="15" fill="rgb(205,125,38)" fg:x="86415" fg:w="63"/><text x="39.0394%" y="831.50"></text></g><g><title>dl_new_hash (28 samples, 0.01%)</title><rect x="38.8482%" y="757" width="0.0126%" height="15" fill="rgb(251,78,38)" fg:x="86546" fg:w="28"/><text x="39.0982%" y="767.50"></text></g><g><title>_dl_lookup_symbol_x (103 samples, 0.05%)</title><rect x="38.8433%" y="773" width="0.0462%" height="15" fill="rgb(253,78,28)" fg:x="86535" fg:w="103"/><text x="39.0933%" y="783.50"></text></g><g><title>do_lookup_x (64 samples, 0.03%)</title><rect x="38.8608%" y="757" width="0.0287%" height="15" fill="rgb(209,120,3)" fg:x="86574" fg:w="64"/><text x="39.1108%" y="767.50"></text></g><g><title>elf_machine_rela (140 samples, 0.06%)</title><rect x="38.8280%" y="789" width="0.0628%" height="15" fill="rgb(238,229,9)" fg:x="86501" fg:w="140"/><text x="39.0780%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (165 samples, 0.07%)</title><rect x="38.8213%" y="805" width="0.0741%" height="15" fill="rgb(253,159,18)" fg:x="86486" fg:w="165"/><text x="39.0713%" y="815.50"></text></g><g><title>_dl_relocate_object (174 samples, 0.08%)</title><rect x="38.8186%" y="821" width="0.0781%" height="15" fill="rgb(244,42,34)" fg:x="86480" fg:w="174"/><text x="39.0686%" y="831.50"></text></g><g><title>[ld-2.31.so] (246 samples, 0.11%)</title><rect x="38.7876%" y="837" width="0.1104%" height="15" fill="rgb(224,8,7)" fg:x="86411" fg:w="246"/><text x="39.0376%" y="847.50"></text></g><g><title>_dl_start_final (247 samples, 0.11%)</title><rect x="38.7876%" y="869" width="0.1109%" height="15" fill="rgb(210,201,45)" fg:x="86411" fg:w="247"/><text x="39.0376%" y="879.50"></text></g><g><title>_dl_sysdep_start (247 samples, 0.11%)</title><rect x="38.7876%" y="853" width="0.1109%" height="15" fill="rgb(252,185,21)" fg:x="86411" fg:w="247"/><text x="39.0376%" y="863.50"></text></g><g><title>_dl_start (249 samples, 0.11%)</title><rect x="38.7876%" y="885" width="0.1118%" height="15" fill="rgb(223,131,1)" fg:x="86411" fg:w="249"/><text x="39.0376%" y="895.50"></text></g><g><title>_start (350 samples, 0.16%)</title><rect x="38.7427%" y="901" width="0.1571%" height="15" fill="rgb(245,141,16)" fg:x="86311" fg:w="350"/><text x="38.9927%" y="911.50"></text></g><g><title>mmput (36 samples, 0.02%)</title><rect x="38.9137%" y="821" width="0.0162%" height="15" fill="rgb(229,55,45)" fg:x="86692" fg:w="36"/><text x="39.1637%" y="831.50"></text></g><g><title>exit_mmap (36 samples, 0.02%)</title><rect x="38.9137%" y="805" width="0.0162%" height="15" fill="rgb(208,92,15)" fg:x="86692" fg:w="36"/><text x="39.1637%" y="815.50"></text></g><g><title>build-runfiles (508 samples, 0.23%)</title><rect x="38.7068%" y="917" width="0.2280%" height="15" fill="rgb(234,185,47)" fg:x="86231" fg:w="508"/><text x="38.9568%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.03%)</title><rect x="38.9065%" y="901" width="0.0283%" height="15" fill="rgb(253,104,50)" fg:x="86676" fg:w="63"/><text x="39.1565%" y="911.50"></text></g><g><title>do_syscall_64 (63 samples, 0.03%)</title><rect x="38.9065%" y="885" width="0.0283%" height="15" fill="rgb(205,70,7)" fg:x="86676" fg:w="63"/><text x="39.1565%" y="895.50"></text></g><g><title>__x64_sys_exit_group (47 samples, 0.02%)</title><rect x="38.9137%" y="869" width="0.0211%" height="15" fill="rgb(240,178,43)" fg:x="86692" fg:w="47"/><text x="39.1637%" y="879.50"></text></g><g><title>do_group_exit (47 samples, 0.02%)</title><rect x="38.9137%" y="853" width="0.0211%" height="15" fill="rgb(214,112,2)" fg:x="86692" fg:w="47"/><text x="39.1637%" y="863.50"></text></g><g><title>do_exit (47 samples, 0.02%)</title><rect x="38.9137%" y="837" width="0.0211%" height="15" fill="rgb(206,46,17)" fg:x="86692" fg:w="47"/><text x="39.1637%" y="847.50"></text></g><g><title>_dl_map_object_from_fd (25 samples, 0.01%)</title><rect x="38.9725%" y="581" width="0.0112%" height="15" fill="rgb(225,220,16)" fg:x="86823" fg:w="25"/><text x="39.2225%" y="591.50"></text></g><g><title>_dl_map_object (31 samples, 0.01%)</title><rect x="38.9725%" y="597" width="0.0139%" height="15" fill="rgb(238,65,40)" fg:x="86823" fg:w="31"/><text x="39.2225%" y="607.50"></text></g><g><title>__GI___nss_lookup (44 samples, 0.02%)</title><rect x="38.9721%" y="773" width="0.0198%" height="15" fill="rgb(230,151,21)" fg:x="86822" fg:w="44"/><text x="39.2221%" y="783.50"></text></g><g><title>__GI___nss_lookup_function (44 samples, 0.02%)</title><rect x="38.9721%" y="757" width="0.0198%" height="15" fill="rgb(218,58,49)" fg:x="86822" fg:w="44"/><text x="39.2221%" y="767.50"></text></g><g><title>nss_load_library (44 samples, 0.02%)</title><rect x="38.9721%" y="741" width="0.0198%" height="15" fill="rgb(219,179,14)" fg:x="86822" fg:w="44"/><text x="39.2221%" y="751.50"></text></g><g><title>__GI___libc_dlopen_mode (44 samples, 0.02%)</title><rect x="38.9721%" y="725" width="0.0198%" height="15" fill="rgb(223,72,1)" fg:x="86822" fg:w="44"/><text x="39.2221%" y="735.50"></text></g><g><title>dlerror_run (43 samples, 0.02%)</title><rect x="38.9725%" y="709" width="0.0193%" height="15" fill="rgb(238,126,10)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="719.50"></text></g><g><title>__GI__dl_catch_error (43 samples, 0.02%)</title><rect x="38.9725%" y="693" width="0.0193%" height="15" fill="rgb(224,206,38)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="703.50"></text></g><g><title>__GI__dl_catch_exception (43 samples, 0.02%)</title><rect x="38.9725%" y="677" width="0.0193%" height="15" fill="rgb(212,201,54)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="687.50"></text></g><g><title>do_dlopen (43 samples, 0.02%)</title><rect x="38.9725%" y="661" width="0.0193%" height="15" fill="rgb(218,154,48)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="671.50"></text></g><g><title>_dl_open (43 samples, 0.02%)</title><rect x="38.9725%" y="645" width="0.0193%" height="15" fill="rgb(232,93,24)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="655.50"></text></g><g><title>__GI__dl_catch_exception (43 samples, 0.02%)</title><rect x="38.9725%" y="629" width="0.0193%" height="15" fill="rgb(245,30,21)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="639.50"></text></g><g><title>dl_open_worker (43 samples, 0.02%)</title><rect x="38.9725%" y="613" width="0.0193%" height="15" fill="rgb(242,148,29)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="623.50"></text></g><g><title>getpwuid (68 samples, 0.03%)</title><rect x="38.9716%" y="805" width="0.0305%" height="15" fill="rgb(244,153,54)" fg:x="86821" fg:w="68"/><text x="39.2216%" y="815.50"></text></g><g><title>__getpwuid_r (68 samples, 0.03%)</title><rect x="38.9716%" y="789" width="0.0305%" height="15" fill="rgb(252,87,22)" fg:x="86821" fg:w="68"/><text x="39.2216%" y="799.50"></text></g><g><title>[bash] (83 samples, 0.04%)</title><rect x="38.9676%" y="821" width="0.0373%" height="15" fill="rgb(210,51,29)" fg:x="86812" fg:w="83"/><text x="39.2176%" y="831.50"></text></g><g><title>initialize_shell_variables (111 samples, 0.05%)</title><rect x="38.9671%" y="837" width="0.0498%" height="15" fill="rgb(242,136,47)" fg:x="86811" fg:w="111"/><text x="39.2171%" y="847.50"></text></g><g><title>[bash] (151 samples, 0.07%)</title><rect x="38.9573%" y="853" width="0.0678%" height="15" fill="rgb(238,68,4)" fg:x="86789" fg:w="151"/><text x="39.2073%" y="863.50"></text></g><g><title>sched_exec (25 samples, 0.01%)</title><rect x="39.0542%" y="629" width="0.0112%" height="15" fill="rgb(242,161,30)" fg:x="87005" fg:w="25"/><text x="39.3042%" y="639.50"></text></g><g><title>stop_one_cpu (23 samples, 0.01%)</title><rect x="39.0551%" y="613" width="0.0103%" height="15" fill="rgb(218,58,44)" fg:x="87007" fg:w="23"/><text x="39.3051%" y="623.50"></text></g><g><title>bprm_execve (51 samples, 0.02%)</title><rect x="39.0502%" y="645" width="0.0229%" height="15" fill="rgb(252,125,32)" fg:x="86996" fg:w="51"/><text x="39.3002%" y="655.50"></text></g><g><title>shell_execve (62 samples, 0.03%)</title><rect x="39.0493%" y="741" width="0.0278%" height="15" fill="rgb(219,178,0)" fg:x="86994" fg:w="62"/><text x="39.2993%" y="751.50"></text></g><g><title>__GI_execve (62 samples, 0.03%)</title><rect x="39.0493%" y="725" width="0.0278%" height="15" fill="rgb(213,152,7)" fg:x="86994" fg:w="62"/><text x="39.2993%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.03%)</title><rect x="39.0493%" y="709" width="0.0278%" height="15" fill="rgb(249,109,34)" fg:x="86994" fg:w="62"/><text x="39.2993%" y="719.50"></text></g><g><title>do_syscall_64 (62 samples, 0.03%)</title><rect x="39.0493%" y="693" width="0.0278%" height="15" fill="rgb(232,96,21)" fg:x="86994" fg:w="62"/><text x="39.2993%" y="703.50"></text></g><g><title>__x64_sys_execve (62 samples, 0.03%)</title><rect x="39.0493%" y="677" width="0.0278%" height="15" fill="rgb(228,27,39)" fg:x="86994" fg:w="62"/><text x="39.2993%" y="687.50"></text></g><g><title>do_execveat_common (62 samples, 0.03%)</title><rect x="39.0493%" y="661" width="0.0278%" height="15" fill="rgb(211,182,52)" fg:x="86994" fg:w="62"/><text x="39.2993%" y="671.50"></text></g><g><title>[bash] (70 samples, 0.03%)</title><rect x="39.0461%" y="773" width="0.0314%" height="15" fill="rgb(234,178,38)" fg:x="86987" fg:w="70"/><text x="39.2961%" y="783.50"></text></g><g><title>exec_builtin (69 samples, 0.03%)</title><rect x="39.0466%" y="757" width="0.0310%" height="15" fill="rgb(221,111,3)" fg:x="86988" fg:w="69"/><text x="39.2966%" y="767.50"></text></g><g><title>execute_command (90 samples, 0.04%)</title><rect x="39.0457%" y="805" width="0.0404%" height="15" fill="rgb(228,175,21)" fg:x="86986" fg:w="90"/><text x="39.2957%" y="815.50"></text></g><g><title>execute_command_internal (90 samples, 0.04%)</title><rect x="39.0457%" y="789" width="0.0404%" height="15" fill="rgb(228,174,43)" fg:x="86986" fg:w="90"/><text x="39.2957%" y="799.50"></text></g><g><title>execute_command_internal (99 samples, 0.04%)</title><rect x="39.0435%" y="821" width="0.0444%" height="15" fill="rgb(211,191,0)" fg:x="86981" fg:w="99"/><text x="39.2935%" y="831.50"></text></g><g><title>execute_command (100 samples, 0.04%)</title><rect x="39.0435%" y="837" width="0.0449%" height="15" fill="rgb(253,117,3)" fg:x="86981" fg:w="100"/><text x="39.2935%" y="847.50"></text></g><g><title>[bash] (36 samples, 0.02%)</title><rect x="39.0924%" y="773" width="0.0162%" height="15" fill="rgb(241,127,19)" fg:x="87090" fg:w="36"/><text x="39.3424%" y="783.50"></text></g><g><title>[bash] (46 samples, 0.02%)</title><rect x="39.0906%" y="789" width="0.0206%" height="15" fill="rgb(218,103,12)" fg:x="87086" fg:w="46"/><text x="39.3406%" y="799.50"></text></g><g><title>parse_command (52 samples, 0.02%)</title><rect x="39.0883%" y="821" width="0.0233%" height="15" fill="rgb(236,214,43)" fg:x="87081" fg:w="52"/><text x="39.3383%" y="831.50"></text></g><g><title>yyparse (52 samples, 0.02%)</title><rect x="39.0883%" y="805" width="0.0233%" height="15" fill="rgb(244,144,19)" fg:x="87081" fg:w="52"/><text x="39.3383%" y="815.50"></text></g><g><title>reader_loop (153 samples, 0.07%)</title><rect x="39.0435%" y="853" width="0.0687%" height="15" fill="rgb(246,188,10)" fg:x="86981" fg:w="153"/><text x="39.2935%" y="863.50"></text></g><g><title>read_command (53 samples, 0.02%)</title><rect x="39.0883%" y="837" width="0.0238%" height="15" fill="rgb(212,193,33)" fg:x="87081" fg:w="53"/><text x="39.3383%" y="847.50"></text></g><g><title>set_default_locale (37 samples, 0.02%)</title><rect x="39.1157%" y="853" width="0.0166%" height="15" fill="rgb(241,51,29)" fg:x="87142" fg:w="37"/><text x="39.3657%" y="863.50"></text></g><g><title>xmalloc (28 samples, 0.01%)</title><rect x="39.1198%" y="837" width="0.0126%" height="15" fill="rgb(211,58,19)" fg:x="87151" fg:w="28"/><text x="39.3698%" y="847.50"></text></g><g><title>__libc_start_main (396 samples, 0.18%)</title><rect x="38.9559%" y="885" width="0.1778%" height="15" fill="rgb(229,111,26)" fg:x="86786" fg:w="396"/><text x="39.2059%" y="895.50"></text></g><g><title>main (394 samples, 0.18%)</title><rect x="38.9568%" y="869" width="0.1769%" height="15" fill="rgb(213,115,40)" fg:x="86788" fg:w="394"/><text x="39.2068%" y="879.50"></text></g><g><title>do_mmap (32 samples, 0.01%)</title><rect x="39.1435%" y="629" width="0.0144%" height="15" fill="rgb(209,56,44)" fg:x="87204" fg:w="32"/><text x="39.3935%" y="639.50"></text></g><g><title>mmap_region (32 samples, 0.01%)</title><rect x="39.1435%" y="613" width="0.0144%" height="15" fill="rgb(230,108,32)" fg:x="87204" fg:w="32"/><text x="39.3935%" y="623.50"></text></g><g><title>ksys_mmap_pgoff (33 samples, 0.01%)</title><rect x="39.1435%" y="661" width="0.0148%" height="15" fill="rgb(216,165,31)" fg:x="87204" fg:w="33"/><text x="39.3935%" y="671.50"></text></g><g><title>vm_mmap_pgoff (33 samples, 0.01%)</title><rect x="39.1435%" y="645" width="0.0148%" height="15" fill="rgb(218,122,21)" fg:x="87204" fg:w="33"/><text x="39.3935%" y="655.50"></text></g><g><title>do_syscall_64 (37 samples, 0.02%)</title><rect x="39.1435%" y="677" width="0.0166%" height="15" fill="rgb(223,224,47)" fg:x="87204" fg:w="37"/><text x="39.3935%" y="687.50"></text></g><g><title>_dl_map_segments (43 samples, 0.02%)</title><rect x="39.1413%" y="741" width="0.0193%" height="15" fill="rgb(238,102,44)" fg:x="87199" fg:w="43"/><text x="39.3913%" y="751.50"></text></g><g><title>__mmap64 (39 samples, 0.02%)</title><rect x="39.1431%" y="725" width="0.0175%" height="15" fill="rgb(236,46,40)" fg:x="87203" fg:w="39"/><text x="39.3931%" y="735.50"></text></g><g><title>__mmap64 (39 samples, 0.02%)</title><rect x="39.1431%" y="709" width="0.0175%" height="15" fill="rgb(247,202,50)" fg:x="87203" fg:w="39"/><text x="39.3931%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.02%)</title><rect x="39.1435%" y="693" width="0.0171%" height="15" fill="rgb(209,99,20)" fg:x="87204" fg:w="38"/><text x="39.3935%" y="703.50"></text></g><g><title>_dl_map_object_from_fd (61 samples, 0.03%)</title><rect x="39.1404%" y="757" width="0.0274%" height="15" fill="rgb(252,27,34)" fg:x="87197" fg:w="61"/><text x="39.3904%" y="767.50"></text></g><g><title>_dl_catch_exception (88 samples, 0.04%)</title><rect x="39.1395%" y="805" width="0.0395%" height="15" fill="rgb(215,206,23)" fg:x="87195" fg:w="88"/><text x="39.3895%" y="815.50"></text></g><g><title>openaux (88 samples, 0.04%)</title><rect x="39.1395%" y="789" width="0.0395%" height="15" fill="rgb(212,135,36)" fg:x="87195" fg:w="88"/><text x="39.3895%" y="799.50"></text></g><g><title>_dl_map_object (88 samples, 0.04%)</title><rect x="39.1395%" y="773" width="0.0395%" height="15" fill="rgb(240,189,1)" fg:x="87195" fg:w="88"/><text x="39.3895%" y="783.50"></text></g><g><title>open_path (25 samples, 0.01%)</title><rect x="39.1678%" y="757" width="0.0112%" height="15" fill="rgb(242,56,20)" fg:x="87258" fg:w="25"/><text x="39.4178%" y="767.50"></text></g><g><title>_dl_map_object_deps (94 samples, 0.04%)</title><rect x="39.1391%" y="821" width="0.0422%" height="15" fill="rgb(247,132,33)" fg:x="87194" fg:w="94"/><text x="39.3891%" y="831.50"></text></g><g><title>_dl_lookup_symbol_x (33 samples, 0.01%)</title><rect x="39.2001%" y="773" width="0.0148%" height="15" fill="rgb(208,149,11)" fg:x="87330" fg:w="33"/><text x="39.4501%" y="783.50"></text></g><g><title>do_lookup_x (30 samples, 0.01%)</title><rect x="39.2015%" y="757" width="0.0135%" height="15" fill="rgb(211,33,11)" fg:x="87333" fg:w="30"/><text x="39.4515%" y="767.50"></text></g><g><title>elf_machine_rela (44 samples, 0.02%)</title><rect x="39.1956%" y="789" width="0.0198%" height="15" fill="rgb(221,29,38)" fg:x="87320" fg:w="44"/><text x="39.4456%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (78 samples, 0.04%)</title><rect x="39.1902%" y="805" width="0.0350%" height="15" fill="rgb(206,182,49)" fg:x="87308" fg:w="78"/><text x="39.4402%" y="815.50"></text></g><g><title>_dl_relocate_object (98 samples, 0.04%)</title><rect x="39.1839%" y="821" width="0.0440%" height="15" fill="rgb(216,140,1)" fg:x="87294" fg:w="98"/><text x="39.4339%" y="831.50"></text></g><g><title>[ld-2.31.so] (215 samples, 0.10%)</title><rect x="39.1337%" y="837" width="0.0965%" height="15" fill="rgb(232,57,40)" fg:x="87182" fg:w="215"/><text x="39.3837%" y="847.50"></text></g><g><title>_dl_start_final (219 samples, 0.10%)</title><rect x="39.1337%" y="869" width="0.0983%" height="15" fill="rgb(224,186,18)" fg:x="87182" fg:w="219"/><text x="39.3837%" y="879.50"></text></g><g><title>_dl_sysdep_start (219 samples, 0.10%)</title><rect x="39.1337%" y="853" width="0.0983%" height="15" fill="rgb(215,121,11)" fg:x="87182" fg:w="219"/><text x="39.3837%" y="863.50"></text></g><g><title>_dl_start (227 samples, 0.10%)</title><rect x="39.1337%" y="885" width="0.1019%" height="15" fill="rgb(245,147,10)" fg:x="87182" fg:w="227"/><text x="39.3837%" y="895.50"></text></g><g><title>_start (626 samples, 0.28%)</title><rect x="38.9559%" y="901" width="0.2810%" height="15" fill="rgb(238,153,13)" fg:x="86786" fg:w="626"/><text x="39.2059%" y="911.50"></text></g><g><title>asm_exc_page_fault (30 samples, 0.01%)</title><rect x="39.2369%" y="901" width="0.0135%" height="15" fill="rgb(233,108,0)" fg:x="87412" fg:w="30"/><text x="39.4869%" y="911.50"></text></g><g><title>unmap_page_range (28 samples, 0.01%)</title><rect x="39.2629%" y="741" width="0.0126%" height="15" fill="rgb(212,157,17)" fg:x="87470" fg:w="28"/><text x="39.5129%" y="751.50"></text></g><g><title>mmput (55 samples, 0.02%)</title><rect x="39.2517%" y="789" width="0.0247%" height="15" fill="rgb(225,213,38)" fg:x="87445" fg:w="55"/><text x="39.5017%" y="799.50"></text></g><g><title>exit_mmap (55 samples, 0.02%)</title><rect x="39.2517%" y="773" width="0.0247%" height="15" fill="rgb(248,16,11)" fg:x="87445" fg:w="55"/><text x="39.5017%" y="783.50"></text></g><g><title>unmap_vmas (31 samples, 0.01%)</title><rect x="39.2625%" y="757" width="0.0139%" height="15" fill="rgb(241,33,4)" fg:x="87469" fg:w="31"/><text x="39.5125%" y="767.50"></text></g><g><title>begin_new_exec (58 samples, 0.03%)</title><rect x="39.2513%" y="805" width="0.0260%" height="15" fill="rgb(222,26,43)" fg:x="87444" fg:w="58"/><text x="39.5013%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.04%)</title><rect x="39.2504%" y="901" width="0.0355%" height="15" fill="rgb(243,29,36)" fg:x="87442" fg:w="79"/><text x="39.5004%" y="911.50"></text></g><g><title>do_syscall_64 (79 samples, 0.04%)</title><rect x="39.2504%" y="885" width="0.0355%" height="15" fill="rgb(241,9,27)" fg:x="87442" fg:w="79"/><text x="39.5004%" y="895.50"></text></g><g><title>__x64_sys_execve (79 samples, 0.04%)</title><rect x="39.2504%" y="869" width="0.0355%" height="15" fill="rgb(205,117,26)" fg:x="87442" fg:w="79"/><text x="39.5004%" y="879.50"></text></g><g><title>do_execveat_common (79 samples, 0.04%)</title><rect x="39.2504%" y="853" width="0.0355%" height="15" fill="rgb(209,80,39)" fg:x="87442" fg:w="79"/><text x="39.5004%" y="863.50"></text></g><g><title>bprm_execve (79 samples, 0.04%)</title><rect x="39.2504%" y="837" width="0.0355%" height="15" fill="rgb(239,155,6)" fg:x="87442" fg:w="79"/><text x="39.5004%" y="847.50"></text></g><g><title>load_elf_binary (79 samples, 0.04%)</title><rect x="39.2504%" y="821" width="0.0355%" height="15" fill="rgb(212,104,12)" fg:x="87442" fg:w="79"/><text x="39.5004%" y="831.50"></text></g><g><title>cc_wrapper.sh (783 samples, 0.35%)</title><rect x="38.9348%" y="917" width="0.3515%" height="15" fill="rgb(234,204,3)" fg:x="86739" fg:w="783"/><text x="39.1848%" y="927.50"></text></g><g><title>[[stack]] (35 samples, 0.02%)</title><rect x="39.2953%" y="901" width="0.0157%" height="15" fill="rgb(251,218,7)" fg:x="87542" fg:w="35"/><text x="39.5453%" y="911.50"></text></g><g><title>alloc_set_pte (32 samples, 0.01%)</title><rect x="40.9848%" y="789" width="0.0144%" height="15" fill="rgb(221,81,32)" fg:x="91306" fg:w="32"/><text x="41.2348%" y="799.50"></text></g><g><title>filemap_map_pages (88 samples, 0.04%)</title><rect x="40.9660%" y="805" width="0.0395%" height="15" fill="rgb(214,152,26)" fg:x="91264" fg:w="88"/><text x="41.2160%" y="815.50"></text></g><g><title>do_user_addr_fault (151 samples, 0.07%)</title><rect x="40.9458%" y="837" width="0.0678%" height="15" fill="rgb(223,22,3)" fg:x="91219" fg:w="151"/><text x="41.1958%" y="847.50"></text></g><g><title>handle_mm_fault (145 samples, 0.07%)</title><rect x="40.9485%" y="821" width="0.0651%" height="15" fill="rgb(207,174,7)" fg:x="91225" fg:w="145"/><text x="41.1985%" y="831.50"></text></g><g><title>exc_page_fault (153 samples, 0.07%)</title><rect x="40.9453%" y="853" width="0.0687%" height="15" fill="rgb(224,19,52)" fg:x="91218" fg:w="153"/><text x="41.1953%" y="863.50"></text></g><g><title>asm_exc_page_fault (154 samples, 0.07%)</title><rect x="40.9453%" y="869" width="0.0691%" height="15" fill="rgb(228,24,14)" fg:x="91218" fg:w="154"/><text x="41.1953%" y="879.50"></text></g><g><title>[libc-2.31.so] (428 samples, 0.19%)</title><rect x="40.8264%" y="885" width="0.1921%" height="15" fill="rgb(230,153,43)" fg:x="90953" fg:w="428"/><text x="41.0764%" y="895.50"></text></g><g><title>btrfs_search_slot (29 samples, 0.01%)</title><rect x="41.0320%" y="709" width="0.0130%" height="15" fill="rgb(231,106,12)" fg:x="91411" fg:w="29"/><text x="41.2820%" y="719.50"></text></g><g><title>btrfs_lookup (31 samples, 0.01%)</title><rect x="41.0315%" y="757" width="0.0139%" height="15" fill="rgb(215,92,2)" fg:x="91410" fg:w="31"/><text x="41.2815%" y="767.50"></text></g><g><title>btrfs_lookup_dentry (31 samples, 0.01%)</title><rect x="41.0315%" y="741" width="0.0139%" height="15" fill="rgb(249,143,25)" fg:x="91410" fg:w="31"/><text x="41.2815%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (30 samples, 0.01%)</title><rect x="41.0320%" y="725" width="0.0135%" height="15" fill="rgb(252,7,35)" fg:x="91411" fg:w="30"/><text x="41.2820%" y="735.50"></text></g><g><title>__lookup_slow (39 samples, 0.02%)</title><rect x="41.0315%" y="773" width="0.0175%" height="15" fill="rgb(216,69,40)" fg:x="91410" fg:w="39"/><text x="41.2815%" y="783.50"></text></g><g><title>filename_lookup (67 samples, 0.03%)</title><rect x="41.0207%" y="821" width="0.0301%" height="15" fill="rgb(240,36,33)" fg:x="91386" fg:w="67"/><text x="41.2707%" y="831.50"></text></g><g><title>path_lookupat (64 samples, 0.03%)</title><rect x="41.0221%" y="805" width="0.0287%" height="15" fill="rgb(231,128,14)" fg:x="91389" fg:w="64"/><text x="41.2721%" y="815.50"></text></g><g><title>walk_component (43 samples, 0.02%)</title><rect x="41.0315%" y="789" width="0.0193%" height="15" fill="rgb(245,143,14)" fg:x="91410" fg:w="43"/><text x="41.2815%" y="799.50"></text></g><g><title>do_syscall_64 (101 samples, 0.05%)</title><rect x="41.0198%" y="853" width="0.0453%" height="15" fill="rgb(222,130,28)" fg:x="91384" fg:w="101"/><text x="41.2698%" y="863.50"></text></g><g><title>do_faccessat (100 samples, 0.04%)</title><rect x="41.0203%" y="837" width="0.0449%" height="15" fill="rgb(212,10,48)" fg:x="91385" fg:w="100"/><text x="41.2703%" y="847.50"></text></g><g><title>__GI___access (103 samples, 0.05%)</title><rect x="41.0194%" y="885" width="0.0462%" height="15" fill="rgb(254,118,45)" fg:x="91383" fg:w="103"/><text x="41.2694%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.05%)</title><rect x="41.0198%" y="869" width="0.0458%" height="15" fill="rgb(228,6,45)" fg:x="91384" fg:w="102"/><text x="41.2698%" y="879.50"></text></g><g><title>__GI___libc_free (24 samples, 0.01%)</title><rect x="41.0764%" y="885" width="0.0108%" height="15" fill="rgb(241,18,35)" fg:x="91510" fg:w="24"/><text x="41.3264%" y="895.50"></text></g><g><title>__GI___pthread_once (26 samples, 0.01%)</title><rect x="41.1155%" y="885" width="0.0117%" height="15" fill="rgb(227,214,53)" fg:x="91597" fg:w="26"/><text x="41.3655%" y="895.50"></text></g><g><title>__GI___readlink (46 samples, 0.02%)</title><rect x="41.1383%" y="885" width="0.0206%" height="15" fill="rgb(224,107,51)" fg:x="91648" fg:w="46"/><text x="41.3883%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="41.1383%" y="869" width="0.0206%" height="15" fill="rgb(248,60,28)" fg:x="91648" fg:w="46"/><text x="41.3883%" y="879.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="41.1383%" y="853" width="0.0206%" height="15" fill="rgb(249,101,23)" fg:x="91648" fg:w="46"/><text x="41.3883%" y="863.50"></text></g><g><title>__x64_sys_readlink (46 samples, 0.02%)</title><rect x="41.1383%" y="837" width="0.0206%" height="15" fill="rgb(228,51,19)" fg:x="91648" fg:w="46"/><text x="41.3883%" y="847.50"></text></g><g><title>do_readlinkat (46 samples, 0.02%)</title><rect x="41.1383%" y="821" width="0.0206%" height="15" fill="rgb(213,20,6)" fg:x="91648" fg:w="46"/><text x="41.3883%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (90 samples, 0.04%)</title><rect x="41.1716%" y="741" width="0.0404%" height="15" fill="rgb(212,124,10)" fg:x="91722" fg:w="90"/><text x="41.4216%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (90 samples, 0.04%)</title><rect x="41.1716%" y="725" width="0.0404%" height="15" fill="rgb(248,3,40)" fg:x="91722" fg:w="90"/><text x="41.4216%" y="735.50"></text></g><g><title>native_write_msr (90 samples, 0.04%)</title><rect x="41.1716%" y="709" width="0.0404%" height="15" fill="rgb(223,178,23)" fg:x="91722" fg:w="90"/><text x="41.4216%" y="719.50"></text></g><g><title>schedule (99 samples, 0.04%)</title><rect x="41.1702%" y="789" width="0.0444%" height="15" fill="rgb(240,132,45)" fg:x="91719" fg:w="99"/><text x="41.4202%" y="799.50"></text></g><g><title>__schedule (99 samples, 0.04%)</title><rect x="41.1702%" y="773" width="0.0444%" height="15" fill="rgb(245,164,36)" fg:x="91719" fg:w="99"/><text x="41.4202%" y="783.50"></text></g><g><title>finish_task_switch (99 samples, 0.04%)</title><rect x="41.1702%" y="757" width="0.0444%" height="15" fill="rgb(231,188,53)" fg:x="91719" fg:w="99"/><text x="41.4202%" y="767.50"></text></g><g><title>__do_sys_wait4 (110 samples, 0.05%)</title><rect x="41.1698%" y="837" width="0.0494%" height="15" fill="rgb(237,198,39)" fg:x="91718" fg:w="110"/><text x="41.4198%" y="847.50"></text></g><g><title>kernel_wait4 (110 samples, 0.05%)</title><rect x="41.1698%" y="821" width="0.0494%" height="15" fill="rgb(223,120,35)" fg:x="91718" fg:w="110"/><text x="41.4198%" y="831.50"></text></g><g><title>do_wait (110 samples, 0.05%)</title><rect x="41.1698%" y="805" width="0.0494%" height="15" fill="rgb(253,107,49)" fg:x="91718" fg:w="110"/><text x="41.4198%" y="815.50"></text></g><g><title>__GI___wait4 (112 samples, 0.05%)</title><rect x="41.1693%" y="885" width="0.0503%" height="15" fill="rgb(216,44,31)" fg:x="91717" fg:w="112"/><text x="41.4193%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (111 samples, 0.05%)</title><rect x="41.1698%" y="869" width="0.0498%" height="15" fill="rgb(253,87,21)" fg:x="91718" fg:w="111"/><text x="41.4198%" y="879.50"></text></g><g><title>do_syscall_64 (111 samples, 0.05%)</title><rect x="41.1698%" y="853" width="0.0498%" height="15" fill="rgb(226,18,2)" fg:x="91718" fg:w="111"/><text x="41.4198%" y="863.50"></text></g><g><title>link_path_walk.part.0 (28 samples, 0.01%)</title><rect x="41.2290%" y="773" width="0.0126%" height="15" fill="rgb(216,8,46)" fg:x="91850" fg:w="28"/><text x="41.4790%" y="783.50"></text></g><g><title>btrfs_lookup (31 samples, 0.01%)</title><rect x="41.2443%" y="741" width="0.0139%" height="15" fill="rgb(226,140,39)" fg:x="91884" fg:w="31"/><text x="41.4943%" y="751.50"></text></g><g><title>btrfs_lookup_dentry (31 samples, 0.01%)</title><rect x="41.2443%" y="725" width="0.0139%" height="15" fill="rgb(221,194,54)" fg:x="91884" fg:w="31"/><text x="41.4943%" y="735.50"></text></g><g><title>btrfs_lookup_dir_item (30 samples, 0.01%)</title><rect x="41.2447%" y="709" width="0.0135%" height="15" fill="rgb(213,92,11)" fg:x="91885" fg:w="30"/><text x="41.4947%" y="719.50"></text></g><g><title>btrfs_search_slot (30 samples, 0.01%)</title><rect x="41.2447%" y="693" width="0.0135%" height="15" fill="rgb(229,162,46)" fg:x="91885" fg:w="30"/><text x="41.4947%" y="703.50"></text></g><g><title>__lookup_slow (39 samples, 0.02%)</title><rect x="41.2443%" y="757" width="0.0175%" height="15" fill="rgb(214,111,36)" fg:x="91884" fg:w="39"/><text x="41.4943%" y="767.50"></text></g><g><title>path_lookupat (90 samples, 0.04%)</title><rect x="41.2268%" y="789" width="0.0404%" height="15" fill="rgb(207,6,21)" fg:x="91845" fg:w="90"/><text x="41.4768%" y="799.50"></text></g><g><title>walk_component (51 samples, 0.02%)</title><rect x="41.2443%" y="773" width="0.0229%" height="15" fill="rgb(213,127,38)" fg:x="91884" fg:w="51"/><text x="41.4943%" y="783.50"></text></g><g><title>filename_lookup (94 samples, 0.04%)</title><rect x="41.2254%" y="805" width="0.0422%" height="15" fill="rgb(238,118,32)" fg:x="91842" fg:w="94"/><text x="41.4754%" y="815.50"></text></g><g><title>do_syscall_64 (128 samples, 0.06%)</title><rect x="41.2218%" y="853" width="0.0575%" height="15" fill="rgb(240,139,39)" fg:x="91834" fg:w="128"/><text x="41.4718%" y="863.50"></text></g><g><title>__do_sys_newstat (128 samples, 0.06%)</title><rect x="41.2218%" y="837" width="0.0575%" height="15" fill="rgb(235,10,37)" fg:x="91834" fg:w="128"/><text x="41.4718%" y="847.50"></text></g><g><title>vfs_statx (126 samples, 0.06%)</title><rect x="41.2227%" y="821" width="0.0566%" height="15" fill="rgb(249,171,38)" fg:x="91836" fg:w="126"/><text x="41.4727%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (130 samples, 0.06%)</title><rect x="41.2218%" y="869" width="0.0584%" height="15" fill="rgb(242,144,32)" fg:x="91834" fg:w="130"/><text x="41.4718%" y="879.50"></text></g><g><title>__GI___xstat (136 samples, 0.06%)</title><rect x="41.2196%" y="885" width="0.0610%" height="15" fill="rgb(217,117,21)" fg:x="91829" fg:w="136"/><text x="41.4696%" y="895.50"></text></g><g><title>__internal_atexit (36 samples, 0.02%)</title><rect x="41.2999%" y="885" width="0.0162%" height="15" fill="rgb(249,87,1)" fg:x="92008" fg:w="36"/><text x="41.5499%" y="895.50"></text></g><g><title>__new_exitfn (23 samples, 0.01%)</title><rect x="41.3058%" y="869" width="0.0103%" height="15" fill="rgb(248,196,48)" fg:x="92021" fg:w="23"/><text x="41.5558%" y="879.50"></text></g><g><title>__libc_calloc (28 samples, 0.01%)</title><rect x="41.3192%" y="885" width="0.0126%" height="15" fill="rgb(251,206,33)" fg:x="92051" fg:w="28"/><text x="41.5692%" y="895.50"></text></g><g><title>_int_malloc (25 samples, 0.01%)</title><rect x="41.3206%" y="869" width="0.0112%" height="15" fill="rgb(232,141,28)" fg:x="92054" fg:w="25"/><text x="41.5706%" y="879.50"></text></g><g><title>btrfs_create (28 samples, 0.01%)</title><rect x="41.3417%" y="773" width="0.0126%" height="15" fill="rgb(209,167,14)" fg:x="92101" fg:w="28"/><text x="41.5917%" y="783.50"></text></g><g><title>btrfs_lookup_dir_item (36 samples, 0.02%)</title><rect x="41.3551%" y="741" width="0.0162%" height="15" fill="rgb(225,11,50)" fg:x="92131" fg:w="36"/><text x="41.6051%" y="751.50"></text></g><g><title>btrfs_search_slot (36 samples, 0.02%)</title><rect x="41.3551%" y="725" width="0.0162%" height="15" fill="rgb(209,50,20)" fg:x="92131" fg:w="36"/><text x="41.6051%" y="735.50"></text></g><g><title>btrfs_lookup (39 samples, 0.02%)</title><rect x="41.3543%" y="773" width="0.0175%" height="15" fill="rgb(212,17,46)" fg:x="92129" fg:w="39"/><text x="41.6043%" y="783.50"></text></g><g><title>btrfs_lookup_dentry (39 samples, 0.02%)</title><rect x="41.3543%" y="757" width="0.0175%" height="15" fill="rgb(216,101,39)" fg:x="92129" fg:w="39"/><text x="41.6043%" y="767.50"></text></g><g><title>do_filp_open (117 samples, 0.05%)</title><rect x="41.3354%" y="805" width="0.0525%" height="15" fill="rgb(212,228,48)" fg:x="92087" fg:w="117"/><text x="41.5854%" y="815.50"></text></g><g><title>path_openat (117 samples, 0.05%)</title><rect x="41.3354%" y="789" width="0.0525%" height="15" fill="rgb(250,6,50)" fg:x="92087" fg:w="117"/><text x="41.5854%" y="799.50"></text></g><g><title>do_syscall_64 (140 samples, 0.06%)</title><rect x="41.3327%" y="853" width="0.0628%" height="15" fill="rgb(250,160,48)" fg:x="92081" fg:w="140"/><text x="41.5827%" y="863.50"></text></g><g><title>__x64_sys_openat (140 samples, 0.06%)</title><rect x="41.3327%" y="837" width="0.0628%" height="15" fill="rgb(244,216,33)" fg:x="92081" fg:w="140"/><text x="41.5827%" y="847.50"></text></g><g><title>do_sys_openat2 (140 samples, 0.06%)</title><rect x="41.3327%" y="821" width="0.0628%" height="15" fill="rgb(207,157,5)" fg:x="92081" fg:w="140"/><text x="41.5827%" y="831.50"></text></g><g><title>__libc_open64 (145 samples, 0.07%)</title><rect x="41.3318%" y="885" width="0.0651%" height="15" fill="rgb(228,199,8)" fg:x="92079" fg:w="145"/><text x="41.5818%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (143 samples, 0.06%)</title><rect x="41.3327%" y="869" width="0.0642%" height="15" fill="rgb(227,80,20)" fg:x="92081" fg:w="143"/><text x="41.5827%" y="879.50"></text></g><g><title>__libc_start_main (28 samples, 0.01%)</title><rect x="41.4068%" y="885" width="0.0126%" height="15" fill="rgb(222,9,33)" fg:x="92246" fg:w="28"/><text x="41.6568%" y="895.50"></text></g><g><title>__GI_exit (26 samples, 0.01%)</title><rect x="41.4077%" y="869" width="0.0117%" height="15" fill="rgb(239,44,28)" fg:x="92248" fg:w="26"/><text x="41.6577%" y="879.50"></text></g><g><title>__run_exit_handlers (26 samples, 0.01%)</title><rect x="41.4077%" y="853" width="0.0117%" height="15" fill="rgb(249,187,43)" fg:x="92248" fg:w="26"/><text x="41.6577%" y="863.50"></text></g><g><title>__x64_sys_openat (29 samples, 0.01%)</title><rect x="41.4288%" y="821" width="0.0130%" height="15" fill="rgb(216,141,28)" fg:x="92295" fg:w="29"/><text x="41.6788%" y="831.50"></text></g><g><title>do_sys_openat2 (29 samples, 0.01%)</title><rect x="41.4288%" y="805" width="0.0130%" height="15" fill="rgb(230,154,53)" fg:x="92295" fg:w="29"/><text x="41.6788%" y="815.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="41.4288%" y="837" width="0.0135%" height="15" fill="rgb(227,82,4)" fg:x="92295" fg:w="30"/><text x="41.6788%" y="847.50"></text></g><g><title>__GI___open64_nocancel (32 samples, 0.01%)</title><rect x="41.4283%" y="869" width="0.0144%" height="15" fill="rgb(220,107,16)" fg:x="92294" fg:w="32"/><text x="41.6783%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="41.4288%" y="853" width="0.0139%" height="15" fill="rgb(207,187,2)" fg:x="92295" fg:w="31"/><text x="41.6788%" y="863.50"></text></g><g><title>__opendir (35 samples, 0.02%)</title><rect x="41.4283%" y="885" width="0.0157%" height="15" fill="rgb(210,162,52)" fg:x="92294" fg:w="35"/><text x="41.6783%" y="895.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="41.4530%" y="837" width="0.0206%" height="15" fill="rgb(217,216,49)" fg:x="92349" fg:w="46"/><text x="41.7030%" y="847.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.02%)</title><rect x="41.4530%" y="821" width="0.0206%" height="15" fill="rgb(218,146,49)" fg:x="92349" fg:w="46"/><text x="41.7030%" y="831.50"></text></g><g><title>do_futex (45 samples, 0.02%)</title><rect x="41.4535%" y="805" width="0.0202%" height="15" fill="rgb(216,55,40)" fg:x="92350" fg:w="45"/><text x="41.7035%" y="815.50"></text></g><g><title>futex_wake (45 samples, 0.02%)</title><rect x="41.4535%" y="789" width="0.0202%" height="15" fill="rgb(208,196,21)" fg:x="92350" fg:w="45"/><text x="41.7035%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.02%)</title><rect x="41.4526%" y="853" width="0.0233%" height="15" fill="rgb(242,117,42)" fg:x="92348" fg:w="52"/><text x="41.7026%" y="863.50"></text></g><g><title>__pthread_once_slow (74 samples, 0.03%)</title><rect x="41.4440%" y="885" width="0.0332%" height="15" fill="rgb(210,11,23)" fg:x="92329" fg:w="74"/><text x="41.6940%" y="895.50"></text></g><g><title>futex_wake (61 samples, 0.03%)</title><rect x="41.4499%" y="869" width="0.0274%" height="15" fill="rgb(217,110,2)" fg:x="92342" fg:w="61"/><text x="41.6999%" y="879.50"></text></g><g><title>[ld-2.31.so] (32 samples, 0.01%)</title><rect x="41.4799%" y="869" width="0.0144%" height="15" fill="rgb(229,77,54)" fg:x="92409" fg:w="32"/><text x="41.7299%" y="879.50"></text></g><g><title>_dl_lookup_symbol_x (32 samples, 0.01%)</title><rect x="41.4799%" y="853" width="0.0144%" height="15" fill="rgb(218,53,16)" fg:x="92409" fg:w="32"/><text x="41.7299%" y="863.50"></text></g><g><title>do_lookup_x (25 samples, 0.01%)</title><rect x="41.4831%" y="837" width="0.0112%" height="15" fill="rgb(215,38,13)" fg:x="92416" fg:w="25"/><text x="41.7331%" y="847.50"></text></g><g><title>_dl_runtime_resolve_xsavec (48 samples, 0.02%)</title><rect x="41.4786%" y="885" width="0.0215%" height="15" fill="rgb(235,42,18)" fg:x="92406" fg:w="48"/><text x="41.7286%" y="895.50"></text></g><g><title>_int_free (49 samples, 0.02%)</title><rect x="41.5001%" y="885" width="0.0220%" height="15" fill="rgb(219,66,54)" fg:x="92454" fg:w="49"/><text x="41.7501%" y="895.50"></text></g><g><title>alloc_pages_vma (28 samples, 0.01%)</title><rect x="41.5724%" y="821" width="0.0126%" height="15" fill="rgb(222,205,4)" fg:x="92615" fg:w="28"/><text x="41.8224%" y="831.50"></text></g><g><title>__alloc_pages_nodemask (28 samples, 0.01%)</title><rect x="41.5724%" y="805" width="0.0126%" height="15" fill="rgb(227,213,46)" fg:x="92615" fg:w="28"/><text x="41.8224%" y="815.50"></text></g><g><title>get_page_from_freelist (25 samples, 0.01%)</title><rect x="41.5737%" y="789" width="0.0112%" height="15" fill="rgb(250,145,42)" fg:x="92618" fg:w="25"/><text x="41.8237%" y="799.50"></text></g><g><title>page_add_file_rmap (108 samples, 0.05%)</title><rect x="41.7120%" y="789" width="0.0485%" height="15" fill="rgb(219,15,2)" fg:x="92926" fg:w="108"/><text x="41.9620%" y="799.50"></text></g><g><title>alloc_set_pte (178 samples, 0.08%)</title><rect x="41.6846%" y="805" width="0.0799%" height="15" fill="rgb(231,181,52)" fg:x="92865" fg:w="178"/><text x="41.9346%" y="815.50"></text></g><g><title>unlock_page (40 samples, 0.02%)</title><rect x="41.7672%" y="805" width="0.0180%" height="15" fill="rgb(235,1,42)" fg:x="93049" fg:w="40"/><text x="42.0172%" y="815.50"></text></g><g><title>filemap_map_pages (485 samples, 0.22%)</title><rect x="41.5872%" y="821" width="0.2177%" height="15" fill="rgb(249,88,27)" fg:x="92648" fg:w="485"/><text x="41.8372%" y="831.50"></text></g><g><title>xas_find (44 samples, 0.02%)</title><rect x="41.7852%" y="805" width="0.0198%" height="15" fill="rgb(235,145,16)" fg:x="93089" fg:w="44"/><text x="42.0352%" y="815.50"></text></g><g><title>xas_load (40 samples, 0.02%)</title><rect x="41.7870%" y="789" width="0.0180%" height="15" fill="rgb(237,114,19)" fg:x="93093" fg:w="40"/><text x="42.0370%" y="799.50"></text></g><g><title>handle_mm_fault (640 samples, 0.29%)</title><rect x="41.5414%" y="837" width="0.2873%" height="15" fill="rgb(238,51,50)" fg:x="92546" fg:w="640"/><text x="41.7914%" y="847.50"></text></g><g><title>do_user_addr_fault (676 samples, 0.30%)</title><rect x="41.5293%" y="853" width="0.3034%" height="15" fill="rgb(205,194,25)" fg:x="92519" fg:w="676"/><text x="41.7793%" y="863.50"></text></g><g><title>exc_page_fault (683 samples, 0.31%)</title><rect x="41.5271%" y="869" width="0.3066%" height="15" fill="rgb(215,203,17)" fg:x="92514" fg:w="683"/><text x="41.7771%" y="879.50"></text></g><g><title>asm_exc_page_fault (699 samples, 0.31%)</title><rect x="41.5262%" y="885" width="0.3138%" height="15" fill="rgb(233,112,49)" fg:x="92512" fg:w="699"/><text x="41.7762%" y="895.50"></text></g><g><title>asm_sysvec_irq_work (23 samples, 0.01%)</title><rect x="41.8458%" y="885" width="0.0103%" height="15" fill="rgb(241,130,26)" fg:x="93224" fg:w="23"/><text x="42.0958%" y="895.50"></text></g><g><title>irqentry_exit_to_user_mode (23 samples, 0.01%)</title><rect x="41.8458%" y="869" width="0.0103%" height="15" fill="rgb(252,223,19)" fg:x="93224" fg:w="23"/><text x="42.0958%" y="879.50"></text></g><g><title>exit_to_user_mode_prepare (23 samples, 0.01%)</title><rect x="41.8458%" y="853" width="0.0103%" height="15" fill="rgb(211,95,25)" fg:x="93224" fg:w="23"/><text x="42.0958%" y="863.50"></text></g><g><title>schedule (23 samples, 0.01%)</title><rect x="41.8458%" y="837" width="0.0103%" height="15" fill="rgb(251,182,27)" fg:x="93224" fg:w="23"/><text x="42.0958%" y="847.50"></text></g><g><title>__schedule (23 samples, 0.01%)</title><rect x="41.8458%" y="821" width="0.0103%" height="15" fill="rgb(238,24,4)" fg:x="93224" fg:w="23"/><text x="42.0958%" y="831.50"></text></g><g><title>finish_task_switch (23 samples, 0.01%)</title><rect x="41.8458%" y="805" width="0.0103%" height="15" fill="rgb(224,220,25)" fg:x="93224" fg:w="23"/><text x="42.0958%" y="815.50"></text></g><g><title>error_entry (45 samples, 0.02%)</title><rect x="41.8570%" y="885" width="0.0202%" height="15" fill="rgb(239,133,26)" fg:x="93249" fg:w="45"/><text x="42.1070%" y="895.50"></text></g><g><title>sync_regs (40 samples, 0.02%)</title><rect x="41.8592%" y="869" width="0.0180%" height="15" fill="rgb(211,94,48)" fg:x="93254" fg:w="40"/><text x="42.1092%" y="879.50"></text></g><g><title>alloc_pages_vma (61 samples, 0.03%)</title><rect x="41.9652%" y="773" width="0.0274%" height="15" fill="rgb(239,87,6)" fg:x="93490" fg:w="61"/><text x="42.2152%" y="783.50"></text></g><g><title>__alloc_pages_nodemask (58 samples, 0.03%)</title><rect x="41.9665%" y="757" width="0.0260%" height="15" fill="rgb(227,62,0)" fg:x="93493" fg:w="58"/><text x="42.2165%" y="767.50"></text></g><g><title>get_page_from_freelist (48 samples, 0.02%)</title><rect x="41.9710%" y="741" width="0.0215%" height="15" fill="rgb(211,226,4)" fg:x="93503" fg:w="48"/><text x="42.2210%" y="751.50"></text></g><g><title>prep_new_page (29 samples, 0.01%)</title><rect x="41.9795%" y="725" width="0.0130%" height="15" fill="rgb(253,38,52)" fg:x="93522" fg:w="29"/><text x="42.2295%" y="735.50"></text></g><g><title>kernel_init_free_pages (26 samples, 0.01%)</title><rect x="41.9809%" y="709" width="0.0117%" height="15" fill="rgb(229,126,40)" fg:x="93525" fg:w="26"/><text x="42.2309%" y="719.50"></text></g><g><title>clear_page_erms (26 samples, 0.01%)</title><rect x="41.9809%" y="693" width="0.0117%" height="15" fill="rgb(229,165,44)" fg:x="93525" fg:w="26"/><text x="42.2309%" y="703.50"></text></g><g><title>do_user_addr_fault (125 samples, 0.06%)</title><rect x="41.9539%" y="805" width="0.0561%" height="15" fill="rgb(247,95,47)" fg:x="93465" fg:w="125"/><text x="42.2039%" y="815.50"></text></g><g><title>handle_mm_fault (118 samples, 0.05%)</title><rect x="41.9571%" y="789" width="0.0530%" height="15" fill="rgb(216,140,30)" fg:x="93472" fg:w="118"/><text x="42.2071%" y="799.50"></text></g><g><title>exc_page_fault (128 samples, 0.06%)</title><rect x="41.9530%" y="821" width="0.0575%" height="15" fill="rgb(246,214,8)" fg:x="93463" fg:w="128"/><text x="42.2030%" y="831.50"></text></g><g><title>asm_exc_page_fault (131 samples, 0.06%)</title><rect x="41.9530%" y="837" width="0.0588%" height="15" fill="rgb(227,224,15)" fg:x="93463" fg:w="131"/><text x="42.2030%" y="847.50"></text></g><g><title>sysmalloc (38 samples, 0.02%)</title><rect x="42.0186%" y="837" width="0.0171%" height="15" fill="rgb(233,175,4)" fg:x="93609" fg:w="38"/><text x="42.2686%" y="847.50"></text></g><g><title>_int_malloc (300 samples, 0.13%)</title><rect x="41.9019%" y="853" width="0.1347%" height="15" fill="rgb(221,66,45)" fg:x="93349" fg:w="300"/><text x="42.1519%" y="863.50"></text></g><g><title>__GI___libc_malloc (369 samples, 0.17%)</title><rect x="41.8862%" y="869" width="0.1656%" height="15" fill="rgb(221,178,18)" fg:x="93314" fg:w="369"/><text x="42.1362%" y="879.50"></text></g><g><title>operator new (386 samples, 0.17%)</title><rect x="41.8848%" y="885" width="0.1733%" height="15" fill="rgb(213,81,29)" fg:x="93311" fg:w="386"/><text x="42.1348%" y="895.50"></text></g><g><title>rename (39 samples, 0.02%)</title><rect x="42.0626%" y="885" width="0.0175%" height="15" fill="rgb(220,89,49)" fg:x="93707" fg:w="39"/><text x="42.3126%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.02%)</title><rect x="42.0626%" y="869" width="0.0175%" height="15" fill="rgb(227,60,33)" fg:x="93707" fg:w="39"/><text x="42.3126%" y="879.50"></text></g><g><title>do_syscall_64 (39 samples, 0.02%)</title><rect x="42.0626%" y="853" width="0.0175%" height="15" fill="rgb(205,113,12)" fg:x="93707" fg:w="39"/><text x="42.3126%" y="863.50"></text></g><g><title>__x64_sys_rename (39 samples, 0.02%)</title><rect x="42.0626%" y="837" width="0.0175%" height="15" fill="rgb(211,32,1)" fg:x="93707" fg:w="39"/><text x="42.3126%" y="847.50"></text></g><g><title>do_renameat2 (39 samples, 0.02%)</title><rect x="42.0626%" y="821" width="0.0175%" height="15" fill="rgb(246,2,12)" fg:x="93707" fg:w="39"/><text x="42.3126%" y="831.50"></text></g><g><title>vfs_rename (37 samples, 0.02%)</title><rect x="42.0635%" y="805" width="0.0166%" height="15" fill="rgb(243,37,27)" fg:x="93709" fg:w="37"/><text x="42.3135%" y="815.50"></text></g><g><title>btrfs_rename2 (36 samples, 0.02%)</title><rect x="42.0639%" y="789" width="0.0162%" height="15" fill="rgb(248,211,31)" fg:x="93710" fg:w="36"/><text x="42.3139%" y="799.50"></text></g><g><title>std::_Rb_tree_insert_and_rebalance (24 samples, 0.01%)</title><rect x="42.0810%" y="885" width="0.0108%" height="15" fill="rgb(242,146,47)" fg:x="93748" fg:w="24"/><text x="42.3310%" y="895.50"></text></g><g><title>[clang] (6,231 samples, 2.80%)</title><rect x="39.3173%" y="901" width="2.7969%" height="15" fill="rgb(206,70,20)" fg:x="87591" fg:w="6231"/><text x="39.5673%" y="911.50">[c..</text></g><g><title>[unknown] (56 samples, 0.03%)</title><rect x="42.1160%" y="901" width="0.0251%" height="15" fill="rgb(215,10,51)" fg:x="93826" fg:w="56"/><text x="42.3660%" y="911.50"></text></g><g><title>bprm_execve (43 samples, 0.02%)</title><rect x="42.1506%" y="789" width="0.0193%" height="15" fill="rgb(243,178,53)" fg:x="93903" fg:w="43"/><text x="42.4006%" y="799.50"></text></g><g><title>do_execveat_common (51 samples, 0.02%)</title><rect x="42.1497%" y="805" width="0.0229%" height="15" fill="rgb(233,221,20)" fg:x="93901" fg:w="51"/><text x="42.3997%" y="815.50"></text></g><g><title>__spawni_child (71 samples, 0.03%)</title><rect x="42.1411%" y="885" width="0.0319%" height="15" fill="rgb(218,95,35)" fg:x="93882" fg:w="71"/><text x="42.3911%" y="895.50"></text></g><g><title>__GI_execve (52 samples, 0.02%)</title><rect x="42.1497%" y="869" width="0.0233%" height="15" fill="rgb(229,13,5)" fg:x="93901" fg:w="52"/><text x="42.3997%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.02%)</title><rect x="42.1497%" y="853" width="0.0233%" height="15" fill="rgb(252,164,30)" fg:x="93901" fg:w="52"/><text x="42.3997%" y="863.50"></text></g><g><title>do_syscall_64 (52 samples, 0.02%)</title><rect x="42.1497%" y="837" width="0.0233%" height="15" fill="rgb(232,68,36)" fg:x="93901" fg:w="52"/><text x="42.3997%" y="847.50"></text></g><g><title>__x64_sys_execve (52 samples, 0.02%)</title><rect x="42.1497%" y="821" width="0.0233%" height="15" fill="rgb(219,59,54)" fg:x="93901" fg:w="52"/><text x="42.3997%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.04%)</title><rect x="42.1730%" y="885" width="0.0368%" height="15" fill="rgb(250,92,33)" fg:x="93953" fg:w="82"/><text x="42.4230%" y="895.50"></text></g><g><title>do_syscall_64 (82 samples, 0.04%)</title><rect x="42.1730%" y="869" width="0.0368%" height="15" fill="rgb(229,162,54)" fg:x="93953" fg:w="82"/><text x="42.4230%" y="879.50"></text></g><g><title>__do_sys_clone (82 samples, 0.04%)</title><rect x="42.1730%" y="853" width="0.0368%" height="15" fill="rgb(244,114,52)" fg:x="93953" fg:w="82"/><text x="42.4230%" y="863.50"></text></g><g><title>kernel_clone (82 samples, 0.04%)</title><rect x="42.1730%" y="837" width="0.0368%" height="15" fill="rgb(212,211,43)" fg:x="93953" fg:w="82"/><text x="42.4230%" y="847.50"></text></g><g><title>wait_for_completion_killable (64 samples, 0.03%)</title><rect x="42.1811%" y="821" width="0.0287%" height="15" fill="rgb(226,147,8)" fg:x="93971" fg:w="64"/><text x="42.4311%" y="831.50"></text></g><g><title>__wait_for_common (64 samples, 0.03%)</title><rect x="42.1811%" y="805" width="0.0287%" height="15" fill="rgb(226,23,13)" fg:x="93971" fg:w="64"/><text x="42.4311%" y="815.50"></text></g><g><title>schedule_timeout (62 samples, 0.03%)</title><rect x="42.1820%" y="789" width="0.0278%" height="15" fill="rgb(240,63,4)" fg:x="93973" fg:w="62"/><text x="42.4320%" y="799.50"></text></g><g><title>schedule (62 samples, 0.03%)</title><rect x="42.1820%" y="773" width="0.0278%" height="15" fill="rgb(221,1,32)" fg:x="93973" fg:w="62"/><text x="42.4320%" y="783.50"></text></g><g><title>__schedule (62 samples, 0.03%)</title><rect x="42.1820%" y="757" width="0.0278%" height="15" fill="rgb(242,117,10)" fg:x="93973" fg:w="62"/><text x="42.4320%" y="767.50"></text></g><g><title>finish_task_switch (62 samples, 0.03%)</title><rect x="42.1820%" y="741" width="0.0278%" height="15" fill="rgb(249,172,44)" fg:x="93973" fg:w="62"/><text x="42.4320%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.03%)</title><rect x="42.1824%" y="725" width="0.0274%" height="15" fill="rgb(244,46,45)" fg:x="93974" fg:w="61"/><text x="42.4324%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.03%)</title><rect x="42.1824%" y="709" width="0.0274%" height="15" fill="rgb(206,43,17)" fg:x="93974" fg:w="61"/><text x="42.4324%" y="719.50"></text></g><g><title>native_write_msr (61 samples, 0.03%)</title><rect x="42.1824%" y="693" width="0.0274%" height="15" fill="rgb(239,218,39)" fg:x="93974" fg:w="61"/><text x="42.4324%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (111 samples, 0.05%)</title><rect x="42.2129%" y="837" width="0.0498%" height="15" fill="rgb(208,169,54)" fg:x="94042" fg:w="111"/><text x="42.4629%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (109 samples, 0.05%)</title><rect x="42.2138%" y="821" width="0.0489%" height="15" fill="rgb(247,25,42)" fg:x="94044" fg:w="109"/><text x="42.4638%" y="831.50"></text></g><g><title>native_write_msr (108 samples, 0.05%)</title><rect x="42.2143%" y="805" width="0.0485%" height="15" fill="rgb(226,23,31)" fg:x="94045" fg:w="108"/><text x="42.4643%" y="815.50"></text></g><g><title>schedule_tail (119 samples, 0.05%)</title><rect x="42.2103%" y="869" width="0.0534%" height="15" fill="rgb(247,16,28)" fg:x="94036" fg:w="119"/><text x="42.4603%" y="879.50"></text></g><g><title>finish_task_switch (118 samples, 0.05%)</title><rect x="42.2107%" y="853" width="0.0530%" height="15" fill="rgb(231,147,38)" fg:x="94037" fg:w="118"/><text x="42.4607%" y="863.50"></text></g><g><title>__GI___clone (274 samples, 0.12%)</title><rect x="42.1411%" y="901" width="0.1230%" height="15" fill="rgb(253,81,48)" fg:x="93882" fg:w="274"/><text x="42.3911%" y="911.50"></text></g><g><title>ret_from_fork (121 samples, 0.05%)</title><rect x="42.2098%" y="885" width="0.0543%" height="15" fill="rgb(249,222,43)" fg:x="94035" fg:w="121"/><text x="42.4598%" y="895.50"></text></g><g><title>[libstdc++.so.6.0.28] (33 samples, 0.01%)</title><rect x="42.2650%" y="837" width="0.0148%" height="15" fill="rgb(221,3,27)" fg:x="94158" fg:w="33"/><text x="42.5150%" y="847.50"></text></g><g><title>_dl_start_user (41 samples, 0.02%)</title><rect x="42.2650%" y="901" width="0.0184%" height="15" fill="rgb(228,180,5)" fg:x="94158" fg:w="41"/><text x="42.5150%" y="911.50"></text></g><g><title>_dl_init (41 samples, 0.02%)</title><rect x="42.2650%" y="885" width="0.0184%" height="15" fill="rgb(227,131,42)" fg:x="94158" fg:w="41"/><text x="42.5150%" y="895.50"></text></g><g><title>call_init (41 samples, 0.02%)</title><rect x="42.2650%" y="869" width="0.0184%" height="15" fill="rgb(212,3,39)" fg:x="94158" fg:w="41"/><text x="42.5150%" y="879.50"></text></g><g><title>call_init (41 samples, 0.02%)</title><rect x="42.2650%" y="853" width="0.0184%" height="15" fill="rgb(226,45,5)" fg:x="94158" fg:w="41"/><text x="42.5150%" y="863.50"></text></g><g><title>__split_vma (25 samples, 0.01%)</title><rect x="42.3077%" y="581" width="0.0112%" height="15" fill="rgb(215,167,45)" fg:x="94253" fg:w="25"/><text x="42.5577%" y="591.50"></text></g><g><title>__do_munmap (33 samples, 0.01%)</title><rect x="42.3072%" y="597" width="0.0148%" height="15" fill="rgb(250,218,53)" fg:x="94252" fg:w="33"/><text x="42.5572%" y="607.50"></text></g><g><title>do_mmap (74 samples, 0.03%)</title><rect x="42.3041%" y="629" width="0.0332%" height="15" fill="rgb(207,140,0)" fg:x="94245" fg:w="74"/><text x="42.5541%" y="639.50"></text></g><g><title>mmap_region (71 samples, 0.03%)</title><rect x="42.3054%" y="613" width="0.0319%" height="15" fill="rgb(238,133,51)" fg:x="94248" fg:w="71"/><text x="42.5554%" y="623.50"></text></g><g><title>ksys_mmap_pgoff (76 samples, 0.03%)</title><rect x="42.3041%" y="661" width="0.0341%" height="15" fill="rgb(218,203,53)" fg:x="94245" fg:w="76"/><text x="42.5541%" y="671.50"></text></g><g><title>vm_mmap_pgoff (76 samples, 0.03%)</title><rect x="42.3041%" y="645" width="0.0341%" height="15" fill="rgb(226,184,25)" fg:x="94245" fg:w="76"/><text x="42.5541%" y="655.50"></text></g><g><title>_dl_map_segments (91 samples, 0.04%)</title><rect x="42.2996%" y="741" width="0.0408%" height="15" fill="rgb(231,121,21)" fg:x="94235" fg:w="91"/><text x="42.5496%" y="751.50"></text></g><g><title>__mmap64 (82 samples, 0.04%)</title><rect x="42.3036%" y="725" width="0.0368%" height="15" fill="rgb(251,14,34)" fg:x="94244" fg:w="82"/><text x="42.5536%" y="735.50"></text></g><g><title>__mmap64 (82 samples, 0.04%)</title><rect x="42.3036%" y="709" width="0.0368%" height="15" fill="rgb(249,193,11)" fg:x="94244" fg:w="82"/><text x="42.5536%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.04%)</title><rect x="42.3041%" y="693" width="0.0364%" height="15" fill="rgb(220,172,37)" fg:x="94245" fg:w="81"/><text x="42.5541%" y="703.50"></text></g><g><title>do_syscall_64 (81 samples, 0.04%)</title><rect x="42.3041%" y="677" width="0.0364%" height="15" fill="rgb(231,229,43)" fg:x="94245" fg:w="81"/><text x="42.5541%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (127 samples, 0.06%)</title><rect x="42.2978%" y="757" width="0.0570%" height="15" fill="rgb(250,161,5)" fg:x="94231" fg:w="127"/><text x="42.5478%" y="767.50"></text></g><g><title>link_path_walk.part.0 (23 samples, 0.01%)</title><rect x="42.3763%" y="613" width="0.0103%" height="15" fill="rgb(218,225,18)" fg:x="94406" fg:w="23"/><text x="42.6263%" y="623.50"></text></g><g><title>do_filp_open (64 samples, 0.03%)</title><rect x="42.3624%" y="645" width="0.0287%" height="15" fill="rgb(245,45,42)" fg:x="94375" fg:w="64"/><text x="42.6124%" y="655.50"></text></g><g><title>path_openat (63 samples, 0.03%)</title><rect x="42.3629%" y="629" width="0.0283%" height="15" fill="rgb(211,115,1)" fg:x="94376" fg:w="63"/><text x="42.6129%" y="639.50"></text></g><g><title>do_syscall_64 (68 samples, 0.03%)</title><rect x="42.3615%" y="693" width="0.0305%" height="15" fill="rgb(248,133,52)" fg:x="94373" fg:w="68"/><text x="42.6115%" y="703.50"></text></g><g><title>__x64_sys_openat (68 samples, 0.03%)</title><rect x="42.3615%" y="677" width="0.0305%" height="15" fill="rgb(238,100,21)" fg:x="94373" fg:w="68"/><text x="42.6115%" y="687.50"></text></g><g><title>do_sys_openat2 (68 samples, 0.03%)</title><rect x="42.3615%" y="661" width="0.0305%" height="15" fill="rgb(247,144,11)" fg:x="94373" fg:w="68"/><text x="42.6115%" y="671.50"></text></g><g><title>__GI___open64_nocancel (71 samples, 0.03%)</title><rect x="42.3611%" y="725" width="0.0319%" height="15" fill="rgb(206,164,16)" fg:x="94372" fg:w="71"/><text x="42.6111%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.03%)</title><rect x="42.3615%" y="709" width="0.0314%" height="15" fill="rgb(222,34,3)" fg:x="94373" fg:w="70"/><text x="42.6115%" y="719.50"></text></g><g><title>open_path (89 samples, 0.04%)</title><rect x="42.3557%" y="757" width="0.0399%" height="15" fill="rgb(248,82,4)" fg:x="94360" fg:w="89"/><text x="42.6057%" y="767.50"></text></g><g><title>open_verify (78 samples, 0.04%)</title><rect x="42.3606%" y="741" width="0.0350%" height="15" fill="rgb(228,81,46)" fg:x="94371" fg:w="78"/><text x="42.6106%" y="751.50"></text></g><g><title>_dl_catch_exception (223 samples, 0.10%)</title><rect x="42.2964%" y="805" width="0.1001%" height="15" fill="rgb(227,67,47)" fg:x="94228" fg:w="223"/><text x="42.5464%" y="815.50"></text></g><g><title>openaux (223 samples, 0.10%)</title><rect x="42.2964%" y="789" width="0.1001%" height="15" fill="rgb(215,93,53)" fg:x="94228" fg:w="223"/><text x="42.5464%" y="799.50"></text></g><g><title>_dl_map_object (223 samples, 0.10%)</title><rect x="42.2964%" y="773" width="0.1001%" height="15" fill="rgb(248,194,39)" fg:x="94228" fg:w="223"/><text x="42.5464%" y="783.50"></text></g><g><title>_dl_map_object_deps (226 samples, 0.10%)</title><rect x="42.2964%" y="821" width="0.1014%" height="15" fill="rgb(215,5,19)" fg:x="94228" fg:w="226"/><text x="42.5464%" y="831.50"></text></g><g><title>mprotect_fixup (28 samples, 0.01%)</title><rect x="42.4046%" y="709" width="0.0126%" height="15" fill="rgb(226,215,51)" fg:x="94469" fg:w="28"/><text x="42.6546%" y="719.50"></text></g><g><title>_dl_protect_relro (31 samples, 0.01%)</title><rect x="42.4037%" y="805" width="0.0139%" height="15" fill="rgb(225,56,26)" fg:x="94467" fg:w="31"/><text x="42.6537%" y="815.50"></text></g><g><title>__mprotect (31 samples, 0.01%)</title><rect x="42.4037%" y="789" width="0.0139%" height="15" fill="rgb(222,75,29)" fg:x="94467" fg:w="31"/><text x="42.6537%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="42.4037%" y="773" width="0.0139%" height="15" fill="rgb(236,139,6)" fg:x="94467" fg:w="31"/><text x="42.6537%" y="783.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="42.4037%" y="757" width="0.0139%" height="15" fill="rgb(223,137,36)" fg:x="94467" fg:w="31"/><text x="42.6537%" y="767.50"></text></g><g><title>__x64_sys_mprotect (31 samples, 0.01%)</title><rect x="42.4037%" y="741" width="0.0139%" height="15" fill="rgb(226,99,2)" fg:x="94467" fg:w="31"/><text x="42.6537%" y="751.50"></text></g><g><title>do_mprotect_pkey (31 samples, 0.01%)</title><rect x="42.4037%" y="725" width="0.0139%" height="15" fill="rgb(206,133,23)" fg:x="94467" fg:w="31"/><text x="42.6537%" y="735.50"></text></g><g><title>dl_new_hash (85 samples, 0.04%)</title><rect x="42.4850%" y="757" width="0.0382%" height="15" fill="rgb(243,173,15)" fg:x="94648" fg:w="85"/><text x="42.7350%" y="767.50"></text></g><g><title>check_match (35 samples, 0.02%)</title><rect x="42.6102%" y="741" width="0.0157%" height="15" fill="rgb(228,69,28)" fg:x="94927" fg:w="35"/><text x="42.8602%" y="751.50"></text></g><g><title>_dl_lookup_symbol_x (341 samples, 0.15%)</title><rect x="42.4796%" y="773" width="0.1531%" height="15" fill="rgb(212,51,22)" fg:x="94636" fg:w="341"/><text x="42.7296%" y="783.50"></text></g><g><title>do_lookup_x (244 samples, 0.11%)</title><rect x="42.5231%" y="757" width="0.1095%" height="15" fill="rgb(227,113,0)" fg:x="94733" fg:w="244"/><text x="42.7731%" y="767.50"></text></g><g><title>__alloc_pages_nodemask (64 samples, 0.03%)</title><rect x="42.6555%" y="693" width="0.0287%" height="15" fill="rgb(252,84,27)" fg:x="95028" fg:w="64"/><text x="42.9055%" y="703.50"></text></g><g><title>get_page_from_freelist (59 samples, 0.03%)</title><rect x="42.6578%" y="677" width="0.0265%" height="15" fill="rgb(223,145,39)" fg:x="95033" fg:w="59"/><text x="42.9078%" y="687.50"></text></g><g><title>prep_new_page (35 samples, 0.02%)</title><rect x="42.6686%" y="661" width="0.0157%" height="15" fill="rgb(239,219,30)" fg:x="95057" fg:w="35"/><text x="42.9186%" y="671.50"></text></g><g><title>kernel_init_free_pages (34 samples, 0.02%)</title><rect x="42.6690%" y="645" width="0.0153%" height="15" fill="rgb(224,196,39)" fg:x="95058" fg:w="34"/><text x="42.9190%" y="655.50"></text></g><g><title>clear_page_erms (34 samples, 0.02%)</title><rect x="42.6690%" y="629" width="0.0153%" height="15" fill="rgb(205,35,43)" fg:x="95058" fg:w="34"/><text x="42.9190%" y="639.50"></text></g><g><title>alloc_pages_vma (67 samples, 0.03%)</title><rect x="42.6546%" y="709" width="0.0301%" height="15" fill="rgb(228,201,21)" fg:x="95026" fg:w="67"/><text x="42.9046%" y="719.50"></text></g><g><title>copy_page (69 samples, 0.03%)</title><rect x="42.6861%" y="709" width="0.0310%" height="15" fill="rgb(237,118,16)" fg:x="95096" fg:w="69"/><text x="42.9361%" y="719.50"></text></g><g><title>__pagevec_lru_add_fn (24 samples, 0.01%)</title><rect x="42.7269%" y="645" width="0.0108%" height="15" fill="rgb(241,17,19)" fg:x="95187" fg:w="24"/><text x="42.9769%" y="655.50"></text></g><g><title>lru_cache_add (30 samples, 0.01%)</title><rect x="42.7260%" y="677" width="0.0135%" height="15" fill="rgb(214,10,25)" fg:x="95185" fg:w="30"/><text x="42.9760%" y="687.50"></text></g><g><title>pagevec_lru_move_fn (29 samples, 0.01%)</title><rect x="42.7265%" y="661" width="0.0130%" height="15" fill="rgb(238,37,29)" fg:x="95186" fg:w="29"/><text x="42.9765%" y="671.50"></text></g><g><title>finish_fault (39 samples, 0.02%)</title><rect x="42.7247%" y="709" width="0.0175%" height="15" fill="rgb(253,83,25)" fg:x="95182" fg:w="39"/><text x="42.9747%" y="719.50"></text></g><g><title>alloc_set_pte (38 samples, 0.02%)</title><rect x="42.7251%" y="693" width="0.0171%" height="15" fill="rgb(234,192,12)" fg:x="95183" fg:w="38"/><text x="42.9751%" y="703.50"></text></g><g><title>handle_mm_fault (253 samples, 0.11%)</title><rect x="42.6394%" y="725" width="0.1136%" height="15" fill="rgb(241,216,45)" fg:x="94992" fg:w="253"/><text x="42.8894%" y="735.50"></text></g><g><title>exc_page_fault (267 samples, 0.12%)</title><rect x="42.6340%" y="757" width="0.1198%" height="15" fill="rgb(242,22,33)" fg:x="94980" fg:w="267"/><text x="42.8840%" y="767.50"></text></g><g><title>do_user_addr_fault (266 samples, 0.12%)</title><rect x="42.6344%" y="741" width="0.1194%" height="15" fill="rgb(231,105,49)" fg:x="94981" fg:w="266"/><text x="42.8844%" y="751.50"></text></g><g><title>asm_exc_page_fault (278 samples, 0.12%)</title><rect x="42.6331%" y="773" width="0.1248%" height="15" fill="rgb(218,204,15)" fg:x="94978" fg:w="278"/><text x="42.8831%" y="783.50"></text></g><g><title>elf_machine_rela (735 samples, 0.33%)</title><rect x="42.4396%" y="789" width="0.3299%" height="15" fill="rgb(235,138,41)" fg:x="94547" fg:w="735"/><text x="42.6896%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (803 samples, 0.36%)</title><rect x="42.4176%" y="805" width="0.3604%" height="15" fill="rgb(246,0,9)" fg:x="94498" fg:w="803"/><text x="42.6676%" y="815.50"></text></g><g><title>_dl_relocate_object (841 samples, 0.38%)</title><rect x="42.4037%" y="821" width="0.3775%" height="15" fill="rgb(210,74,4)" fg:x="94467" fg:w="841"/><text x="42.6537%" y="831.50"></text></g><g><title>[ld-2.31.so] (1,095 samples, 0.49%)</title><rect x="42.2915%" y="837" width="0.4915%" height="15" fill="rgb(250,60,41)" fg:x="94217" fg:w="1095"/><text x="42.5415%" y="847.50"></text></g><g><title>_dl_start_final (1,102 samples, 0.49%)</title><rect x="42.2906%" y="869" width="0.4947%" height="15" fill="rgb(220,115,12)" fg:x="94215" fg:w="1102"/><text x="42.5406%" y="879.50"></text></g><g><title>_dl_sysdep_start (1,102 samples, 0.49%)</title><rect x="42.2906%" y="853" width="0.4947%" height="15" fill="rgb(237,100,13)" fg:x="94215" fg:w="1102"/><text x="42.5406%" y="863.50"></text></g><g><title>_dl_start (1,106 samples, 0.50%)</title><rect x="42.2906%" y="885" width="0.4965%" height="15" fill="rgb(213,55,26)" fg:x="94215" fg:w="1106"/><text x="42.5406%" y="895.50"></text></g><g><title>_start (1,113 samples, 0.50%)</title><rect x="42.2906%" y="901" width="0.4996%" height="15" fill="rgb(216,17,4)" fg:x="94215" fg:w="1113"/><text x="42.5406%" y="911.50"></text></g><g><title>asm_exc_page_fault (264 samples, 0.12%)</title><rect x="42.7902%" y="901" width="0.1185%" height="15" fill="rgb(220,153,47)" fg:x="95328" fg:w="264"/><text x="43.0402%" y="911.50"></text></g><g><title>__x64_sys_execve (30 samples, 0.01%)</title><rect x="42.9105%" y="869" width="0.0135%" height="15" fill="rgb(215,131,9)" fg:x="95596" fg:w="30"/><text x="43.1605%" y="879.50"></text></g><g><title>do_execveat_common (30 samples, 0.01%)</title><rect x="42.9105%" y="853" width="0.0135%" height="15" fill="rgb(233,46,42)" fg:x="95596" fg:w="30"/><text x="43.1605%" y="863.50"></text></g><g><title>bprm_execve (30 samples, 0.01%)</title><rect x="42.9105%" y="837" width="0.0135%" height="15" fill="rgb(226,86,7)" fg:x="95596" fg:w="30"/><text x="43.1605%" y="847.50"></text></g><g><title>load_elf_binary (30 samples, 0.01%)</title><rect x="42.9105%" y="821" width="0.0135%" height="15" fill="rgb(239,226,21)" fg:x="95596" fg:w="30"/><text x="43.1605%" y="831.50"></text></g><g><title>free_pcppages_bulk (29 samples, 0.01%)</title><rect x="42.9626%" y="741" width="0.0130%" height="15" fill="rgb(244,137,22)" fg:x="95712" fg:w="29"/><text x="43.2126%" y="751.50"></text></g><g><title>free_unref_page_list (41 samples, 0.02%)</title><rect x="42.9594%" y="757" width="0.0184%" height="15" fill="rgb(211,139,35)" fg:x="95705" fg:w="41"/><text x="43.2094%" y="767.50"></text></g><g><title>tlb_finish_mmu (86 samples, 0.04%)</title><rect x="42.9397%" y="789" width="0.0386%" height="15" fill="rgb(214,62,50)" fg:x="95661" fg:w="86"/><text x="43.1897%" y="799.50"></text></g><g><title>release_pages (71 samples, 0.03%)</title><rect x="42.9464%" y="773" width="0.0319%" height="15" fill="rgb(212,113,44)" fg:x="95676" fg:w="71"/><text x="43.1964%" y="783.50"></text></g><g><title>mark_page_accessed (40 samples, 0.02%)</title><rect x="43.0878%" y="757" width="0.0180%" height="15" fill="rgb(226,150,43)" fg:x="95991" fg:w="40"/><text x="43.3378%" y="767.50"></text></g><g><title>__mod_lruvec_state (23 samples, 0.01%)</title><rect x="43.1421%" y="741" width="0.0103%" height="15" fill="rgb(250,71,37)" fg:x="96112" fg:w="23"/><text x="43.3921%" y="751.50"></text></g><g><title>__mod_memcg_lruvec_state (23 samples, 0.01%)</title><rect x="43.1524%" y="741" width="0.0103%" height="15" fill="rgb(219,76,19)" fg:x="96135" fg:w="23"/><text x="43.4024%" y="751.50"></text></g><g><title>page_remove_rmap (139 samples, 0.06%)</title><rect x="43.1058%" y="757" width="0.0624%" height="15" fill="rgb(250,39,11)" fg:x="96031" fg:w="139"/><text x="43.3558%" y="767.50"></text></g><g><title>free_pages_and_swap_cache (37 samples, 0.02%)</title><rect x="43.1681%" y="741" width="0.0166%" height="15" fill="rgb(230,64,31)" fg:x="96170" fg:w="37"/><text x="43.4181%" y="751.50"></text></g><g><title>tlb_flush_mmu (125 samples, 0.06%)</title><rect x="43.1681%" y="757" width="0.0561%" height="15" fill="rgb(208,222,23)" fg:x="96170" fg:w="125"/><text x="43.4181%" y="767.50"></text></g><g><title>release_pages (88 samples, 0.04%)</title><rect x="43.1848%" y="741" width="0.0395%" height="15" fill="rgb(227,125,18)" fg:x="96207" fg:w="88"/><text x="43.4348%" y="751.50"></text></g><g><title>mmput (697 samples, 0.31%)</title><rect x="42.9240%" y="821" width="0.3129%" height="15" fill="rgb(234,210,9)" fg:x="95626" fg:w="697"/><text x="43.1740%" y="831.50"></text></g><g><title>exit_mmap (697 samples, 0.31%)</title><rect x="42.9240%" y="805" width="0.3129%" height="15" fill="rgb(217,127,24)" fg:x="95626" fg:w="697"/><text x="43.1740%" y="815.50"></text></g><g><title>unmap_vmas (576 samples, 0.26%)</title><rect x="42.9783%" y="789" width="0.2586%" height="15" fill="rgb(239,141,48)" fg:x="95747" fg:w="576"/><text x="43.2283%" y="799.50"></text></g><g><title>unmap_page_range (576 samples, 0.26%)</title><rect x="42.9783%" y="773" width="0.2586%" height="15" fill="rgb(227,109,8)" fg:x="95747" fg:w="576"/><text x="43.2283%" y="783.50"></text></g><g><title>__x64_sys_exit_group (703 samples, 0.32%)</title><rect x="42.9240%" y="869" width="0.3156%" height="15" fill="rgb(235,184,23)" fg:x="95626" fg:w="703"/><text x="43.1740%" y="879.50"></text></g><g><title>do_group_exit (703 samples, 0.32%)</title><rect x="42.9240%" y="853" width="0.3156%" height="15" fill="rgb(227,226,48)" fg:x="95626" fg:w="703"/><text x="43.1740%" y="863.50"></text></g><g><title>do_exit (703 samples, 0.32%)</title><rect x="42.9240%" y="837" width="0.3156%" height="15" fill="rgb(206,150,11)" fg:x="95626" fg:w="703"/><text x="43.1740%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (740 samples, 0.33%)</title><rect x="42.9100%" y="901" width="0.3322%" height="15" fill="rgb(254,2,33)" fg:x="95595" fg:w="740"/><text x="43.1600%" y="911.50"></text></g><g><title>do_syscall_64 (739 samples, 0.33%)</title><rect x="42.9105%" y="885" width="0.3317%" height="15" fill="rgb(243,160,20)" fg:x="95596" fg:w="739"/><text x="43.1605%" y="895.50"></text></g><g><title>clang (8,814 samples, 3.96%)</title><rect x="39.2863%" y="917" width="3.9564%" height="15" fill="rgb(218,208,30)" fg:x="87522" fg:w="8814"/><text x="39.5363%" y="927.50">clang</text></g><g><title>[perf-945576.map] (29 samples, 0.01%)</title><rect x="43.2427%" y="901" width="0.0130%" height="15" fill="rgb(224,120,49)" fg:x="96336" fg:w="29"/><text x="43.4927%" y="911.50"></text></g><g><title>cli-update-thre (30 samples, 0.01%)</title><rect x="43.2427%" y="917" width="0.0135%" height="15" fill="rgb(246,12,2)" fg:x="96336" fg:w="30"/><text x="43.4927%" y="927.50"></text></g><g><title>[perf-945576.map] (103 samples, 0.05%)</title><rect x="43.2570%" y="901" width="0.0462%" height="15" fill="rgb(236,117,3)" fg:x="96368" fg:w="103"/><text x="43.5070%" y="911.50"></text></g><g><title>__GI___clone (34 samples, 0.02%)</title><rect x="43.3037%" y="901" width="0.0153%" height="15" fill="rgb(216,128,52)" fg:x="96472" fg:w="34"/><text x="43.5537%" y="911.50"></text></g><g><title>find-action-loo (141 samples, 0.06%)</title><rect x="43.2561%" y="917" width="0.0633%" height="15" fill="rgb(246,145,19)" fg:x="96366" fg:w="141"/><text x="43.5061%" y="927.50"></text></g><g><title>[perf-945576.map] (32 samples, 0.01%)</title><rect x="43.3221%" y="901" width="0.0144%" height="15" fill="rgb(222,11,46)" fg:x="96513" fg:w="32"/><text x="43.5721%" y="911.50"></text></g><g><title>globbing_pool-0 (67 samples, 0.03%)</title><rect x="43.3194%" y="917" width="0.0301%" height="15" fill="rgb(245,82,36)" fg:x="96507" fg:w="67"/><text x="43.5694%" y="927.50"></text></g><g><title>__GI___clone (27 samples, 0.01%)</title><rect x="43.3374%" y="901" width="0.0121%" height="15" fill="rgb(250,73,51)" fg:x="96547" fg:w="27"/><text x="43.5874%" y="911.50"></text></g><g><title>[libunix_jni.so] (27 samples, 0.01%)</title><rect x="43.3508%" y="901" width="0.0121%" height="15" fill="rgb(221,189,23)" fg:x="96577" fg:w="27"/><text x="43.6008%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.03%)</title><rect x="43.4155%" y="629" width="0.0251%" height="15" fill="rgb(210,33,7)" fg:x="96721" fg:w="56"/><text x="43.6655%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.03%)</title><rect x="43.4155%" y="613" width="0.0251%" height="15" fill="rgb(210,107,22)" fg:x="96721" fg:w="56"/><text x="43.6655%" y="623.50"></text></g><g><title>native_write_msr (56 samples, 0.03%)</title><rect x="43.4155%" y="597" width="0.0251%" height="15" fill="rgb(222,116,37)" fg:x="96721" fg:w="56"/><text x="43.6655%" y="607.50"></text></g><g><title>__pthread_cond_wait (59 samples, 0.03%)</title><rect x="43.4146%" y="821" width="0.0265%" height="15" fill="rgb(254,17,48)" fg:x="96719" fg:w="59"/><text x="43.6646%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (59 samples, 0.03%)</title><rect x="43.4146%" y="805" width="0.0265%" height="15" fill="rgb(224,36,32)" fg:x="96719" fg:w="59"/><text x="43.6646%" y="815.50"></text></g><g><title>futex_wait_cancelable (58 samples, 0.03%)</title><rect x="43.4150%" y="789" width="0.0260%" height="15" fill="rgb(232,90,46)" fg:x="96720" fg:w="58"/><text x="43.6650%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.03%)</title><rect x="43.4150%" y="773" width="0.0260%" height="15" fill="rgb(241,66,40)" fg:x="96720" fg:w="58"/><text x="43.6650%" y="783.50"></text></g><g><title>do_syscall_64 (58 samples, 0.03%)</title><rect x="43.4150%" y="757" width="0.0260%" height="15" fill="rgb(249,184,29)" fg:x="96720" fg:w="58"/><text x="43.6650%" y="767.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.03%)</title><rect x="43.4150%" y="741" width="0.0260%" height="15" fill="rgb(231,181,1)" fg:x="96720" fg:w="58"/><text x="43.6650%" y="751.50"></text></g><g><title>do_futex (57 samples, 0.03%)</title><rect x="43.4155%" y="725" width="0.0256%" height="15" fill="rgb(224,94,2)" fg:x="96721" fg:w="57"/><text x="43.6655%" y="735.50"></text></g><g><title>futex_wait (57 samples, 0.03%)</title><rect x="43.4155%" y="709" width="0.0256%" height="15" fill="rgb(229,170,15)" fg:x="96721" fg:w="57"/><text x="43.6655%" y="719.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.03%)</title><rect x="43.4155%" y="693" width="0.0256%" height="15" fill="rgb(240,127,35)" fg:x="96721" fg:w="57"/><text x="43.6655%" y="703.50"></text></g><g><title>schedule (57 samples, 0.03%)</title><rect x="43.4155%" y="677" width="0.0256%" height="15" fill="rgb(248,196,34)" fg:x="96721" fg:w="57"/><text x="43.6655%" y="687.50"></text></g><g><title>__schedule (57 samples, 0.03%)</title><rect x="43.4155%" y="661" width="0.0256%" height="15" fill="rgb(236,137,7)" fg:x="96721" fg:w="57"/><text x="43.6655%" y="671.50"></text></g><g><title>finish_task_switch (57 samples, 0.03%)</title><rect x="43.4155%" y="645" width="0.0256%" height="15" fill="rgb(235,127,16)" fg:x="96721" fg:w="57"/><text x="43.6655%" y="655.50"></text></g><g><title>Monitor::lock (60 samples, 0.03%)</title><rect x="43.4146%" y="869" width="0.0269%" height="15" fill="rgb(250,192,54)" fg:x="96719" fg:w="60"/><text x="43.6646%" y="879.50"></text></g><g><title>Monitor::ILock (60 samples, 0.03%)</title><rect x="43.4146%" y="853" width="0.0269%" height="15" fill="rgb(218,98,20)" fg:x="96719" fg:w="60"/><text x="43.6646%" y="863.50"></text></g><g><title>os::PlatformEvent::park (60 samples, 0.03%)</title><rect x="43.4146%" y="837" width="0.0269%" height="15" fill="rgb(230,176,47)" fg:x="96719" fg:w="60"/><text x="43.6646%" y="847.50"></text></g><g><title>Monitor::wait (36 samples, 0.02%)</title><rect x="43.4451%" y="853" width="0.0162%" height="15" fill="rgb(244,2,33)" fg:x="96787" fg:w="36"/><text x="43.6951%" y="863.50"></text></g><g><title>Monitor::IWait (36 samples, 0.02%)</title><rect x="43.4451%" y="837" width="0.0162%" height="15" fill="rgb(231,100,17)" fg:x="96787" fg:w="36"/><text x="43.6951%" y="847.50"></text></g><g><title>os::PlatformEvent::park (36 samples, 0.02%)</title><rect x="43.4451%" y="821" width="0.0162%" height="15" fill="rgb(245,23,12)" fg:x="96787" fg:w="36"/><text x="43.6951%" y="831.50"></text></g><g><title>__pthread_cond_wait (35 samples, 0.02%)</title><rect x="43.4456%" y="805" width="0.0157%" height="15" fill="rgb(249,55,22)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (35 samples, 0.02%)</title><rect x="43.4456%" y="789" width="0.0157%" height="15" fill="rgb(207,134,9)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="799.50"></text></g><g><title>futex_wait_cancelable (35 samples, 0.02%)</title><rect x="43.4456%" y="773" width="0.0157%" height="15" fill="rgb(218,134,0)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="43.4456%" y="757" width="0.0157%" height="15" fill="rgb(213,212,33)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="767.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="43.4456%" y="741" width="0.0157%" height="15" fill="rgb(252,106,18)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="751.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.02%)</title><rect x="43.4456%" y="725" width="0.0157%" height="15" fill="rgb(208,126,42)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="735.50"></text></g><g><title>do_futex (35 samples, 0.02%)</title><rect x="43.4456%" y="709" width="0.0157%" height="15" fill="rgb(246,175,29)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="719.50"></text></g><g><title>futex_wait (35 samples, 0.02%)</title><rect x="43.4456%" y="693" width="0.0157%" height="15" fill="rgb(215,13,50)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="703.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.02%)</title><rect x="43.4456%" y="677" width="0.0157%" height="15" fill="rgb(216,172,15)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="687.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="43.4456%" y="661" width="0.0157%" height="15" fill="rgb(212,103,13)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="671.50"></text></g><g><title>__schedule (35 samples, 0.02%)</title><rect x="43.4456%" y="645" width="0.0157%" height="15" fill="rgb(231,171,36)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="655.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="43.4456%" y="629" width="0.0157%" height="15" fill="rgb(250,123,20)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.01%)</title><rect x="43.4464%" y="613" width="0.0148%" height="15" fill="rgb(212,53,50)" fg:x="96790" fg:w="33"/><text x="43.6964%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.01%)</title><rect x="43.4469%" y="597" width="0.0144%" height="15" fill="rgb(243,54,12)" fg:x="96791" fg:w="32"/><text x="43.6969%" y="607.50"></text></g><g><title>native_write_msr (32 samples, 0.01%)</title><rect x="43.4469%" y="581" width="0.0144%" height="15" fill="rgb(234,101,34)" fg:x="96791" fg:w="32"/><text x="43.6969%" y="591.50"></text></g><g><title>os::create_thread (41 samples, 0.02%)</title><rect x="43.4447%" y="869" width="0.0184%" height="15" fill="rgb(254,67,22)" fg:x="96786" fg:w="41"/><text x="43.6947%" y="879.50"></text></g><g><title>JVM_StartThread (116 samples, 0.05%)</title><rect x="43.4114%" y="885" width="0.0521%" height="15" fill="rgb(250,35,47)" fg:x="96712" fg:w="116"/><text x="43.6614%" y="895.50"></text></g><g><title>__pthread_cond_wait (23 samples, 0.01%)</title><rect x="43.4644%" y="789" width="0.0103%" height="15" fill="rgb(226,126,38)" fg:x="96830" fg:w="23"/><text x="43.7144%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.01%)</title><rect x="43.4644%" y="773" width="0.0103%" height="15" fill="rgb(216,138,53)" fg:x="96830" fg:w="23"/><text x="43.7144%" y="783.50"></text></g><g><title>futex_wait_cancelable (23 samples, 0.01%)</title><rect x="43.4644%" y="757" width="0.0103%" height="15" fill="rgb(246,199,43)" fg:x="96830" fg:w="23"/><text x="43.7144%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="43.4644%" y="741" width="0.0103%" height="15" fill="rgb(232,125,11)" fg:x="96830" fg:w="23"/><text x="43.7144%" y="751.50"></text></g><g><title>SafepointSynchronize::block (24 samples, 0.01%)</title><rect x="43.4644%" y="853" width="0.0108%" height="15" fill="rgb(218,219,45)" fg:x="96830" fg:w="24"/><text x="43.7144%" y="863.50"></text></g><g><title>Monitor::lock_without_safepoint_check (24 samples, 0.01%)</title><rect x="43.4644%" y="837" width="0.0108%" height="15" fill="rgb(216,102,54)" fg:x="96830" fg:w="24"/><text x="43.7144%" y="847.50"></text></g><g><title>Monitor::ILock (24 samples, 0.01%)</title><rect x="43.4644%" y="821" width="0.0108%" height="15" fill="rgb(250,228,7)" fg:x="96830" fg:w="24"/><text x="43.7144%" y="831.50"></text></g><g><title>os::PlatformEvent::park (24 samples, 0.01%)</title><rect x="43.4644%" y="805" width="0.0108%" height="15" fill="rgb(226,125,25)" fg:x="96830" fg:w="24"/><text x="43.7144%" y="815.50"></text></g><g><title>Unsafe_Park (44 samples, 0.02%)</title><rect x="43.4644%" y="885" width="0.0198%" height="15" fill="rgb(224,165,27)" fg:x="96830" fg:w="44"/><text x="43.7144%" y="895.50"></text></g><g><title>Parker::park (44 samples, 0.02%)</title><rect x="43.4644%" y="869" width="0.0198%" height="15" fill="rgb(233,86,3)" fg:x="96830" fg:w="44"/><text x="43.7144%" y="879.50"></text></g><g><title>[perf-945576.map] (278 samples, 0.12%)</title><rect x="43.3630%" y="901" width="0.1248%" height="15" fill="rgb(228,116,20)" fg:x="96604" fg:w="278"/><text x="43.6130%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.02%)</title><rect x="43.4931%" y="837" width="0.0242%" height="15" fill="rgb(209,192,17)" fg:x="96894" fg:w="54"/><text x="43.7431%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.02%)</title><rect x="43.4945%" y="821" width="0.0229%" height="15" fill="rgb(224,88,34)" fg:x="96897" fg:w="51"/><text x="43.7445%" y="831.50"></text></g><g><title>native_write_msr (50 samples, 0.02%)</title><rect x="43.4949%" y="805" width="0.0224%" height="15" fill="rgb(233,38,6)" fg:x="96898" fg:w="50"/><text x="43.7449%" y="815.50"></text></g><g><title>ret_from_fork (59 samples, 0.03%)</title><rect x="43.4927%" y="885" width="0.0265%" height="15" fill="rgb(212,59,30)" fg:x="96893" fg:w="59"/><text x="43.7427%" y="895.50"></text></g><g><title>schedule_tail (59 samples, 0.03%)</title><rect x="43.4927%" y="869" width="0.0265%" height="15" fill="rgb(213,80,3)" fg:x="96893" fg:w="59"/><text x="43.7427%" y="879.50"></text></g><g><title>finish_task_switch (59 samples, 0.03%)</title><rect x="43.4927%" y="853" width="0.0265%" height="15" fill="rgb(251,178,7)" fg:x="96893" fg:w="59"/><text x="43.7427%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.01%)</title><rect x="43.5205%" y="613" width="0.0126%" height="15" fill="rgb(213,154,26)" fg:x="96955" fg:w="28"/><text x="43.7705%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.01%)</title><rect x="43.5210%" y="597" width="0.0121%" height="15" fill="rgb(238,165,49)" fg:x="96956" fg:w="27"/><text x="43.7710%" y="607.50"></text></g><g><title>native_write_msr (27 samples, 0.01%)</title><rect x="43.5210%" y="581" width="0.0121%" height="15" fill="rgb(248,91,46)" fg:x="96956" fg:w="27"/><text x="43.7710%" y="591.50"></text></g><g><title>finish_task_switch (30 samples, 0.01%)</title><rect x="43.5205%" y="629" width="0.0135%" height="15" fill="rgb(244,21,52)" fg:x="96955" fg:w="30"/><text x="43.7705%" y="639.50"></text></g><g><title>__pthread_cond_wait (32 samples, 0.01%)</title><rect x="43.5201%" y="805" width="0.0144%" height="15" fill="rgb(247,122,20)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (32 samples, 0.01%)</title><rect x="43.5201%" y="789" width="0.0144%" height="15" fill="rgb(218,27,9)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="799.50"></text></g><g><title>futex_wait_cancelable (32 samples, 0.01%)</title><rect x="43.5201%" y="773" width="0.0144%" height="15" fill="rgb(246,7,6)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.01%)</title><rect x="43.5201%" y="757" width="0.0144%" height="15" fill="rgb(227,135,54)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="767.50"></text></g><g><title>do_syscall_64 (32 samples, 0.01%)</title><rect x="43.5201%" y="741" width="0.0144%" height="15" fill="rgb(247,14,11)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="751.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.01%)</title><rect x="43.5201%" y="725" width="0.0144%" height="15" fill="rgb(206,149,34)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="735.50"></text></g><g><title>do_futex (32 samples, 0.01%)</title><rect x="43.5201%" y="709" width="0.0144%" height="15" fill="rgb(227,228,4)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="719.50"></text></g><g><title>futex_wait (32 samples, 0.01%)</title><rect x="43.5201%" y="693" width="0.0144%" height="15" fill="rgb(238,218,28)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="703.50"></text></g><g><title>futex_wait_queue_me (32 samples, 0.01%)</title><rect x="43.5201%" y="677" width="0.0144%" height="15" fill="rgb(252,86,40)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="687.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="43.5201%" y="661" width="0.0144%" height="15" fill="rgb(251,225,11)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="671.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="43.5201%" y="645" width="0.0144%" height="15" fill="rgb(206,46,49)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="655.50"></text></g><g><title>Monitor::wait (33 samples, 0.01%)</title><rect x="43.5201%" y="853" width="0.0148%" height="15" fill="rgb(245,128,24)" fg:x="96954" fg:w="33"/><text x="43.7701%" y="863.50"></text></g><g><title>Monitor::IWait (33 samples, 0.01%)</title><rect x="43.5201%" y="837" width="0.0148%" height="15" fill="rgb(219,177,34)" fg:x="96954" fg:w="33"/><text x="43.7701%" y="847.50"></text></g><g><title>os::PlatformEvent::park (33 samples, 0.01%)</title><rect x="43.5201%" y="821" width="0.0148%" height="15" fill="rgb(218,60,48)" fg:x="96954" fg:w="33"/><text x="43.7701%" y="831.50"></text></g><g><title>__GI___clone (113 samples, 0.05%)</title><rect x="43.4891%" y="901" width="0.0507%" height="15" fill="rgb(221,11,5)" fg:x="96885" fg:w="113"/><text x="43.7391%" y="911.50"></text></g><g><title>start_thread (46 samples, 0.02%)</title><rect x="43.5192%" y="885" width="0.0206%" height="15" fill="rgb(220,148,13)" fg:x="96952" fg:w="46"/><text x="43.7692%" y="895.50"></text></g><g><title>thread_native_entry (44 samples, 0.02%)</title><rect x="43.5201%" y="869" width="0.0198%" height="15" fill="rgb(210,16,3)" fg:x="96954" fg:w="44"/><text x="43.7701%" y="879.50"></text></g><g><title>globbing_pool-1 (426 samples, 0.19%)</title><rect x="43.3495%" y="917" width="0.1912%" height="15" fill="rgb(236,80,2)" fg:x="96574" fg:w="426"/><text x="43.5995%" y="927.50"></text></g><g><title>JVM_StartThread (28 samples, 0.01%)</title><rect x="43.5605%" y="885" width="0.0126%" height="15" fill="rgb(239,129,19)" fg:x="97044" fg:w="28"/><text x="43.8105%" y="895.50"></text></g><g><title>Unsafe_Park (25 samples, 0.01%)</title><rect x="43.5730%" y="885" width="0.0112%" height="15" fill="rgb(220,106,35)" fg:x="97072" fg:w="25"/><text x="43.8230%" y="895.50"></text></g><g><title>Parker::park (25 samples, 0.01%)</title><rect x="43.5730%" y="869" width="0.0112%" height="15" fill="rgb(252,139,45)" fg:x="97072" fg:w="25"/><text x="43.8230%" y="879.50"></text></g><g><title>[perf-945576.map] (91 samples, 0.04%)</title><rect x="43.5443%" y="901" width="0.0408%" height="15" fill="rgb(229,8,36)" fg:x="97008" fg:w="91"/><text x="43.7943%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.01%)</title><rect x="43.5874%" y="837" width="0.0112%" height="15" fill="rgb(230,126,33)" fg:x="97104" fg:w="25"/><text x="43.8374%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="43.5878%" y="821" width="0.0108%" height="15" fill="rgb(239,140,21)" fg:x="97105" fg:w="24"/><text x="43.8378%" y="831.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="43.5878%" y="805" width="0.0108%" height="15" fill="rgb(254,104,9)" fg:x="97105" fg:w="24"/><text x="43.8378%" y="815.50"></text></g><g><title>ret_from_fork (29 samples, 0.01%)</title><rect x="43.5865%" y="885" width="0.0130%" height="15" fill="rgb(239,52,14)" fg:x="97102" fg:w="29"/><text x="43.8365%" y="895.50"></text></g><g><title>schedule_tail (27 samples, 0.01%)</title><rect x="43.5874%" y="869" width="0.0121%" height="15" fill="rgb(208,227,44)" fg:x="97104" fg:w="27"/><text x="43.8374%" y="879.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="43.5874%" y="853" width="0.0121%" height="15" fill="rgb(246,18,19)" fg:x="97104" fg:w="27"/><text x="43.8374%" y="863.50"></text></g><g><title>globbing_pool-2 (152 samples, 0.07%)</title><rect x="43.5407%" y="917" width="0.0682%" height="15" fill="rgb(235,228,25)" fg:x="97000" fg:w="152"/><text x="43.7907%" y="927.50"></text></g><g><title>__GI___clone (52 samples, 0.02%)</title><rect x="43.5856%" y="901" width="0.0233%" height="15" fill="rgb(240,156,20)" fg:x="97100" fg:w="52"/><text x="43.8356%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="43.6457%" y="661" width="0.0153%" height="15" fill="rgb(224,8,20)" fg:x="97234" fg:w="34"/><text x="43.8957%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="43.6457%" y="645" width="0.0153%" height="15" fill="rgb(214,12,52)" fg:x="97234" fg:w="34"/><text x="43.8957%" y="655.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="43.6457%" y="629" width="0.0153%" height="15" fill="rgb(211,220,47)" fg:x="97234" fg:w="34"/><text x="43.8957%" y="639.50"></text></g><g><title>do_syscall_64 (37 samples, 0.02%)</title><rect x="43.6453%" y="789" width="0.0166%" height="15" fill="rgb(250,173,5)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="799.50"></text></g><g><title>__x64_sys_futex (37 samples, 0.02%)</title><rect x="43.6453%" y="773" width="0.0166%" height="15" fill="rgb(250,125,52)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="783.50"></text></g><g><title>do_futex (37 samples, 0.02%)</title><rect x="43.6453%" y="757" width="0.0166%" height="15" fill="rgb(209,133,18)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="767.50"></text></g><g><title>futex_wait (37 samples, 0.02%)</title><rect x="43.6453%" y="741" width="0.0166%" height="15" fill="rgb(216,173,22)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="751.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.02%)</title><rect x="43.6453%" y="725" width="0.0166%" height="15" fill="rgb(205,3,22)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="735.50"></text></g><g><title>schedule (37 samples, 0.02%)</title><rect x="43.6453%" y="709" width="0.0166%" height="15" fill="rgb(248,22,20)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="719.50"></text></g><g><title>__schedule (37 samples, 0.02%)</title><rect x="43.6453%" y="693" width="0.0166%" height="15" fill="rgb(233,6,29)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="703.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="43.6453%" y="677" width="0.0166%" height="15" fill="rgb(240,22,54)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="687.50"></text></g><g><title>Unsafe_Park (54 samples, 0.02%)</title><rect x="43.6386%" y="885" width="0.0242%" height="15" fill="rgb(231,133,32)" fg:x="97218" fg:w="54"/><text x="43.8886%" y="895.50"></text></g><g><title>Parker::park (54 samples, 0.02%)</title><rect x="43.6386%" y="869" width="0.0242%" height="15" fill="rgb(248,193,4)" fg:x="97218" fg:w="54"/><text x="43.8886%" y="879.50"></text></g><g><title>__pthread_cond_wait (39 samples, 0.02%)</title><rect x="43.6453%" y="853" width="0.0175%" height="15" fill="rgb(211,178,46)" fg:x="97233" fg:w="39"/><text x="43.8953%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (39 samples, 0.02%)</title><rect x="43.6453%" y="837" width="0.0175%" height="15" fill="rgb(224,5,42)" fg:x="97233" fg:w="39"/><text x="43.8953%" y="847.50"></text></g><g><title>futex_wait_cancelable (39 samples, 0.02%)</title><rect x="43.6453%" y="821" width="0.0175%" height="15" fill="rgb(239,176,25)" fg:x="97233" fg:w="39"/><text x="43.8953%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.02%)</title><rect x="43.6453%" y="805" width="0.0175%" height="15" fill="rgb(245,187,50)" fg:x="97233" fg:w="39"/><text x="43.8953%" y="815.50"></text></g><g><title>[perf-945576.map] (112 samples, 0.05%)</title><rect x="43.6130%" y="901" width="0.0503%" height="15" fill="rgb(248,24,15)" fg:x="97161" fg:w="112"/><text x="43.8630%" y="911.50"></text></g><g><title>__GI___clone (37 samples, 0.02%)</title><rect x="43.6646%" y="901" width="0.0166%" height="15" fill="rgb(205,166,13)" fg:x="97276" fg:w="37"/><text x="43.9146%" y="911.50"></text></g><g><title>globbing_pool-3 (165 samples, 0.07%)</title><rect x="43.6089%" y="917" width="0.0741%" height="15" fill="rgb(208,114,23)" fg:x="97152" fg:w="165"/><text x="43.8589%" y="927.50"></text></g><g><title>[libunix_jni.so] (23 samples, 0.01%)</title><rect x="43.6861%" y="901" width="0.0103%" height="15" fill="rgb(239,127,18)" fg:x="97324" fg:w="23"/><text x="43.9361%" y="911.50"></text></g><g><title>Monitor::lock (29 samples, 0.01%)</title><rect x="43.7378%" y="869" width="0.0130%" height="15" fill="rgb(219,154,28)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="879.50"></text></g><g><title>Monitor::ILock (29 samples, 0.01%)</title><rect x="43.7378%" y="853" width="0.0130%" height="15" fill="rgb(225,157,23)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="863.50"></text></g><g><title>os::PlatformEvent::park (29 samples, 0.01%)</title><rect x="43.7378%" y="837" width="0.0130%" height="15" fill="rgb(219,8,6)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="847.50"></text></g><g><title>__pthread_cond_wait (29 samples, 0.01%)</title><rect x="43.7378%" y="821" width="0.0130%" height="15" fill="rgb(212,47,6)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (29 samples, 0.01%)</title><rect x="43.7378%" y="805" width="0.0130%" height="15" fill="rgb(224,190,4)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="815.50"></text></g><g><title>futex_wait_cancelable (29 samples, 0.01%)</title><rect x="43.7378%" y="789" width="0.0130%" height="15" fill="rgb(239,183,29)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.01%)</title><rect x="43.7378%" y="773" width="0.0130%" height="15" fill="rgb(213,57,7)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="783.50"></text></g><g><title>do_syscall_64 (29 samples, 0.01%)</title><rect x="43.7378%" y="757" width="0.0130%" height="15" fill="rgb(216,148,1)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="767.50"></text></g><g><title>__x64_sys_futex (29 samples, 0.01%)</title><rect x="43.7378%" y="741" width="0.0130%" height="15" fill="rgb(236,182,29)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="751.50"></text></g><g><title>do_futex (29 samples, 0.01%)</title><rect x="43.7378%" y="725" width="0.0130%" height="15" fill="rgb(244,120,48)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="735.50"></text></g><g><title>futex_wait (29 samples, 0.01%)</title><rect x="43.7378%" y="709" width="0.0130%" height="15" fill="rgb(206,71,34)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="719.50"></text></g><g><title>futex_wait_queue_me (29 samples, 0.01%)</title><rect x="43.7378%" y="693" width="0.0130%" height="15" fill="rgb(242,32,6)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="703.50"></text></g><g><title>schedule (29 samples, 0.01%)</title><rect x="43.7378%" y="677" width="0.0130%" height="15" fill="rgb(241,35,3)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="687.50"></text></g><g><title>__schedule (29 samples, 0.01%)</title><rect x="43.7378%" y="661" width="0.0130%" height="15" fill="rgb(222,62,19)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="671.50"></text></g><g><title>finish_task_switch (29 samples, 0.01%)</title><rect x="43.7378%" y="645" width="0.0130%" height="15" fill="rgb(223,110,41)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.01%)</title><rect x="43.7382%" y="629" width="0.0126%" height="15" fill="rgb(208,224,4)" fg:x="97440" fg:w="28"/><text x="43.9882%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.01%)</title><rect x="43.7382%" y="613" width="0.0126%" height="15" fill="rgb(241,137,19)" fg:x="97440" fg:w="28"/><text x="43.9882%" y="623.50"></text></g><g><title>native_write_msr (28 samples, 0.01%)</title><rect x="43.7382%" y="597" width="0.0126%" height="15" fill="rgb(244,24,17)" fg:x="97440" fg:w="28"/><text x="43.9882%" y="607.50"></text></g><g><title>JVM_StartThread (44 samples, 0.02%)</title><rect x="43.7351%" y="885" width="0.0198%" height="15" fill="rgb(245,178,49)" fg:x="97433" fg:w="44"/><text x="43.9851%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.01%)</title><rect x="43.7562%" y="661" width="0.0121%" height="15" fill="rgb(219,160,38)" fg:x="97480" fg:w="27"/><text x="44.0062%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="43.7566%" y="645" width="0.0117%" height="15" fill="rgb(228,137,14)" fg:x="97481" fg:w="26"/><text x="44.0066%" y="655.50"></text></g><g><title>native_write_msr (26 samples, 0.01%)</title><rect x="43.7566%" y="629" width="0.0117%" height="15" fill="rgb(237,134,11)" fg:x="97481" fg:w="26"/><text x="44.0066%" y="639.50"></text></g><g><title>finish_task_switch (30 samples, 0.01%)</title><rect x="43.7562%" y="677" width="0.0135%" height="15" fill="rgb(211,126,44)" fg:x="97480" fg:w="30"/><text x="44.0062%" y="687.50"></text></g><g><title>do_syscall_64 (32 samples, 0.01%)</title><rect x="43.7557%" y="789" width="0.0144%" height="15" fill="rgb(226,171,33)" fg:x="97479" fg:w="32"/><text x="44.0057%" y="799.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.01%)</title><rect x="43.7557%" y="773" width="0.0144%" height="15" fill="rgb(253,99,13)" fg:x="97479" fg:w="32"/><text x="44.0057%" y="783.50"></text></g><g><title>do_futex (32 samples, 0.01%)</title><rect x="43.7557%" y="757" width="0.0144%" height="15" fill="rgb(244,48,7)" fg:x="97479" fg:w="32"/><text x="44.0057%" y="767.50"></text></g><g><title>futex_wait (32 samples, 0.01%)</title><rect x="43.7557%" y="741" width="0.0144%" height="15" fill="rgb(244,217,54)" fg:x="97479" fg:w="32"/><text x="44.0057%" y="751.50"></text></g><g><title>futex_wait_queue_me (32 samples, 0.01%)</title><rect x="43.7557%" y="725" width="0.0144%" height="15" fill="rgb(224,15,18)" fg:x="97479" fg:w="32"/><text x="44.0057%" y="735.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="43.7557%" y="709" width="0.0144%" height="15" fill="rgb(244,99,12)" fg:x="97479" fg:w="32"/><text x="44.0057%" y="719.50"></text></g><g><title>__schedule (31 samples, 0.01%)</title><rect x="43.7562%" y="693" width="0.0139%" height="15" fill="rgb(233,226,8)" fg:x="97480" fg:w="31"/><text x="44.0062%" y="703.50"></text></g><g><title>__pthread_cond_wait (34 samples, 0.02%)</title><rect x="43.7557%" y="853" width="0.0153%" height="15" fill="rgb(229,211,3)" fg:x="97479" fg:w="34"/><text x="44.0057%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (34 samples, 0.02%)</title><rect x="43.7557%" y="837" width="0.0153%" height="15" fill="rgb(216,140,21)" fg:x="97479" fg:w="34"/><text x="44.0057%" y="847.50"></text></g><g><title>futex_wait_cancelable (34 samples, 0.02%)</title><rect x="43.7557%" y="821" width="0.0153%" height="15" fill="rgb(234,122,30)" fg:x="97479" fg:w="34"/><text x="44.0057%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="43.7557%" y="805" width="0.0153%" height="15" fill="rgb(236,25,46)" fg:x="97479" fg:w="34"/><text x="44.0057%" y="815.50"></text></g><g><title>Unsafe_Park (36 samples, 0.02%)</title><rect x="43.7553%" y="885" width="0.0162%" height="15" fill="rgb(217,52,54)" fg:x="97478" fg:w="36"/><text x="44.0053%" y="895.50"></text></g><g><title>Parker::park (36 samples, 0.02%)</title><rect x="43.7553%" y="869" width="0.0162%" height="15" fill="rgb(222,29,26)" fg:x="97478" fg:w="36"/><text x="44.0053%" y="879.50"></text></g><g><title>[perf-945576.map] (169 samples, 0.08%)</title><rect x="43.6965%" y="901" width="0.0759%" height="15" fill="rgb(216,177,29)" fg:x="97347" fg:w="169"/><text x="43.9465%" y="911.50"></text></g><g><title>__GI___clone (31 samples, 0.01%)</title><rect x="43.7723%" y="901" width="0.0139%" height="15" fill="rgb(247,136,51)" fg:x="97516" fg:w="31"/><text x="44.0223%" y="911.50"></text></g><g><title>globbing_pool-4 (231 samples, 0.10%)</title><rect x="43.6830%" y="917" width="0.1037%" height="15" fill="rgb(231,47,47)" fg:x="97317" fg:w="231"/><text x="43.9330%" y="927.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="43.8145%" y="789" width="0.0162%" height="15" fill="rgb(211,192,36)" fg:x="97610" fg:w="36"/><text x="44.0645%" y="799.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.02%)</title><rect x="43.8145%" y="773" width="0.0162%" height="15" fill="rgb(229,156,32)" fg:x="97610" fg:w="36"/><text x="44.0645%" y="783.50"></text></g><g><title>do_futex (36 samples, 0.02%)</title><rect x="43.8145%" y="757" width="0.0162%" height="15" fill="rgb(248,213,20)" fg:x="97610" fg:w="36"/><text x="44.0645%" y="767.50"></text></g><g><title>futex_wait (36 samples, 0.02%)</title><rect x="43.8145%" y="741" width="0.0162%" height="15" fill="rgb(217,64,7)" fg:x="97610" fg:w="36"/><text x="44.0645%" y="751.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.02%)</title><rect x="43.8150%" y="725" width="0.0157%" height="15" fill="rgb(232,142,8)" fg:x="97611" fg:w="35"/><text x="44.0650%" y="735.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="43.8150%" y="709" width="0.0157%" height="15" fill="rgb(224,92,44)" fg:x="97611" fg:w="35"/><text x="44.0650%" y="719.50"></text></g><g><title>__schedule (35 samples, 0.02%)</title><rect x="43.8150%" y="693" width="0.0157%" height="15" fill="rgb(214,169,17)" fg:x="97611" fg:w="35"/><text x="44.0650%" y="703.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="43.8150%" y="677" width="0.0157%" height="15" fill="rgb(210,59,37)" fg:x="97611" fg:w="35"/><text x="44.0650%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.02%)</title><rect x="43.8150%" y="661" width="0.0157%" height="15" fill="rgb(214,116,48)" fg:x="97611" fg:w="35"/><text x="44.0650%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="43.8154%" y="645" width="0.0153%" height="15" fill="rgb(244,191,6)" fg:x="97612" fg:w="34"/><text x="44.0654%" y="655.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="43.8154%" y="629" width="0.0153%" height="15" fill="rgb(241,50,52)" fg:x="97612" fg:w="34"/><text x="44.0654%" y="639.50"></text></g><g><title>__pthread_cond_wait (38 samples, 0.02%)</title><rect x="43.8145%" y="853" width="0.0171%" height="15" fill="rgb(236,75,39)" fg:x="97610" fg:w="38"/><text x="44.0645%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (38 samples, 0.02%)</title><rect x="43.8145%" y="837" width="0.0171%" height="15" fill="rgb(236,99,0)" fg:x="97610" fg:w="38"/><text x="44.0645%" y="847.50"></text></g><g><title>futex_wait_cancelable (38 samples, 0.02%)</title><rect x="43.8145%" y="821" width="0.0171%" height="15" fill="rgb(207,202,15)" fg:x="97610" fg:w="38"/><text x="44.0645%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.02%)</title><rect x="43.8145%" y="805" width="0.0171%" height="15" fill="rgb(233,207,14)" fg:x="97610" fg:w="38"/><text x="44.0645%" y="815.50"></text></g><g><title>Unsafe_Park (40 samples, 0.02%)</title><rect x="43.8141%" y="885" width="0.0180%" height="15" fill="rgb(226,27,51)" fg:x="97609" fg:w="40"/><text x="44.0641%" y="895.50"></text></g><g><title>Parker::park (40 samples, 0.02%)</title><rect x="43.8141%" y="869" width="0.0180%" height="15" fill="rgb(206,104,42)" fg:x="97609" fg:w="40"/><text x="44.0641%" y="879.50"></text></g><g><title>[perf-945576.map] (95 samples, 0.04%)</title><rect x="43.7903%" y="901" width="0.0426%" height="15" fill="rgb(212,225,4)" fg:x="97556" fg:w="95"/><text x="44.0403%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.01%)</title><rect x="43.8397%" y="837" width="0.0121%" height="15" fill="rgb(233,96,42)" fg:x="97666" fg:w="27"/><text x="44.0897%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="43.8410%" y="821" width="0.0108%" height="15" fill="rgb(229,21,32)" fg:x="97669" fg:w="24"/><text x="44.0910%" y="831.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="43.8410%" y="805" width="0.0108%" height="15" fill="rgb(226,216,24)" fg:x="97669" fg:w="24"/><text x="44.0910%" y="815.50"></text></g><g><title>ret_from_fork (29 samples, 0.01%)</title><rect x="43.8392%" y="885" width="0.0130%" height="15" fill="rgb(221,163,17)" fg:x="97665" fg:w="29"/><text x="44.0892%" y="895.50"></text></g><g><title>schedule_tail (29 samples, 0.01%)</title><rect x="43.8392%" y="869" width="0.0130%" height="15" fill="rgb(216,216,42)" fg:x="97665" fg:w="29"/><text x="44.0892%" y="879.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="43.8397%" y="853" width="0.0126%" height="15" fill="rgb(240,118,7)" fg:x="97666" fg:w="28"/><text x="44.0897%" y="863.50"></text></g><g><title>globbing_pool-5 (151 samples, 0.07%)</title><rect x="43.7867%" y="917" width="0.0678%" height="15" fill="rgb(221,67,37)" fg:x="97548" fg:w="151"/><text x="44.0367%" y="927.50"></text></g><g><title>__GI___clone (34 samples, 0.02%)</title><rect x="43.8392%" y="901" width="0.0153%" height="15" fill="rgb(241,32,44)" fg:x="97665" fg:w="34"/><text x="44.0892%" y="911.50"></text></g><g><title>[perf-945576.map] (125 samples, 0.06%)</title><rect x="43.8630%" y="901" width="0.0561%" height="15" fill="rgb(235,204,43)" fg:x="97718" fg:w="125"/><text x="44.1130%" y="911.50"></text></g><g><title>globbing_pool-6 (165 samples, 0.07%)</title><rect x="43.8545%" y="917" width="0.0741%" height="15" fill="rgb(213,116,10)" fg:x="97699" fg:w="165"/><text x="44.1045%" y="927.50"></text></g><g><title>Monitor::wait (23 samples, 0.01%)</title><rect x="43.9492%" y="853" width="0.0103%" height="15" fill="rgb(239,15,48)" fg:x="97910" fg:w="23"/><text x="44.1992%" y="863.50"></text></g><g><title>Monitor::IWait (23 samples, 0.01%)</title><rect x="43.9492%" y="837" width="0.0103%" height="15" fill="rgb(207,123,36)" fg:x="97910" fg:w="23"/><text x="44.1992%" y="847.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.01%)</title><rect x="43.9492%" y="821" width="0.0103%" height="15" fill="rgb(209,103,30)" fg:x="97910" fg:w="23"/><text x="44.1992%" y="831.50"></text></g><g><title>JVM_StartThread (35 samples, 0.02%)</title><rect x="43.9442%" y="885" width="0.0157%" height="15" fill="rgb(238,100,19)" fg:x="97899" fg:w="35"/><text x="44.1942%" y="895.50"></text></g><g><title>os::create_thread (24 samples, 0.01%)</title><rect x="43.9492%" y="869" width="0.0108%" height="15" fill="rgb(244,30,14)" fg:x="97910" fg:w="24"/><text x="44.1992%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="43.9613%" y="661" width="0.0117%" height="15" fill="rgb(249,174,6)" fg:x="97937" fg:w="26"/><text x="44.2113%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="43.9613%" y="645" width="0.0117%" height="15" fill="rgb(235,213,41)" fg:x="97937" fg:w="26"/><text x="44.2113%" y="655.50"></text></g><g><title>native_write_msr (26 samples, 0.01%)</title><rect x="43.9613%" y="629" width="0.0117%" height="15" fill="rgb(213,118,6)" fg:x="97937" fg:w="26"/><text x="44.2113%" y="639.50"></text></g><g><title>__schedule (28 samples, 0.01%)</title><rect x="43.9609%" y="693" width="0.0126%" height="15" fill="rgb(235,44,51)" fg:x="97936" fg:w="28"/><text x="44.2109%" y="703.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="43.9613%" y="677" width="0.0121%" height="15" fill="rgb(217,9,53)" fg:x="97937" fg:w="27"/><text x="44.2113%" y="687.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="43.9600%" y="789" width="0.0139%" height="15" fill="rgb(237,172,34)" fg:x="97934" fg:w="31"/><text x="44.2100%" y="799.50"></text></g><g><title>__x64_sys_futex (31 samples, 0.01%)</title><rect x="43.9600%" y="773" width="0.0139%" height="15" fill="rgb(206,206,11)" fg:x="97934" fg:w="31"/><text x="44.2100%" y="783.50"></text></g><g><title>do_futex (31 samples, 0.01%)</title><rect x="43.9600%" y="757" width="0.0139%" height="15" fill="rgb(214,149,29)" fg:x="97934" fg:w="31"/><text x="44.2100%" y="767.50"></text></g><g><title>futex_wait (31 samples, 0.01%)</title><rect x="43.9600%" y="741" width="0.0139%" height="15" fill="rgb(208,123,3)" fg:x="97934" fg:w="31"/><text x="44.2100%" y="751.50"></text></g><g><title>futex_wait_queue_me (30 samples, 0.01%)</title><rect x="43.9604%" y="725" width="0.0135%" height="15" fill="rgb(229,126,4)" fg:x="97935" fg:w="30"/><text x="44.2104%" y="735.50"></text></g><g><title>schedule (30 samples, 0.01%)</title><rect x="43.9604%" y="709" width="0.0135%" height="15" fill="rgb(222,92,36)" fg:x="97935" fg:w="30"/><text x="44.2104%" y="719.50"></text></g><g><title>__pthread_cond_wait (32 samples, 0.01%)</title><rect x="43.9600%" y="853" width="0.0144%" height="15" fill="rgb(216,39,41)" fg:x="97934" fg:w="32"/><text x="44.2100%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (32 samples, 0.01%)</title><rect x="43.9600%" y="837" width="0.0144%" height="15" fill="rgb(253,127,28)" fg:x="97934" fg:w="32"/><text x="44.2100%" y="847.50"></text></g><g><title>futex_wait_cancelable (32 samples, 0.01%)</title><rect x="43.9600%" y="821" width="0.0144%" height="15" fill="rgb(249,152,51)" fg:x="97934" fg:w="32"/><text x="44.2100%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.01%)</title><rect x="43.9600%" y="805" width="0.0144%" height="15" fill="rgb(209,123,42)" fg:x="97934" fg:w="32"/><text x="44.2100%" y="815.50"></text></g><g><title>Unsafe_Park (33 samples, 0.01%)</title><rect x="43.9600%" y="885" width="0.0148%" height="15" fill="rgb(241,118,22)" fg:x="97934" fg:w="33"/><text x="44.2100%" y="895.50"></text></g><g><title>Parker::park (33 samples, 0.01%)</title><rect x="43.9600%" y="869" width="0.0148%" height="15" fill="rgb(208,25,7)" fg:x="97934" fg:w="33"/><text x="44.2100%" y="879.50"></text></g><g><title>[perf-945576.map] (106 samples, 0.05%)</title><rect x="43.9308%" y="901" width="0.0476%" height="15" fill="rgb(243,144,39)" fg:x="97869" fg:w="106"/><text x="44.1808%" y="911.50"></text></g><g><title>ret_from_fork (23 samples, 0.01%)</title><rect x="43.9788%" y="885" width="0.0103%" height="15" fill="rgb(250,50,5)" fg:x="97976" fg:w="23"/><text x="44.2288%" y="895.50"></text></g><g><title>__GI___clone (26 samples, 0.01%)</title><rect x="43.9788%" y="901" width="0.0117%" height="15" fill="rgb(207,67,11)" fg:x="97976" fg:w="26"/><text x="44.2288%" y="911.50"></text></g><g><title>globbing_pool-7 (139 samples, 0.06%)</title><rect x="43.9285%" y="917" width="0.0624%" height="15" fill="rgb(245,204,40)" fg:x="97864" fg:w="139"/><text x="44.1785%" y="927.50"></text></g><g><title>Monitor::lock_without_safepoint_check (23 samples, 0.01%)</title><rect x="44.0107%" y="837" width="0.0103%" height="15" fill="rgb(238,228,24)" fg:x="98047" fg:w="23"/><text x="44.2607%" y="847.50"></text></g><g><title>Monitor::ILock (23 samples, 0.01%)</title><rect x="44.0107%" y="821" width="0.0103%" height="15" fill="rgb(217,116,22)" fg:x="98047" fg:w="23"/><text x="44.2607%" y="831.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.01%)</title><rect x="44.0107%" y="805" width="0.0103%" height="15" fill="rgb(234,98,12)" fg:x="98047" fg:w="23"/><text x="44.2607%" y="815.50"></text></g><g><title>SafepointSynchronize::block (25 samples, 0.01%)</title><rect x="44.0107%" y="853" width="0.0112%" height="15" fill="rgb(242,170,50)" fg:x="98047" fg:w="25"/><text x="44.2607%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.01%)</title><rect x="44.0224%" y="661" width="0.0148%" height="15" fill="rgb(235,7,5)" fg:x="98073" fg:w="33"/><text x="44.2724%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.01%)</title><rect x="44.0224%" y="645" width="0.0148%" height="15" fill="rgb(241,114,28)" fg:x="98073" fg:w="33"/><text x="44.2724%" y="655.50"></text></g><g><title>native_write_msr (33 samples, 0.01%)</title><rect x="44.0224%" y="629" width="0.0148%" height="15" fill="rgb(246,112,42)" fg:x="98073" fg:w="33"/><text x="44.2724%" y="639.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="44.0219%" y="677" width="0.0166%" height="15" fill="rgb(248,228,14)" fg:x="98072" fg:w="37"/><text x="44.2719%" y="687.50"></text></g><g><title>do_syscall_64 (38 samples, 0.02%)</title><rect x="44.0219%" y="789" width="0.0171%" height="15" fill="rgb(208,133,18)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="799.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.02%)</title><rect x="44.0219%" y="773" width="0.0171%" height="15" fill="rgb(207,35,49)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="783.50"></text></g><g><title>do_futex (38 samples, 0.02%)</title><rect x="44.0219%" y="757" width="0.0171%" height="15" fill="rgb(205,68,36)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="767.50"></text></g><g><title>futex_wait (38 samples, 0.02%)</title><rect x="44.0219%" y="741" width="0.0171%" height="15" fill="rgb(245,62,40)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="751.50"></text></g><g><title>futex_wait_queue_me (38 samples, 0.02%)</title><rect x="44.0219%" y="725" width="0.0171%" height="15" fill="rgb(228,27,24)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="735.50"></text></g><g><title>schedule (38 samples, 0.02%)</title><rect x="44.0219%" y="709" width="0.0171%" height="15" fill="rgb(253,19,12)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="719.50"></text></g><g><title>__schedule (38 samples, 0.02%)</title><rect x="44.0219%" y="693" width="0.0171%" height="15" fill="rgb(232,28,20)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="703.50"></text></g><g><title>Unsafe_Park (66 samples, 0.03%)</title><rect x="44.0102%" y="885" width="0.0296%" height="15" fill="rgb(218,35,51)" fg:x="98046" fg:w="66"/><text x="44.2602%" y="895.50"></text></g><g><title>Parker::park (66 samples, 0.03%)</title><rect x="44.0102%" y="869" width="0.0296%" height="15" fill="rgb(212,90,40)" fg:x="98046" fg:w="66"/><text x="44.2602%" y="879.50"></text></g><g><title>__pthread_cond_wait (40 samples, 0.02%)</title><rect x="44.0219%" y="853" width="0.0180%" height="15" fill="rgb(220,172,12)" fg:x="98072" fg:w="40"/><text x="44.2719%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (40 samples, 0.02%)</title><rect x="44.0219%" y="837" width="0.0180%" height="15" fill="rgb(226,159,20)" fg:x="98072" fg:w="40"/><text x="44.2719%" y="847.50"></text></g><g><title>futex_wait_cancelable (40 samples, 0.02%)</title><rect x="44.0219%" y="821" width="0.0180%" height="15" fill="rgb(234,205,16)" fg:x="98072" fg:w="40"/><text x="44.2719%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.02%)</title><rect x="44.0219%" y="805" width="0.0180%" height="15" fill="rgb(207,9,39)" fg:x="98072" fg:w="40"/><text x="44.2719%" y="815.50"></text></g><g><title>[perf-945576.map] (107 samples, 0.05%)</title><rect x="43.9923%" y="901" width="0.0480%" height="15" fill="rgb(249,143,15)" fg:x="98006" fg:w="107"/><text x="44.2423%" y="911.50"></text></g><g><title>tlb_flush_mmu (29 samples, 0.01%)</title><rect x="44.0565%" y="725" width="0.0130%" height="15" fill="rgb(253,133,29)" fg:x="98149" fg:w="29"/><text x="44.3065%" y="735.50"></text></g><g><title>release_pages (26 samples, 0.01%)</title><rect x="44.0578%" y="709" width="0.0117%" height="15" fill="rgb(221,187,0)" fg:x="98152" fg:w="26"/><text x="44.3078%" y="719.50"></text></g><g><title>mmput (46 samples, 0.02%)</title><rect x="44.0493%" y="789" width="0.0206%" height="15" fill="rgb(205,204,26)" fg:x="98133" fg:w="46"/><text x="44.2993%" y="799.50"></text></g><g><title>exit_mmap (45 samples, 0.02%)</title><rect x="44.0497%" y="773" width="0.0202%" height="15" fill="rgb(224,68,54)" fg:x="98134" fg:w="45"/><text x="44.2997%" y="783.50"></text></g><g><title>unmap_vmas (44 samples, 0.02%)</title><rect x="44.0502%" y="757" width="0.0198%" height="15" fill="rgb(209,67,4)" fg:x="98135" fg:w="44"/><text x="44.3002%" y="767.50"></text></g><g><title>unmap_page_range (44 samples, 0.02%)</title><rect x="44.0502%" y="741" width="0.0198%" height="15" fill="rgb(228,229,18)" fg:x="98135" fg:w="44"/><text x="44.3002%" y="751.50"></text></g><g><title>globbing_pool-8 (177 samples, 0.08%)</title><rect x="43.9909%" y="917" width="0.0795%" height="15" fill="rgb(231,89,13)" fg:x="98003" fg:w="177"/><text x="44.2409%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (48 samples, 0.02%)</title><rect x="44.0488%" y="901" width="0.0215%" height="15" fill="rgb(210,182,18)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="911.50"></text></g><g><title>syscall_exit_to_user_mode (48 samples, 0.02%)</title><rect x="44.0488%" y="885" width="0.0215%" height="15" fill="rgb(240,105,2)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="895.50"></text></g><g><title>exit_to_user_mode_prepare (48 samples, 0.02%)</title><rect x="44.0488%" y="869" width="0.0215%" height="15" fill="rgb(207,170,50)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="879.50"></text></g><g><title>arch_do_signal (48 samples, 0.02%)</title><rect x="44.0488%" y="853" width="0.0215%" height="15" fill="rgb(232,133,24)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="863.50"></text></g><g><title>get_signal (48 samples, 0.02%)</title><rect x="44.0488%" y="837" width="0.0215%" height="15" fill="rgb(235,166,27)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="847.50"></text></g><g><title>do_group_exit (48 samples, 0.02%)</title><rect x="44.0488%" y="821" width="0.0215%" height="15" fill="rgb(209,19,13)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="831.50"></text></g><g><title>do_exit (48 samples, 0.02%)</title><rect x="44.0488%" y="805" width="0.0215%" height="15" fill="rgb(226,79,39)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="815.50"></text></g><g><title>globbing_pool-9 (24 samples, 0.01%)</title><rect x="44.0704%" y="917" width="0.0108%" height="15" fill="rgb(222,163,10)" fg:x="98180" fg:w="24"/><text x="44.3204%" y="927.50"></text></g><g><title>[anon] (227 samples, 0.10%)</title><rect x="44.0910%" y="901" width="0.1019%" height="15" fill="rgb(214,44,19)" fg:x="98226" fg:w="227"/><text x="44.3410%" y="911.50"></text></g><g><title>ClassFileParser::parse_constant_pool (43 samples, 0.02%)</title><rect x="45.1710%" y="741" width="0.0193%" height="15" fill="rgb(210,217,13)" fg:x="100632" fg:w="43"/><text x="45.4210%" y="751.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (41 samples, 0.02%)</title><rect x="45.1719%" y="725" width="0.0184%" height="15" fill="rgb(237,61,54)" fg:x="100634" fg:w="41"/><text x="45.4219%" y="735.50"></text></g><g><title>SymbolTable::lookup_only (34 samples, 0.02%)</title><rect x="45.1751%" y="709" width="0.0153%" height="15" fill="rgb(226,184,24)" fg:x="100641" fg:w="34"/><text x="45.4251%" y="719.50"></text></g><g><title>ClassFileParser::ClassFileParser (60 samples, 0.03%)</title><rect x="45.1706%" y="773" width="0.0269%" height="15" fill="rgb(223,226,4)" fg:x="100631" fg:w="60"/><text x="45.4206%" y="783.50"></text></g><g><title>ClassFileParser::parse_stream (60 samples, 0.03%)</title><rect x="45.1706%" y="757" width="0.0269%" height="15" fill="rgb(210,26,41)" fg:x="100631" fg:w="60"/><text x="45.4206%" y="767.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (25 samples, 0.01%)</title><rect x="45.2002%" y="773" width="0.0112%" height="15" fill="rgb(220,221,6)" fg:x="100697" fg:w="25"/><text x="45.4502%" y="783.50"></text></g><g><title>ClassLoader::load_class (107 samples, 0.05%)</title><rect x="45.1638%" y="805" width="0.0480%" height="15" fill="rgb(225,89,49)" fg:x="100616" fg:w="107"/><text x="45.4138%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (92 samples, 0.04%)</title><rect x="45.1706%" y="789" width="0.0413%" height="15" fill="rgb(218,70,45)" fg:x="100631" fg:w="92"/><text x="45.4206%" y="799.50"></text></g><g><title>ConstantPool::klass_at_impl (133 samples, 0.06%)</title><rect x="45.1607%" y="869" width="0.0597%" height="15" fill="rgb(238,166,21)" fg:x="100609" fg:w="133"/><text x="45.4107%" y="879.50"></text></g><g><title>SystemDictionary::resolve_or_fail (131 samples, 0.06%)</title><rect x="45.1616%" y="853" width="0.0588%" height="15" fill="rgb(224,141,44)" fg:x="100611" fg:w="131"/><text x="45.4116%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (131 samples, 0.06%)</title><rect x="45.1616%" y="837" width="0.0588%" height="15" fill="rgb(230,12,49)" fg:x="100611" fg:w="131"/><text x="45.4116%" y="847.50"></text></g><g><title>SystemDictionary::load_instance_class (127 samples, 0.06%)</title><rect x="45.1634%" y="821" width="0.0570%" height="15" fill="rgb(212,174,12)" fg:x="100615" fg:w="127"/><text x="45.4134%" y="831.50"></text></g><g><title>Method::link_method (33 samples, 0.01%)</title><rect x="45.2330%" y="821" width="0.0148%" height="15" fill="rgb(246,67,9)" fg:x="100770" fg:w="33"/><text x="45.4830%" y="831.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (28 samples, 0.01%)</title><rect x="45.2352%" y="805" width="0.0126%" height="15" fill="rgb(239,35,23)" fg:x="100775" fg:w="28"/><text x="45.4852%" y="815.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (27 samples, 0.01%)</title><rect x="45.2357%" y="789" width="0.0121%" height="15" fill="rgb(211,167,0)" fg:x="100776" fg:w="27"/><text x="45.4857%" y="799.50"></text></g><g><title>InstanceKlass::link_methods (34 samples, 0.02%)</title><rect x="45.2330%" y="837" width="0.0153%" height="15" fill="rgb(225,119,45)" fg:x="100770" fg:w="34"/><text x="45.4830%" y="847.50"></text></g><g><title>Rewriter::rewrite_bytecodes (30 samples, 0.01%)</title><rect x="45.2563%" y="805" width="0.0135%" height="15" fill="rgb(210,162,6)" fg:x="100822" fg:w="30"/><text x="45.5063%" y="815.50"></text></g><g><title>Rewriter::rewrite (46 samples, 0.02%)</title><rect x="45.2496%" y="837" width="0.0206%" height="15" fill="rgb(208,118,35)" fg:x="100807" fg:w="46"/><text x="45.4996%" y="847.50"></text></g><g><title>Rewriter::Rewriter (45 samples, 0.02%)</title><rect x="45.2500%" y="821" width="0.0202%" height="15" fill="rgb(239,4,53)" fg:x="100808" fg:w="45"/><text x="45.5000%" y="831.50"></text></g><g><title>InstanceKlass::link_class_impl (127 samples, 0.06%)</title><rect x="45.2240%" y="853" width="0.0570%" height="15" fill="rgb(213,130,21)" fg:x="100750" fg:w="127"/><text x="45.4740%" y="863.50"></text></g><g><title>InstanceKlass::initialize_impl (135 samples, 0.06%)</title><rect x="45.2217%" y="869" width="0.0606%" height="15" fill="rgb(235,148,0)" fg:x="100745" fg:w="135"/><text x="45.4717%" y="879.50"></text></g><g><title>InterpreterRuntime::_new (272 samples, 0.12%)</title><rect x="45.1607%" y="885" width="0.1221%" height="15" fill="rgb(244,224,18)" fg:x="100609" fg:w="272"/><text x="45.4107%" y="895.50"></text></g><g><title>InterpreterRuntime::anewarray (39 samples, 0.02%)</title><rect x="45.2828%" y="885" width="0.0175%" height="15" fill="rgb(211,214,4)" fg:x="100881" fg:w="39"/><text x="45.5328%" y="895.50"></text></g><g><title>CompileBroker::compile_method (34 samples, 0.02%)</title><rect x="45.3160%" y="789" width="0.0153%" height="15" fill="rgb(206,119,25)" fg:x="100955" fg:w="34"/><text x="45.5660%" y="799.50"></text></g><g><title>CompileBroker::compile_method_base (24 samples, 0.01%)</title><rect x="45.3205%" y="773" width="0.0108%" height="15" fill="rgb(243,93,47)" fg:x="100965" fg:w="24"/><text x="45.5705%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (50 samples, 0.02%)</title><rect x="45.3093%" y="853" width="0.0224%" height="15" fill="rgb(224,194,6)" fg:x="100940" fg:w="50"/><text x="45.5593%" y="863.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (47 samples, 0.02%)</title><rect x="45.3106%" y="837" width="0.0211%" height="15" fill="rgb(243,229,6)" fg:x="100943" fg:w="47"/><text x="45.5606%" y="847.50"></text></g><g><title>TieredThresholdPolicy::compile (35 samples, 0.02%)</title><rect x="45.3160%" y="821" width="0.0157%" height="15" fill="rgb(207,23,50)" fg:x="100955" fg:w="35"/><text x="45.5660%" y="831.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (35 samples, 0.02%)</title><rect x="45.3160%" y="805" width="0.0157%" height="15" fill="rgb(253,192,32)" fg:x="100955" fg:w="35"/><text x="45.5660%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (54 samples, 0.02%)</title><rect x="45.3079%" y="885" width="0.0242%" height="15" fill="rgb(213,21,6)" fg:x="100937" fg:w="54"/><text x="45.5579%" y="895.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (54 samples, 0.02%)</title><rect x="45.3079%" y="869" width="0.0242%" height="15" fill="rgb(243,151,13)" fg:x="100937" fg:w="54"/><text x="45.5579%" y="879.50"></text></g><g><title>InterpreterRuntime::ldc (26 samples, 0.01%)</title><rect x="45.3322%" y="885" width="0.0117%" height="15" fill="rgb(233,165,41)" fg:x="100991" fg:w="26"/><text x="45.5822%" y="895.50"></text></g><g><title>ClassLoader::load_class (23 samples, 0.01%)</title><rect x="45.3631%" y="773" width="0.0103%" height="15" fill="rgb(246,176,45)" fg:x="101060" fg:w="23"/><text x="45.6131%" y="783.50"></text></g><g><title>ConstantPool::klass_ref_at (30 samples, 0.01%)</title><rect x="45.3604%" y="837" width="0.0135%" height="15" fill="rgb(217,170,52)" fg:x="101054" fg:w="30"/><text x="45.6104%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (27 samples, 0.01%)</title><rect x="45.3618%" y="821" width="0.0121%" height="15" fill="rgb(214,203,54)" fg:x="101057" fg:w="27"/><text x="45.6118%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (27 samples, 0.01%)</title><rect x="45.3618%" y="805" width="0.0121%" height="15" fill="rgb(248,215,49)" fg:x="101057" fg:w="27"/><text x="45.6118%" y="815.50"></text></g><g><title>SystemDictionary::load_instance_class (24 samples, 0.01%)</title><rect x="45.3631%" y="789" width="0.0108%" height="15" fill="rgb(208,46,10)" fg:x="101060" fg:w="24"/><text x="45.6131%" y="799.50"></text></g><g><title>InstanceKlass::link_class_impl (27 samples, 0.01%)</title><rect x="45.3806%" y="805" width="0.0121%" height="15" fill="rgb(254,5,31)" fg:x="101099" fg:w="27"/><text x="45.6306%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (31 samples, 0.01%)</title><rect x="45.3797%" y="821" width="0.0139%" height="15" fill="rgb(222,104,33)" fg:x="101097" fg:w="31"/><text x="45.6297%" y="831.50"></text></g><g><title>LinkResolver::resolve_field_access (80 samples, 0.04%)</title><rect x="45.3600%" y="853" width="0.0359%" height="15" fill="rgb(248,49,16)" fg:x="101053" fg:w="80"/><text x="45.6100%" y="863.50"></text></g><g><title>LinkResolver::resolve_field (49 samples, 0.02%)</title><rect x="45.3739%" y="837" width="0.0220%" height="15" fill="rgb(232,198,41)" fg:x="101084" fg:w="49"/><text x="45.6239%" y="847.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (103 samples, 0.05%)</title><rect x="45.3510%" y="869" width="0.0462%" height="15" fill="rgb(214,125,3)" fg:x="101033" fg:w="103"/><text x="45.6010%" y="879.50"></text></g><g><title>ClassFileParser::parse_constant_pool (25 samples, 0.01%)</title><rect x="45.4210%" y="709" width="0.0112%" height="15" fill="rgb(229,220,28)" fg:x="101189" fg:w="25"/><text x="45.6710%" y="719.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (24 samples, 0.01%)</title><rect x="45.4215%" y="693" width="0.0108%" height="15" fill="rgb(222,64,37)" fg:x="101190" fg:w="24"/><text x="45.6715%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (40 samples, 0.02%)</title><rect x="45.4210%" y="741" width="0.0180%" height="15" fill="rgb(249,184,13)" fg:x="101189" fg:w="40"/><text x="45.6710%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (40 samples, 0.02%)</title><rect x="45.4210%" y="725" width="0.0180%" height="15" fill="rgb(252,176,6)" fg:x="101189" fg:w="40"/><text x="45.6710%" y="735.50"></text></g><g><title>ClassLoader::load_class (56 samples, 0.03%)</title><rect x="45.4179%" y="773" width="0.0251%" height="15" fill="rgb(228,153,7)" fg:x="101182" fg:w="56"/><text x="45.6679%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (49 samples, 0.02%)</title><rect x="45.4210%" y="757" width="0.0220%" height="15" fill="rgb(242,193,5)" fg:x="101189" fg:w="49"/><text x="45.6710%" y="767.50"></text></g><g><title>SystemDictionary::load_instance_class (68 samples, 0.03%)</title><rect x="45.4179%" y="789" width="0.0305%" height="15" fill="rgb(232,140,9)" fg:x="101182" fg:w="68"/><text x="45.6679%" y="799.50"></text></g><g><title>ConstantPool::klass_ref_at (81 samples, 0.04%)</title><rect x="45.4130%" y="837" width="0.0364%" height="15" fill="rgb(213,222,16)" fg:x="101171" fg:w="81"/><text x="45.6630%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (78 samples, 0.04%)</title><rect x="45.4143%" y="821" width="0.0350%" height="15" fill="rgb(222,75,50)" fg:x="101174" fg:w="78"/><text x="45.6643%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (78 samples, 0.04%)</title><rect x="45.4143%" y="805" width="0.0350%" height="15" fill="rgb(205,180,2)" fg:x="101174" fg:w="78"/><text x="45.6643%" y="815.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (24 samples, 0.01%)</title><rect x="45.4579%" y="837" width="0.0108%" height="15" fill="rgb(216,34,7)" fg:x="101271" fg:w="24"/><text x="45.7079%" y="847.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (26 samples, 0.01%)</title><rect x="45.4740%" y="821" width="0.0117%" height="15" fill="rgb(253,16,32)" fg:x="101307" fg:w="26"/><text x="45.7240%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (41 samples, 0.02%)</title><rect x="45.4686%" y="837" width="0.0184%" height="15" fill="rgb(208,97,28)" fg:x="101295" fg:w="41"/><text x="45.7186%" y="847.50"></text></g><g><title>Rewriter::rewrite (31 samples, 0.01%)</title><rect x="45.5009%" y="789" width="0.0139%" height="15" fill="rgb(225,92,11)" fg:x="101367" fg:w="31"/><text x="45.7509%" y="799.50"></text></g><g><title>Rewriter::Rewriter (31 samples, 0.01%)</title><rect x="45.5009%" y="773" width="0.0139%" height="15" fill="rgb(243,38,12)" fg:x="101367" fg:w="31"/><text x="45.7509%" y="783.50"></text></g><g><title>Rewriter::rewrite_bytecodes (24 samples, 0.01%)</title><rect x="45.5041%" y="757" width="0.0108%" height="15" fill="rgb(208,139,16)" fg:x="101374" fg:w="24"/><text x="45.7541%" y="767.50"></text></g><g><title>InstanceKlass::link_class_impl (72 samples, 0.03%)</title><rect x="45.4888%" y="805" width="0.0323%" height="15" fill="rgb(227,24,9)" fg:x="101340" fg:w="72"/><text x="45.7388%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (74 samples, 0.03%)</title><rect x="45.4888%" y="821" width="0.0332%" height="15" fill="rgb(206,62,11)" fg:x="101340" fg:w="74"/><text x="45.7388%" y="831.50"></text></g><g><title>LinkResolver::resolve_method (24 samples, 0.01%)</title><rect x="45.5234%" y="821" width="0.0108%" height="15" fill="rgb(228,134,27)" fg:x="101417" fg:w="24"/><text x="45.7734%" y="831.50"></text></g><g><title>LinkResolver::resolve_static_call (106 samples, 0.05%)</title><rect x="45.4870%" y="837" width="0.0476%" height="15" fill="rgb(205,55,33)" fg:x="101336" fg:w="106"/><text x="45.7370%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (277 samples, 0.12%)</title><rect x="45.4107%" y="853" width="0.1243%" height="15" fill="rgb(243,75,43)" fg:x="101166" fg:w="277"/><text x="45.6607%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (313 samples, 0.14%)</title><rect x="45.3973%" y="869" width="0.1405%" height="15" fill="rgb(223,27,42)" fg:x="101136" fg:w="313"/><text x="45.6473%" y="879.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (37 samples, 0.02%)</title><rect x="45.5382%" y="821" width="0.0166%" height="15" fill="rgb(232,189,33)" fg:x="101450" fg:w="37"/><text x="45.7882%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (49 samples, 0.02%)</title><rect x="45.5378%" y="869" width="0.0220%" height="15" fill="rgb(210,9,39)" fg:x="101449" fg:w="49"/><text x="45.7878%" y="879.50"></text></g><g><title>LinkResolver::resolve_invoke (49 samples, 0.02%)</title><rect x="45.5378%" y="853" width="0.0220%" height="15" fill="rgb(242,85,26)" fg:x="101449" fg:w="49"/><text x="45.7878%" y="863.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (49 samples, 0.02%)</title><rect x="45.5378%" y="837" width="0.0220%" height="15" fill="rgb(248,44,4)" fg:x="101449" fg:w="49"/><text x="45.7878%" y="847.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (473 samples, 0.21%)</title><rect x="45.3492%" y="885" width="0.2123%" height="15" fill="rgb(250,96,46)" fg:x="101029" fg:w="473"/><text x="45.5992%" y="895.50"></text></g><g><title>ConstantPool::string_at_impl (27 samples, 0.01%)</title><rect x="45.5629%" y="837" width="0.0121%" height="15" fill="rgb(229,116,26)" fg:x="101505" fg:w="27"/><text x="45.8129%" y="847.50"></text></g><g><title>StringTable::intern (25 samples, 0.01%)</title><rect x="45.5638%" y="821" width="0.0112%" height="15" fill="rgb(246,94,34)" fg:x="101507" fg:w="25"/><text x="45.8138%" y="831.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (29 samples, 0.01%)</title><rect x="45.5624%" y="869" width="0.0130%" height="15" fill="rgb(251,73,21)" fg:x="101504" fg:w="29"/><text x="45.8124%" y="879.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (29 samples, 0.01%)</title><rect x="45.5624%" y="853" width="0.0130%" height="15" fill="rgb(254,121,25)" fg:x="101504" fg:w="29"/><text x="45.8124%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (35 samples, 0.02%)</title><rect x="45.5615%" y="885" width="0.0157%" height="15" fill="rgb(215,161,49)" fg:x="101502" fg:w="35"/><text x="45.8115%" y="895.50"></text></g><g><title>JVM_ConstantPoolGetUTF8At (23 samples, 0.01%)</title><rect x="45.5867%" y="885" width="0.0103%" height="15" fill="rgb(221,43,13)" fg:x="101558" fg:w="23"/><text x="45.8367%" y="895.50"></text></g><g><title>JVM_FindLoadedClass (24 samples, 0.01%)</title><rect x="45.6019%" y="885" width="0.0108%" height="15" fill="rgb(249,5,37)" fg:x="101592" fg:w="24"/><text x="45.8519%" y="895.50"></text></g><g><title>JVM_GetClassDeclaredConstructors (25 samples, 0.01%)</title><rect x="45.6190%" y="885" width="0.0112%" height="15" fill="rgb(226,25,44)" fg:x="101630" fg:w="25"/><text x="45.8690%" y="895.50"></text></g><g><title>get_class_declared_methods_helper (25 samples, 0.01%)</title><rect x="45.6190%" y="869" width="0.0112%" height="15" fill="rgb(238,189,16)" fg:x="101630" fg:w="25"/><text x="45.8690%" y="879.50"></text></g><g><title>Reflection::new_method (30 samples, 0.01%)</title><rect x="45.6423%" y="853" width="0.0135%" height="15" fill="rgb(251,186,8)" fg:x="101682" fg:w="30"/><text x="45.8923%" y="863.50"></text></g><g><title>JVM_GetClassDeclaredMethods (49 samples, 0.02%)</title><rect x="45.6343%" y="885" width="0.0220%" height="15" fill="rgb(254,34,31)" fg:x="101664" fg:w="49"/><text x="45.8843%" y="895.50"></text></g><g><title>get_class_declared_methods_helper (49 samples, 0.02%)</title><rect x="45.6343%" y="869" width="0.0220%" height="15" fill="rgb(225,215,27)" fg:x="101664" fg:w="49"/><text x="45.8843%" y="879.50"></text></g><g><title>JVM_InitClassName (23 samples, 0.01%)</title><rect x="45.6639%" y="885" width="0.0103%" height="15" fill="rgb(221,192,48)" fg:x="101730" fg:w="23"/><text x="45.9139%" y="895.50"></text></g><g><title>JVM_StartThread (31 samples, 0.01%)</title><rect x="45.6922%" y="885" width="0.0139%" height="15" fill="rgb(219,137,20)" fg:x="101793" fg:w="31"/><text x="45.9422%" y="895.50"></text></g><g><title>AllocateHeap (27 samples, 0.01%)</title><rect x="45.7550%" y="709" width="0.0121%" height="15" fill="rgb(219,84,11)" fg:x="101933" fg:w="27"/><text x="46.0050%" y="719.50"></text></g><g><title>os::malloc (26 samples, 0.01%)</title><rect x="45.7555%" y="693" width="0.0117%" height="15" fill="rgb(224,10,23)" fg:x="101934" fg:w="26"/><text x="46.0055%" y="703.50"></text></g><g><title>__GI___libc_malloc (23 samples, 0.01%)</title><rect x="45.7568%" y="677" width="0.0103%" height="15" fill="rgb(248,22,39)" fg:x="101937" fg:w="23"/><text x="46.0068%" y="687.50"></text></g><g><title>SymbolTable::basic_add (61 samples, 0.03%)</title><rect x="45.7465%" y="725" width="0.0274%" height="15" fill="rgb(212,154,20)" fg:x="101914" fg:w="61"/><text x="45.9965%" y="735.50"></text></g><g><title>SymbolTable::add (65 samples, 0.03%)</title><rect x="45.7451%" y="741" width="0.0292%" height="15" fill="rgb(236,199,50)" fg:x="101911" fg:w="65"/><text x="45.9951%" y="751.50"></text></g><g><title>SymbolTable::lookup_only (452 samples, 0.20%)</title><rect x="45.7743%" y="741" width="0.2029%" height="15" fill="rgb(211,9,17)" fg:x="101976" fg:w="452"/><text x="46.0243%" y="751.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (550 samples, 0.25%)</title><rect x="45.7317%" y="757" width="0.2469%" height="15" fill="rgb(243,216,36)" fg:x="101881" fg:w="550"/><text x="45.9817%" y="767.50"></text></g><g><title>ClassFileParser::parse_constant_pool (571 samples, 0.26%)</title><rect x="45.7254%" y="773" width="0.2563%" height="15" fill="rgb(250,2,10)" fg:x="101867" fg:w="571"/><text x="45.9754%" y="783.50"></text></g><g><title>Method::allocate (35 samples, 0.02%)</title><rect x="46.0311%" y="741" width="0.0157%" height="15" fill="rgb(226,50,48)" fg:x="102548" fg:w="35"/><text x="46.2811%" y="751.50"></text></g><g><title>ClassFileParser::parse_method (143 samples, 0.06%)</title><rect x="45.9938%" y="757" width="0.0642%" height="15" fill="rgb(243,81,16)" fg:x="102465" fg:w="143"/><text x="46.2438%" y="767.50"></text></g><g><title>ClassFileParser::parse_methods (148 samples, 0.07%)</title><rect x="45.9925%" y="773" width="0.0664%" height="15" fill="rgb(250,14,2)" fg:x="102462" fg:w="148"/><text x="46.2425%" y="783.50"></text></g><g><title>ConstantPool::allocate (27 samples, 0.01%)</title><rect x="46.0589%" y="773" width="0.0121%" height="15" fill="rgb(233,135,29)" fg:x="102610" fg:w="27"/><text x="46.3089%" y="783.50"></text></g><g><title>Metaspace::allocate (27 samples, 0.01%)</title><rect x="46.0589%" y="757" width="0.0121%" height="15" fill="rgb(224,64,43)" fg:x="102610" fg:w="27"/><text x="46.3089%" y="767.50"></text></g><g><title>ClassFileParser::ClassFileParser (782 samples, 0.35%)</title><rect x="45.7209%" y="805" width="0.3510%" height="15" fill="rgb(238,84,13)" fg:x="101857" fg:w="782"/><text x="45.9709%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (782 samples, 0.35%)</title><rect x="45.7209%" y="789" width="0.3510%" height="15" fill="rgb(253,48,26)" fg:x="101857" fg:w="782"/><text x="45.9709%" y="799.50"></text></g><g><title>InstanceKlass::find_method (29 samples, 0.01%)</title><rect x="46.0997%" y="741" width="0.0130%" height="15" fill="rgb(205,223,31)" fg:x="102701" fg:w="29"/><text x="46.3497%" y="751.50"></text></g><g><title>InstanceKlass::find_method_index (29 samples, 0.01%)</title><rect x="46.0997%" y="725" width="0.0130%" height="15" fill="rgb(221,41,32)" fg:x="102701" fg:w="29"/><text x="46.3497%" y="735.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (102 samples, 0.05%)</title><rect x="46.0822%" y="757" width="0.0458%" height="15" fill="rgb(213,158,31)" fg:x="102662" fg:w="102"/><text x="46.3322%" y="767.50"></text></g><g><title>resource_allocate_bytes (29 samples, 0.01%)</title><rect x="46.1150%" y="741" width="0.0130%" height="15" fill="rgb(245,126,43)" fg:x="102735" fg:w="29"/><text x="46.3650%" y="751.50"></text></g><g><title>DefaultMethods::generate_default_methods (151 samples, 0.07%)</title><rect x="46.0755%" y="773" width="0.0678%" height="15" fill="rgb(227,7,22)" fg:x="102647" fg:w="151"/><text x="46.3255%" y="783.50"></text></g><g><title>ClassFileParser::fill_instance_klass (187 samples, 0.08%)</title><rect x="46.0719%" y="789" width="0.0839%" height="15" fill="rgb(252,90,44)" fg:x="102639" fg:w="187"/><text x="46.3219%" y="799.50"></text></g><g><title>ClassFileParser::create_instance_klass (199 samples, 0.09%)</title><rect x="46.0719%" y="805" width="0.0893%" height="15" fill="rgb(253,91,0)" fg:x="102639" fg:w="199"/><text x="46.3219%" y="815.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (50 samples, 0.02%)</title><rect x="46.1612%" y="805" width="0.0224%" height="15" fill="rgb(252,175,49)" fg:x="102838" fg:w="50"/><text x="46.4112%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (1,033 samples, 0.46%)</title><rect x="45.7209%" y="821" width="0.4637%" height="15" fill="rgb(246,150,1)" fg:x="101857" fg:w="1033"/><text x="45.9709%" y="831.50"></text></g><g><title>JVM_DefineClassWithSource (1,078 samples, 0.48%)</title><rect x="45.7160%" y="869" width="0.4839%" height="15" fill="rgb(241,192,25)" fg:x="101846" fg:w="1078"/><text x="45.9660%" y="879.50"></text></g><g><title>jvm_define_class_common (1,077 samples, 0.48%)</title><rect x="45.7164%" y="853" width="0.4834%" height="15" fill="rgb(239,187,11)" fg:x="101847" fg:w="1077"/><text x="45.9664%" y="863.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,068 samples, 0.48%)</title><rect x="45.7204%" y="837" width="0.4794%" height="15" fill="rgb(218,202,51)" fg:x="101856" fg:w="1068"/><text x="45.9704%" y="847.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (33 samples, 0.01%)</title><rect x="46.1850%" y="821" width="0.0148%" height="15" fill="rgb(225,176,8)" fg:x="102891" fg:w="33"/><text x="46.4350%" y="831.50"></text></g><g><title>SystemDictionary::define_instance_class (31 samples, 0.01%)</title><rect x="46.1859%" y="805" width="0.0139%" height="15" fill="rgb(219,122,41)" fg:x="102893" fg:w="31"/><text x="46.4359%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,120 samples, 0.50%)</title><rect x="45.7151%" y="885" width="0.5027%" height="15" fill="rgb(248,140,20)" fg:x="101844" fg:w="1120"/><text x="45.9651%" y="895.50"></text></g><g><title>ClassLoader::load_class (47 samples, 0.02%)</title><rect x="46.2259%" y="805" width="0.0211%" height="15" fill="rgb(245,41,37)" fg:x="102982" fg:w="47"/><text x="46.4759%" y="815.50"></text></g><g><title>JVM_FindClassFromBootLoader (72 samples, 0.03%)</title><rect x="46.2182%" y="869" width="0.0323%" height="15" fill="rgb(235,82,39)" fg:x="102965" fg:w="72"/><text x="46.4682%" y="879.50"></text></g><g><title>SystemDictionary::resolve_or_null (68 samples, 0.03%)</title><rect x="46.2200%" y="853" width="0.0305%" height="15" fill="rgb(230,108,42)" fg:x="102969" fg:w="68"/><text x="46.4700%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (68 samples, 0.03%)</title><rect x="46.2200%" y="837" width="0.0305%" height="15" fill="rgb(215,150,50)" fg:x="102969" fg:w="68"/><text x="46.4700%" y="847.50"></text></g><g><title>SystemDictionary::load_instance_class (55 samples, 0.02%)</title><rect x="46.2259%" y="821" width="0.0247%" height="15" fill="rgb(233,212,5)" fg:x="102982" fg:w="55"/><text x="46.4759%" y="831.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (96 samples, 0.04%)</title><rect x="46.2178%" y="885" width="0.0431%" height="15" fill="rgb(245,80,22)" fg:x="102964" fg:w="96"/><text x="46.4678%" y="895.50"></text></g><g><title>Java_java_lang_Class_forName0 (32 samples, 0.01%)</title><rect x="46.2609%" y="885" width="0.0144%" height="15" fill="rgb(238,129,16)" fg:x="103060" fg:w="32"/><text x="46.5109%" y="895.50"></text></g><g><title>MHN_resolve_Mem (23 samples, 0.01%)</title><rect x="46.2842%" y="885" width="0.0103%" height="15" fill="rgb(240,19,0)" fg:x="103112" fg:w="23"/><text x="46.5342%" y="895.50"></text></g><g><title>ClassFileParser::ClassFileParser (28 samples, 0.01%)</title><rect x="46.3242%" y="837" width="0.0126%" height="15" fill="rgb(232,42,35)" fg:x="103201" fg:w="28"/><text x="46.5742%" y="847.50"></text></g><g><title>ClassFileParser::parse_stream (28 samples, 0.01%)</title><rect x="46.3242%" y="821" width="0.0126%" height="15" fill="rgb(223,130,24)" fg:x="103201" fg:w="28"/><text x="46.5742%" y="831.50"></text></g><g><title>KlassFactory::create_from_stream (50 samples, 0.02%)</title><rect x="46.3242%" y="853" width="0.0224%" height="15" fill="rgb(237,16,22)" fg:x="103201" fg:w="50"/><text x="46.5742%" y="863.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (73 samples, 0.03%)</title><rect x="46.3143%" y="885" width="0.0328%" height="15" fill="rgb(248,192,20)" fg:x="103179" fg:w="73"/><text x="46.5643%" y="895.50"></text></g><g><title>SystemDictionary::parse_stream (70 samples, 0.03%)</title><rect x="46.3156%" y="869" width="0.0314%" height="15" fill="rgb(233,167,2)" fg:x="103182" fg:w="70"/><text x="46.5656%" y="879.50"></text></g><g><title>[perf-945576.map] (4,824 samples, 2.17%)</title><rect x="44.2010%" y="901" width="2.1654%" height="15" fill="rgb(252,71,44)" fg:x="98471" fg:w="4824"/><text x="44.4510%" y="911.50">[..</text></g><g><title>SharedRuntime::find_callee_info_helper (29 samples, 0.01%)</title><rect x="46.3861%" y="869" width="0.0130%" height="15" fill="rgb(238,37,47)" fg:x="103339" fg:w="29"/><text x="46.6361%" y="879.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (46 samples, 0.02%)</title><rect x="46.3803%" y="885" width="0.0206%" height="15" fill="rgb(214,202,54)" fg:x="103326" fg:w="46"/><text x="46.6303%" y="895.50"></text></g><g><title>generic_file_buffered_read (35 samples, 0.02%)</title><rect x="46.4117%" y="741" width="0.0157%" height="15" fill="rgb(254,165,40)" fg:x="103396" fg:w="35"/><text x="46.6617%" y="751.50"></text></g><g><title>new_sync_read (37 samples, 0.02%)</title><rect x="46.4113%" y="757" width="0.0166%" height="15" fill="rgb(246,173,38)" fg:x="103395" fg:w="37"/><text x="46.6613%" y="767.50"></text></g><g><title>handleRead (47 samples, 0.02%)</title><rect x="46.4090%" y="869" width="0.0211%" height="15" fill="rgb(215,3,27)" fg:x="103390" fg:w="47"/><text x="46.6590%" y="879.50"></text></g><g><title>__libc_read (47 samples, 0.02%)</title><rect x="46.4090%" y="853" width="0.0211%" height="15" fill="rgb(239,169,51)" fg:x="103390" fg:w="47"/><text x="46.6590%" y="863.50"></text></g><g><title>__libc_read (46 samples, 0.02%)</title><rect x="46.4095%" y="837" width="0.0206%" height="15" fill="rgb(212,5,25)" fg:x="103391" fg:w="46"/><text x="46.6595%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.02%)</title><rect x="46.4104%" y="821" width="0.0198%" height="15" fill="rgb(243,45,17)" fg:x="103393" fg:w="44"/><text x="46.6604%" y="831.50"></text></g><g><title>do_syscall_64 (44 samples, 0.02%)</title><rect x="46.4104%" y="805" width="0.0198%" height="15" fill="rgb(242,97,9)" fg:x="103393" fg:w="44"/><text x="46.6604%" y="815.50"></text></g><g><title>ksys_read (44 samples, 0.02%)</title><rect x="46.4104%" y="789" width="0.0198%" height="15" fill="rgb(228,71,31)" fg:x="103393" fg:w="44"/><text x="46.6604%" y="799.50"></text></g><g><title>vfs_read (42 samples, 0.02%)</title><rect x="46.4113%" y="773" width="0.0189%" height="15" fill="rgb(252,184,16)" fg:x="103395" fg:w="42"/><text x="46.6613%" y="783.50"></text></g><g><title>readBytes (75 samples, 0.03%)</title><rect x="46.4063%" y="885" width="0.0337%" height="15" fill="rgb(236,169,46)" fg:x="103384" fg:w="75"/><text x="46.6563%" y="895.50"></text></g><g><title>[unknown] (168 samples, 0.08%)</title><rect x="46.3664%" y="901" width="0.0754%" height="15" fill="rgb(207,17,47)" fg:x="103295" fg:w="168"/><text x="46.6164%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (232 samples, 0.10%)</title><rect x="46.4508%" y="837" width="0.1041%" height="15" fill="rgb(206,201,28)" fg:x="103483" fg:w="232"/><text x="46.7008%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (229 samples, 0.10%)</title><rect x="46.4521%" y="821" width="0.1028%" height="15" fill="rgb(224,184,23)" fg:x="103486" fg:w="229"/><text x="46.7021%" y="831.50"></text></g><g><title>native_write_msr (229 samples, 0.10%)</title><rect x="46.4521%" y="805" width="0.1028%" height="15" fill="rgb(208,139,48)" fg:x="103486" fg:w="229"/><text x="46.7021%" y="815.50"></text></g><g><title>schedule_tail (248 samples, 0.11%)</title><rect x="46.4481%" y="869" width="0.1113%" height="15" fill="rgb(208,130,10)" fg:x="103477" fg:w="248"/><text x="46.6981%" y="879.50"></text></g><g><title>finish_task_switch (247 samples, 0.11%)</title><rect x="46.4485%" y="853" width="0.1109%" height="15" fill="rgb(211,213,45)" fg:x="103478" fg:w="247"/><text x="46.6985%" y="863.50"></text></g><g><title>ret_from_fork (260 samples, 0.12%)</title><rect x="46.4454%" y="885" width="0.1167%" height="15" fill="rgb(235,100,30)" fg:x="103471" fg:w="260"/><text x="46.6954%" y="895.50"></text></g><g><title>init_globals (33 samples, 0.01%)</title><rect x="46.5634%" y="821" width="0.0148%" height="15" fill="rgb(206,144,31)" fg:x="103734" fg:w="33"/><text x="46.8134%" y="831.50"></text></g><g><title>JNI_CreateJavaVM (39 samples, 0.02%)</title><rect x="46.5621%" y="853" width="0.0175%" height="15" fill="rgb(224,200,26)" fg:x="103731" fg:w="39"/><text x="46.8121%" y="863.50"></text></g><g><title>Threads::create_vm (39 samples, 0.02%)</title><rect x="46.5621%" y="837" width="0.0175%" height="15" fill="rgb(247,104,53)" fg:x="103731" fg:w="39"/><text x="46.8121%" y="847.50"></text></g><g><title>JavaMain (41 samples, 0.02%)</title><rect x="46.5621%" y="869" width="0.0184%" height="15" fill="rgb(220,14,17)" fg:x="103731" fg:w="41"/><text x="46.8121%" y="879.50"></text></g><g><title>Monitor::wait (26 samples, 0.01%)</title><rect x="46.5827%" y="853" width="0.0117%" height="15" fill="rgb(230,140,40)" fg:x="103777" fg:w="26"/><text x="46.8327%" y="863.50"></text></g><g><title>Monitor::IWait (26 samples, 0.01%)</title><rect x="46.5827%" y="837" width="0.0117%" height="15" fill="rgb(229,2,41)" fg:x="103777" fg:w="26"/><text x="46.8327%" y="847.50"></text></g><g><title>Thread::call_run (23 samples, 0.01%)</title><rect x="46.5944%" y="853" width="0.0103%" height="15" fill="rgb(232,89,16)" fg:x="103803" fg:w="23"/><text x="46.8444%" y="863.50"></text></g><g><title>__GI___clone (384 samples, 0.17%)</title><rect x="46.4418%" y="901" width="0.1724%" height="15" fill="rgb(247,59,52)" fg:x="103463" fg:w="384"/><text x="46.6918%" y="911.50"></text></g><g><title>start_thread (116 samples, 0.05%)</title><rect x="46.5621%" y="885" width="0.0521%" height="15" fill="rgb(226,110,21)" fg:x="103731" fg:w="116"/><text x="46.8121%" y="895.50"></text></g><g><title>thread_native_entry (71 samples, 0.03%)</title><rect x="46.5823%" y="869" width="0.0319%" height="15" fill="rgb(224,176,43)" fg:x="103776" fg:w="71"/><text x="46.8323%" y="879.50"></text></g><g><title>java (5,677 samples, 2.55%)</title><rect x="44.0812%" y="917" width="2.5483%" height="15" fill="rgb(221,73,6)" fg:x="98204" fg:w="5677"/><text x="44.3312%" y="927.50">ja..</text></g><g><title>[[heap]] (40 samples, 0.02%)</title><rect x="46.6294%" y="901" width="0.0180%" height="15" fill="rgb(232,78,19)" fg:x="103881" fg:w="40"/><text x="46.8794%" y="911.50"></text></g><g><title>filemap_map_pages (35 samples, 0.02%)</title><rect x="47.5020%" y="805" width="0.0157%" height="15" fill="rgb(233,112,48)" fg:x="105825" fg:w="35"/><text x="47.7520%" y="815.50"></text></g><g><title>asm_exc_page_fault (54 samples, 0.02%)</title><rect x="47.4948%" y="869" width="0.0242%" height="15" fill="rgb(243,131,47)" fg:x="105809" fg:w="54"/><text x="47.7448%" y="879.50"></text></g><g><title>exc_page_fault (53 samples, 0.02%)</title><rect x="47.4953%" y="853" width="0.0238%" height="15" fill="rgb(226,51,1)" fg:x="105810" fg:w="53"/><text x="47.7453%" y="863.50"></text></g><g><title>do_user_addr_fault (52 samples, 0.02%)</title><rect x="47.4957%" y="837" width="0.0233%" height="15" fill="rgb(247,58,7)" fg:x="105811" fg:w="52"/><text x="47.7457%" y="847.50"></text></g><g><title>handle_mm_fault (47 samples, 0.02%)</title><rect x="47.4980%" y="821" width="0.0211%" height="15" fill="rgb(209,7,32)" fg:x="105816" fg:w="47"/><text x="47.7480%" y="831.50"></text></g><g><title>[libc-2.31.so] (264 samples, 0.12%)</title><rect x="47.4010%" y="885" width="0.1185%" height="15" fill="rgb(209,39,41)" fg:x="105600" fg:w="264"/><text x="47.6510%" y="895.50"></text></g><g><title>btrfs_lookup (25 samples, 0.01%)</title><rect x="47.5254%" y="757" width="0.0112%" height="15" fill="rgb(226,182,46)" fg:x="105877" fg:w="25"/><text x="47.7754%" y="767.50"></text></g><g><title>btrfs_lookup_dentry (25 samples, 0.01%)</title><rect x="47.5254%" y="741" width="0.0112%" height="15" fill="rgb(230,219,10)" fg:x="105877" fg:w="25"/><text x="47.7754%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (24 samples, 0.01%)</title><rect x="47.5258%" y="725" width="0.0108%" height="15" fill="rgb(227,175,30)" fg:x="105878" fg:w="24"/><text x="47.7758%" y="735.50"></text></g><g><title>btrfs_search_slot (24 samples, 0.01%)</title><rect x="47.5258%" y="709" width="0.0108%" height="15" fill="rgb(217,2,50)" fg:x="105878" fg:w="24"/><text x="47.7758%" y="719.50"></text></g><g><title>filename_lookup (39 samples, 0.02%)</title><rect x="47.5195%" y="821" width="0.0175%" height="15" fill="rgb(229,160,0)" fg:x="105864" fg:w="39"/><text x="47.7695%" y="831.50"></text></g><g><title>path_lookupat (37 samples, 0.02%)</title><rect x="47.5204%" y="805" width="0.0166%" height="15" fill="rgb(207,78,37)" fg:x="105866" fg:w="37"/><text x="47.7704%" y="815.50"></text></g><g><title>walk_component (27 samples, 0.01%)</title><rect x="47.5249%" y="789" width="0.0121%" height="15" fill="rgb(225,57,0)" fg:x="105876" fg:w="27"/><text x="47.7749%" y="799.50"></text></g><g><title>__lookup_slow (26 samples, 0.01%)</title><rect x="47.5254%" y="773" width="0.0117%" height="15" fill="rgb(232,154,2)" fg:x="105877" fg:w="26"/><text x="47.7754%" y="783.50"></text></g><g><title>__GI___access (51 samples, 0.02%)</title><rect x="47.5195%" y="885" width="0.0229%" height="15" fill="rgb(241,212,25)" fg:x="105864" fg:w="51"/><text x="47.7695%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.02%)</title><rect x="47.5195%" y="869" width="0.0229%" height="15" fill="rgb(226,69,20)" fg:x="105864" fg:w="51"/><text x="47.7695%" y="879.50"></text></g><g><title>do_syscall_64 (51 samples, 0.02%)</title><rect x="47.5195%" y="853" width="0.0229%" height="15" fill="rgb(247,184,54)" fg:x="105864" fg:w="51"/><text x="47.7695%" y="863.50"></text></g><g><title>do_faccessat (51 samples, 0.02%)</title><rect x="47.5195%" y="837" width="0.0229%" height="15" fill="rgb(210,145,0)" fg:x="105864" fg:w="51"/><text x="47.7695%" y="847.50"></text></g><g><title>__GI___libc_realloc (28 samples, 0.01%)</title><rect x="47.5613%" y="885" width="0.0126%" height="15" fill="rgb(253,82,12)" fg:x="105957" fg:w="28"/><text x="47.8113%" y="895.50"></text></g><g><title>_int_realloc (27 samples, 0.01%)</title><rect x="47.5617%" y="869" width="0.0121%" height="15" fill="rgb(245,42,11)" fg:x="105958" fg:w="27"/><text x="47.8117%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (449 samples, 0.20%)</title><rect x="47.6353%" y="709" width="0.2015%" height="15" fill="rgb(219,147,32)" fg:x="106122" fg:w="449"/><text x="47.8853%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (443 samples, 0.20%)</title><rect x="47.6380%" y="693" width="0.1989%" height="15" fill="rgb(246,12,7)" fg:x="106128" fg:w="443"/><text x="47.8880%" y="703.50"></text></g><g><title>native_write_msr (441 samples, 0.20%)</title><rect x="47.6389%" y="677" width="0.1980%" height="15" fill="rgb(243,50,9)" fg:x="106130" fg:w="441"/><text x="47.8889%" y="687.50"></text></g><g><title>finish_task_switch (467 samples, 0.21%)</title><rect x="47.6335%" y="725" width="0.2096%" height="15" fill="rgb(219,149,6)" fg:x="106118" fg:w="467"/><text x="47.8835%" y="735.50"></text></g><g><title>futex_wait_queue_me (505 samples, 0.23%)</title><rect x="47.6246%" y="773" width="0.2267%" height="15" fill="rgb(241,51,42)" fg:x="106098" fg:w="505"/><text x="47.8746%" y="783.50"></text></g><g><title>schedule (501 samples, 0.22%)</title><rect x="47.6264%" y="757" width="0.2249%" height="15" fill="rgb(226,128,27)" fg:x="106102" fg:w="501"/><text x="47.8764%" y="767.50"></text></g><g><title>__schedule (501 samples, 0.22%)</title><rect x="47.6264%" y="741" width="0.2249%" height="15" fill="rgb(244,144,4)" fg:x="106102" fg:w="501"/><text x="47.8764%" y="751.50"></text></g><g><title>do_syscall_64 (529 samples, 0.24%)</title><rect x="47.6205%" y="837" width="0.2375%" height="15" fill="rgb(221,4,13)" fg:x="106089" fg:w="529"/><text x="47.8705%" y="847.50"></text></g><g><title>__x64_sys_futex (529 samples, 0.24%)</title><rect x="47.6205%" y="821" width="0.2375%" height="15" fill="rgb(208,170,28)" fg:x="106089" fg:w="529"/><text x="47.8705%" y="831.50"></text></g><g><title>do_futex (523 samples, 0.23%)</title><rect x="47.6232%" y="805" width="0.2348%" height="15" fill="rgb(226,131,13)" fg:x="106095" fg:w="523"/><text x="47.8732%" y="815.50"></text></g><g><title>futex_wait (522 samples, 0.23%)</title><rect x="47.6237%" y="789" width="0.2343%" height="15" fill="rgb(215,72,41)" fg:x="106096" fg:w="522"/><text x="47.8737%" y="799.50"></text></g><g><title>__GI___pthread_mutex_lock (623 samples, 0.28%)</title><rect x="47.5833%" y="885" width="0.2796%" height="15" fill="rgb(243,108,20)" fg:x="106006" fg:w="623"/><text x="47.8333%" y="895.50"></text></g><g><title>__lll_lock_wait (556 samples, 0.25%)</title><rect x="47.6133%" y="869" width="0.2496%" height="15" fill="rgb(230,189,17)" fg:x="106073" fg:w="556"/><text x="47.8633%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (541 samples, 0.24%)</title><rect x="47.6201%" y="853" width="0.2428%" height="15" fill="rgb(220,50,17)" fg:x="106088" fg:w="541"/><text x="47.8701%" y="863.50"></text></g><g><title>evict (25 samples, 0.01%)</title><rect x="47.8732%" y="805" width="0.0112%" height="15" fill="rgb(248,152,48)" fg:x="106652" fg:w="25"/><text x="48.1232%" y="815.50"></text></g><g><title>btrfs_evict_inode (25 samples, 0.01%)</title><rect x="47.8732%" y="789" width="0.0112%" height="15" fill="rgb(244,91,11)" fg:x="106652" fg:w="25"/><text x="48.1232%" y="799.50"></text></g><g><title>__unlink (35 samples, 0.02%)</title><rect x="47.8732%" y="869" width="0.0157%" height="15" fill="rgb(220,157,5)" fg:x="106652" fg:w="35"/><text x="48.1232%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="47.8732%" y="853" width="0.0157%" height="15" fill="rgb(253,137,8)" fg:x="106652" fg:w="35"/><text x="48.1232%" y="863.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="47.8732%" y="837" width="0.0157%" height="15" fill="rgb(217,137,51)" fg:x="106652" fg:w="35"/><text x="48.1232%" y="847.50"></text></g><g><title>do_unlinkat (35 samples, 0.02%)</title><rect x="47.8732%" y="821" width="0.0157%" height="15" fill="rgb(218,209,53)" fg:x="106652" fg:w="35"/><text x="48.1232%" y="831.50"></text></g><g><title>__GI_remove (36 samples, 0.02%)</title><rect x="47.8732%" y="885" width="0.0162%" height="15" fill="rgb(249,137,25)" fg:x="106652" fg:w="36"/><text x="48.1232%" y="895.50"></text></g><g><title>btrfs_getxattr (25 samples, 0.01%)</title><rect x="47.8939%" y="741" width="0.0112%" height="15" fill="rgb(239,155,26)" fg:x="106698" fg:w="25"/><text x="48.1439%" y="751.50"></text></g><g><title>btrfs_lookup_xattr (25 samples, 0.01%)</title><rect x="47.8939%" y="725" width="0.0112%" height="15" fill="rgb(227,85,46)" fg:x="106698" fg:w="25"/><text x="48.1439%" y="735.50"></text></g><g><title>btrfs_search_slot (25 samples, 0.01%)</title><rect x="47.8939%" y="709" width="0.0112%" height="15" fill="rgb(251,107,43)" fg:x="106698" fg:w="25"/><text x="48.1439%" y="719.50"></text></g><g><title>dentry_needs_remove_privs (26 samples, 0.01%)</title><rect x="47.8939%" y="805" width="0.0117%" height="15" fill="rgb(234,170,33)" fg:x="106698" fg:w="26"/><text x="48.1439%" y="815.50"></text></g><g><title>security_inode_need_killpriv (26 samples, 0.01%)</title><rect x="47.8939%" y="789" width="0.0117%" height="15" fill="rgb(206,29,35)" fg:x="106698" fg:w="26"/><text x="48.1439%" y="799.50"></text></g><g><title>cap_inode_need_killpriv (26 samples, 0.01%)</title><rect x="47.8939%" y="773" width="0.0117%" height="15" fill="rgb(227,138,25)" fg:x="106698" fg:w="26"/><text x="48.1439%" y="783.50"></text></g><g><title>__vfs_getxattr (26 samples, 0.01%)</title><rect x="47.8939%" y="757" width="0.0117%" height="15" fill="rgb(249,131,35)" fg:x="106698" fg:w="26"/><text x="48.1439%" y="767.50"></text></g><g><title>__ftruncate64 (41 samples, 0.02%)</title><rect x="47.8934%" y="885" width="0.0184%" height="15" fill="rgb(239,6,40)" fg:x="106697" fg:w="41"/><text x="48.1434%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.02%)</title><rect x="47.8934%" y="869" width="0.0184%" height="15" fill="rgb(246,136,47)" fg:x="106697" fg:w="41"/><text x="48.1434%" y="879.50"></text></g><g><title>do_syscall_64 (41 samples, 0.02%)</title><rect x="47.8934%" y="853" width="0.0184%" height="15" fill="rgb(253,58,26)" fg:x="106697" fg:w="41"/><text x="48.1434%" y="863.50"></text></g><g><title>do_sys_ftruncate (41 samples, 0.02%)</title><rect x="47.8934%" y="837" width="0.0184%" height="15" fill="rgb(237,141,10)" fg:x="106697" fg:w="41"/><text x="48.1434%" y="847.50"></text></g><g><title>do_truncate (40 samples, 0.02%)</title><rect x="47.8939%" y="821" width="0.0180%" height="15" fill="rgb(234,156,12)" fg:x="106698" fg:w="40"/><text x="48.1439%" y="831.50"></text></g><g><title>do_filp_open (45 samples, 0.02%)</title><rect x="47.9231%" y="805" width="0.0202%" height="15" fill="rgb(243,224,36)" fg:x="106763" fg:w="45"/><text x="48.1731%" y="815.50"></text></g><g><title>path_openat (45 samples, 0.02%)</title><rect x="47.9231%" y="789" width="0.0202%" height="15" fill="rgb(205,229,51)" fg:x="106763" fg:w="45"/><text x="48.1731%" y="799.50"></text></g><g><title>__x64_sys_openat (49 samples, 0.02%)</title><rect x="47.9226%" y="837" width="0.0220%" height="15" fill="rgb(223,189,4)" fg:x="106762" fg:w="49"/><text x="48.1726%" y="847.50"></text></g><g><title>do_sys_openat2 (49 samples, 0.02%)</title><rect x="47.9226%" y="821" width="0.0220%" height="15" fill="rgb(249,167,54)" fg:x="106762" fg:w="49"/><text x="48.1726%" y="831.50"></text></g><g><title>__libc_open64 (51 samples, 0.02%)</title><rect x="47.9222%" y="885" width="0.0229%" height="15" fill="rgb(218,34,28)" fg:x="106761" fg:w="51"/><text x="48.1722%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.02%)</title><rect x="47.9226%" y="869" width="0.0224%" height="15" fill="rgb(232,109,42)" fg:x="106762" fg:w="50"/><text x="48.1726%" y="879.50"></text></g><g><title>do_syscall_64 (50 samples, 0.02%)</title><rect x="47.9226%" y="853" width="0.0224%" height="15" fill="rgb(248,214,46)" fg:x="106762" fg:w="50"/><text x="48.1726%" y="863.50"></text></g><g><title>ttwu_do_activate (25 samples, 0.01%)</title><rect x="48.0272%" y="757" width="0.0112%" height="15" fill="rgb(244,216,40)" fg:x="106995" fg:w="25"/><text x="48.2772%" y="767.50"></text></g><g><title>__x64_sys_futex (148 samples, 0.07%)</title><rect x="47.9756%" y="837" width="0.0664%" height="15" fill="rgb(231,226,31)" fg:x="106880" fg:w="148"/><text x="48.2256%" y="847.50"></text></g><g><title>do_futex (147 samples, 0.07%)</title><rect x="47.9760%" y="821" width="0.0660%" height="15" fill="rgb(238,38,43)" fg:x="106881" fg:w="147"/><text x="48.2260%" y="831.50"></text></g><g><title>futex_wake (138 samples, 0.06%)</title><rect x="47.9801%" y="805" width="0.0619%" height="15" fill="rgb(208,88,43)" fg:x="106890" fg:w="138"/><text x="48.2301%" y="815.50"></text></g><g><title>wake_up_q (93 samples, 0.04%)</title><rect x="48.0003%" y="789" width="0.0417%" height="15" fill="rgb(205,136,37)" fg:x="106935" fg:w="93"/><text x="48.2503%" y="799.50"></text></g><g><title>try_to_wake_up (93 samples, 0.04%)</title><rect x="48.0003%" y="773" width="0.0417%" height="15" fill="rgb(237,34,14)" fg:x="106935" fg:w="93"/><text x="48.2503%" y="783.50"></text></g><g><title>do_syscall_64 (156 samples, 0.07%)</title><rect x="47.9738%" y="853" width="0.0700%" height="15" fill="rgb(236,193,44)" fg:x="106876" fg:w="156"/><text x="48.2238%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (174 samples, 0.08%)</title><rect x="47.9729%" y="869" width="0.0781%" height="15" fill="rgb(231,48,10)" fg:x="106874" fg:w="174"/><text x="48.2229%" y="879.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (239 samples, 0.11%)</title><rect x="47.9469%" y="885" width="0.1073%" height="15" fill="rgb(213,141,34)" fg:x="106816" fg:w="239"/><text x="48.1969%" y="895.50"></text></g><g><title>__pthread_once_slow (30 samples, 0.01%)</title><rect x="48.0541%" y="885" width="0.0135%" height="15" fill="rgb(249,130,34)" fg:x="107055" fg:w="30"/><text x="48.3041%" y="895.50"></text></g><g><title>_dl_runtime_resolve_xsavec (33 samples, 0.01%)</title><rect x="48.0676%" y="885" width="0.0148%" height="15" fill="rgb(219,42,41)" fg:x="107085" fg:w="33"/><text x="48.3176%" y="895.50"></text></g><g><title>_int_free (97 samples, 0.04%)</title><rect x="48.0824%" y="885" width="0.0435%" height="15" fill="rgb(224,100,54)" fg:x="107118" fg:w="97"/><text x="48.3324%" y="895.50"></text></g><g><title>__alloc_pages_nodemask (30 samples, 0.01%)</title><rect x="48.1533%" y="805" width="0.0135%" height="15" fill="rgb(229,200,27)" fg:x="107276" fg:w="30"/><text x="48.4033%" y="815.50"></text></g><g><title>get_page_from_freelist (25 samples, 0.01%)</title><rect x="48.1556%" y="789" width="0.0112%" height="15" fill="rgb(217,118,10)" fg:x="107281" fg:w="25"/><text x="48.4056%" y="799.50"></text></g><g><title>alloc_pages_vma (32 samples, 0.01%)</title><rect x="48.1529%" y="821" width="0.0144%" height="15" fill="rgb(206,22,3)" fg:x="107275" fg:w="32"/><text x="48.4029%" y="831.50"></text></g><g><title>page_add_file_rmap (29 samples, 0.01%)</title><rect x="48.2139%" y="789" width="0.0130%" height="15" fill="rgb(232,163,46)" fg:x="107411" fg:w="29"/><text x="48.4639%" y="799.50"></text></g><g><title>alloc_set_pte (56 samples, 0.03%)</title><rect x="48.2027%" y="805" width="0.0251%" height="15" fill="rgb(206,95,13)" fg:x="107386" fg:w="56"/><text x="48.4527%" y="815.50"></text></g><g><title>filemap_map_pages (172 samples, 0.08%)</title><rect x="48.1708%" y="821" width="0.0772%" height="15" fill="rgb(253,154,18)" fg:x="107315" fg:w="172"/><text x="48.4208%" y="831.50"></text></g><g><title>xas_find (27 samples, 0.01%)</title><rect x="48.2359%" y="805" width="0.0121%" height="15" fill="rgb(219,32,23)" fg:x="107460" fg:w="27"/><text x="48.4859%" y="815.50"></text></g><g><title>handle_mm_fault (297 samples, 0.13%)</title><rect x="48.1354%" y="837" width="0.1333%" height="15" fill="rgb(230,191,45)" fg:x="107236" fg:w="297"/><text x="48.3854%" y="847.50"></text></g><g><title>exc_page_fault (315 samples, 0.14%)</title><rect x="48.1282%" y="869" width="0.1414%" height="15" fill="rgb(229,64,36)" fg:x="107220" fg:w="315"/><text x="48.3782%" y="879.50"></text></g><g><title>do_user_addr_fault (313 samples, 0.14%)</title><rect x="48.1291%" y="853" width="0.1405%" height="15" fill="rgb(205,129,25)" fg:x="107222" fg:w="313"/><text x="48.3791%" y="863.50"></text></g><g><title>asm_exc_page_fault (322 samples, 0.14%)</title><rect x="48.1260%" y="885" width="0.1445%" height="15" fill="rgb(254,112,7)" fg:x="107215" fg:w="322"/><text x="48.3760%" y="895.50"></text></g><g><title>error_entry (26 samples, 0.01%)</title><rect x="48.2768%" y="885" width="0.0117%" height="15" fill="rgb(226,53,48)" fg:x="107551" fg:w="26"/><text x="48.5268%" y="895.50"></text></g><g><title>sync_regs (23 samples, 0.01%)</title><rect x="48.2781%" y="869" width="0.0103%" height="15" fill="rgb(214,153,38)" fg:x="107554" fg:w="23"/><text x="48.5281%" y="879.50"></text></g><g><title>handle_mm_fault (62 samples, 0.03%)</title><rect x="48.3706%" y="789" width="0.0278%" height="15" fill="rgb(243,101,7)" fg:x="107760" fg:w="62"/><text x="48.6206%" y="799.50"></text></g><g><title>asm_exc_page_fault (67 samples, 0.03%)</title><rect x="48.3692%" y="837" width="0.0301%" height="15" fill="rgb(240,140,22)" fg:x="107757" fg:w="67"/><text x="48.6192%" y="847.50"></text></g><g><title>exc_page_fault (67 samples, 0.03%)</title><rect x="48.3692%" y="821" width="0.0301%" height="15" fill="rgb(235,114,2)" fg:x="107757" fg:w="67"/><text x="48.6192%" y="831.50"></text></g><g><title>do_user_addr_fault (67 samples, 0.03%)</title><rect x="48.3692%" y="805" width="0.0301%" height="15" fill="rgb(242,59,12)" fg:x="107757" fg:w="67"/><text x="48.6192%" y="815.50"></text></g><g><title>__do_sys_brk (34 samples, 0.02%)</title><rect x="48.4052%" y="725" width="0.0153%" height="15" fill="rgb(252,134,9)" fg:x="107837" fg:w="34"/><text x="48.6552%" y="735.50"></text></g><g><title>__GI___default_morecore (35 samples, 0.02%)</title><rect x="48.4052%" y="821" width="0.0157%" height="15" fill="rgb(236,4,44)" fg:x="107837" fg:w="35"/><text x="48.6552%" y="831.50"></text></g><g><title>__GI___sbrk (35 samples, 0.02%)</title><rect x="48.4052%" y="805" width="0.0157%" height="15" fill="rgb(254,172,41)" fg:x="107837" fg:w="35"/><text x="48.6552%" y="815.50"></text></g><g><title>__GI___sbrk (35 samples, 0.02%)</title><rect x="48.4052%" y="789" width="0.0157%" height="15" fill="rgb(244,63,20)" fg:x="107837" fg:w="35"/><text x="48.6552%" y="799.50"></text></g><g><title>__brk (35 samples, 0.02%)</title><rect x="48.4052%" y="773" width="0.0157%" height="15" fill="rgb(250,73,31)" fg:x="107837" fg:w="35"/><text x="48.6552%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="48.4052%" y="757" width="0.0157%" height="15" fill="rgb(241,38,36)" fg:x="107837" fg:w="35"/><text x="48.6552%" y="767.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="48.4052%" y="741" width="0.0157%" height="15" fill="rgb(245,211,2)" fg:x="107837" fg:w="35"/><text x="48.6552%" y="751.50"></text></g><g><title>sysmalloc (44 samples, 0.02%)</title><rect x="48.4043%" y="837" width="0.0198%" height="15" fill="rgb(206,120,28)" fg:x="107835" fg:w="44"/><text x="48.6543%" y="847.50"></text></g><g><title>_int_malloc (207 samples, 0.09%)</title><rect x="48.3320%" y="853" width="0.0929%" height="15" fill="rgb(211,59,34)" fg:x="107674" fg:w="207"/><text x="48.5820%" y="863.50"></text></g><g><title>tcache_get (23 samples, 0.01%)</title><rect x="48.4276%" y="853" width="0.0103%" height="15" fill="rgb(233,168,5)" fg:x="107887" fg:w="23"/><text x="48.6776%" y="863.50"></text></g><g><title>do_mmap (28 samples, 0.01%)</title><rect x="48.4451%" y="677" width="0.0126%" height="15" fill="rgb(234,33,13)" fg:x="107926" fg:w="28"/><text x="48.6951%" y="687.50"></text></g><g><title>do_syscall_64 (43 samples, 0.02%)</title><rect x="48.4451%" y="709" width="0.0193%" height="15" fill="rgb(231,150,26)" fg:x="107926" fg:w="43"/><text x="48.6951%" y="719.50"></text></g><g><title>vm_mmap_pgoff (43 samples, 0.02%)</title><rect x="48.4451%" y="693" width="0.0193%" height="15" fill="rgb(217,191,4)" fg:x="107926" fg:w="43"/><text x="48.6951%" y="703.50"></text></g><g><title>__GI___mmap64 (45 samples, 0.02%)</title><rect x="48.4447%" y="757" width="0.0202%" height="15" fill="rgb(246,198,38)" fg:x="107925" fg:w="45"/><text x="48.6947%" y="767.50"></text></g><g><title>__GI___mmap64 (45 samples, 0.02%)</title><rect x="48.4447%" y="741" width="0.0202%" height="15" fill="rgb(245,64,37)" fg:x="107925" fg:w="45"/><text x="48.6947%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.02%)</title><rect x="48.4451%" y="725" width="0.0198%" height="15" fill="rgb(250,30,36)" fg:x="107926" fg:w="44"/><text x="48.6951%" y="735.50"></text></g><g><title>arena_get2 (95 samples, 0.04%)</title><rect x="48.4384%" y="805" width="0.0426%" height="15" fill="rgb(217,86,53)" fg:x="107911" fg:w="95"/><text x="48.6884%" y="815.50"></text></g><g><title>_int_new_arena (91 samples, 0.04%)</title><rect x="48.4402%" y="789" width="0.0408%" height="15" fill="rgb(228,157,16)" fg:x="107915" fg:w="91"/><text x="48.6902%" y="799.50"></text></g><g><title>new_heap (82 samples, 0.04%)</title><rect x="48.4442%" y="773" width="0.0368%" height="15" fill="rgb(217,59,31)" fg:x="107924" fg:w="82"/><text x="48.6942%" y="783.50"></text></g><g><title>__GI___libc_malloc (408 samples, 0.18%)</title><rect x="48.2983%" y="869" width="0.1831%" height="15" fill="rgb(237,138,41)" fg:x="107599" fg:w="408"/><text x="48.5483%" y="879.50"></text></g><g><title>tcache_init (97 samples, 0.04%)</title><rect x="48.4379%" y="853" width="0.0435%" height="15" fill="rgb(227,91,49)" fg:x="107910" fg:w="97"/><text x="48.6879%" y="863.50"></text></g><g><title>tcache_init (96 samples, 0.04%)</title><rect x="48.4384%" y="837" width="0.0431%" height="15" fill="rgb(247,21,44)" fg:x="107911" fg:w="96"/><text x="48.6884%" y="847.50"></text></g><g><title>arena_get2 (96 samples, 0.04%)</title><rect x="48.4384%" y="821" width="0.0431%" height="15" fill="rgb(219,210,51)" fg:x="107911" fg:w="96"/><text x="48.6884%" y="831.50"></text></g><g><title>operator new (424 samples, 0.19%)</title><rect x="48.2974%" y="885" width="0.1903%" height="15" fill="rgb(209,140,6)" fg:x="107597" fg:w="424"/><text x="48.5474%" y="895.50"></text></g><g><title>__btrfs_unlink_inode (23 samples, 0.01%)</title><rect x="48.4904%" y="773" width="0.0103%" height="15" fill="rgb(221,188,24)" fg:x="108027" fg:w="23"/><text x="48.7404%" y="783.50"></text></g><g><title>btrfs_rename2 (53 samples, 0.02%)</title><rect x="48.4904%" y="789" width="0.0238%" height="15" fill="rgb(232,154,20)" fg:x="108027" fg:w="53"/><text x="48.7404%" y="799.50"></text></g><g><title>rename (57 samples, 0.03%)</title><rect x="48.4895%" y="885" width="0.0256%" height="15" fill="rgb(244,137,50)" fg:x="108025" fg:w="57"/><text x="48.7395%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.03%)</title><rect x="48.4895%" y="869" width="0.0256%" height="15" fill="rgb(225,185,43)" fg:x="108025" fg:w="57"/><text x="48.7395%" y="879.50"></text></g><g><title>do_syscall_64 (57 samples, 0.03%)</title><rect x="48.4895%" y="853" width="0.0256%" height="15" fill="rgb(213,205,38)" fg:x="108025" fg:w="57"/><text x="48.7395%" y="863.50"></text></g><g><title>__x64_sys_rename (57 samples, 0.03%)</title><rect x="48.4895%" y="837" width="0.0256%" height="15" fill="rgb(236,73,12)" fg:x="108025" fg:w="57"/><text x="48.7395%" y="847.50"></text></g><g><title>do_renameat2 (57 samples, 0.03%)</title><rect x="48.4895%" y="821" width="0.0256%" height="15" fill="rgb(235,219,13)" fg:x="108025" fg:w="57"/><text x="48.7395%" y="831.50"></text></g><g><title>vfs_rename (55 samples, 0.02%)</title><rect x="48.4904%" y="805" width="0.0247%" height="15" fill="rgb(218,59,36)" fg:x="108027" fg:w="55"/><text x="48.7404%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.01%)</title><rect x="48.5281%" y="661" width="0.0144%" height="15" fill="rgb(205,110,39)" fg:x="108111" fg:w="32"/><text x="48.7781%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.01%)</title><rect x="48.5281%" y="645" width="0.0144%" height="15" fill="rgb(218,206,42)" fg:x="108111" fg:w="32"/><text x="48.7781%" y="655.50"></text></g><g><title>native_write_msr (32 samples, 0.01%)</title><rect x="48.5281%" y="629" width="0.0144%" height="15" fill="rgb(248,125,24)" fg:x="108111" fg:w="32"/><text x="48.7781%" y="639.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="48.5272%" y="789" width="0.0157%" height="15" fill="rgb(242,28,27)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="799.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.02%)</title><rect x="48.5272%" y="773" width="0.0157%" height="15" fill="rgb(216,228,15)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="783.50"></text></g><g><title>do_futex (35 samples, 0.02%)</title><rect x="48.5272%" y="757" width="0.0157%" height="15" fill="rgb(235,116,46)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="767.50"></text></g><g><title>futex_wait (35 samples, 0.02%)</title><rect x="48.5272%" y="741" width="0.0157%" height="15" fill="rgb(224,18,32)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="751.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.02%)</title><rect x="48.5272%" y="725" width="0.0157%" height="15" fill="rgb(252,5,12)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="735.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="48.5272%" y="709" width="0.0157%" height="15" fill="rgb(251,36,5)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="719.50"></text></g><g><title>__schedule (35 samples, 0.02%)</title><rect x="48.5272%" y="693" width="0.0157%" height="15" fill="rgb(217,53,14)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="703.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="48.5272%" y="677" width="0.0157%" height="15" fill="rgb(215,86,45)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="687.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (38 samples, 0.02%)</title><rect x="48.5263%" y="853" width="0.0171%" height="15" fill="rgb(242,169,11)" fg:x="108107" fg:w="38"/><text x="48.7763%" y="863.50"></text></g><g><title>futex_wait_simple (36 samples, 0.02%)</title><rect x="48.5272%" y="837" width="0.0162%" height="15" fill="rgb(211,213,45)" fg:x="108109" fg:w="36"/><text x="48.7772%" y="847.50"></text></g><g><title>futex_wait (36 samples, 0.02%)</title><rect x="48.5272%" y="821" width="0.0162%" height="15" fill="rgb(205,88,11)" fg:x="108109" fg:w="36"/><text x="48.7772%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="48.5272%" y="805" width="0.0162%" height="15" fill="rgb(252,69,26)" fg:x="108109" fg:w="36"/><text x="48.7772%" y="815.50"></text></g><g><title>do_syscall_64 (26 samples, 0.01%)</title><rect x="48.5439%" y="821" width="0.0117%" height="15" fill="rgb(246,123,37)" fg:x="108146" fg:w="26"/><text x="48.7939%" y="831.50"></text></g><g><title>__x64_sys_futex (26 samples, 0.01%)</title><rect x="48.5439%" y="805" width="0.0117%" height="15" fill="rgb(212,205,5)" fg:x="108146" fg:w="26"/><text x="48.7939%" y="815.50"></text></g><g><title>do_futex (26 samples, 0.01%)</title><rect x="48.5439%" y="789" width="0.0117%" height="15" fill="rgb(253,148,0)" fg:x="108146" fg:w="26"/><text x="48.7939%" y="799.50"></text></g><g><title>futex_wake (26 samples, 0.01%)</title><rect x="48.5439%" y="773" width="0.0117%" height="15" fill="rgb(239,22,4)" fg:x="108146" fg:w="26"/><text x="48.7939%" y="783.50"></text></g><g><title>wake_up_q (23 samples, 0.01%)</title><rect x="48.5452%" y="757" width="0.0103%" height="15" fill="rgb(226,26,53)" fg:x="108149" fg:w="23"/><text x="48.7952%" y="767.50"></text></g><g><title>try_to_wake_up (23 samples, 0.01%)</title><rect x="48.5452%" y="741" width="0.0103%" height="15" fill="rgb(225,229,45)" fg:x="108149" fg:w="23"/><text x="48.7952%" y="751.50"></text></g><g><title>__pthread_cond_broadcast (73 samples, 0.03%)</title><rect x="48.5263%" y="869" width="0.0328%" height="15" fill="rgb(220,60,37)" fg:x="108107" fg:w="73"/><text x="48.7763%" y="879.50"></text></g><g><title>futex_wake (34 samples, 0.02%)</title><rect x="48.5439%" y="853" width="0.0153%" height="15" fill="rgb(217,180,35)" fg:x="108146" fg:w="34"/><text x="48.7939%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="48.5439%" y="837" width="0.0153%" height="15" fill="rgb(229,7,53)" fg:x="108146" fg:w="34"/><text x="48.7939%" y="847.50"></text></g><g><title>std::condition_variable::notify_all (74 samples, 0.03%)</title><rect x="48.5263%" y="885" width="0.0332%" height="15" fill="rgb(254,137,3)" fg:x="108107" fg:w="74"/><text x="48.7763%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (856 samples, 0.38%)</title><rect x="48.5977%" y="661" width="0.3842%" height="15" fill="rgb(215,140,41)" fg:x="108266" fg:w="856"/><text x="48.8477%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (842 samples, 0.38%)</title><rect x="48.6040%" y="645" width="0.3780%" height="15" fill="rgb(250,80,15)" fg:x="108280" fg:w="842"/><text x="48.8540%" y="655.50"></text></g><g><title>native_write_msr (837 samples, 0.38%)</title><rect x="48.6062%" y="629" width="0.3757%" height="15" fill="rgb(252,191,6)" fg:x="108285" fg:w="837"/><text x="48.8562%" y="639.50"></text></g><g><title>finish_task_switch (897 samples, 0.40%)</title><rect x="48.5910%" y="677" width="0.4026%" height="15" fill="rgb(246,217,18)" fg:x="108251" fg:w="897"/><text x="48.8410%" y="687.50"></text></g><g><title>futex_wait_queue_me (955 samples, 0.43%)</title><rect x="48.5771%" y="725" width="0.4287%" height="15" fill="rgb(223,93,7)" fg:x="108220" fg:w="955"/><text x="48.8271%" y="735.50"></text></g><g><title>schedule (948 samples, 0.43%)</title><rect x="48.5802%" y="709" width="0.4255%" height="15" fill="rgb(225,55,52)" fg:x="108227" fg:w="948"/><text x="48.8302%" y="719.50"></text></g><g><title>__schedule (948 samples, 0.43%)</title><rect x="48.5802%" y="693" width="0.4255%" height="15" fill="rgb(240,31,24)" fg:x="108227" fg:w="948"/><text x="48.8302%" y="703.50"></text></g><g><title>__x64_sys_futex (963 samples, 0.43%)</title><rect x="48.5739%" y="773" width="0.4323%" height="15" fill="rgb(205,56,52)" fg:x="108213" fg:w="963"/><text x="48.8239%" y="783.50"></text></g><g><title>do_futex (959 samples, 0.43%)</title><rect x="48.5757%" y="757" width="0.4305%" height="15" fill="rgb(246,146,12)" fg:x="108217" fg:w="959"/><text x="48.8257%" y="767.50"></text></g><g><title>futex_wait (958 samples, 0.43%)</title><rect x="48.5762%" y="741" width="0.4300%" height="15" fill="rgb(239,84,36)" fg:x="108218" fg:w="958"/><text x="48.8262%" y="751.50"></text></g><g><title>do_syscall_64 (967 samples, 0.43%)</title><rect x="48.5726%" y="789" width="0.4341%" height="15" fill="rgb(207,41,40)" fg:x="108210" fg:w="967"/><text x="48.8226%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (986 samples, 0.44%)</title><rect x="48.5717%" y="805" width="0.4426%" height="15" fill="rgb(241,179,25)" fg:x="108208" fg:w="986"/><text x="48.8217%" y="815.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (1,001 samples, 0.45%)</title><rect x="48.5654%" y="853" width="0.4493%" height="15" fill="rgb(210,0,34)" fg:x="108194" fg:w="1001"/><text x="48.8154%" y="863.50"></text></g><g><title>futex_wait_simple (992 samples, 0.45%)</title><rect x="48.5694%" y="837" width="0.4453%" height="15" fill="rgb(225,217,29)" fg:x="108203" fg:w="992"/><text x="48.8194%" y="847.50"></text></g><g><title>futex_wait (992 samples, 0.45%)</title><rect x="48.5694%" y="821" width="0.4453%" height="15" fill="rgb(216,191,38)" fg:x="108203" fg:w="992"/><text x="48.8194%" y="831.50"></text></g><g><title>mark_wake_futex (38 samples, 0.02%)</title><rect x="49.0408%" y="757" width="0.0171%" height="15" fill="rgb(232,140,52)" fg:x="109253" fg:w="38"/><text x="49.2908%" y="767.50"></text></g><g><title>_raw_spin_lock (166 samples, 0.07%)</title><rect x="49.0672%" y="725" width="0.0745%" height="15" fill="rgb(223,158,51)" fg:x="109312" fg:w="166"/><text x="49.3172%" y="735.50"></text></g><g><title>native_queued_spin_lock_slowpath (162 samples, 0.07%)</title><rect x="49.0690%" y="709" width="0.0727%" height="15" fill="rgb(235,29,51)" fg:x="109316" fg:w="162"/><text x="49.3190%" y="719.50"></text></g><g><title>select_task_rq_fair (75 samples, 0.03%)</title><rect x="49.1458%" y="725" width="0.0337%" height="15" fill="rgb(215,181,18)" fg:x="109487" fg:w="75"/><text x="49.3958%" y="735.50"></text></g><g><title>enqueue_entity (62 samples, 0.03%)</title><rect x="49.1929%" y="693" width="0.0278%" height="15" fill="rgb(227,125,34)" fg:x="109592" fg:w="62"/><text x="49.4429%" y="703.50"></text></g><g><title>update_load_avg (24 samples, 0.01%)</title><rect x="49.2100%" y="677" width="0.0108%" height="15" fill="rgb(230,197,49)" fg:x="109630" fg:w="24"/><text x="49.4600%" y="687.50"></text></g><g><title>enqueue_task_fair (104 samples, 0.05%)</title><rect x="49.1866%" y="709" width="0.0467%" height="15" fill="rgb(239,141,16)" fg:x="109578" fg:w="104"/><text x="49.4366%" y="719.50"></text></g><g><title>ttwu_do_activate (209 samples, 0.09%)</title><rect x="49.1835%" y="725" width="0.0938%" height="15" fill="rgb(225,105,43)" fg:x="109571" fg:w="209"/><text x="49.4335%" y="735.50"></text></g><g><title>psi_task_change (98 samples, 0.04%)</title><rect x="49.2333%" y="709" width="0.0440%" height="15" fill="rgb(214,131,14)" fg:x="109682" fg:w="98"/><text x="49.4833%" y="719.50"></text></g><g><title>psi_group_change (83 samples, 0.04%)</title><rect x="49.2401%" y="693" width="0.0373%" height="15" fill="rgb(229,177,11)" fg:x="109697" fg:w="83"/><text x="49.4901%" y="703.50"></text></g><g><title>__x64_sys_futex (600 samples, 0.27%)</title><rect x="49.0255%" y="805" width="0.2693%" height="15" fill="rgb(231,180,14)" fg:x="109219" fg:w="600"/><text x="49.2755%" y="815.50"></text></g><g><title>do_futex (596 samples, 0.27%)</title><rect x="49.0273%" y="789" width="0.2675%" height="15" fill="rgb(232,88,2)" fg:x="109223" fg:w="596"/><text x="49.2773%" y="799.50"></text></g><g><title>futex_wake (595 samples, 0.27%)</title><rect x="49.0277%" y="773" width="0.2671%" height="15" fill="rgb(205,220,8)" fg:x="109224" fg:w="595"/><text x="49.2777%" y="783.50"></text></g><g><title>wake_up_q (523 samples, 0.23%)</title><rect x="49.0601%" y="757" width="0.2348%" height="15" fill="rgb(225,23,53)" fg:x="109296" fg:w="523"/><text x="49.3101%" y="767.50"></text></g><g><title>try_to_wake_up (520 samples, 0.23%)</title><rect x="49.0614%" y="741" width="0.2334%" height="15" fill="rgb(213,62,29)" fg:x="109299" fg:w="520"/><text x="49.3114%" y="751.50"></text></g><g><title>do_syscall_64 (602 samples, 0.27%)</title><rect x="49.0250%" y="821" width="0.2702%" height="15" fill="rgb(227,75,7)" fg:x="109218" fg:w="602"/><text x="49.2750%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (630 samples, 0.28%)</title><rect x="49.0246%" y="837" width="0.2828%" height="15" fill="rgb(207,105,14)" fg:x="109217" fg:w="630"/><text x="49.2746%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (27 samples, 0.01%)</title><rect x="49.2953%" y="821" width="0.0121%" height="15" fill="rgb(245,62,29)" fg:x="109820" fg:w="27"/><text x="49.5453%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (25 samples, 0.01%)</title><rect x="49.2962%" y="805" width="0.0112%" height="15" fill="rgb(236,202,4)" fg:x="109822" fg:w="25"/><text x="49.5462%" y="815.50"></text></g><g><title>std::condition_variable::notify_one (1,670 samples, 0.75%)</title><rect x="48.5596%" y="885" width="0.7496%" height="15" fill="rgb(250,67,1)" fg:x="108181" fg:w="1670"/><text x="48.8096%" y="895.50"></text></g><g><title>__pthread_cond_signal (1,668 samples, 0.75%)</title><rect x="48.5605%" y="869" width="0.7487%" height="15" fill="rgb(253,115,44)" fg:x="108183" fg:w="1668"/><text x="48.8105%" y="879.50"></text></g><g><title>futex_wake (651 samples, 0.29%)</title><rect x="49.0170%" y="853" width="0.2922%" height="15" fill="rgb(251,139,18)" fg:x="109200" fg:w="651"/><text x="49.2670%" y="863.50"></text></g><g><title>select_task_rq_fair (32 samples, 0.01%)</title><rect x="49.3595%" y="693" width="0.0144%" height="15" fill="rgb(218,22,32)" fg:x="109963" fg:w="32"/><text x="49.6095%" y="703.50"></text></g><g><title>ttwu_do_activate (60 samples, 0.03%)</title><rect x="49.3738%" y="693" width="0.0269%" height="15" fill="rgb(243,53,5)" fg:x="109995" fg:w="60"/><text x="49.6238%" y="703.50"></text></g><g><title>psi_task_change (37 samples, 0.02%)</title><rect x="49.3841%" y="677" width="0.0166%" height="15" fill="rgb(227,56,16)" fg:x="110018" fg:w="37"/><text x="49.6341%" y="687.50"></text></g><g><title>psi_group_change (32 samples, 0.01%)</title><rect x="49.3864%" y="661" width="0.0144%" height="15" fill="rgb(245,53,0)" fg:x="110023" fg:w="32"/><text x="49.6364%" y="671.50"></text></g><g><title>__x64_sys_futex (153 samples, 0.07%)</title><rect x="49.3352%" y="773" width="0.0687%" height="15" fill="rgb(216,170,35)" fg:x="109909" fg:w="153"/><text x="49.5852%" y="783.50"></text></g><g><title>do_futex (151 samples, 0.07%)</title><rect x="49.3361%" y="757" width="0.0678%" height="15" fill="rgb(211,200,8)" fg:x="109911" fg:w="151"/><text x="49.5861%" y="767.50"></text></g><g><title>futex_wake (148 samples, 0.07%)</title><rect x="49.3375%" y="741" width="0.0664%" height="15" fill="rgb(228,204,44)" fg:x="109914" fg:w="148"/><text x="49.5875%" y="751.50"></text></g><g><title>wake_up_q (122 samples, 0.05%)</title><rect x="49.3491%" y="725" width="0.0548%" height="15" fill="rgb(214,121,17)" fg:x="109940" fg:w="122"/><text x="49.5991%" y="735.50"></text></g><g><title>try_to_wake_up (121 samples, 0.05%)</title><rect x="49.3496%" y="709" width="0.0543%" height="15" fill="rgb(233,64,38)" fg:x="109941" fg:w="121"/><text x="49.5996%" y="719.50"></text></g><g><title>do_syscall_64 (154 samples, 0.07%)</title><rect x="49.3352%" y="789" width="0.0691%" height="15" fill="rgb(253,54,19)" fg:x="109909" fg:w="154"/><text x="49.5852%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (168 samples, 0.08%)</title><rect x="49.3348%" y="805" width="0.0754%" height="15" fill="rgb(253,94,18)" fg:x="109908" fg:w="168"/><text x="49.5848%" y="815.50"></text></g><g><title>__condvar_dec_grefs (203 samples, 0.09%)</title><rect x="49.3195%" y="837" width="0.0911%" height="15" fill="rgb(227,57,52)" fg:x="109874" fg:w="203"/><text x="49.5695%" y="847.50"></text></g><g><title>futex_wake (173 samples, 0.08%)</title><rect x="49.3330%" y="821" width="0.0777%" height="15" fill="rgb(230,228,50)" fg:x="109904" fg:w="173"/><text x="49.5830%" y="831.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.02%)</title><rect x="49.4201%" y="789" width="0.0189%" height="15" fill="rgb(217,205,27)" fg:x="110098" fg:w="42"/><text x="49.6701%" y="799.50"></text></g><g><title>do_futex (42 samples, 0.02%)</title><rect x="49.4201%" y="773" width="0.0189%" height="15" fill="rgb(252,71,50)" fg:x="110098" fg:w="42"/><text x="49.6701%" y="783.50"></text></g><g><title>futex_wake (41 samples, 0.02%)</title><rect x="49.4205%" y="757" width="0.0184%" height="15" fill="rgb(209,86,4)" fg:x="110099" fg:w="41"/><text x="49.6705%" y="767.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="49.4187%" y="805" width="0.0206%" height="15" fill="rgb(229,94,0)" fg:x="110095" fg:w="46"/><text x="49.6687%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.02%)</title><rect x="49.4187%" y="821" width="0.0220%" height="15" fill="rgb(252,223,21)" fg:x="110095" fg:w="49"/><text x="49.6687%" y="831.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (67 samples, 0.03%)</title><rect x="49.4120%" y="837" width="0.0301%" height="15" fill="rgb(230,210,4)" fg:x="110080" fg:w="67"/><text x="49.6620%" y="847.50"></text></g><g><title>__perf_event_task_sched_out (38 samples, 0.02%)</title><rect x="49.5623%" y="693" width="0.0171%" height="15" fill="rgb(240,149,38)" fg:x="110415" fg:w="38"/><text x="49.8123%" y="703.50"></text></g><g><title>_raw_spin_lock (35 samples, 0.02%)</title><rect x="49.5808%" y="693" width="0.0157%" height="15" fill="rgb(254,105,20)" fg:x="110456" fg:w="35"/><text x="49.8308%" y="703.50"></text></g><g><title>native_queued_spin_lock_slowpath (26 samples, 0.01%)</title><rect x="49.5848%" y="677" width="0.0117%" height="15" fill="rgb(253,87,46)" fg:x="110465" fg:w="26"/><text x="49.8348%" y="687.50"></text></g><g><title>update_curr (30 samples, 0.01%)</title><rect x="49.6131%" y="661" width="0.0135%" height="15" fill="rgb(253,116,33)" fg:x="110528" fg:w="30"/><text x="49.8631%" y="671.50"></text></g><g><title>dequeue_entity (81 samples, 0.04%)</title><rect x="49.6005%" y="677" width="0.0364%" height="15" fill="rgb(229,198,5)" fg:x="110500" fg:w="81"/><text x="49.8505%" y="687.50"></text></g><g><title>update_load_avg (23 samples, 0.01%)</title><rect x="49.6265%" y="661" width="0.0103%" height="15" fill="rgb(242,38,37)" fg:x="110558" fg:w="23"/><text x="49.8765%" y="671.50"></text></g><g><title>dequeue_task_fair (119 samples, 0.05%)</title><rect x="49.5965%" y="693" width="0.0534%" height="15" fill="rgb(242,69,53)" fg:x="110491" fg:w="119"/><text x="49.8465%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (5,027 samples, 2.26%)</title><rect x="49.6755%" y="677" width="2.2565%" height="15" fill="rgb(249,80,16)" fg:x="110667" fg:w="5027"/><text x="49.9255%" y="687.50">_..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,962 samples, 2.23%)</title><rect x="49.7046%" y="661" width="2.2273%" height="15" fill="rgb(206,128,11)" fg:x="110732" fg:w="4962"/><text x="49.9546%" y="671.50">_..</text></g><g><title>native_write_msr (4,929 samples, 2.21%)</title><rect x="49.7195%" y="645" width="2.2125%" height="15" fill="rgb(212,35,20)" fg:x="110765" fg:w="4929"/><text x="49.9695%" y="655.50">n..</text></g><g><title>irq_work_run (52 samples, 0.02%)</title><rect x="51.9557%" y="613" width="0.0233%" height="15" fill="rgb(236,79,13)" fg:x="115747" fg:w="52"/><text x="52.2057%" y="623.50"></text></g><g><title>irq_work_run_list (50 samples, 0.02%)</title><rect x="51.9566%" y="597" width="0.0224%" height="15" fill="rgb(233,123,3)" fg:x="115749" fg:w="50"/><text x="52.2066%" y="607.50"></text></g><g><title>irq_work_single (50 samples, 0.02%)</title><rect x="51.9566%" y="581" width="0.0224%" height="15" fill="rgb(214,93,52)" fg:x="115749" fg:w="50"/><text x="52.2066%" y="591.50"></text></g><g><title>perf_pending_event (49 samples, 0.02%)</title><rect x="51.9571%" y="565" width="0.0220%" height="15" fill="rgb(251,37,40)" fg:x="115750" fg:w="49"/><text x="52.2071%" y="575.50"></text></g><g><title>perf_event_wakeup (47 samples, 0.02%)</title><rect x="51.9580%" y="549" width="0.0211%" height="15" fill="rgb(227,80,54)" fg:x="115752" fg:w="47"/><text x="52.2080%" y="559.50"></text></g><g><title>__wake_up_common_lock (45 samples, 0.02%)</title><rect x="51.9589%" y="533" width="0.0202%" height="15" fill="rgb(254,48,11)" fg:x="115754" fg:w="45"/><text x="52.2089%" y="543.50"></text></g><g><title>__wake_up_common (44 samples, 0.02%)</title><rect x="51.9593%" y="517" width="0.0198%" height="15" fill="rgb(235,193,26)" fg:x="115755" fg:w="44"/><text x="52.2093%" y="527.50"></text></g><g><title>pollwake (41 samples, 0.02%)</title><rect x="51.9607%" y="501" width="0.0184%" height="15" fill="rgb(229,99,21)" fg:x="115758" fg:w="41"/><text x="52.2107%" y="511.50"></text></g><g><title>try_to_wake_up (40 samples, 0.02%)</title><rect x="51.9611%" y="485" width="0.0180%" height="15" fill="rgb(211,140,41)" fg:x="115759" fg:w="40"/><text x="52.2111%" y="495.50"></text></g><g><title>asm_call_sysvec_on_stack (65 samples, 0.03%)</title><rect x="51.9530%" y="645" width="0.0292%" height="15" fill="rgb(240,227,30)" fg:x="115741" fg:w="65"/><text x="52.2030%" y="655.50"></text></g><g><title>__sysvec_irq_work (59 samples, 0.03%)</title><rect x="51.9557%" y="629" width="0.0265%" height="15" fill="rgb(215,224,45)" fg:x="115747" fg:w="59"/><text x="52.2057%" y="639.50"></text></g><g><title>asm_sysvec_irq_work (95 samples, 0.04%)</title><rect x="51.9418%" y="677" width="0.0426%" height="15" fill="rgb(206,123,31)" fg:x="115716" fg:w="95"/><text x="52.1918%" y="687.50"></text></g><g><title>sysvec_irq_work (71 samples, 0.03%)</title><rect x="51.9526%" y="661" width="0.0319%" height="15" fill="rgb(210,138,16)" fg:x="115740" fg:w="71"/><text x="52.2026%" y="671.50"></text></g><g><title>finish_task_switch (5,227 samples, 2.35%)</title><rect x="49.6499%" y="693" width="2.3463%" height="15" fill="rgb(228,57,28)" fg:x="110610" fg:w="5227"/><text x="49.8999%" y="703.50">f..</text></g><g><title>pick_next_task_fair (42 samples, 0.02%)</title><rect x="51.9961%" y="693" width="0.0189%" height="15" fill="rgb(242,170,10)" fg:x="115837" fg:w="42"/><text x="52.2461%" y="703.50"></text></g><g><title>psi_task_change (143 samples, 0.06%)</title><rect x="52.0217%" y="693" width="0.0642%" height="15" fill="rgb(228,214,39)" fg:x="115894" fg:w="143"/><text x="52.2717%" y="703.50"></text></g><g><title>psi_group_change (124 samples, 0.06%)</title><rect x="52.0303%" y="677" width="0.0557%" height="15" fill="rgb(218,179,33)" fg:x="115913" fg:w="124"/><text x="52.2803%" y="687.50"></text></g><g><title>record_times (36 samples, 0.02%)</title><rect x="52.0698%" y="661" width="0.0162%" height="15" fill="rgb(235,193,39)" fg:x="116001" fg:w="36"/><text x="52.3198%" y="671.50"></text></g><g><title>psi_task_switch (50 samples, 0.02%)</title><rect x="52.0859%" y="693" width="0.0224%" height="15" fill="rgb(219,221,36)" fg:x="116037" fg:w="50"/><text x="52.3359%" y="703.50"></text></g><g><title>psi_group_change (41 samples, 0.02%)</title><rect x="52.0900%" y="677" width="0.0184%" height="15" fill="rgb(248,218,19)" fg:x="116046" fg:w="41"/><text x="52.3400%" y="687.50"></text></g><g><title>futex_wait_queue_me (5,798 samples, 2.60%)</title><rect x="49.5143%" y="741" width="2.6026%" height="15" fill="rgb(205,50,9)" fg:x="110308" fg:w="5798"/><text x="49.7643%" y="751.50">fu..</text></g><g><title>schedule (5,748 samples, 2.58%)</title><rect x="49.5368%" y="725" width="2.5801%" height="15" fill="rgb(238,81,28)" fg:x="110358" fg:w="5748"/><text x="49.7868%" y="735.50">sc..</text></g><g><title>__schedule (5,741 samples, 2.58%)</title><rect x="49.5399%" y="709" width="2.5770%" height="15" fill="rgb(235,110,19)" fg:x="110365" fg:w="5741"/><text x="49.7899%" y="719.50">__..</text></g><g><title>__x64_sys_futex (5,890 samples, 2.64%)</title><rect x="49.4860%" y="789" width="2.6439%" height="15" fill="rgb(214,7,14)" fg:x="110245" fg:w="5890"/><text x="49.7360%" y="799.50">__..</text></g><g><title>do_futex (5,874 samples, 2.64%)</title><rect x="49.4932%" y="773" width="2.6367%" height="15" fill="rgb(211,77,3)" fg:x="110261" fg:w="5874"/><text x="49.7432%" y="783.50">do..</text></g><g><title>futex_wait (5,853 samples, 2.63%)</title><rect x="49.5026%" y="757" width="2.6273%" height="15" fill="rgb(229,5,9)" fg:x="110282" fg:w="5853"/><text x="49.7526%" y="767.50">fu..</text></g><g><title>futex_wait_setup (29 samples, 0.01%)</title><rect x="52.1169%" y="741" width="0.0130%" height="15" fill="rgb(225,90,11)" fg:x="116106" fg:w="29"/><text x="52.3669%" y="751.50"></text></g><g><title>do_syscall_64 (5,900 samples, 2.65%)</title><rect x="49.4820%" y="805" width="2.6484%" height="15" fill="rgb(242,56,8)" fg:x="110236" fg:w="5900"/><text x="49.7320%" y="815.50">do..</text></g><g><title>entry_SYSCALL_64_after_hwframe (6,019 samples, 2.70%)</title><rect x="49.4811%" y="821" width="2.7018%" height="15" fill="rgb(249,212,39)" fg:x="110234" fg:w="6019"/><text x="49.7311%" y="831.50">en..</text></g><g><title>syscall_exit_to_user_mode (117 samples, 0.05%)</title><rect x="52.1304%" y="805" width="0.0525%" height="15" fill="rgb(236,90,9)" fg:x="116136" fg:w="117"/><text x="52.3804%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (111 samples, 0.05%)</title><rect x="52.1330%" y="789" width="0.0498%" height="15" fill="rgb(206,88,35)" fg:x="116142" fg:w="111"/><text x="52.3830%" y="799.50"></text></g><g><title>switch_fpu_return (92 samples, 0.04%)</title><rect x="52.1416%" y="773" width="0.0413%" height="15" fill="rgb(205,126,30)" fg:x="116161" fg:w="92"/><text x="52.3916%" y="783.50"></text></g><g><title>copy_kernel_to_fpregs (63 samples, 0.03%)</title><rect x="52.1546%" y="757" width="0.0283%" height="15" fill="rgb(230,176,12)" fg:x="116190" fg:w="63"/><text x="52.4046%" y="767.50"></text></g><g><title>futex_wait_cancelable (6,110 samples, 2.74%)</title><rect x="49.4452%" y="837" width="2.7426%" height="15" fill="rgb(243,19,9)" fg:x="110154" fg:w="6110"/><text x="49.6952%" y="847.50">fu..</text></g><g><title>__pthread_cond_wait (6,409 samples, 2.88%)</title><rect x="49.3114%" y="869" width="2.8768%" height="15" fill="rgb(245,171,17)" fg:x="109856" fg:w="6409"/><text x="49.5614%" y="879.50">__..</text></g><g><title>__pthread_cond_wait_common (6,409 samples, 2.88%)</title><rect x="49.3114%" y="853" width="2.8768%" height="15" fill="rgb(227,52,21)" fg:x="109856" fg:w="6409"/><text x="49.5614%" y="863.50">__..</text></g><g><title>__perf_event_task_sched_in (344 samples, 0.15%)</title><rect x="52.2112%" y="693" width="0.1544%" height="15" fill="rgb(238,69,14)" fg:x="116316" fg:w="344"/><text x="52.4612%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (338 samples, 0.15%)</title><rect x="52.2138%" y="677" width="0.1517%" height="15" fill="rgb(241,156,39)" fg:x="116322" fg:w="338"/><text x="52.4638%" y="687.50"></text></g><g><title>native_write_msr (335 samples, 0.15%)</title><rect x="52.2152%" y="661" width="0.1504%" height="15" fill="rgb(212,227,28)" fg:x="116325" fg:w="335"/><text x="52.4652%" y="671.50"></text></g><g><title>finish_task_switch (361 samples, 0.16%)</title><rect x="52.2089%" y="709" width="0.1620%" height="15" fill="rgb(209,118,27)" fg:x="116311" fg:w="361"/><text x="52.4589%" y="719.50"></text></g><g><title>futex_wait_queue_me (396 samples, 0.18%)</title><rect x="52.1995%" y="757" width="0.1778%" height="15" fill="rgb(226,102,5)" fg:x="116290" fg:w="396"/><text x="52.4495%" y="767.50"></text></g><g><title>schedule (396 samples, 0.18%)</title><rect x="52.1995%" y="741" width="0.1778%" height="15" fill="rgb(223,34,3)" fg:x="116290" fg:w="396"/><text x="52.4495%" y="751.50"></text></g><g><title>__schedule (396 samples, 0.18%)</title><rect x="52.1995%" y="725" width="0.1778%" height="15" fill="rgb(221,81,38)" fg:x="116290" fg:w="396"/><text x="52.4495%" y="735.50"></text></g><g><title>do_syscall_64 (410 samples, 0.18%)</title><rect x="52.1954%" y="821" width="0.1840%" height="15" fill="rgb(236,219,28)" fg:x="116281" fg:w="410"/><text x="52.4454%" y="831.50"></text></g><g><title>__x64_sys_futex (408 samples, 0.18%)</title><rect x="52.1963%" y="805" width="0.1831%" height="15" fill="rgb(213,200,14)" fg:x="116283" fg:w="408"/><text x="52.4463%" y="815.50"></text></g><g><title>do_futex (407 samples, 0.18%)</title><rect x="52.1968%" y="789" width="0.1827%" height="15" fill="rgb(240,33,19)" fg:x="116284" fg:w="407"/><text x="52.4468%" y="799.50"></text></g><g><title>futex_wait (405 samples, 0.18%)</title><rect x="52.1977%" y="773" width="0.1818%" height="15" fill="rgb(233,113,27)" fg:x="116286" fg:w="405"/><text x="52.4477%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (416 samples, 0.19%)</title><rect x="52.1954%" y="837" width="0.1867%" height="15" fill="rgb(220,221,18)" fg:x="116281" fg:w="416"/><text x="52.4454%" y="847.50"></text></g><g><title>__pthread_mutex_cond_lock (433 samples, 0.19%)</title><rect x="52.1883%" y="869" width="0.1944%" height="15" fill="rgb(238,92,8)" fg:x="116265" fg:w="433"/><text x="52.4383%" y="879.50"></text></g><g><title>__lll_lock_wait (420 samples, 0.19%)</title><rect x="52.1941%" y="853" width="0.1885%" height="15" fill="rgb(222,164,16)" fg:x="116278" fg:w="420"/><text x="52.4441%" y="863.50"></text></g><g><title>std::condition_variable::wait (6,853 samples, 3.08%)</title><rect x="49.3092%" y="885" width="3.0761%" height="15" fill="rgb(241,119,3)" fg:x="109851" fg:w="6853"/><text x="49.5592%" y="895.50">std..</text></g><g><title>alloc_pages_vma (47 samples, 0.02%)</title><rect x="52.3947%" y="757" width="0.0211%" height="15" fill="rgb(241,44,8)" fg:x="116725" fg:w="47"/><text x="52.6447%" y="767.50"></text></g><g><title>__alloc_pages_nodemask (47 samples, 0.02%)</title><rect x="52.3947%" y="741" width="0.0211%" height="15" fill="rgb(230,36,40)" fg:x="116725" fg:w="47"/><text x="52.6447%" y="751.50"></text></g><g><title>get_page_from_freelist (47 samples, 0.02%)</title><rect x="52.3947%" y="725" width="0.0211%" height="15" fill="rgb(243,16,36)" fg:x="116725" fg:w="47"/><text x="52.6447%" y="735.50"></text></g><g><title>prep_new_page (46 samples, 0.02%)</title><rect x="52.3952%" y="709" width="0.0206%" height="15" fill="rgb(231,4,26)" fg:x="116726" fg:w="46"/><text x="52.6452%" y="719.50"></text></g><g><title>kernel_init_free_pages (46 samples, 0.02%)</title><rect x="52.3952%" y="693" width="0.0206%" height="15" fill="rgb(240,9,31)" fg:x="116726" fg:w="46"/><text x="52.6452%" y="703.50"></text></g><g><title>clear_page_erms (44 samples, 0.02%)</title><rect x="52.3961%" y="677" width="0.0198%" height="15" fill="rgb(207,173,15)" fg:x="116728" fg:w="44"/><text x="52.6461%" y="687.50"></text></g><g><title>asm_exc_page_fault (69 samples, 0.03%)</title><rect x="52.3929%" y="837" width="0.0310%" height="15" fill="rgb(224,192,53)" fg:x="116721" fg:w="69"/><text x="52.6429%" y="847.50"></text></g><g><title>exc_page_fault (69 samples, 0.03%)</title><rect x="52.3929%" y="821" width="0.0310%" height="15" fill="rgb(223,67,28)" fg:x="116721" fg:w="69"/><text x="52.6429%" y="831.50"></text></g><g><title>do_user_addr_fault (69 samples, 0.03%)</title><rect x="52.3929%" y="805" width="0.0310%" height="15" fill="rgb(211,20,47)" fg:x="116721" fg:w="69"/><text x="52.6429%" y="815.50"></text></g><g><title>handle_mm_fault (69 samples, 0.03%)</title><rect x="52.3929%" y="789" width="0.0310%" height="15" fill="rgb(240,228,2)" fg:x="116721" fg:w="69"/><text x="52.6429%" y="799.50"></text></g><g><title>do_huge_pmd_anonymous_page (65 samples, 0.03%)</title><rect x="52.3947%" y="773" width="0.0292%" height="15" fill="rgb(248,151,12)" fg:x="116725" fg:w="65"/><text x="52.6447%" y="783.50"></text></g><g><title>allocate_stack (94 samples, 0.04%)</title><rect x="52.3853%" y="853" width="0.0422%" height="15" fill="rgb(244,8,39)" fg:x="116704" fg:w="94"/><text x="52.6353%" y="863.50"></text></g><g><title>std::thread::_M_start_thread (95 samples, 0.04%)</title><rect x="52.3853%" y="885" width="0.0426%" height="15" fill="rgb(222,26,8)" fg:x="116704" fg:w="95"/><text x="52.6353%" y="895.50"></text></g><g><title>__pthread_create_2_1 (95 samples, 0.04%)</title><rect x="52.3853%" y="869" width="0.0426%" height="15" fill="rgb(213,106,44)" fg:x="116704" fg:w="95"/><text x="52.6353%" y="879.50"></text></g><g><title>[ld.lld] (12,850 samples, 5.77%)</title><rect x="46.6635%" y="901" width="5.7680%" height="15" fill="rgb(214,129,20)" fg:x="103957" fg:w="12850"/><text x="46.9135%" y="911.50">[ld.lld]</text></g><g><title>copy_process (65 samples, 0.03%)</title><rect x="52.4351%" y="805" width="0.0292%" height="15" fill="rgb(212,32,13)" fg:x="116815" fg:w="65"/><text x="52.6851%" y="815.50"></text></g><g><title>__GI___clone (76 samples, 0.03%)</title><rect x="52.4347%" y="885" width="0.0341%" height="15" fill="rgb(208,168,33)" fg:x="116814" fg:w="76"/><text x="52.6847%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.03%)</title><rect x="52.4347%" y="869" width="0.0341%" height="15" fill="rgb(231,207,8)" fg:x="116814" fg:w="76"/><text x="52.6847%" y="879.50"></text></g><g><title>do_syscall_64 (76 samples, 0.03%)</title><rect x="52.4347%" y="853" width="0.0341%" height="15" fill="rgb(235,219,23)" fg:x="116814" fg:w="76"/><text x="52.6847%" y="863.50"></text></g><g><title>__do_sys_clone (76 samples, 0.03%)</title><rect x="52.4347%" y="837" width="0.0341%" height="15" fill="rgb(226,216,26)" fg:x="116814" fg:w="76"/><text x="52.6847%" y="847.50"></text></g><g><title>kernel_clone (76 samples, 0.03%)</title><rect x="52.4347%" y="821" width="0.0341%" height="15" fill="rgb(239,137,16)" fg:x="116814" fg:w="76"/><text x="52.6847%" y="831.50"></text></g><g><title>[unknown] (119 samples, 0.05%)</title><rect x="52.4333%" y="901" width="0.0534%" height="15" fill="rgb(207,12,36)" fg:x="116811" fg:w="119"/><text x="52.6833%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (752 samples, 0.34%)</title><rect x="52.5079%" y="837" width="0.3376%" height="15" fill="rgb(210,214,24)" fg:x="116977" fg:w="752"/><text x="52.7579%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (731 samples, 0.33%)</title><rect x="52.5173%" y="821" width="0.3281%" height="15" fill="rgb(206,56,30)" fg:x="116998" fg:w="731"/><text x="52.7673%" y="831.50"></text></g><g><title>native_write_msr (727 samples, 0.33%)</title><rect x="52.5191%" y="805" width="0.3263%" height="15" fill="rgb(228,143,26)" fg:x="117002" fg:w="727"/><text x="52.7691%" y="815.50"></text></g><g><title>asm_sysvec_irq_work (23 samples, 0.01%)</title><rect x="52.8459%" y="837" width="0.0103%" height="15" fill="rgb(216,218,46)" fg:x="117730" fg:w="23"/><text x="53.0959%" y="847.50"></text></g><g><title>schedule_tail (806 samples, 0.36%)</title><rect x="52.4966%" y="869" width="0.3618%" height="15" fill="rgb(206,6,19)" fg:x="116952" fg:w="806"/><text x="52.7466%" y="879.50"></text></g><g><title>finish_task_switch (795 samples, 0.36%)</title><rect x="52.5016%" y="853" width="0.3569%" height="15" fill="rgb(239,177,51)" fg:x="116963" fg:w="795"/><text x="52.7516%" y="863.50"></text></g><g><title>ret_from_fork (846 samples, 0.38%)</title><rect x="52.4890%" y="885" width="0.3797%" height="15" fill="rgb(216,55,25)" fg:x="116935" fg:w="846"/><text x="52.7390%" y="895.50"></text></g><g><title>syscall_exit_to_user_mode (23 samples, 0.01%)</title><rect x="52.8584%" y="869" width="0.0103%" height="15" fill="rgb(231,163,29)" fg:x="117758" fg:w="23"/><text x="53.1084%" y="879.50"></text></g><g><title>exit_to_user_mode_prepare (23 samples, 0.01%)</title><rect x="52.8584%" y="853" width="0.0103%" height="15" fill="rgb(232,149,50)" fg:x="117758" fg:w="23"/><text x="53.1084%" y="863.50"></text></g><g><title>__GI_madvise (31 samples, 0.01%)</title><rect x="52.8818%" y="853" width="0.0139%" height="15" fill="rgb(223,142,48)" fg:x="117810" fg:w="31"/><text x="53.1318%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="52.8818%" y="837" width="0.0139%" height="15" fill="rgb(245,83,23)" fg:x="117810" fg:w="31"/><text x="53.1318%" y="847.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="52.8818%" y="821" width="0.0139%" height="15" fill="rgb(224,63,2)" fg:x="117810" fg:w="31"/><text x="53.1318%" y="831.50"></text></g><g><title>__x64_sys_madvise (30 samples, 0.01%)</title><rect x="52.8822%" y="805" width="0.0135%" height="15" fill="rgb(218,65,53)" fg:x="117811" fg:w="30"/><text x="53.1322%" y="815.50"></text></g><g><title>do_madvise.part.0 (30 samples, 0.01%)</title><rect x="52.8822%" y="789" width="0.0135%" height="15" fill="rgb(221,84,29)" fg:x="117811" fg:w="30"/><text x="53.1322%" y="799.50"></text></g><g><title>zap_page_range (27 samples, 0.01%)</title><rect x="52.8836%" y="773" width="0.0121%" height="15" fill="rgb(234,0,32)" fg:x="117814" fg:w="27"/><text x="53.1336%" y="783.50"></text></g><g><title>advise_stack_range (33 samples, 0.01%)</title><rect x="52.8813%" y="869" width="0.0148%" height="15" fill="rgb(206,20,16)" fg:x="117809" fg:w="33"/><text x="53.1313%" y="879.50"></text></g><g><title>__GI___clone (920 samples, 0.41%)</title><rect x="52.4868%" y="901" width="0.4130%" height="15" fill="rgb(244,172,18)" fg:x="116930" fg:w="920"/><text x="52.7368%" y="911.50"></text></g><g><title>start_thread (69 samples, 0.03%)</title><rect x="52.8687%" y="885" width="0.0310%" height="15" fill="rgb(254,133,1)" fg:x="117781" fg:w="69"/><text x="53.1187%" y="895.50"></text></g><g><title>[libstdc++.so.6.0.28] (23 samples, 0.01%)</title><rect x="52.9020%" y="837" width="0.0103%" height="15" fill="rgb(222,206,41)" fg:x="117855" fg:w="23"/><text x="53.1520%" y="847.50"></text></g><g><title>_dl_start_user (26 samples, 0.01%)</title><rect x="52.9020%" y="901" width="0.0117%" height="15" fill="rgb(212,3,42)" fg:x="117855" fg:w="26"/><text x="53.1520%" y="911.50"></text></g><g><title>_dl_init (26 samples, 0.01%)</title><rect x="52.9020%" y="885" width="0.0117%" height="15" fill="rgb(241,11,4)" fg:x="117855" fg:w="26"/><text x="53.1520%" y="895.50"></text></g><g><title>call_init (26 samples, 0.01%)</title><rect x="52.9020%" y="869" width="0.0117%" height="15" fill="rgb(205,19,26)" fg:x="117855" fg:w="26"/><text x="53.1520%" y="879.50"></text></g><g><title>call_init (26 samples, 0.01%)</title><rect x="52.9020%" y="853" width="0.0117%" height="15" fill="rgb(210,179,32)" fg:x="117855" fg:w="26"/><text x="53.1520%" y="863.50"></text></g><g><title>_dl_map_segments (54 samples, 0.02%)</title><rect x="52.9208%" y="741" width="0.0242%" height="15" fill="rgb(227,116,49)" fg:x="117897" fg:w="54"/><text x="53.1708%" y="751.50"></text></g><g><title>__mmap64 (46 samples, 0.02%)</title><rect x="52.9244%" y="725" width="0.0206%" height="15" fill="rgb(211,146,6)" fg:x="117905" fg:w="46"/><text x="53.1744%" y="735.50"></text></g><g><title>__mmap64 (46 samples, 0.02%)</title><rect x="52.9244%" y="709" width="0.0206%" height="15" fill="rgb(219,44,39)" fg:x="117905" fg:w="46"/><text x="53.1744%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="52.9244%" y="693" width="0.0206%" height="15" fill="rgb(234,128,11)" fg:x="117905" fg:w="46"/><text x="53.1744%" y="703.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="52.9244%" y="677" width="0.0206%" height="15" fill="rgb(220,183,53)" fg:x="117905" fg:w="46"/><text x="53.1744%" y="687.50"></text></g><g><title>ksys_mmap_pgoff (46 samples, 0.02%)</title><rect x="52.9244%" y="661" width="0.0206%" height="15" fill="rgb(213,219,32)" fg:x="117905" fg:w="46"/><text x="53.1744%" y="671.50"></text></g><g><title>vm_mmap_pgoff (45 samples, 0.02%)</title><rect x="52.9249%" y="645" width="0.0202%" height="15" fill="rgb(232,156,16)" fg:x="117906" fg:w="45"/><text x="53.1749%" y="655.50"></text></g><g><title>do_mmap (45 samples, 0.02%)</title><rect x="52.9249%" y="629" width="0.0202%" height="15" fill="rgb(246,135,34)" fg:x="117906" fg:w="45"/><text x="53.1749%" y="639.50"></text></g><g><title>mmap_region (44 samples, 0.02%)</title><rect x="52.9253%" y="613" width="0.0198%" height="15" fill="rgb(241,99,0)" fg:x="117907" fg:w="44"/><text x="53.1753%" y="623.50"></text></g><g><title>_dl_map_object_from_fd (68 samples, 0.03%)</title><rect x="52.9190%" y="757" width="0.0305%" height="15" fill="rgb(222,103,45)" fg:x="117893" fg:w="68"/><text x="53.1690%" y="767.50"></text></g><g><title>open_path (23 samples, 0.01%)</title><rect x="52.9504%" y="757" width="0.0103%" height="15" fill="rgb(212,57,4)" fg:x="117963" fg:w="23"/><text x="53.2004%" y="767.50"></text></g><g><title>_dl_catch_exception (95 samples, 0.04%)</title><rect x="52.9186%" y="805" width="0.0426%" height="15" fill="rgb(215,68,47)" fg:x="117892" fg:w="95"/><text x="53.1686%" y="815.50"></text></g><g><title>openaux (95 samples, 0.04%)</title><rect x="52.9186%" y="789" width="0.0426%" height="15" fill="rgb(230,84,2)" fg:x="117892" fg:w="95"/><text x="53.1686%" y="799.50"></text></g><g><title>_dl_map_object (95 samples, 0.04%)</title><rect x="52.9186%" y="773" width="0.0426%" height="15" fill="rgb(220,102,14)" fg:x="117892" fg:w="95"/><text x="53.1686%" y="783.50"></text></g><g><title>_dl_map_object_deps (97 samples, 0.04%)</title><rect x="52.9181%" y="821" width="0.0435%" height="15" fill="rgb(240,10,32)" fg:x="117891" fg:w="97"/><text x="53.1681%" y="831.50"></text></g><g><title>dl_new_hash (46 samples, 0.02%)</title><rect x="52.9980%" y="757" width="0.0206%" height="15" fill="rgb(215,47,27)" fg:x="118069" fg:w="46"/><text x="53.2480%" y="767.50"></text></g><g><title>_dl_lookup_symbol_x (167 samples, 0.07%)</title><rect x="52.9953%" y="773" width="0.0750%" height="15" fill="rgb(233,188,43)" fg:x="118063" fg:w="167"/><text x="53.2453%" y="783.50"></text></g><g><title>do_lookup_x (115 samples, 0.05%)</title><rect x="53.0187%" y="757" width="0.0516%" height="15" fill="rgb(253,190,1)" fg:x="118115" fg:w="115"/><text x="53.2687%" y="767.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.02%)</title><rect x="53.0703%" y="773" width="0.0247%" height="15" fill="rgb(206,114,52)" fg:x="118230" fg:w="55"/><text x="53.3203%" y="783.50"></text></g><g><title>exc_page_fault (54 samples, 0.02%)</title><rect x="53.0707%" y="757" width="0.0242%" height="15" fill="rgb(233,120,37)" fg:x="118231" fg:w="54"/><text x="53.3207%" y="767.50"></text></g><g><title>do_user_addr_fault (54 samples, 0.02%)</title><rect x="53.0707%" y="741" width="0.0242%" height="15" fill="rgb(214,52,39)" fg:x="118231" fg:w="54"/><text x="53.3207%" y="751.50"></text></g><g><title>handle_mm_fault (51 samples, 0.02%)</title><rect x="53.0721%" y="725" width="0.0229%" height="15" fill="rgb(223,80,29)" fg:x="118234" fg:w="51"/><text x="53.3221%" y="735.50"></text></g><g><title>elf_machine_rela (258 samples, 0.12%)</title><rect x="52.9801%" y="789" width="0.1158%" height="15" fill="rgb(230,101,40)" fg:x="118029" fg:w="258"/><text x="53.2301%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (280 samples, 0.13%)</title><rect x="52.9715%" y="805" width="0.1257%" height="15" fill="rgb(219,211,8)" fg:x="118010" fg:w="280"/><text x="53.2215%" y="815.50"></text></g><g><title>_dl_relocate_object (298 samples, 0.13%)</title><rect x="52.9644%" y="821" width="0.1338%" height="15" fill="rgb(252,126,28)" fg:x="117994" fg:w="298"/><text x="53.2144%" y="831.50"></text></g><g><title>[ld-2.31.so] (410 samples, 0.18%)</title><rect x="52.9145%" y="837" width="0.1840%" height="15" fill="rgb(215,56,38)" fg:x="117883" fg:w="410"/><text x="53.1645%" y="847.50"></text></g><g><title>_dl_start (417 samples, 0.19%)</title><rect x="52.9145%" y="885" width="0.1872%" height="15" fill="rgb(249,55,44)" fg:x="117883" fg:w="417"/><text x="53.1645%" y="895.50"></text></g><g><title>_dl_start_final (417 samples, 0.19%)</title><rect x="52.9145%" y="869" width="0.1872%" height="15" fill="rgb(220,221,32)" fg:x="117883" fg:w="417"/><text x="53.1645%" y="879.50"></text></g><g><title>_dl_sysdep_start (417 samples, 0.19%)</title><rect x="52.9145%" y="853" width="0.1872%" height="15" fill="rgb(212,216,41)" fg:x="117883" fg:w="417"/><text x="53.1645%" y="863.50"></text></g><g><title>_start (418 samples, 0.19%)</title><rect x="52.9145%" y="901" width="0.1876%" height="15" fill="rgb(228,213,43)" fg:x="117883" fg:w="418"/><text x="53.1645%" y="911.50"></text></g><g><title>asm_exc_page_fault (104 samples, 0.05%)</title><rect x="53.1022%" y="901" width="0.0467%" height="15" fill="rgb(211,31,26)" fg:x="118301" fg:w="104"/><text x="53.3522%" y="911.50"></text></g><g><title>unmap_page_range (31 samples, 0.01%)</title><rect x="53.1664%" y="773" width="0.0139%" height="15" fill="rgb(229,202,19)" fg:x="118444" fg:w="31"/><text x="53.4164%" y="783.50"></text></g><g><title>__x64_sys_exit_group (49 samples, 0.02%)</title><rect x="53.1587%" y="869" width="0.0220%" height="15" fill="rgb(229,105,46)" fg:x="118427" fg:w="49"/><text x="53.4087%" y="879.50"></text></g><g><title>do_group_exit (49 samples, 0.02%)</title><rect x="53.1587%" y="853" width="0.0220%" height="15" fill="rgb(235,108,1)" fg:x="118427" fg:w="49"/><text x="53.4087%" y="863.50"></text></g><g><title>do_exit (49 samples, 0.02%)</title><rect x="53.1587%" y="837" width="0.0220%" height="15" fill="rgb(245,111,35)" fg:x="118427" fg:w="49"/><text x="53.4087%" y="847.50"></text></g><g><title>mmput (37 samples, 0.02%)</title><rect x="53.1641%" y="821" width="0.0166%" height="15" fill="rgb(219,185,31)" fg:x="118439" fg:w="37"/><text x="53.4141%" y="831.50"></text></g><g><title>exit_mmap (37 samples, 0.02%)</title><rect x="53.1641%" y="805" width="0.0166%" height="15" fill="rgb(214,4,43)" fg:x="118439" fg:w="37"/><text x="53.4141%" y="815.50"></text></g><g><title>unmap_vmas (32 samples, 0.01%)</title><rect x="53.1664%" y="789" width="0.0144%" height="15" fill="rgb(235,227,40)" fg:x="118444" fg:w="32"/><text x="53.4164%" y="799.50"></text></g><g><title>do_syscall_64 (80 samples, 0.04%)</title><rect x="53.1511%" y="885" width="0.0359%" height="15" fill="rgb(230,88,30)" fg:x="118410" fg:w="80"/><text x="53.4011%" y="895.50"></text></g><g><title>page_remove_rmap (43 samples, 0.02%)</title><rect x="53.2337%" y="725" width="0.0193%" height="15" fill="rgb(216,217,1)" fg:x="118594" fg:w="43"/><text x="53.4837%" y="735.50"></text></g><g><title>tlb_flush_mmu (54 samples, 0.02%)</title><rect x="53.2530%" y="725" width="0.0242%" height="15" fill="rgb(248,139,50)" fg:x="118637" fg:w="54"/><text x="53.5030%" y="735.50"></text></g><g><title>release_pages (34 samples, 0.02%)</title><rect x="53.2620%" y="709" width="0.0153%" height="15" fill="rgb(233,1,21)" fg:x="118657" fg:w="34"/><text x="53.5120%" y="719.50"></text></g><g><title>unmap_page_range (185 samples, 0.08%)</title><rect x="53.2000%" y="741" width="0.0830%" height="15" fill="rgb(215,183,12)" fg:x="118519" fg:w="185"/><text x="53.4500%" y="751.50"></text></g><g><title>mmput (205 samples, 0.09%)</title><rect x="53.1915%" y="789" width="0.0920%" height="15" fill="rgb(229,104,42)" fg:x="118500" fg:w="205"/><text x="53.4415%" y="799.50"></text></g><g><title>exit_mmap (205 samples, 0.09%)</title><rect x="53.1915%" y="773" width="0.0920%" height="15" fill="rgb(243,34,48)" fg:x="118500" fg:w="205"/><text x="53.4415%" y="783.50"></text></g><g><title>unmap_vmas (187 samples, 0.08%)</title><rect x="53.1996%" y="757" width="0.0839%" height="15" fill="rgb(239,11,44)" fg:x="118518" fg:w="187"/><text x="53.4496%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (302 samples, 0.14%)</title><rect x="53.1488%" y="901" width="0.1356%" height="15" fill="rgb(231,98,35)" fg:x="118405" fg:w="302"/><text x="53.3988%" y="911.50"></text></g><g><title>syscall_exit_to_user_mode (217 samples, 0.10%)</title><rect x="53.1870%" y="885" width="0.0974%" height="15" fill="rgb(233,28,25)" fg:x="118490" fg:w="217"/><text x="53.4370%" y="895.50"></text></g><g><title>exit_to_user_mode_prepare (217 samples, 0.10%)</title><rect x="53.1870%" y="869" width="0.0974%" height="15" fill="rgb(234,123,11)" fg:x="118490" fg:w="217"/><text x="53.4370%" y="879.50"></text></g><g><title>arch_do_signal (217 samples, 0.10%)</title><rect x="53.1870%" y="853" width="0.0974%" height="15" fill="rgb(220,69,3)" fg:x="118490" fg:w="217"/><text x="53.4370%" y="863.50"></text></g><g><title>get_signal (217 samples, 0.10%)</title><rect x="53.1870%" y="837" width="0.0974%" height="15" fill="rgb(214,64,36)" fg:x="118490" fg:w="217"/><text x="53.4370%" y="847.50"></text></g><g><title>do_group_exit (217 samples, 0.10%)</title><rect x="53.1870%" y="821" width="0.0974%" height="15" fill="rgb(211,138,32)" fg:x="118490" fg:w="217"/><text x="53.4370%" y="831.50"></text></g><g><title>do_exit (217 samples, 0.10%)</title><rect x="53.1870%" y="805" width="0.0974%" height="15" fill="rgb(213,118,47)" fg:x="118490" fg:w="217"/><text x="53.4370%" y="815.50"></text></g><g><title>tlb_flush_mmu (29 samples, 0.01%)</title><rect x="53.3226%" y="725" width="0.0130%" height="15" fill="rgb(243,124,49)" fg:x="118792" fg:w="29"/><text x="53.5726%" y="735.50"></text></g><g><title>release_pages (26 samples, 0.01%)</title><rect x="53.3239%" y="709" width="0.0117%" height="15" fill="rgb(221,30,28)" fg:x="118795" fg:w="26"/><text x="53.5739%" y="719.50"></text></g><g><title>mmput (100 samples, 0.04%)</title><rect x="53.2920%" y="789" width="0.0449%" height="15" fill="rgb(246,37,13)" fg:x="118724" fg:w="100"/><text x="53.5420%" y="799.50"></text></g><g><title>exit_mmap (99 samples, 0.04%)</title><rect x="53.2925%" y="773" width="0.0444%" height="15" fill="rgb(249,66,14)" fg:x="118725" fg:w="99"/><text x="53.5425%" y="783.50"></text></g><g><title>unmap_vmas (90 samples, 0.04%)</title><rect x="53.2965%" y="757" width="0.0404%" height="15" fill="rgb(213,166,5)" fg:x="118734" fg:w="90"/><text x="53.5465%" y="767.50"></text></g><g><title>unmap_page_range (90 samples, 0.04%)</title><rect x="53.2965%" y="741" width="0.0404%" height="15" fill="rgb(221,66,24)" fg:x="118734" fg:w="90"/><text x="53.5465%" y="751.50"></text></g><g><title>ret_from_fork (110 samples, 0.05%)</title><rect x="53.2880%" y="901" width="0.0494%" height="15" fill="rgb(210,132,17)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="911.50"></text></g><g><title>syscall_exit_to_user_mode (110 samples, 0.05%)</title><rect x="53.2880%" y="885" width="0.0494%" height="15" fill="rgb(243,202,5)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="895.50"></text></g><g><title>exit_to_user_mode_prepare (110 samples, 0.05%)</title><rect x="53.2880%" y="869" width="0.0494%" height="15" fill="rgb(233,70,48)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="879.50"></text></g><g><title>arch_do_signal (110 samples, 0.05%)</title><rect x="53.2880%" y="853" width="0.0494%" height="15" fill="rgb(238,41,26)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="863.50"></text></g><g><title>get_signal (110 samples, 0.05%)</title><rect x="53.2880%" y="837" width="0.0494%" height="15" fill="rgb(241,19,31)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="847.50"></text></g><g><title>do_group_exit (110 samples, 0.05%)</title><rect x="53.2880%" y="821" width="0.0494%" height="15" fill="rgb(214,76,10)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="831.50"></text></g><g><title>do_exit (110 samples, 0.05%)</title><rect x="53.2880%" y="805" width="0.0494%" height="15" fill="rgb(254,202,22)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="815.50"></text></g><g><title>ld.lld (14,946 samples, 6.71%)</title><rect x="46.6294%" y="917" width="6.7089%" height="15" fill="rgb(214,72,24)" fg:x="103881" fg:w="14946"/><text x="46.8794%" y="927.50">ld.lld</text></g><g><title>[[heap]] (44 samples, 0.02%)</title><rect x="53.3383%" y="901" width="0.0198%" height="15" fill="rgb(221,92,46)" fg:x="118827" fg:w="44"/><text x="53.5883%" y="911.50"></text></g><g><title>[bash] (29 samples, 0.01%)</title><rect x="53.3580%" y="885" width="0.0130%" height="15" fill="rgb(246,13,50)" fg:x="118871" fg:w="29"/><text x="53.6080%" y="895.50"></text></g><g><title>[[stack]] (37 samples, 0.02%)</title><rect x="53.3580%" y="901" width="0.0166%" height="15" fill="rgb(240,165,38)" fg:x="118871" fg:w="37"/><text x="53.6080%" y="911.50"></text></g><g><title>finish_task_switch (26 samples, 0.01%)</title><rect x="53.4123%" y="85" width="0.0117%" height="15" fill="rgb(241,24,51)" fg:x="118992" fg:w="26"/><text x="53.6623%" y="95.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="53.4123%" y="69" width="0.0117%" height="15" fill="rgb(227,51,44)" fg:x="118992" fg:w="26"/><text x="53.6623%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="53.4123%" y="53" width="0.0117%" height="15" fill="rgb(231,121,3)" fg:x="118992" fg:w="26"/><text x="53.6623%" y="63.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="53.4128%" y="37" width="0.0112%" height="15" fill="rgb(245,3,41)" fg:x="118993" fg:w="25"/><text x="53.6628%" y="47.50"></text></g><g><title>schedule (28 samples, 0.01%)</title><rect x="53.4123%" y="117" width="0.0126%" height="15" fill="rgb(214,13,26)" fg:x="118992" fg:w="28"/><text x="53.6623%" y="127.50"></text></g><g><title>__schedule (28 samples, 0.01%)</title><rect x="53.4123%" y="101" width="0.0126%" height="15" fill="rgb(252,75,11)" fg:x="118992" fg:w="28"/><text x="53.6623%" y="111.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="757" width="0.0157%" height="15" fill="rgb(218,226,17)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="767.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="741" width="0.0157%" height="15" fill="rgb(248,89,38)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="751.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="725" width="0.0157%" height="15" fill="rgb(237,73,46)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="735.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="709" width="0.0157%" height="15" fill="rgb(242,78,33)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="719.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="693" width="0.0157%" height="15" fill="rgb(235,60,3)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="703.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="677" width="0.0157%" height="15" fill="rgb(216,172,19)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="687.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="661" width="0.0157%" height="15" fill="rgb(227,6,42)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="671.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="645" width="0.0157%" height="15" fill="rgb(223,207,42)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="655.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="629" width="0.0157%" height="15" fill="rgb(246,138,30)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="639.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="53.4105%" y="613" width="0.0157%" height="15" fill="rgb(251,199,47)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="623.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="597" width="0.0157%" height="15" fill="rgb(228,218,44)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="607.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="581" width="0.0157%" height="15" fill="rgb(220,68,6)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="591.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="53.4105%" y="565" width="0.0157%" height="15" fill="rgb(240,60,26)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="575.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="549" width="0.0157%" height="15" fill="rgb(211,200,19)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="559.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="533" width="0.0157%" height="15" fill="rgb(242,145,30)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="543.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="53.4105%" y="517" width="0.0157%" height="15" fill="rgb(225,64,13)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="527.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="501" width="0.0157%" height="15" fill="rgb(218,103,35)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="511.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="485" width="0.0157%" height="15" fill="rgb(216,93,46)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="495.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="53.4105%" y="469" width="0.0157%" height="15" fill="rgb(225,159,27)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="479.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="453" width="0.0157%" height="15" fill="rgb(225,204,11)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="463.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="437" width="0.0157%" height="15" fill="rgb(205,56,4)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="447.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="421" width="0.0157%" height="15" fill="rgb(206,6,35)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="431.50"></text></g><g><title>expand_words (35 samples, 0.02%)</title><rect x="53.4105%" y="405" width="0.0157%" height="15" fill="rgb(247,73,52)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="415.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="389" width="0.0157%" height="15" fill="rgb(246,97,4)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="399.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="373" width="0.0157%" height="15" fill="rgb(212,37,15)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="383.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="357" width="0.0157%" height="15" fill="rgb(208,130,40)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="367.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="341" width="0.0157%" height="15" fill="rgb(236,55,29)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="351.50"></text></g><g><title>command_substitute (35 samples, 0.02%)</title><rect x="53.4105%" y="325" width="0.0157%" height="15" fill="rgb(209,156,45)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="335.50"></text></g><g><title>parse_and_execute (35 samples, 0.02%)</title><rect x="53.4105%" y="309" width="0.0157%" height="15" fill="rgb(249,107,4)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="319.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="293" width="0.0157%" height="15" fill="rgb(227,7,13)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="303.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="277" width="0.0157%" height="15" fill="rgb(250,129,14)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="287.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="261" width="0.0157%" height="15" fill="rgb(229,92,13)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="271.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="245" width="0.0157%" height="15" fill="rgb(245,98,39)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="255.50"></text></g><g><title>wait_for (31 samples, 0.01%)</title><rect x="53.4123%" y="229" width="0.0139%" height="15" fill="rgb(234,135,48)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="239.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4123%" y="213" width="0.0139%" height="15" fill="rgb(230,98,28)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="223.50"></text></g><g><title>__GI___wait4 (31 samples, 0.01%)</title><rect x="53.4123%" y="197" width="0.0139%" height="15" fill="rgb(223,121,0)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="207.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="53.4123%" y="181" width="0.0139%" height="15" fill="rgb(234,173,33)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="191.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="53.4123%" y="165" width="0.0139%" height="15" fill="rgb(245,47,8)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="175.50"></text></g><g><title>kernel_wait4 (31 samples, 0.01%)</title><rect x="53.4123%" y="149" width="0.0139%" height="15" fill="rgb(205,17,20)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="159.50"></text></g><g><title>do_wait (31 samples, 0.01%)</title><rect x="53.4123%" y="133" width="0.0139%" height="15" fill="rgb(232,151,16)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="143.50"></text></g><g><title>[bash] (89 samples, 0.04%)</title><rect x="53.3867%" y="885" width="0.0399%" height="15" fill="rgb(208,30,32)" fg:x="118935" fg:w="89"/><text x="53.6367%" y="895.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="53.4047%" y="869" width="0.0220%" height="15" fill="rgb(254,26,3)" fg:x="118975" fg:w="49"/><text x="53.6547%" y="879.50"></text></g><g><title>execute_command_internal (47 samples, 0.02%)</title><rect x="53.4056%" y="853" width="0.0211%" height="15" fill="rgb(240,177,30)" fg:x="118977" fg:w="47"/><text x="53.6556%" y="863.50"></text></g><g><title>[bash] (47 samples, 0.02%)</title><rect x="53.4056%" y="837" width="0.0211%" height="15" fill="rgb(248,76,44)" fg:x="118977" fg:w="47"/><text x="53.6556%" y="847.50"></text></g><g><title>execute_command (47 samples, 0.02%)</title><rect x="53.4056%" y="821" width="0.0211%" height="15" fill="rgb(241,186,54)" fg:x="118977" fg:w="47"/><text x="53.6556%" y="831.50"></text></g><g><title>execute_command_internal (47 samples, 0.02%)</title><rect x="53.4056%" y="805" width="0.0211%" height="15" fill="rgb(249,171,29)" fg:x="118977" fg:w="47"/><text x="53.6556%" y="815.50"></text></g><g><title>[bash] (47 samples, 0.02%)</title><rect x="53.4056%" y="789" width="0.0211%" height="15" fill="rgb(237,151,44)" fg:x="118977" fg:w="47"/><text x="53.6556%" y="799.50"></text></g><g><title>execute_command_internal (36 samples, 0.02%)</title><rect x="53.4105%" y="773" width="0.0162%" height="15" fill="rgb(228,174,30)" fg:x="118988" fg:w="36"/><text x="53.6605%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.02%)</title><rect x="53.4523%" y="101" width="0.0175%" height="15" fill="rgb(252,14,37)" fg:x="119081" fg:w="39"/><text x="53.7023%" y="111.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (36 samples, 0.02%)</title><rect x="53.4536%" y="85" width="0.0162%" height="15" fill="rgb(207,111,40)" fg:x="119084" fg:w="36"/><text x="53.7036%" y="95.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="53.4536%" y="69" width="0.0162%" height="15" fill="rgb(248,171,54)" fg:x="119084" fg:w="36"/><text x="53.7036%" y="79.50"></text></g><g><title>__libc_fork (55 samples, 0.02%)</title><rect x="53.4460%" y="181" width="0.0247%" height="15" fill="rgb(211,127,2)" fg:x="119067" fg:w="55"/><text x="53.6960%" y="191.50"></text></g><g><title>arch_fork (55 samples, 0.02%)</title><rect x="53.4460%" y="165" width="0.0247%" height="15" fill="rgb(236,87,47)" fg:x="119067" fg:w="55"/><text x="53.6960%" y="175.50"></text></g><g><title>ret_from_fork (49 samples, 0.02%)</title><rect x="53.4487%" y="149" width="0.0220%" height="15" fill="rgb(223,190,45)" fg:x="119073" fg:w="49"/><text x="53.6987%" y="159.50"></text></g><g><title>schedule_tail (49 samples, 0.02%)</title><rect x="53.4487%" y="133" width="0.0220%" height="15" fill="rgb(215,5,16)" fg:x="119073" fg:w="49"/><text x="53.6987%" y="143.50"></text></g><g><title>finish_task_switch (44 samples, 0.02%)</title><rect x="53.4509%" y="117" width="0.0198%" height="15" fill="rgb(252,82,33)" fg:x="119078" fg:w="44"/><text x="53.7009%" y="127.50"></text></g><g><title>execute_command (63 samples, 0.03%)</title><rect x="53.4429%" y="853" width="0.0283%" height="15" fill="rgb(247,213,44)" fg:x="119060" fg:w="63"/><text x="53.6929%" y="863.50"></text></g><g><title>execute_command_internal (63 samples, 0.03%)</title><rect x="53.4429%" y="837" width="0.0283%" height="15" fill="rgb(205,196,44)" fg:x="119060" fg:w="63"/><text x="53.6929%" y="847.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="821" width="0.0251%" height="15" fill="rgb(237,96,54)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="831.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="805" width="0.0251%" height="15" fill="rgb(230,113,34)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="815.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="789" width="0.0251%" height="15" fill="rgb(221,224,12)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="799.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="773" width="0.0251%" height="15" fill="rgb(219,112,44)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="783.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="757" width="0.0251%" height="15" fill="rgb(210,31,13)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="767.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="741" width="0.0251%" height="15" fill="rgb(230,25,16)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="751.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="725" width="0.0251%" height="15" fill="rgb(246,108,53)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="735.50"></text></g><g><title>execute_command (56 samples, 0.03%)</title><rect x="53.4460%" y="709" width="0.0251%" height="15" fill="rgb(241,172,50)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="719.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="693" width="0.0251%" height="15" fill="rgb(235,141,10)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="703.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="677" width="0.0251%" height="15" fill="rgb(220,174,43)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="687.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="661" width="0.0251%" height="15" fill="rgb(215,181,40)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="671.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="645" width="0.0251%" height="15" fill="rgb(230,97,2)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="655.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="629" width="0.0251%" height="15" fill="rgb(211,25,27)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="639.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="613" width="0.0251%" height="15" fill="rgb(230,87,26)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="623.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="597" width="0.0251%" height="15" fill="rgb(227,160,17)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="607.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="581" width="0.0251%" height="15" fill="rgb(244,85,34)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="591.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="565" width="0.0251%" height="15" fill="rgb(207,70,0)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="575.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="549" width="0.0251%" height="15" fill="rgb(223,129,7)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="559.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="533" width="0.0251%" height="15" fill="rgb(246,105,7)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="543.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="517" width="0.0251%" height="15" fill="rgb(215,154,42)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="527.50"></text></g><g><title>execute_command (56 samples, 0.03%)</title><rect x="53.4460%" y="501" width="0.0251%" height="15" fill="rgb(220,215,30)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="511.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="485" width="0.0251%" height="15" fill="rgb(228,81,51)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="495.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="469" width="0.0251%" height="15" fill="rgb(247,71,54)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="479.50"></text></g><g><title>execute_command (56 samples, 0.03%)</title><rect x="53.4460%" y="453" width="0.0251%" height="15" fill="rgb(234,176,34)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="463.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="437" width="0.0251%" height="15" fill="rgb(241,103,54)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="447.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="421" width="0.0251%" height="15" fill="rgb(228,22,34)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="431.50"></text></g><g><title>execute_command (56 samples, 0.03%)</title><rect x="53.4460%" y="405" width="0.0251%" height="15" fill="rgb(241,179,48)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="415.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="389" width="0.0251%" height="15" fill="rgb(235,167,37)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="399.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="373" width="0.0251%" height="15" fill="rgb(213,109,30)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="383.50"></text></g><g><title>execute_command (56 samples, 0.03%)</title><rect x="53.4460%" y="357" width="0.0251%" height="15" fill="rgb(222,172,16)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="367.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="341" width="0.0251%" height="15" fill="rgb(233,192,5)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="351.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="325" width="0.0251%" height="15" fill="rgb(247,189,41)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="335.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="309" width="0.0251%" height="15" fill="rgb(218,134,47)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="319.50"></text></g><g><title>expand_words (56 samples, 0.03%)</title><rect x="53.4460%" y="293" width="0.0251%" height="15" fill="rgb(216,29,3)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="303.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="277" width="0.0251%" height="15" fill="rgb(246,140,12)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="287.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="261" width="0.0251%" height="15" fill="rgb(230,136,11)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="271.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="245" width="0.0251%" height="15" fill="rgb(247,22,47)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="255.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="229" width="0.0251%" height="15" fill="rgb(218,84,22)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="239.50"></text></g><g><title>command_substitute (56 samples, 0.03%)</title><rect x="53.4460%" y="213" width="0.0251%" height="15" fill="rgb(216,87,39)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="223.50"></text></g><g><title>make_child (56 samples, 0.03%)</title><rect x="53.4460%" y="197" width="0.0251%" height="15" fill="rgb(221,178,8)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="207.50"></text></g><g><title>execute_command (33 samples, 0.01%)</title><rect x="53.4738%" y="805" width="0.0148%" height="15" fill="rgb(230,42,11)" fg:x="119129" fg:w="33"/><text x="53.7238%" y="815.50"></text></g><g><title>execute_command_internal (33 samples, 0.01%)</title><rect x="53.4738%" y="789" width="0.0148%" height="15" fill="rgb(237,229,4)" fg:x="119129" fg:w="33"/><text x="53.7238%" y="799.50"></text></g><g><title>[bash] (33 samples, 0.01%)</title><rect x="53.4738%" y="773" width="0.0148%" height="15" fill="rgb(222,31,33)" fg:x="119129" fg:w="33"/><text x="53.7238%" y="783.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="757" width="0.0139%" height="15" fill="rgb(210,17,39)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="767.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="741" width="0.0139%" height="15" fill="rgb(244,93,20)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="751.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="725" width="0.0139%" height="15" fill="rgb(210,40,47)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="735.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="709" width="0.0139%" height="15" fill="rgb(239,211,47)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="719.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="693" width="0.0139%" height="15" fill="rgb(251,223,49)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="703.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="677" width="0.0139%" height="15" fill="rgb(221,149,5)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="687.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="661" width="0.0139%" height="15" fill="rgb(219,224,51)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="671.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="645" width="0.0139%" height="15" fill="rgb(223,7,8)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="655.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="629" width="0.0139%" height="15" fill="rgb(241,217,22)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="639.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="613" width="0.0139%" height="15" fill="rgb(248,209,0)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="623.50"></text></g><g><title>execute_command (31 samples, 0.01%)</title><rect x="53.4747%" y="597" width="0.0139%" height="15" fill="rgb(217,205,4)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="607.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="581" width="0.0139%" height="15" fill="rgb(228,124,39)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="591.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="565" width="0.0139%" height="15" fill="rgb(250,116,42)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="575.50"></text></g><g><title>execute_command (31 samples, 0.01%)</title><rect x="53.4747%" y="549" width="0.0139%" height="15" fill="rgb(223,202,9)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="559.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="533" width="0.0139%" height="15" fill="rgb(242,222,40)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="543.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="517" width="0.0139%" height="15" fill="rgb(229,99,46)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="527.50"></text></g><g><title>execute_command (31 samples, 0.01%)</title><rect x="53.4747%" y="501" width="0.0139%" height="15" fill="rgb(225,56,46)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="511.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="485" width="0.0139%" height="15" fill="rgb(227,94,5)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="495.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="469" width="0.0139%" height="15" fill="rgb(205,112,38)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="479.50"></text></g><g><title>execute_command (31 samples, 0.01%)</title><rect x="53.4747%" y="453" width="0.0139%" height="15" fill="rgb(231,133,46)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="463.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="437" width="0.0139%" height="15" fill="rgb(217,16,9)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="447.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="421" width="0.0139%" height="15" fill="rgb(249,173,9)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="431.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="405" width="0.0139%" height="15" fill="rgb(205,163,53)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="415.50"></text></g><g><title>expand_words (31 samples, 0.01%)</title><rect x="53.4747%" y="389" width="0.0139%" height="15" fill="rgb(217,54,41)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="399.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="373" width="0.0139%" height="15" fill="rgb(228,216,12)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="383.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="357" width="0.0139%" height="15" fill="rgb(244,228,15)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="367.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="341" width="0.0139%" height="15" fill="rgb(221,176,53)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="351.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="325" width="0.0139%" height="15" fill="rgb(205,94,34)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="335.50"></text></g><g><title>command_substitute (31 samples, 0.01%)</title><rect x="53.4747%" y="309" width="0.0139%" height="15" fill="rgb(213,110,48)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="319.50"></text></g><g><title>parse_and_execute (30 samples, 0.01%)</title><rect x="53.4752%" y="293" width="0.0135%" height="15" fill="rgb(236,142,28)" fg:x="119132" fg:w="30"/><text x="53.7252%" y="303.50"></text></g><g><title>execute_command_internal (30 samples, 0.01%)</title><rect x="53.4752%" y="277" width="0.0135%" height="15" fill="rgb(225,135,29)" fg:x="119132" fg:w="30"/><text x="53.7252%" y="287.50"></text></g><g><title>[bash] (30 samples, 0.01%)</title><rect x="53.4752%" y="261" width="0.0135%" height="15" fill="rgb(252,45,31)" fg:x="119132" fg:w="30"/><text x="53.7252%" y="271.50"></text></g><g><title>[bash] (30 samples, 0.01%)</title><rect x="53.4752%" y="245" width="0.0135%" height="15" fill="rgb(211,187,50)" fg:x="119132" fg:w="30"/><text x="53.7252%" y="255.50"></text></g><g><title>execute_command_internal (30 samples, 0.01%)</title><rect x="53.4752%" y="229" width="0.0135%" height="15" fill="rgb(229,109,7)" fg:x="119132" fg:w="30"/><text x="53.7252%" y="239.50"></text></g><g><title>[bash] (103 samples, 0.05%)</title><rect x="53.4429%" y="869" width="0.0462%" height="15" fill="rgb(251,131,51)" fg:x="119060" fg:w="103"/><text x="53.6929%" y="879.50"></text></g><g><title>execute_command_internal (40 samples, 0.02%)</title><rect x="53.4711%" y="853" width="0.0180%" height="15" fill="rgb(251,180,35)" fg:x="119123" fg:w="40"/><text x="53.7211%" y="863.50"></text></g><g><title>execute_command_internal (34 samples, 0.02%)</title><rect x="53.4738%" y="837" width="0.0153%" height="15" fill="rgb(211,46,32)" fg:x="119129" fg:w="34"/><text x="53.7238%" y="847.50"></text></g><g><title>[bash] (34 samples, 0.02%)</title><rect x="53.4738%" y="821" width="0.0153%" height="15" fill="rgb(248,123,17)" fg:x="119129" fg:w="34"/><text x="53.7238%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (92 samples, 0.04%)</title><rect x="53.5035%" y="149" width="0.0413%" height="15" fill="rgb(227,141,18)" fg:x="119195" fg:w="92"/><text x="53.7535%" y="159.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (86 samples, 0.04%)</title><rect x="53.5061%" y="133" width="0.0386%" height="15" fill="rgb(216,102,9)" fg:x="119201" fg:w="86"/><text x="53.7561%" y="143.50"></text></g><g><title>native_write_msr (86 samples, 0.04%)</title><rect x="53.5061%" y="117" width="0.0386%" height="15" fill="rgb(253,47,13)" fg:x="119201" fg:w="86"/><text x="53.7561%" y="127.50"></text></g><g><title>schedule_tail (109 samples, 0.05%)</title><rect x="53.4972%" y="181" width="0.0489%" height="15" fill="rgb(226,93,23)" fg:x="119181" fg:w="109"/><text x="53.7472%" y="191.50"></text></g><g><title>finish_task_switch (101 samples, 0.05%)</title><rect x="53.5008%" y="165" width="0.0453%" height="15" fill="rgb(247,104,17)" fg:x="119189" fg:w="101"/><text x="53.7508%" y="175.50"></text></g><g><title>arch_fork (121 samples, 0.05%)</title><rect x="53.4922%" y="213" width="0.0543%" height="15" fill="rgb(233,203,26)" fg:x="119170" fg:w="121"/><text x="53.7422%" y="223.50"></text></g><g><title>ret_from_fork (110 samples, 0.05%)</title><rect x="53.4972%" y="197" width="0.0494%" height="15" fill="rgb(244,98,49)" fg:x="119181" fg:w="110"/><text x="53.7472%" y="207.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="773" width="0.0557%" height="15" fill="rgb(235,134,22)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="783.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="757" width="0.0557%" height="15" fill="rgb(221,70,32)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="767.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="741" width="0.0557%" height="15" fill="rgb(238,15,50)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="751.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="725" width="0.0557%" height="15" fill="rgb(215,221,48)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="735.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="709" width="0.0557%" height="15" fill="rgb(236,73,3)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="719.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="693" width="0.0557%" height="15" fill="rgb(250,107,11)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="703.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="677" width="0.0557%" height="15" fill="rgb(242,39,14)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="687.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="661" width="0.0557%" height="15" fill="rgb(248,164,37)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="671.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="645" width="0.0557%" height="15" fill="rgb(217,60,12)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="655.50"></text></g><g><title>execute_command (124 samples, 0.06%)</title><rect x="53.4913%" y="629" width="0.0557%" height="15" fill="rgb(240,125,29)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="639.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="613" width="0.0557%" height="15" fill="rgb(208,207,28)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="623.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="597" width="0.0557%" height="15" fill="rgb(209,159,27)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="607.50"></text></g><g><title>execute_command (124 samples, 0.06%)</title><rect x="53.4913%" y="581" width="0.0557%" height="15" fill="rgb(251,176,53)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="591.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="565" width="0.0557%" height="15" fill="rgb(211,85,7)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="575.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="549" width="0.0557%" height="15" fill="rgb(216,64,54)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="559.50"></text></g><g><title>execute_command (124 samples, 0.06%)</title><rect x="53.4913%" y="533" width="0.0557%" height="15" fill="rgb(217,54,24)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="543.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="517" width="0.0557%" height="15" fill="rgb(208,206,53)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="527.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="501" width="0.0557%" height="15" fill="rgb(251,74,39)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="511.50"></text></g><g><title>execute_command (124 samples, 0.06%)</title><rect x="53.4913%" y="485" width="0.0557%" height="15" fill="rgb(226,47,5)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="495.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="469" width="0.0557%" height="15" fill="rgb(234,111,33)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="479.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="453" width="0.0557%" height="15" fill="rgb(251,14,10)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="463.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="437" width="0.0557%" height="15" fill="rgb(232,43,0)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="447.50"></text></g><g><title>expand_words (124 samples, 0.06%)</title><rect x="53.4913%" y="421" width="0.0557%" height="15" fill="rgb(222,68,43)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="431.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="405" width="0.0557%" height="15" fill="rgb(217,24,23)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="415.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="389" width="0.0557%" height="15" fill="rgb(229,209,14)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="399.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="373" width="0.0557%" height="15" fill="rgb(250,149,48)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="383.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="357" width="0.0557%" height="15" fill="rgb(210,120,37)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="367.50"></text></g><g><title>command_substitute (124 samples, 0.06%)</title><rect x="53.4913%" y="341" width="0.0557%" height="15" fill="rgb(210,21,8)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="351.50"></text></g><g><title>parse_and_execute (124 samples, 0.06%)</title><rect x="53.4913%" y="325" width="0.0557%" height="15" fill="rgb(243,145,7)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="335.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="309" width="0.0557%" height="15" fill="rgb(238,178,32)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="319.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="293" width="0.0557%" height="15" fill="rgb(222,4,10)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="303.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="277" width="0.0557%" height="15" fill="rgb(239,7,37)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="287.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="261" width="0.0557%" height="15" fill="rgb(215,31,37)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="271.50"></text></g><g><title>make_child (123 samples, 0.06%)</title><rect x="53.4918%" y="245" width="0.0552%" height="15" fill="rgb(224,83,33)" fg:x="119169" fg:w="123"/><text x="53.7418%" y="255.50"></text></g><g><title>__libc_fork (123 samples, 0.06%)</title><rect x="53.4918%" y="229" width="0.0552%" height="15" fill="rgb(239,55,3)" fg:x="119169" fg:w="123"/><text x="53.7418%" y="239.50"></text></g><g><title>execute_command (127 samples, 0.06%)</title><rect x="53.4904%" y="837" width="0.0570%" height="15" fill="rgb(247,92,11)" fg:x="119166" fg:w="127"/><text x="53.7404%" y="847.50"></text></g><g><title>execute_command_internal (127 samples, 0.06%)</title><rect x="53.4904%" y="821" width="0.0570%" height="15" fill="rgb(239,200,7)" fg:x="119166" fg:w="127"/><text x="53.7404%" y="831.50"></text></g><g><title>[bash] (127 samples, 0.06%)</title><rect x="53.4904%" y="805" width="0.0570%" height="15" fill="rgb(227,115,8)" fg:x="119166" fg:w="127"/><text x="53.7404%" y="815.50"></text></g><g><title>execute_command_internal (125 samples, 0.06%)</title><rect x="53.4913%" y="789" width="0.0561%" height="15" fill="rgb(215,189,27)" fg:x="119168" fg:w="125"/><text x="53.7413%" y="799.50"></text></g><g><title>execute_command_internal (234 samples, 0.11%)</title><rect x="53.4429%" y="885" width="0.1050%" height="15" fill="rgb(251,216,39)" fg:x="119060" fg:w="234"/><text x="53.6929%" y="895.50"></text></g><g><title>execute_command_internal (128 samples, 0.06%)</title><rect x="53.4904%" y="869" width="0.0575%" height="15" fill="rgb(207,29,47)" fg:x="119166" fg:w="128"/><text x="53.7404%" y="879.50"></text></g><g><title>[bash] (128 samples, 0.06%)</title><rect x="53.4904%" y="853" width="0.0575%" height="15" fill="rgb(210,71,34)" fg:x="119166" fg:w="128"/><text x="53.7404%" y="863.50"></text></g><g><title>[unknown] (395 samples, 0.18%)</title><rect x="53.3867%" y="901" width="0.1773%" height="15" fill="rgb(253,217,51)" fg:x="118935" fg:w="395"/><text x="53.6367%" y="911.50"></text></g><g><title>dispose_command (25 samples, 0.01%)</title><rect x="53.5699%" y="725" width="0.0112%" height="15" fill="rgb(222,117,46)" fg:x="119343" fg:w="25"/><text x="53.8199%" y="735.50"></text></g><g><title>dispose_command (24 samples, 0.01%)</title><rect x="53.5703%" y="709" width="0.0108%" height="15" fill="rgb(226,132,6)" fg:x="119344" fg:w="24"/><text x="53.8203%" y="719.50"></text></g><g><title>dispose_command (23 samples, 0.01%)</title><rect x="53.5708%" y="693" width="0.0103%" height="15" fill="rgb(254,145,51)" fg:x="119345" fg:w="23"/><text x="53.8208%" y="703.50"></text></g><g><title>dispose_command (23 samples, 0.01%)</title><rect x="53.5708%" y="677" width="0.0103%" height="15" fill="rgb(231,199,27)" fg:x="119345" fg:w="23"/><text x="53.8208%" y="687.50"></text></g><g><title>dispose_command (28 samples, 0.01%)</title><rect x="53.5690%" y="837" width="0.0126%" height="15" fill="rgb(245,158,14)" fg:x="119341" fg:w="28"/><text x="53.8190%" y="847.50"></text></g><g><title>dispose_command (28 samples, 0.01%)</title><rect x="53.5690%" y="821" width="0.0126%" height="15" fill="rgb(240,113,14)" fg:x="119341" fg:w="28"/><text x="53.8190%" y="831.50"></text></g><g><title>dispose_command (28 samples, 0.01%)</title><rect x="53.5690%" y="805" width="0.0126%" height="15" fill="rgb(210,20,13)" fg:x="119341" fg:w="28"/><text x="53.8190%" y="815.50"></text></g><g><title>dispose_command (28 samples, 0.01%)</title><rect x="53.5690%" y="789" width="0.0126%" height="15" fill="rgb(241,144,13)" fg:x="119341" fg:w="28"/><text x="53.8190%" y="799.50"></text></g><g><title>dispose_command (27 samples, 0.01%)</title><rect x="53.5694%" y="773" width="0.0121%" height="15" fill="rgb(235,43,34)" fg:x="119342" fg:w="27"/><text x="53.8194%" y="783.50"></text></g><g><title>dispose_command (26 samples, 0.01%)</title><rect x="53.5699%" y="757" width="0.0117%" height="15" fill="rgb(208,36,20)" fg:x="119343" fg:w="26"/><text x="53.8199%" y="767.50"></text></g><g><title>dispose_command (26 samples, 0.01%)</title><rect x="53.5699%" y="741" width="0.0117%" height="15" fill="rgb(239,204,10)" fg:x="119343" fg:w="26"/><text x="53.8199%" y="751.50"></text></g><g><title>[bash] (30 samples, 0.01%)</title><rect x="53.5910%" y="709" width="0.0135%" height="15" fill="rgb(217,84,43)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="719.50"></text></g><g><title>execute_command_internal (30 samples, 0.01%)</title><rect x="53.5910%" y="693" width="0.0135%" height="15" fill="rgb(241,170,50)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="703.50"></text></g><g><title>execute_command_internal (30 samples, 0.01%)</title><rect x="53.5910%" y="677" width="0.0135%" height="15" fill="rgb(226,205,29)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="687.50"></text></g><g><title>[bash] (30 samples, 0.01%)</title><rect x="53.5910%" y="661" width="0.0135%" height="15" fill="rgb(233,113,1)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="671.50"></text></g><g><title>execute_command (30 samples, 0.01%)</title><rect x="53.5910%" y="645" width="0.0135%" height="15" fill="rgb(253,98,13)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="655.50"></text></g><g><title>execute_command_internal (30 samples, 0.01%)</title><rect x="53.5910%" y="629" width="0.0135%" height="15" fill="rgb(211,115,12)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="639.50"></text></g><g><title>[bash] (30 samples, 0.01%)</title><rect x="53.5910%" y="613" width="0.0135%" height="15" fill="rgb(208,12,16)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="623.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.5910%" y="757" width="0.0139%" height="15" fill="rgb(237,193,54)" fg:x="119390" fg:w="31"/><text x="53.8410%" y="767.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.5910%" y="741" width="0.0139%" height="15" fill="rgb(243,22,42)" fg:x="119390" fg:w="31"/><text x="53.8410%" y="751.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.5910%" y="725" width="0.0139%" height="15" fill="rgb(233,151,36)" fg:x="119390" fg:w="31"/><text x="53.8410%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.03%)</title><rect x="53.6130%" y="661" width="0.0278%" height="15" fill="rgb(237,57,45)" fg:x="119439" fg:w="62"/><text x="53.8630%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.03%)</title><rect x="53.6130%" y="645" width="0.0278%" height="15" fill="rgb(221,88,17)" fg:x="119439" fg:w="62"/><text x="53.8630%" y="655.50"></text></g><g><title>native_write_msr (62 samples, 0.03%)</title><rect x="53.6130%" y="629" width="0.0278%" height="15" fill="rgb(230,79,15)" fg:x="119439" fg:w="62"/><text x="53.8630%" y="639.50"></text></g><g><title>__libc_fork (80 samples, 0.04%)</title><rect x="53.6062%" y="741" width="0.0359%" height="15" fill="rgb(213,57,13)" fg:x="119424" fg:w="80"/><text x="53.8562%" y="751.50"></text></g><g><title>arch_fork (80 samples, 0.04%)</title><rect x="53.6062%" y="725" width="0.0359%" height="15" fill="rgb(222,116,39)" fg:x="119424" fg:w="80"/><text x="53.8562%" y="735.50"></text></g><g><title>ret_from_fork (74 samples, 0.03%)</title><rect x="53.6089%" y="709" width="0.0332%" height="15" fill="rgb(245,107,2)" fg:x="119430" fg:w="74"/><text x="53.8589%" y="719.50"></text></g><g><title>schedule_tail (74 samples, 0.03%)</title><rect x="53.6089%" y="693" width="0.0332%" height="15" fill="rgb(238,1,10)" fg:x="119430" fg:w="74"/><text x="53.8589%" y="703.50"></text></g><g><title>finish_task_switch (70 samples, 0.03%)</title><rect x="53.6107%" y="677" width="0.0314%" height="15" fill="rgb(249,4,48)" fg:x="119434" fg:w="70"/><text x="53.8607%" y="687.50"></text></g><g><title>make_child (86 samples, 0.04%)</title><rect x="53.6058%" y="757" width="0.0386%" height="15" fill="rgb(223,151,18)" fg:x="119423" fg:w="86"/><text x="53.8558%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.02%)</title><rect x="53.6484%" y="597" width="0.0175%" height="15" fill="rgb(227,65,43)" fg:x="119518" fg:w="39"/><text x="53.8984%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.02%)</title><rect x="53.6484%" y="581" width="0.0175%" height="15" fill="rgb(218,40,45)" fg:x="119518" fg:w="39"/><text x="53.8984%" y="591.50"></text></g><g><title>native_write_msr (38 samples, 0.02%)</title><rect x="53.6489%" y="565" width="0.0171%" height="15" fill="rgb(252,121,31)" fg:x="119519" fg:w="38"/><text x="53.8989%" y="575.50"></text></g><g><title>schedule (44 samples, 0.02%)</title><rect x="53.6475%" y="645" width="0.0198%" height="15" fill="rgb(219,158,43)" fg:x="119516" fg:w="44"/><text x="53.8975%" y="655.50"></text></g><g><title>__schedule (44 samples, 0.02%)</title><rect x="53.6475%" y="629" width="0.0198%" height="15" fill="rgb(231,162,42)" fg:x="119516" fg:w="44"/><text x="53.8975%" y="639.50"></text></g><g><title>finish_task_switch (43 samples, 0.02%)</title><rect x="53.6480%" y="613" width="0.0193%" height="15" fill="rgb(217,179,25)" fg:x="119517" fg:w="43"/><text x="53.8980%" y="623.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="53.6462%" y="741" width="0.0220%" height="15" fill="rgb(206,212,31)" fg:x="119513" fg:w="49"/><text x="53.8962%" y="751.50"></text></g><g><title>__GI___wait4 (46 samples, 0.02%)</title><rect x="53.6475%" y="725" width="0.0206%" height="15" fill="rgb(235,144,12)" fg:x="119516" fg:w="46"/><text x="53.8975%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="53.6475%" y="709" width="0.0206%" height="15" fill="rgb(213,51,10)" fg:x="119516" fg:w="46"/><text x="53.8975%" y="719.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="53.6475%" y="693" width="0.0206%" height="15" fill="rgb(231,145,14)" fg:x="119516" fg:w="46"/><text x="53.8975%" y="703.50"></text></g><g><title>kernel_wait4 (46 samples, 0.02%)</title><rect x="53.6475%" y="677" width="0.0206%" height="15" fill="rgb(235,15,28)" fg:x="119516" fg:w="46"/><text x="53.8975%" y="687.50"></text></g><g><title>do_wait (46 samples, 0.02%)</title><rect x="53.6475%" y="661" width="0.0206%" height="15" fill="rgb(237,206,10)" fg:x="119516" fg:w="46"/><text x="53.8975%" y="671.50"></text></g><g><title>execute_command (184 samples, 0.08%)</title><rect x="53.5860%" y="789" width="0.0826%" height="15" fill="rgb(236,227,27)" fg:x="119379" fg:w="184"/><text x="53.8360%" y="799.50"></text></g><g><title>execute_command_internal (184 samples, 0.08%)</title><rect x="53.5860%" y="773" width="0.0826%" height="15" fill="rgb(246,83,35)" fg:x="119379" fg:w="184"/><text x="53.8360%" y="783.50"></text></g><g><title>wait_for (51 samples, 0.02%)</title><rect x="53.6457%" y="757" width="0.0229%" height="15" fill="rgb(220,136,24)" fg:x="119512" fg:w="51"/><text x="53.8957%" y="767.50"></text></g><g><title>[bash] (218 samples, 0.10%)</title><rect x="53.5829%" y="805" width="0.0979%" height="15" fill="rgb(217,3,25)" fg:x="119372" fg:w="218"/><text x="53.8329%" y="815.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="53.6686%" y="789" width="0.0121%" height="15" fill="rgb(239,24,14)" fg:x="119563" fg:w="27"/><text x="53.9186%" y="799.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="53.6686%" y="773" width="0.0121%" height="15" fill="rgb(244,16,53)" fg:x="119563" fg:w="27"/><text x="53.9186%" y="783.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="53.6686%" y="757" width="0.0121%" height="15" fill="rgb(208,175,44)" fg:x="119563" fg:w="27"/><text x="53.9186%" y="767.50"></text></g><g><title>copy_command (26 samples, 0.01%)</title><rect x="53.6983%" y="293" width="0.0117%" height="15" fill="rgb(252,18,48)" fg:x="119629" fg:w="26"/><text x="53.9483%" y="303.50"></text></g><g><title>copy_command (29 samples, 0.01%)</title><rect x="53.6983%" y="309" width="0.0130%" height="15" fill="rgb(234,199,32)" fg:x="119629" fg:w="29"/><text x="53.9483%" y="319.50"></text></g><g><title>copy_command (31 samples, 0.01%)</title><rect x="53.6978%" y="325" width="0.0139%" height="15" fill="rgb(225,77,54)" fg:x="119628" fg:w="31"/><text x="53.9478%" y="335.50"></text></g><g><title>copy_command (32 samples, 0.01%)</title><rect x="53.6978%" y="341" width="0.0144%" height="15" fill="rgb(225,42,25)" fg:x="119628" fg:w="32"/><text x="53.9478%" y="351.50"></text></g><g><title>copy_command (36 samples, 0.02%)</title><rect x="53.6965%" y="389" width="0.0162%" height="15" fill="rgb(242,227,46)" fg:x="119625" fg:w="36"/><text x="53.9465%" y="399.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="53.6969%" y="373" width="0.0157%" height="15" fill="rgb(246,197,35)" fg:x="119626" fg:w="35"/><text x="53.9469%" y="383.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="53.6974%" y="357" width="0.0153%" height="15" fill="rgb(215,159,26)" fg:x="119627" fg:w="34"/><text x="53.9474%" y="367.50"></text></g><g><title>copy_command (38 samples, 0.02%)</title><rect x="53.6960%" y="437" width="0.0171%" height="15" fill="rgb(212,194,50)" fg:x="119624" fg:w="38"/><text x="53.9460%" y="447.50"></text></g><g><title>copy_command (38 samples, 0.02%)</title><rect x="53.6960%" y="421" width="0.0171%" height="15" fill="rgb(246,132,1)" fg:x="119624" fg:w="38"/><text x="53.9460%" y="431.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="53.6965%" y="405" width="0.0166%" height="15" fill="rgb(217,71,7)" fg:x="119625" fg:w="37"/><text x="53.9465%" y="415.50"></text></g><g><title>copy_command (39 samples, 0.02%)</title><rect x="53.6960%" y="453" width="0.0175%" height="15" fill="rgb(252,59,32)" fg:x="119624" fg:w="39"/><text x="53.9460%" y="463.50"></text></g><g><title>copy_command (40 samples, 0.02%)</title><rect x="53.6960%" y="485" width="0.0180%" height="15" fill="rgb(253,204,25)" fg:x="119624" fg:w="40"/><text x="53.9460%" y="495.50"></text></g><g><title>copy_command (40 samples, 0.02%)</title><rect x="53.6960%" y="469" width="0.0180%" height="15" fill="rgb(232,21,16)" fg:x="119624" fg:w="40"/><text x="53.9460%" y="479.50"></text></g><g><title>copy_command (42 samples, 0.02%)</title><rect x="53.6960%" y="501" width="0.0189%" height="15" fill="rgb(248,90,29)" fg:x="119624" fg:w="42"/><text x="53.9460%" y="511.50"></text></g><g><title>copy_command (44 samples, 0.02%)</title><rect x="53.6960%" y="517" width="0.0198%" height="15" fill="rgb(249,223,7)" fg:x="119624" fg:w="44"/><text x="53.9460%" y="527.50"></text></g><g><title>copy_command (45 samples, 0.02%)</title><rect x="53.6960%" y="549" width="0.0202%" height="15" fill="rgb(231,119,42)" fg:x="119624" fg:w="45"/><text x="53.9460%" y="559.50"></text></g><g><title>copy_command (45 samples, 0.02%)</title><rect x="53.6960%" y="533" width="0.0202%" height="15" fill="rgb(215,41,35)" fg:x="119624" fg:w="45"/><text x="53.9460%" y="543.50"></text></g><g><title>copy_command (48 samples, 0.02%)</title><rect x="53.6951%" y="565" width="0.0215%" height="15" fill="rgb(220,44,45)" fg:x="119622" fg:w="48"/><text x="53.9451%" y="575.50"></text></g><g><title>copy_command (49 samples, 0.02%)</title><rect x="53.6951%" y="581" width="0.0220%" height="15" fill="rgb(253,197,36)" fg:x="119622" fg:w="49"/><text x="53.9451%" y="591.50"></text></g><g><title>copy_command (51 samples, 0.02%)</title><rect x="53.6951%" y="597" width="0.0229%" height="15" fill="rgb(245,225,54)" fg:x="119622" fg:w="51"/><text x="53.9451%" y="607.50"></text></g><g><title>copy_command (52 samples, 0.02%)</title><rect x="53.6951%" y="613" width="0.0233%" height="15" fill="rgb(239,94,37)" fg:x="119622" fg:w="52"/><text x="53.9451%" y="623.50"></text></g><g><title>copy_command (74 samples, 0.03%)</title><rect x="53.6861%" y="645" width="0.0332%" height="15" fill="rgb(242,217,10)" fg:x="119602" fg:w="74"/><text x="53.9361%" y="655.50"></text></g><g><title>copy_command (54 samples, 0.02%)</title><rect x="53.6951%" y="629" width="0.0242%" height="15" fill="rgb(250,193,7)" fg:x="119622" fg:w="54"/><text x="53.9451%" y="639.50"></text></g><g><title>copy_command (76 samples, 0.03%)</title><rect x="53.6857%" y="661" width="0.0341%" height="15" fill="rgb(230,104,19)" fg:x="119601" fg:w="76"/><text x="53.9357%" y="671.50"></text></g><g><title>copy_command (86 samples, 0.04%)</title><rect x="53.6857%" y="677" width="0.0386%" height="15" fill="rgb(230,181,4)" fg:x="119601" fg:w="86"/><text x="53.9357%" y="687.50"></text></g><g><title>copy_command (93 samples, 0.04%)</title><rect x="53.6839%" y="709" width="0.0417%" height="15" fill="rgb(216,219,49)" fg:x="119597" fg:w="93"/><text x="53.9339%" y="719.50"></text></g><g><title>copy_command (91 samples, 0.04%)</title><rect x="53.6848%" y="693" width="0.0408%" height="15" fill="rgb(254,144,0)" fg:x="119599" fg:w="91"/><text x="53.9348%" y="703.50"></text></g><g><title>copy_command (97 samples, 0.04%)</title><rect x="53.6830%" y="725" width="0.0435%" height="15" fill="rgb(205,209,38)" fg:x="119595" fg:w="97"/><text x="53.9330%" y="735.50"></text></g><g><title>copy_command (101 samples, 0.05%)</title><rect x="53.6826%" y="741" width="0.0453%" height="15" fill="rgb(240,21,42)" fg:x="119594" fg:w="101"/><text x="53.9326%" y="751.50"></text></g><g><title>copy_command (105 samples, 0.05%)</title><rect x="53.6821%" y="789" width="0.0471%" height="15" fill="rgb(241,132,3)" fg:x="119593" fg:w="105"/><text x="53.9321%" y="799.50"></text></g><g><title>copy_command (105 samples, 0.05%)</title><rect x="53.6821%" y="773" width="0.0471%" height="15" fill="rgb(225,14,2)" fg:x="119593" fg:w="105"/><text x="53.9321%" y="783.50"></text></g><g><title>copy_command (105 samples, 0.05%)</title><rect x="53.6821%" y="757" width="0.0471%" height="15" fill="rgb(210,141,35)" fg:x="119593" fg:w="105"/><text x="53.9321%" y="767.50"></text></g><g><title>bind_function (109 samples, 0.05%)</title><rect x="53.6812%" y="805" width="0.0489%" height="15" fill="rgb(251,14,44)" fg:x="119591" fg:w="109"/><text x="53.9312%" y="815.50"></text></g><g><title>copy_command (23 samples, 0.01%)</title><rect x="53.7463%" y="277" width="0.0103%" height="15" fill="rgb(247,48,18)" fg:x="119736" fg:w="23"/><text x="53.9963%" y="287.50"></text></g><g><title>copy_command (23 samples, 0.01%)</title><rect x="53.7463%" y="261" width="0.0103%" height="15" fill="rgb(225,0,40)" fg:x="119736" fg:w="23"/><text x="53.9963%" y="271.50"></text></g><g><title>copy_command (23 samples, 0.01%)</title><rect x="53.7463%" y="245" width="0.0103%" height="15" fill="rgb(221,31,33)" fg:x="119736" fg:w="23"/><text x="53.9963%" y="255.50"></text></g><g><title>copy_command (25 samples, 0.01%)</title><rect x="53.7463%" y="293" width="0.0112%" height="15" fill="rgb(237,42,40)" fg:x="119736" fg:w="25"/><text x="53.9963%" y="303.50"></text></g><g><title>copy_command (27 samples, 0.01%)</title><rect x="53.7458%" y="309" width="0.0121%" height="15" fill="rgb(233,51,29)" fg:x="119735" fg:w="27"/><text x="53.9958%" y="319.50"></text></g><g><title>copy_command (33 samples, 0.01%)</title><rect x="53.7445%" y="325" width="0.0148%" height="15" fill="rgb(226,58,20)" fg:x="119732" fg:w="33"/><text x="53.9945%" y="335.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="53.7445%" y="357" width="0.0153%" height="15" fill="rgb(208,98,7)" fg:x="119732" fg:w="34"/><text x="53.9945%" y="367.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="53.7445%" y="341" width="0.0153%" height="15" fill="rgb(228,143,44)" fg:x="119732" fg:w="34"/><text x="53.9945%" y="351.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="53.7445%" y="389" width="0.0157%" height="15" fill="rgb(246,55,38)" fg:x="119732" fg:w="35"/><text x="53.9945%" y="399.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="53.7445%" y="373" width="0.0157%" height="15" fill="rgb(247,87,16)" fg:x="119732" fg:w="35"/><text x="53.9945%" y="383.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="53.7445%" y="421" width="0.0166%" height="15" fill="rgb(234,129,42)" fg:x="119732" fg:w="37"/><text x="53.9945%" y="431.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="53.7445%" y="405" width="0.0166%" height="15" fill="rgb(220,82,16)" fg:x="119732" fg:w="37"/><text x="53.9945%" y="415.50"></text></g><g><title>copy_command (38 samples, 0.02%)</title><rect x="53.7445%" y="437" width="0.0171%" height="15" fill="rgb(211,88,4)" fg:x="119732" fg:w="38"/><text x="53.9945%" y="447.50"></text></g><g><title>copy_command (39 samples, 0.02%)</title><rect x="53.7445%" y="453" width="0.0175%" height="15" fill="rgb(248,151,21)" fg:x="119732" fg:w="39"/><text x="53.9945%" y="463.50"></text></g><g><title>copy_command (40 samples, 0.02%)</title><rect x="53.7445%" y="485" width="0.0180%" height="15" fill="rgb(238,163,6)" fg:x="119732" fg:w="40"/><text x="53.9945%" y="495.50"></text></g><g><title>copy_command (40 samples, 0.02%)</title><rect x="53.7445%" y="469" width="0.0180%" height="15" fill="rgb(209,183,11)" fg:x="119732" fg:w="40"/><text x="53.9945%" y="479.50"></text></g><g><title>copy_command (43 samples, 0.02%)</title><rect x="53.7436%" y="533" width="0.0193%" height="15" fill="rgb(219,37,20)" fg:x="119730" fg:w="43"/><text x="53.9936%" y="543.50"></text></g><g><title>copy_command (43 samples, 0.02%)</title><rect x="53.7436%" y="517" width="0.0193%" height="15" fill="rgb(210,158,4)" fg:x="119730" fg:w="43"/><text x="53.9936%" y="527.50"></text></g><g><title>copy_command (41 samples, 0.02%)</title><rect x="53.7445%" y="501" width="0.0184%" height="15" fill="rgb(221,167,53)" fg:x="119732" fg:w="41"/><text x="53.9945%" y="511.50"></text></g><g><title>copy_command (45 samples, 0.02%)</title><rect x="53.7436%" y="549" width="0.0202%" height="15" fill="rgb(237,151,45)" fg:x="119730" fg:w="45"/><text x="53.9936%" y="559.50"></text></g><g><title>copy_command (47 samples, 0.02%)</title><rect x="53.7432%" y="581" width="0.0211%" height="15" fill="rgb(231,39,3)" fg:x="119729" fg:w="47"/><text x="53.9932%" y="591.50"></text></g><g><title>copy_command (46 samples, 0.02%)</title><rect x="53.7436%" y="565" width="0.0206%" height="15" fill="rgb(212,167,28)" fg:x="119730" fg:w="46"/><text x="53.9936%" y="575.50"></text></g><g><title>copy_command (49 samples, 0.02%)</title><rect x="53.7432%" y="597" width="0.0220%" height="15" fill="rgb(232,178,8)" fg:x="119729" fg:w="49"/><text x="53.9932%" y="607.50"></text></g><g><title>copy_command (51 samples, 0.02%)</title><rect x="53.7427%" y="613" width="0.0229%" height="15" fill="rgb(225,151,20)" fg:x="119728" fg:w="51"/><text x="53.9927%" y="623.50"></text></g><g><title>copy_command (53 samples, 0.02%)</title><rect x="53.7427%" y="629" width="0.0238%" height="15" fill="rgb(238,3,37)" fg:x="119728" fg:w="53"/><text x="53.9927%" y="639.50"></text></g><g><title>copy_command (67 samples, 0.03%)</title><rect x="53.7369%" y="645" width="0.0301%" height="15" fill="rgb(251,147,42)" fg:x="119715" fg:w="67"/><text x="53.9869%" y="655.50"></text></g><g><title>copy_command (68 samples, 0.03%)</title><rect x="53.7369%" y="661" width="0.0305%" height="15" fill="rgb(208,173,10)" fg:x="119715" fg:w="68"/><text x="53.9869%" y="671.50"></text></g><g><title>copy_command (71 samples, 0.03%)</title><rect x="53.7364%" y="677" width="0.0319%" height="15" fill="rgb(246,225,4)" fg:x="119714" fg:w="71"/><text x="53.9864%" y="687.50"></text></g><g><title>copy_command (73 samples, 0.03%)</title><rect x="53.7360%" y="693" width="0.0328%" height="15" fill="rgb(248,102,6)" fg:x="119713" fg:w="73"/><text x="53.9860%" y="703.50"></text></g><g><title>copy_command (81 samples, 0.04%)</title><rect x="53.7342%" y="709" width="0.0364%" height="15" fill="rgb(232,6,21)" fg:x="119709" fg:w="81"/><text x="53.9842%" y="719.50"></text></g><g><title>copy_command (87 samples, 0.04%)</title><rect x="53.7333%" y="725" width="0.0391%" height="15" fill="rgb(221,179,22)" fg:x="119707" fg:w="87"/><text x="53.9833%" y="735.50"></text></g><g><title>copy_command (95 samples, 0.04%)</title><rect x="53.7315%" y="741" width="0.0426%" height="15" fill="rgb(252,50,20)" fg:x="119703" fg:w="95"/><text x="53.9815%" y="751.50"></text></g><g><title>copy_command (98 samples, 0.04%)</title><rect x="53.7306%" y="757" width="0.0440%" height="15" fill="rgb(222,56,38)" fg:x="119701" fg:w="98"/><text x="53.9806%" y="767.50"></text></g><g><title>copy_function_def_contents (99 samples, 0.04%)</title><rect x="53.7306%" y="805" width="0.0444%" height="15" fill="rgb(206,193,29)" fg:x="119701" fg:w="99"/><text x="53.9806%" y="815.50"></text></g><g><title>copy_command (99 samples, 0.04%)</title><rect x="53.7306%" y="789" width="0.0444%" height="15" fill="rgb(239,192,45)" fg:x="119701" fg:w="99"/><text x="53.9806%" y="799.50"></text></g><g><title>copy_command (99 samples, 0.04%)</title><rect x="53.7306%" y="773" width="0.0444%" height="15" fill="rgb(254,18,36)" fg:x="119701" fg:w="99"/><text x="53.9806%" y="783.50"></text></g><g><title>[bash] (24 samples, 0.01%)</title><rect x="53.7759%" y="773" width="0.0108%" height="15" fill="rgb(221,127,11)" fg:x="119802" fg:w="24"/><text x="54.0259%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.03%)</title><rect x="53.8029%" y="629" width="0.0310%" height="15" fill="rgb(234,146,35)" fg:x="119862" fg:w="69"/><text x="54.0529%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.03%)</title><rect x="53.8029%" y="613" width="0.0310%" height="15" fill="rgb(254,201,37)" fg:x="119862" fg:w="69"/><text x="54.0529%" y="623.50"></text></g><g><title>native_write_msr (69 samples, 0.03%)</title><rect x="53.8029%" y="597" width="0.0310%" height="15" fill="rgb(211,202,23)" fg:x="119862" fg:w="69"/><text x="54.0529%" y="607.50"></text></g><g><title>schedule_tail (83 samples, 0.04%)</title><rect x="53.7975%" y="661" width="0.0373%" height="15" fill="rgb(237,91,2)" fg:x="119850" fg:w="83"/><text x="54.0475%" y="671.50"></text></g><g><title>finish_task_switch (75 samples, 0.03%)</title><rect x="53.8011%" y="645" width="0.0337%" height="15" fill="rgb(226,228,36)" fg:x="119858" fg:w="75"/><text x="54.0511%" y="655.50"></text></g><g><title>__libc_fork (95 samples, 0.04%)</title><rect x="53.7925%" y="709" width="0.0426%" height="15" fill="rgb(213,63,50)" fg:x="119839" fg:w="95"/><text x="54.0425%" y="719.50"></text></g><g><title>arch_fork (92 samples, 0.04%)</title><rect x="53.7939%" y="693" width="0.0413%" height="15" fill="rgb(235,194,19)" fg:x="119842" fg:w="92"/><text x="54.0439%" y="703.50"></text></g><g><title>ret_from_fork (84 samples, 0.04%)</title><rect x="53.7975%" y="677" width="0.0377%" height="15" fill="rgb(207,204,18)" fg:x="119850" fg:w="84"/><text x="54.0475%" y="687.50"></text></g><g><title>make_child (98 samples, 0.04%)</title><rect x="53.7925%" y="725" width="0.0440%" height="15" fill="rgb(248,8,7)" fg:x="119839" fg:w="98"/><text x="54.0425%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.03%)</title><rect x="53.8513%" y="597" width="0.0305%" height="15" fill="rgb(223,145,47)" fg:x="119970" fg:w="68"/><text x="54.1013%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.03%)</title><rect x="53.8518%" y="581" width="0.0301%" height="15" fill="rgb(228,84,11)" fg:x="119971" fg:w="67"/><text x="54.1018%" y="591.50"></text></g><g><title>native_write_msr (67 samples, 0.03%)</title><rect x="53.8518%" y="565" width="0.0301%" height="15" fill="rgb(218,76,45)" fg:x="119971" fg:w="67"/><text x="54.1018%" y="575.50"></text></g><g><title>arch_fork (88 samples, 0.04%)</title><rect x="53.8433%" y="661" width="0.0395%" height="15" fill="rgb(223,80,15)" fg:x="119952" fg:w="88"/><text x="54.0933%" y="671.50"></text></g><g><title>ret_from_fork (82 samples, 0.04%)</title><rect x="53.8459%" y="645" width="0.0368%" height="15" fill="rgb(219,218,33)" fg:x="119958" fg:w="82"/><text x="54.0959%" y="655.50"></text></g><g><title>schedule_tail (82 samples, 0.04%)</title><rect x="53.8459%" y="629" width="0.0368%" height="15" fill="rgb(208,51,11)" fg:x="119958" fg:w="82"/><text x="54.0959%" y="639.50"></text></g><g><title>finish_task_switch (72 samples, 0.03%)</title><rect x="53.8504%" y="613" width="0.0323%" height="15" fill="rgb(229,165,39)" fg:x="119968" fg:w="72"/><text x="54.1004%" y="623.50"></text></g><g><title>__libc_fork (92 samples, 0.04%)</title><rect x="53.8424%" y="677" width="0.0413%" height="15" fill="rgb(241,100,24)" fg:x="119950" fg:w="92"/><text x="54.0924%" y="687.50"></text></g><g><title>make_child (94 samples, 0.04%)</title><rect x="53.8424%" y="693" width="0.0422%" height="15" fill="rgb(228,14,23)" fg:x="119950" fg:w="94"/><text x="54.0924%" y="703.50"></text></g><g><title>[bash] (23 samples, 0.01%)</title><rect x="53.8850%" y="677" width="0.0103%" height="15" fill="rgb(247,116,52)" fg:x="120045" fg:w="23"/><text x="54.1350%" y="687.50"></text></g><g><title>parse_and_execute (133 samples, 0.06%)</title><rect x="53.8365%" y="725" width="0.0597%" height="15" fill="rgb(216,149,33)" fg:x="119937" fg:w="133"/><text x="54.0865%" y="735.50"></text></g><g><title>execute_command_internal (131 samples, 0.06%)</title><rect x="53.8374%" y="709" width="0.0588%" height="15" fill="rgb(238,142,29)" fg:x="119939" fg:w="131"/><text x="54.0874%" y="719.50"></text></g><g><title>wait_for (25 samples, 0.01%)</title><rect x="53.8850%" y="693" width="0.0112%" height="15" fill="rgb(224,83,40)" fg:x="120045" fg:w="25"/><text x="54.1350%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.02%)</title><rect x="53.8998%" y="549" width="0.0229%" height="15" fill="rgb(234,165,11)" fg:x="120078" fg:w="51"/><text x="54.1498%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.02%)</title><rect x="53.9007%" y="533" width="0.0220%" height="15" fill="rgb(215,96,23)" fg:x="120080" fg:w="49"/><text x="54.1507%" y="543.50"></text></g><g><title>native_write_msr (48 samples, 0.02%)</title><rect x="53.9012%" y="517" width="0.0215%" height="15" fill="rgb(233,179,26)" fg:x="120081" fg:w="48"/><text x="54.1512%" y="527.50"></text></g><g><title>do_syscall_64 (56 samples, 0.03%)</title><rect x="53.8985%" y="677" width="0.0251%" height="15" fill="rgb(225,129,33)" fg:x="120075" fg:w="56"/><text x="54.1485%" y="687.50"></text></g><g><title>ksys_read (56 samples, 0.03%)</title><rect x="53.8985%" y="661" width="0.0251%" height="15" fill="rgb(237,49,13)" fg:x="120075" fg:w="56"/><text x="54.1485%" y="671.50"></text></g><g><title>vfs_read (56 samples, 0.03%)</title><rect x="53.8985%" y="645" width="0.0251%" height="15" fill="rgb(211,3,31)" fg:x="120075" fg:w="56"/><text x="54.1485%" y="655.50"></text></g><g><title>new_sync_read (55 samples, 0.02%)</title><rect x="53.8989%" y="629" width="0.0247%" height="15" fill="rgb(216,152,19)" fg:x="120076" fg:w="55"/><text x="54.1489%" y="639.50"></text></g><g><title>pipe_read (55 samples, 0.02%)</title><rect x="53.8989%" y="613" width="0.0247%" height="15" fill="rgb(251,121,35)" fg:x="120076" fg:w="55"/><text x="54.1489%" y="623.50"></text></g><g><title>schedule (53 samples, 0.02%)</title><rect x="53.8998%" y="597" width="0.0238%" height="15" fill="rgb(210,217,47)" fg:x="120078" fg:w="53"/><text x="54.1498%" y="607.50"></text></g><g><title>__schedule (53 samples, 0.02%)</title><rect x="53.8998%" y="581" width="0.0238%" height="15" fill="rgb(244,116,22)" fg:x="120078" fg:w="53"/><text x="54.1498%" y="591.50"></text></g><g><title>finish_task_switch (53 samples, 0.02%)</title><rect x="53.8998%" y="565" width="0.0238%" height="15" fill="rgb(228,17,21)" fg:x="120078" fg:w="53"/><text x="54.1498%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.03%)</title><rect x="53.8985%" y="693" width="0.0256%" height="15" fill="rgb(240,149,34)" fg:x="120075" fg:w="57"/><text x="54.1485%" y="703.50"></text></g><g><title>command_substitute (305 samples, 0.14%)</title><rect x="53.7876%" y="741" width="0.1369%" height="15" fill="rgb(208,125,47)" fg:x="119828" fg:w="305"/><text x="54.0376%" y="751.50"></text></g><g><title>zread (58 samples, 0.03%)</title><rect x="53.8985%" y="725" width="0.0260%" height="15" fill="rgb(249,186,39)" fg:x="120075" fg:w="58"/><text x="54.1485%" y="735.50"></text></g><g><title>__GI___libc_read (58 samples, 0.03%)</title><rect x="53.8985%" y="709" width="0.0260%" height="15" fill="rgb(240,220,33)" fg:x="120075" fg:w="58"/><text x="54.1485%" y="719.50"></text></g><g><title>expand_word_leave_quoted (306 samples, 0.14%)</title><rect x="53.7876%" y="773" width="0.1374%" height="15" fill="rgb(243,110,23)" fg:x="119828" fg:w="306"/><text x="54.0376%" y="783.50"></text></g><g><title>[bash] (306 samples, 0.14%)</title><rect x="53.7876%" y="757" width="0.1374%" height="15" fill="rgb(219,163,46)" fg:x="119828" fg:w="306"/><text x="54.0376%" y="767.50"></text></g><g><title>execute_command (341 samples, 0.15%)</title><rect x="53.7755%" y="805" width="0.1531%" height="15" fill="rgb(216,126,30)" fg:x="119801" fg:w="341"/><text x="54.0255%" y="815.50"></text></g><g><title>execute_command_internal (341 samples, 0.15%)</title><rect x="53.7755%" y="789" width="0.1531%" height="15" fill="rgb(208,139,11)" fg:x="119801" fg:w="341"/><text x="54.0255%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (86 samples, 0.04%)</title><rect x="53.9528%" y="613" width="0.0386%" height="15" fill="rgb(213,118,36)" fg:x="120196" fg:w="86"/><text x="54.2028%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (85 samples, 0.04%)</title><rect x="53.9532%" y="597" width="0.0382%" height="15" fill="rgb(226,43,17)" fg:x="120197" fg:w="85"/><text x="54.2032%" y="607.50"></text></g><g><title>native_write_msr (84 samples, 0.04%)</title><rect x="53.9537%" y="581" width="0.0377%" height="15" fill="rgb(254,217,4)" fg:x="120198" fg:w="84"/><text x="54.2037%" y="591.50"></text></g><g><title>arch_fork (113 samples, 0.05%)</title><rect x="53.9411%" y="677" width="0.0507%" height="15" fill="rgb(210,134,47)" fg:x="120170" fg:w="113"/><text x="54.1911%" y="687.50"></text></g><g><title>ret_from_fork (105 samples, 0.05%)</title><rect x="53.9447%" y="661" width="0.0471%" height="15" fill="rgb(237,24,49)" fg:x="120178" fg:w="105"/><text x="54.1947%" y="671.50"></text></g><g><title>schedule_tail (105 samples, 0.05%)</title><rect x="53.9447%" y="645" width="0.0471%" height="15" fill="rgb(251,39,46)" fg:x="120178" fg:w="105"/><text x="54.1947%" y="655.50"></text></g><g><title>finish_task_switch (93 samples, 0.04%)</title><rect x="53.9501%" y="629" width="0.0417%" height="15" fill="rgb(251,220,3)" fg:x="120190" fg:w="93"/><text x="54.2001%" y="639.50"></text></g><g><title>__libc_fork (117 samples, 0.05%)</title><rect x="53.9398%" y="693" width="0.0525%" height="15" fill="rgb(228,105,12)" fg:x="120167" fg:w="117"/><text x="54.1898%" y="703.50"></text></g><g><title>make_child (121 samples, 0.05%)</title><rect x="53.9393%" y="709" width="0.0543%" height="15" fill="rgb(215,196,1)" fg:x="120166" fg:w="121"/><text x="54.1893%" y="719.50"></text></g><g><title>[bash] (25 samples, 0.01%)</title><rect x="53.9959%" y="629" width="0.0112%" height="15" fill="rgb(214,33,39)" fg:x="120292" fg:w="25"/><text x="54.2459%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (139 samples, 0.06%)</title><rect x="54.0309%" y="533" width="0.0624%" height="15" fill="rgb(220,19,52)" fg:x="120370" fg:w="139"/><text x="54.2809%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (136 samples, 0.06%)</title><rect x="54.0322%" y="517" width="0.0610%" height="15" fill="rgb(221,78,38)" fg:x="120373" fg:w="136"/><text x="54.2822%" y="527.50"></text></g><g><title>native_write_msr (136 samples, 0.06%)</title><rect x="54.0322%" y="501" width="0.0610%" height="15" fill="rgb(253,30,16)" fg:x="120373" fg:w="136"/><text x="54.2822%" y="511.50"></text></g><g><title>schedule_tail (164 samples, 0.07%)</title><rect x="54.0201%" y="565" width="0.0736%" height="15" fill="rgb(242,65,0)" fg:x="120346" fg:w="164"/><text x="54.2701%" y="575.50"></text></g><g><title>finish_task_switch (153 samples, 0.07%)</title><rect x="54.0250%" y="549" width="0.0687%" height="15" fill="rgb(235,201,12)" fg:x="120357" fg:w="153"/><text x="54.2750%" y="559.50"></text></g><g><title>arch_fork (177 samples, 0.08%)</title><rect x="54.0147%" y="597" width="0.0795%" height="15" fill="rgb(233,161,9)" fg:x="120334" fg:w="177"/><text x="54.2647%" y="607.50"></text></g><g><title>ret_from_fork (165 samples, 0.07%)</title><rect x="54.0201%" y="581" width="0.0741%" height="15" fill="rgb(241,207,41)" fg:x="120346" fg:w="165"/><text x="54.2701%" y="591.50"></text></g><g><title>__libc_fork (182 samples, 0.08%)</title><rect x="54.0138%" y="613" width="0.0817%" height="15" fill="rgb(212,69,46)" fg:x="120332" fg:w="182"/><text x="54.2638%" y="623.50"></text></g><g><title>make_child (185 samples, 0.08%)</title><rect x="54.0138%" y="629" width="0.0830%" height="15" fill="rgb(239,69,45)" fg:x="120332" fg:w="185"/><text x="54.2638%" y="639.50"></text></g><g><title>schedule (34 samples, 0.02%)</title><rect x="54.0978%" y="517" width="0.0153%" height="15" fill="rgb(242,117,48)" fg:x="120519" fg:w="34"/><text x="54.3478%" y="527.50"></text></g><g><title>__schedule (34 samples, 0.02%)</title><rect x="54.0978%" y="501" width="0.0153%" height="15" fill="rgb(228,41,36)" fg:x="120519" fg:w="34"/><text x="54.3478%" y="511.50"></text></g><g><title>finish_task_switch (34 samples, 0.02%)</title><rect x="54.0978%" y="485" width="0.0153%" height="15" fill="rgb(212,3,32)" fg:x="120519" fg:w="34"/><text x="54.3478%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.01%)</title><rect x="54.0987%" y="469" width="0.0144%" height="15" fill="rgb(233,41,49)" fg:x="120521" fg:w="32"/><text x="54.3487%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.01%)</title><rect x="54.0991%" y="453" width="0.0139%" height="15" fill="rgb(252,170,49)" fg:x="120522" fg:w="31"/><text x="54.3491%" y="463.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="54.0996%" y="437" width="0.0135%" height="15" fill="rgb(229,53,26)" fg:x="120523" fg:w="30"/><text x="54.3496%" y="447.50"></text></g><g><title>__GI___wait4 (38 samples, 0.02%)</title><rect x="54.0973%" y="597" width="0.0171%" height="15" fill="rgb(217,157,12)" fg:x="120518" fg:w="38"/><text x="54.3473%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.02%)</title><rect x="54.0973%" y="581" width="0.0171%" height="15" fill="rgb(227,17,9)" fg:x="120518" fg:w="38"/><text x="54.3473%" y="591.50"></text></g><g><title>do_syscall_64 (38 samples, 0.02%)</title><rect x="54.0973%" y="565" width="0.0171%" height="15" fill="rgb(218,84,12)" fg:x="120518" fg:w="38"/><text x="54.3473%" y="575.50"></text></g><g><title>kernel_wait4 (38 samples, 0.02%)</title><rect x="54.0973%" y="549" width="0.0171%" height="15" fill="rgb(212,79,24)" fg:x="120518" fg:w="38"/><text x="54.3473%" y="559.50"></text></g><g><title>do_wait (38 samples, 0.02%)</title><rect x="54.0973%" y="533" width="0.0171%" height="15" fill="rgb(217,222,37)" fg:x="120518" fg:w="38"/><text x="54.3473%" y="543.50"></text></g><g><title>[bash] (40 samples, 0.02%)</title><rect x="54.0973%" y="613" width="0.0180%" height="15" fill="rgb(246,208,8)" fg:x="120518" fg:w="40"/><text x="54.3473%" y="623.50"></text></g><g><title>execute_command_internal (271 samples, 0.12%)</title><rect x="53.9945%" y="693" width="0.1216%" height="15" fill="rgb(244,133,10)" fg:x="120289" fg:w="271"/><text x="54.2445%" y="703.50"></text></g><g><title>[bash] (271 samples, 0.12%)</title><rect x="53.9945%" y="677" width="0.1216%" height="15" fill="rgb(209,219,41)" fg:x="120289" fg:w="271"/><text x="54.2445%" y="687.50"></text></g><g><title>[bash] (271 samples, 0.12%)</title><rect x="53.9945%" y="661" width="0.1216%" height="15" fill="rgb(253,175,45)" fg:x="120289" fg:w="271"/><text x="54.2445%" y="671.50"></text></g><g><title>execute_command_internal (268 samples, 0.12%)</title><rect x="53.9959%" y="645" width="0.1203%" height="15" fill="rgb(235,100,37)" fg:x="120292" fg:w="268"/><text x="54.2459%" y="655.50"></text></g><g><title>wait_for (42 samples, 0.02%)</title><rect x="54.0973%" y="629" width="0.0189%" height="15" fill="rgb(225,87,19)" fg:x="120518" fg:w="42"/><text x="54.3473%" y="639.50"></text></g><g><title>parse_and_execute (274 samples, 0.12%)</title><rect x="53.9936%" y="709" width="0.1230%" height="15" fill="rgb(217,152,17)" fg:x="120287" fg:w="274"/><text x="54.2436%" y="719.50"></text></g><g><title>do_syscall_64 (23 samples, 0.01%)</title><rect x="54.1180%" y="661" width="0.0103%" height="15" fill="rgb(235,72,13)" fg:x="120564" fg:w="23"/><text x="54.3680%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.01%)</title><rect x="54.1180%" y="677" width="0.0108%" height="15" fill="rgb(233,140,18)" fg:x="120564" fg:w="24"/><text x="54.3680%" y="687.50"></text></g><g><title>command_substitute (437 samples, 0.20%)</title><rect x="53.9335%" y="725" width="0.1962%" height="15" fill="rgb(207,212,28)" fg:x="120153" fg:w="437"/><text x="54.1835%" y="735.50"></text></g><g><title>zread (26 samples, 0.01%)</title><rect x="54.1180%" y="709" width="0.0117%" height="15" fill="rgb(220,130,25)" fg:x="120564" fg:w="26"/><text x="54.3680%" y="719.50"></text></g><g><title>__GI___libc_read (26 samples, 0.01%)</title><rect x="54.1180%" y="693" width="0.0117%" height="15" fill="rgb(205,55,34)" fg:x="120564" fg:w="26"/><text x="54.3680%" y="703.50"></text></g><g><title>[bash] (447 samples, 0.20%)</title><rect x="53.9294%" y="741" width="0.2006%" height="15" fill="rgb(237,54,35)" fg:x="120144" fg:w="447"/><text x="54.1794%" y="751.50"></text></g><g><title>[bash] (451 samples, 0.20%)</title><rect x="53.9294%" y="757" width="0.2024%" height="15" fill="rgb(208,67,23)" fg:x="120144" fg:w="451"/><text x="54.1794%" y="767.50"></text></g><g><title>[bash] (456 samples, 0.20%)</title><rect x="53.9285%" y="773" width="0.2047%" height="15" fill="rgb(206,207,50)" fg:x="120142" fg:w="456"/><text x="54.1785%" y="783.50"></text></g><g><title>expand_words (463 samples, 0.21%)</title><rect x="53.9285%" y="805" width="0.2078%" height="15" fill="rgb(213,211,42)" fg:x="120142" fg:w="463"/><text x="54.1785%" y="815.50"></text></g><g><title>[bash] (463 samples, 0.21%)</title><rect x="53.9285%" y="789" width="0.2078%" height="15" fill="rgb(252,197,50)" fg:x="120142" fg:w="463"/><text x="54.1785%" y="799.50"></text></g><g><title>execute_command_internal (1,238 samples, 0.56%)</title><rect x="53.5820%" y="821" width="0.5557%" height="15" fill="rgb(251,211,41)" fg:x="119370" fg:w="1238"/><text x="53.8320%" y="831.50"></text></g><g><title>execute_command (1,241 samples, 0.56%)</title><rect x="53.5816%" y="837" width="0.5571%" height="15" fill="rgb(229,211,5)" fg:x="119369" fg:w="1241"/><text x="53.8316%" y="847.50"></text></g><g><title>[bash] (54 samples, 0.02%)</title><rect x="54.3065%" y="757" width="0.0242%" height="15" fill="rgb(239,36,31)" fg:x="120984" fg:w="54"/><text x="54.5565%" y="767.50"></text></g><g><title>buffered_getchar (73 samples, 0.03%)</title><rect x="54.3321%" y="757" width="0.0328%" height="15" fill="rgb(248,67,31)" fg:x="121041" fg:w="73"/><text x="54.5821%" y="767.50"></text></g><g><title>[bash] (311 samples, 0.14%)</title><rect x="54.2284%" y="773" width="0.1396%" height="15" fill="rgb(249,55,44)" fg:x="120810" fg:w="311"/><text x="54.4784%" y="783.50"></text></g><g><title>[bash] (528 samples, 0.24%)</title><rect x="54.1741%" y="789" width="0.2370%" height="15" fill="rgb(216,82,12)" fg:x="120689" fg:w="528"/><text x="54.4241%" y="799.50"></text></g><g><title>make_simple_command (28 samples, 0.01%)</title><rect x="54.4201%" y="789" width="0.0126%" height="15" fill="rgb(242,174,1)" fg:x="121237" fg:w="28"/><text x="54.6701%" y="799.50"></text></g><g><title>xmalloc (25 samples, 0.01%)</title><rect x="54.4214%" y="773" width="0.0112%" height="15" fill="rgb(208,120,29)" fg:x="121240" fg:w="25"/><text x="54.6714%" y="783.50"></text></g><g><title>__GI___libc_malloc (24 samples, 0.01%)</title><rect x="54.4219%" y="757" width="0.0108%" height="15" fill="rgb(221,105,43)" fg:x="121241" fg:w="24"/><text x="54.6719%" y="767.50"></text></g><g><title>reader_loop (1,927 samples, 0.86%)</title><rect x="53.5690%" y="853" width="0.8650%" height="15" fill="rgb(234,124,22)" fg:x="119341" fg:w="1927"/><text x="53.8190%" y="863.50"></text></g><g><title>read_command (658 samples, 0.30%)</title><rect x="54.1386%" y="837" width="0.2954%" height="15" fill="rgb(212,23,30)" fg:x="120610" fg:w="658"/><text x="54.3886%" y="847.50"></text></g><g><title>parse_command (658 samples, 0.30%)</title><rect x="54.1386%" y="821" width="0.2954%" height="15" fill="rgb(219,122,53)" fg:x="120610" fg:w="658"/><text x="54.3886%" y="831.50"></text></g><g><title>yyparse (658 samples, 0.30%)</title><rect x="54.1386%" y="805" width="0.2954%" height="15" fill="rgb(248,84,24)" fg:x="120610" fg:w="658"/><text x="54.3886%" y="815.50"></text></g><g><title>__libc_start_main (1,945 samples, 0.87%)</title><rect x="53.5645%" y="885" width="0.8731%" height="15" fill="rgb(245,115,18)" fg:x="119331" fg:w="1945"/><text x="53.8145%" y="895.50"></text></g><g><title>main (1,945 samples, 0.87%)</title><rect x="53.5645%" y="869" width="0.8731%" height="15" fill="rgb(227,176,51)" fg:x="119331" fg:w="1945"/><text x="53.8145%" y="879.50"></text></g><g><title>_start (1,967 samples, 0.88%)</title><rect x="53.5645%" y="901" width="0.8829%" height="15" fill="rgb(229,63,42)" fg:x="119331" fg:w="1967"/><text x="53.8145%" y="911.50"></text></g><g><title>asm_exc_page_fault (42 samples, 0.02%)</title><rect x="54.4474%" y="901" width="0.0189%" height="15" fill="rgb(247,202,24)" fg:x="121298" fg:w="42"/><text x="54.6974%" y="911.50"></text></g><g><title>mmput (44 samples, 0.02%)</title><rect x="54.4717%" y="821" width="0.0198%" height="15" fill="rgb(244,173,20)" fg:x="121352" fg:w="44"/><text x="54.7217%" y="831.50"></text></g><g><title>exit_mmap (44 samples, 0.02%)</title><rect x="54.4717%" y="805" width="0.0198%" height="15" fill="rgb(242,81,47)" fg:x="121352" fg:w="44"/><text x="54.7217%" y="815.50"></text></g><g><title>__x64_sys_exit_group (47 samples, 0.02%)</title><rect x="54.4717%" y="869" width="0.0211%" height="15" fill="rgb(231,185,54)" fg:x="121352" fg:w="47"/><text x="54.7217%" y="879.50"></text></g><g><title>do_group_exit (47 samples, 0.02%)</title><rect x="54.4717%" y="853" width="0.0211%" height="15" fill="rgb(243,55,32)" fg:x="121352" fg:w="47"/><text x="54.7217%" y="863.50"></text></g><g><title>do_exit (47 samples, 0.02%)</title><rect x="54.4717%" y="837" width="0.0211%" height="15" fill="rgb(208,167,19)" fg:x="121352" fg:w="47"/><text x="54.7217%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.03%)</title><rect x="54.4663%" y="901" width="0.0269%" height="15" fill="rgb(231,72,35)" fg:x="121340" fg:w="60"/><text x="54.7163%" y="911.50"></text></g><g><title>do_syscall_64 (60 samples, 0.03%)</title><rect x="54.4663%" y="885" width="0.0269%" height="15" fill="rgb(250,173,51)" fg:x="121340" fg:w="60"/><text x="54.7163%" y="895.50"></text></g><g><title>libtool (2,576 samples, 1.16%)</title><rect x="53.3383%" y="917" width="1.1563%" height="15" fill="rgb(209,5,22)" fg:x="118827" fg:w="2576"/><text x="53.5883%" y="927.50"></text></g><g><title>copy_tree (28 samples, 0.01%)</title><rect x="54.5345%" y="725" width="0.0126%" height="15" fill="rgb(250,174,19)" fg:x="121492" fg:w="28"/><text x="54.7845%" y="735.50"></text></g><g><title>clone_mnt (23 samples, 0.01%)</title><rect x="54.5368%" y="709" width="0.0103%" height="15" fill="rgb(217,3,49)" fg:x="121497" fg:w="23"/><text x="54.7868%" y="719.50"></text></g><g><title>copy_namespaces (53 samples, 0.02%)</title><rect x="54.5242%" y="773" width="0.0238%" height="15" fill="rgb(218,225,5)" fg:x="121469" fg:w="53"/><text x="54.7742%" y="783.50"></text></g><g><title>create_new_namespaces (53 samples, 0.02%)</title><rect x="54.5242%" y="757" width="0.0238%" height="15" fill="rgb(236,89,11)" fg:x="121469" fg:w="53"/><text x="54.7742%" y="767.50"></text></g><g><title>copy_mnt_ns (33 samples, 0.01%)</title><rect x="54.5332%" y="741" width="0.0148%" height="15" fill="rgb(206,33,28)" fg:x="121489" fg:w="33"/><text x="54.7832%" y="751.50"></text></g><g><title>dup_mm (45 samples, 0.02%)</title><rect x="54.5484%" y="773" width="0.0202%" height="15" fill="rgb(241,56,42)" fg:x="121523" fg:w="45"/><text x="54.7984%" y="783.50"></text></g><g><title>copy_process (127 samples, 0.06%)</title><rect x="54.5170%" y="789" width="0.0570%" height="15" fill="rgb(222,44,11)" fg:x="121453" fg:w="127"/><text x="54.7670%" y="799.50"></text></g><g><title>__libc_start_main (131 samples, 0.06%)</title><rect x="54.5166%" y="885" width="0.0588%" height="15" fill="rgb(234,111,20)" fg:x="121452" fg:w="131"/><text x="54.7666%" y="895.50"></text></g><g><title>__GI___clone (131 samples, 0.06%)</title><rect x="54.5166%" y="869" width="0.0588%" height="15" fill="rgb(237,77,6)" fg:x="121452" fg:w="131"/><text x="54.7666%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (131 samples, 0.06%)</title><rect x="54.5166%" y="853" width="0.0588%" height="15" fill="rgb(235,111,23)" fg:x="121452" fg:w="131"/><text x="54.7666%" y="863.50"></text></g><g><title>do_syscall_64 (130 samples, 0.06%)</title><rect x="54.5170%" y="837" width="0.0584%" height="15" fill="rgb(251,135,29)" fg:x="121453" fg:w="130"/><text x="54.7670%" y="847.50"></text></g><g><title>__do_sys_clone (130 samples, 0.06%)</title><rect x="54.5170%" y="821" width="0.0584%" height="15" fill="rgb(217,57,1)" fg:x="121453" fg:w="130"/><text x="54.7670%" y="831.50"></text></g><g><title>kernel_clone (130 samples, 0.06%)</title><rect x="54.5170%" y="805" width="0.0584%" height="15" fill="rgb(249,119,31)" fg:x="121453" fg:w="130"/><text x="54.7670%" y="815.50"></text></g><g><title>[unknown] (145 samples, 0.07%)</title><rect x="54.5139%" y="901" width="0.0651%" height="15" fill="rgb(233,164,33)" fg:x="121446" fg:w="145"/><text x="54.7639%" y="911.50"></text></g><g><title>ClearSignalMask (26 samples, 0.01%)</title><rect x="54.5790%" y="869" width="0.0117%" height="15" fill="rgb(250,217,43)" fg:x="121591" fg:w="26"/><text x="54.8290%" y="879.50"></text></g><g><title>btrfs_search_slot (27 samples, 0.01%)</title><rect x="54.6036%" y="693" width="0.0121%" height="15" fill="rgb(232,154,50)" fg:x="121646" fg:w="27"/><text x="54.8536%" y="703.50"></text></g><g><title>btrfs_insert_dir_item (43 samples, 0.02%)</title><rect x="54.6014%" y="741" width="0.0193%" height="15" fill="rgb(227,190,8)" fg:x="121641" fg:w="43"/><text x="54.8514%" y="751.50"></text></g><g><title>insert_with_overflow (40 samples, 0.02%)</title><rect x="54.6027%" y="725" width="0.0180%" height="15" fill="rgb(209,217,32)" fg:x="121644" fg:w="40"/><text x="54.8527%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (39 samples, 0.02%)</title><rect x="54.6032%" y="709" width="0.0175%" height="15" fill="rgb(243,203,50)" fg:x="121645" fg:w="39"/><text x="54.8532%" y="719.50"></text></g><g><title>btrfs_add_link (47 samples, 0.02%)</title><rect x="54.6014%" y="757" width="0.0211%" height="15" fill="rgb(232,152,27)" fg:x="121641" fg:w="47"/><text x="54.8514%" y="767.50"></text></g><g><title>btrfs_new_inode (38 samples, 0.02%)</title><rect x="54.6247%" y="757" width="0.0171%" height="15" fill="rgb(240,34,29)" fg:x="121693" fg:w="38"/><text x="54.8747%" y="767.50"></text></g><g><title>do_syscall_64 (109 samples, 0.05%)</title><rect x="54.5965%" y="821" width="0.0489%" height="15" fill="rgb(215,185,52)" fg:x="121630" fg:w="109"/><text x="54.8465%" y="831.50"></text></g><g><title>do_mkdirat (109 samples, 0.05%)</title><rect x="54.5965%" y="805" width="0.0489%" height="15" fill="rgb(240,89,49)" fg:x="121630" fg:w="109"/><text x="54.8465%" y="815.50"></text></g><g><title>vfs_mkdir (103 samples, 0.05%)</title><rect x="54.5992%" y="789" width="0.0462%" height="15" fill="rgb(225,12,52)" fg:x="121636" fg:w="103"/><text x="54.8492%" y="799.50"></text></g><g><title>btrfs_mkdir (101 samples, 0.05%)</title><rect x="54.6001%" y="773" width="0.0453%" height="15" fill="rgb(239,128,45)" fg:x="121638" fg:w="101"/><text x="54.8501%" y="783.50"></text></g><g><title>__GI___mkdir (111 samples, 0.05%)</title><rect x="54.5960%" y="853" width="0.0498%" height="15" fill="rgb(211,78,47)" fg:x="121629" fg:w="111"/><text x="54.8460%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (110 samples, 0.05%)</title><rect x="54.5965%" y="837" width="0.0494%" height="15" fill="rgb(232,31,21)" fg:x="121630" fg:w="110"/><text x="54.8465%" y="847.50"></text></g><g><title>btrfs_lookup_dir_item (25 samples, 0.01%)</title><rect x="54.6481%" y="677" width="0.0112%" height="15" fill="rgb(222,168,14)" fg:x="121745" fg:w="25"/><text x="54.8981%" y="687.50"></text></g><g><title>btrfs_search_slot (25 samples, 0.01%)</title><rect x="54.6481%" y="661" width="0.0112%" height="15" fill="rgb(209,128,24)" fg:x="121745" fg:w="25"/><text x="54.8981%" y="671.50"></text></g><g><title>btrfs_lookup (27 samples, 0.01%)</title><rect x="54.6476%" y="709" width="0.0121%" height="15" fill="rgb(249,35,13)" fg:x="121744" fg:w="27"/><text x="54.8976%" y="719.50"></text></g><g><title>btrfs_lookup_dentry (27 samples, 0.01%)</title><rect x="54.6476%" y="693" width="0.0121%" height="15" fill="rgb(218,7,2)" fg:x="121744" fg:w="27"/><text x="54.8976%" y="703.50"></text></g><g><title>__lookup_slow (30 samples, 0.01%)</title><rect x="54.6476%" y="725" width="0.0135%" height="15" fill="rgb(238,107,27)" fg:x="121744" fg:w="30"/><text x="54.8976%" y="735.50"></text></g><g><title>filename_lookup (35 samples, 0.02%)</title><rect x="54.6463%" y="773" width="0.0157%" height="15" fill="rgb(217,88,38)" fg:x="121741" fg:w="35"/><text x="54.8963%" y="783.50"></text></g><g><title>path_lookupat (35 samples, 0.02%)</title><rect x="54.6463%" y="757" width="0.0157%" height="15" fill="rgb(230,207,0)" fg:x="121741" fg:w="35"/><text x="54.8963%" y="767.50"></text></g><g><title>walk_component (32 samples, 0.01%)</title><rect x="54.6476%" y="741" width="0.0144%" height="15" fill="rgb(249,64,54)" fg:x="121744" fg:w="32"/><text x="54.8976%" y="751.50"></text></g><g><title>CreateTarget (162 samples, 0.07%)</title><rect x="54.5906%" y="869" width="0.0727%" height="15" fill="rgb(231,7,11)" fg:x="121617" fg:w="162"/><text x="54.8406%" y="879.50"></text></g><g><title>__GI___xstat (38 samples, 0.02%)</title><rect x="54.6463%" y="853" width="0.0171%" height="15" fill="rgb(205,149,21)" fg:x="121741" fg:w="38"/><text x="54.8963%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.02%)</title><rect x="54.6463%" y="837" width="0.0171%" height="15" fill="rgb(215,126,34)" fg:x="121741" fg:w="38"/><text x="54.8963%" y="847.50"></text></g><g><title>do_syscall_64 (38 samples, 0.02%)</title><rect x="54.6463%" y="821" width="0.0171%" height="15" fill="rgb(241,132,45)" fg:x="121741" fg:w="38"/><text x="54.8963%" y="831.50"></text></g><g><title>__do_sys_newstat (38 samples, 0.02%)</title><rect x="54.6463%" y="805" width="0.0171%" height="15" fill="rgb(252,69,32)" fg:x="121741" fg:w="38"/><text x="54.8963%" y="815.50"></text></g><g><title>vfs_statx (38 samples, 0.02%)</title><rect x="54.6463%" y="789" width="0.0171%" height="15" fill="rgb(232,204,19)" fg:x="121741" fg:w="38"/><text x="54.8963%" y="799.50"></text></g><g><title>WriteFile (30 samples, 0.01%)</title><rect x="54.6642%" y="869" width="0.0135%" height="15" fill="rgb(249,15,47)" fg:x="121781" fg:w="30"/><text x="54.9142%" y="879.50"></text></g><g><title>__GI___link (43 samples, 0.02%)</title><rect x="54.6777%" y="869" width="0.0193%" height="15" fill="rgb(209,227,23)" fg:x="121811" fg:w="43"/><text x="54.9277%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.02%)</title><rect x="54.6777%" y="853" width="0.0193%" height="15" fill="rgb(248,92,24)" fg:x="121811" fg:w="43"/><text x="54.9277%" y="863.50"></text></g><g><title>do_syscall_64 (43 samples, 0.02%)</title><rect x="54.6777%" y="837" width="0.0193%" height="15" fill="rgb(247,59,2)" fg:x="121811" fg:w="43"/><text x="54.9277%" y="847.50"></text></g><g><title>__x64_sys_link (43 samples, 0.02%)</title><rect x="54.6777%" y="821" width="0.0193%" height="15" fill="rgb(221,30,5)" fg:x="121811" fg:w="43"/><text x="54.9277%" y="831.50"></text></g><g><title>do_linkat (43 samples, 0.02%)</title><rect x="54.6777%" y="805" width="0.0193%" height="15" fill="rgb(208,108,53)" fg:x="121811" fg:w="43"/><text x="54.9277%" y="815.50"></text></g><g><title>vfs_link (23 samples, 0.01%)</title><rect x="54.6867%" y="789" width="0.0103%" height="15" fill="rgb(211,183,26)" fg:x="121831" fg:w="23"/><text x="54.9367%" y="799.50"></text></g><g><title>btrfs_link (23 samples, 0.01%)</title><rect x="54.6867%" y="773" width="0.0103%" height="15" fill="rgb(232,132,4)" fg:x="121831" fg:w="23"/><text x="54.9367%" y="783.50"></text></g><g><title>__btrfs_unlink_inode (38 samples, 0.02%)</title><rect x="54.7011%" y="773" width="0.0171%" height="15" fill="rgb(253,128,37)" fg:x="121863" fg:w="38"/><text x="54.9511%" y="783.50"></text></g><g><title>btrfs_lookup_dir_item (24 samples, 0.01%)</title><rect x="54.7073%" y="757" width="0.0108%" height="15" fill="rgb(221,58,24)" fg:x="121877" fg:w="24"/><text x="54.9573%" y="767.50"></text></g><g><title>btrfs_search_slot (24 samples, 0.01%)</title><rect x="54.7073%" y="741" width="0.0108%" height="15" fill="rgb(230,54,45)" fg:x="121877" fg:w="24"/><text x="54.9573%" y="751.50"></text></g><g><title>btrfs_rmdir (50 samples, 0.02%)</title><rect x="54.7011%" y="789" width="0.0224%" height="15" fill="rgb(254,21,18)" fg:x="121863" fg:w="50"/><text x="54.9511%" y="799.50"></text></g><g><title>__GI___rmdir (104 samples, 0.05%)</title><rect x="54.6993%" y="869" width="0.0467%" height="15" fill="rgb(221,108,0)" fg:x="121859" fg:w="104"/><text x="54.9493%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.05%)</title><rect x="54.6993%" y="853" width="0.0467%" height="15" fill="rgb(206,95,1)" fg:x="121859" fg:w="104"/><text x="54.9493%" y="863.50"></text></g><g><title>do_syscall_64 (104 samples, 0.05%)</title><rect x="54.6993%" y="837" width="0.0467%" height="15" fill="rgb(237,52,5)" fg:x="121859" fg:w="104"/><text x="54.9493%" y="847.50"></text></g><g><title>do_rmdir (104 samples, 0.05%)</title><rect x="54.6993%" y="821" width="0.0467%" height="15" fill="rgb(218,150,34)" fg:x="121859" fg:w="104"/><text x="54.9493%" y="831.50"></text></g><g><title>vfs_rmdir.part.0 (100 samples, 0.04%)</title><rect x="54.7011%" y="805" width="0.0449%" height="15" fill="rgb(235,194,28)" fg:x="121863" fg:w="100"/><text x="54.9511%" y="815.50"></text></g><g><title>evict (48 samples, 0.02%)</title><rect x="54.7244%" y="789" width="0.0215%" height="15" fill="rgb(245,92,18)" fg:x="121915" fg:w="48"/><text x="54.9744%" y="799.50"></text></g><g><title>btrfs_evict_inode (48 samples, 0.02%)</title><rect x="54.7244%" y="773" width="0.0215%" height="15" fill="rgb(253,203,53)" fg:x="121915" fg:w="48"/><text x="54.9744%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (269 samples, 0.12%)</title><rect x="54.7563%" y="741" width="0.1207%" height="15" fill="rgb(249,185,47)" fg:x="121986" fg:w="269"/><text x="55.0063%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (265 samples, 0.12%)</title><rect x="54.7581%" y="725" width="0.1190%" height="15" fill="rgb(252,194,52)" fg:x="121990" fg:w="265"/><text x="55.0081%" y="735.50"></text></g><g><title>native_write_msr (265 samples, 0.12%)</title><rect x="54.7581%" y="709" width="0.1190%" height="15" fill="rgb(210,53,36)" fg:x="121990" fg:w="265"/><text x="55.0081%" y="719.50"></text></g><g><title>finish_task_switch (282 samples, 0.13%)</title><rect x="54.7540%" y="757" width="0.1266%" height="15" fill="rgb(237,37,25)" fg:x="121981" fg:w="282"/><text x="55.0040%" y="767.50"></text></g><g><title>schedule (288 samples, 0.13%)</title><rect x="54.7518%" y="789" width="0.1293%" height="15" fill="rgb(242,116,27)" fg:x="121976" fg:w="288"/><text x="55.0018%" y="799.50"></text></g><g><title>__schedule (286 samples, 0.13%)</title><rect x="54.7527%" y="773" width="0.1284%" height="15" fill="rgb(213,185,26)" fg:x="121978" fg:w="286"/><text x="55.0027%" y="783.50"></text></g><g><title>release_task (27 samples, 0.01%)</title><rect x="54.8855%" y="773" width="0.0121%" height="15" fill="rgb(225,204,8)" fg:x="122274" fg:w="27"/><text x="55.1355%" y="783.50"></text></g><g><title>__GI___wait4 (331 samples, 0.15%)</title><rect x="54.7500%" y="869" width="0.1486%" height="15" fill="rgb(254,111,37)" fg:x="121972" fg:w="331"/><text x="55.0000%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (328 samples, 0.15%)</title><rect x="54.7513%" y="853" width="0.1472%" height="15" fill="rgb(242,35,9)" fg:x="121975" fg:w="328"/><text x="55.0013%" y="863.50"></text></g><g><title>do_syscall_64 (328 samples, 0.15%)</title><rect x="54.7513%" y="837" width="0.1472%" height="15" fill="rgb(232,138,49)" fg:x="121975" fg:w="328"/><text x="55.0013%" y="847.50"></text></g><g><title>kernel_wait4 (328 samples, 0.15%)</title><rect x="54.7513%" y="821" width="0.1472%" height="15" fill="rgb(247,56,4)" fg:x="121975" fg:w="328"/><text x="55.0013%" y="831.50"></text></g><g><title>do_wait (328 samples, 0.15%)</title><rect x="54.7513%" y="805" width="0.1472%" height="15" fill="rgb(226,179,17)" fg:x="121975" fg:w="328"/><text x="55.0013%" y="815.50"></text></g><g><title>wait_consider_task (39 samples, 0.02%)</title><rect x="54.8810%" y="789" width="0.0175%" height="15" fill="rgb(216,163,45)" fg:x="122264" fg:w="39"/><text x="55.1310%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.02%)</title><rect x="54.9322%" y="677" width="0.0162%" height="15" fill="rgb(211,157,3)" fg:x="122378" fg:w="36"/><text x="55.1822%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (36 samples, 0.02%)</title><rect x="54.9322%" y="661" width="0.0162%" height="15" fill="rgb(234,44,20)" fg:x="122378" fg:w="36"/><text x="55.1822%" y="671.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="54.9322%" y="645" width="0.0162%" height="15" fill="rgb(254,138,23)" fg:x="122378" fg:w="36"/><text x="55.1822%" y="655.50"></text></g><g><title>finish_task_switch (38 samples, 0.02%)</title><rect x="54.9322%" y="693" width="0.0171%" height="15" fill="rgb(206,119,39)" fg:x="122378" fg:w="38"/><text x="55.1822%" y="703.50"></text></g><g><title>sched_exec (42 samples, 0.02%)</title><rect x="54.9309%" y="757" width="0.0189%" height="15" fill="rgb(231,105,52)" fg:x="122375" fg:w="42"/><text x="55.1809%" y="767.50"></text></g><g><title>stop_one_cpu (42 samples, 0.02%)</title><rect x="54.9309%" y="741" width="0.0189%" height="15" fill="rgb(250,20,5)" fg:x="122375" fg:w="42"/><text x="55.1809%" y="751.50"></text></g><g><title>_cond_resched (40 samples, 0.02%)</title><rect x="54.9318%" y="725" width="0.0180%" height="15" fill="rgb(215,198,30)" fg:x="122377" fg:w="40"/><text x="55.1818%" y="735.50"></text></g><g><title>__schedule (40 samples, 0.02%)</title><rect x="54.9318%" y="709" width="0.0180%" height="15" fill="rgb(246,142,8)" fg:x="122377" fg:w="40"/><text x="55.1818%" y="719.50"></text></g><g><title>bprm_execve (92 samples, 0.04%)</title><rect x="54.9156%" y="773" width="0.0413%" height="15" fill="rgb(243,26,38)" fg:x="122341" fg:w="92"/><text x="55.1656%" y="783.50"></text></g><g><title>__execvpe_common (106 samples, 0.05%)</title><rect x="54.9125%" y="869" width="0.0476%" height="15" fill="rgb(205,133,28)" fg:x="122334" fg:w="106"/><text x="55.1625%" y="879.50"></text></g><g><title>__GI_execve (102 samples, 0.05%)</title><rect x="54.9143%" y="853" width="0.0458%" height="15" fill="rgb(212,34,0)" fg:x="122338" fg:w="102"/><text x="55.1643%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.05%)</title><rect x="54.9143%" y="837" width="0.0458%" height="15" fill="rgb(251,226,22)" fg:x="122338" fg:w="102"/><text x="55.1643%" y="847.50"></text></g><g><title>do_syscall_64 (102 samples, 0.05%)</title><rect x="54.9143%" y="821" width="0.0458%" height="15" fill="rgb(252,119,9)" fg:x="122338" fg:w="102"/><text x="55.1643%" y="831.50"></text></g><g><title>__x64_sys_execve (102 samples, 0.05%)</title><rect x="54.9143%" y="805" width="0.0458%" height="15" fill="rgb(213,150,50)" fg:x="122338" fg:w="102"/><text x="55.1643%" y="815.50"></text></g><g><title>do_execveat_common (102 samples, 0.05%)</title><rect x="54.9143%" y="789" width="0.0458%" height="15" fill="rgb(212,24,39)" fg:x="122338" fg:w="102"/><text x="55.1643%" y="799.50"></text></g><g><title>dup_mm (55 samples, 0.02%)</title><rect x="54.9762%" y="757" width="0.0247%" height="15" fill="rgb(213,46,39)" fg:x="122476" fg:w="55"/><text x="55.2262%" y="767.50"></text></g><g><title>copy_process (85 samples, 0.04%)</title><rect x="54.9690%" y="773" width="0.0382%" height="15" fill="rgb(239,106,12)" fg:x="122460" fg:w="85"/><text x="55.2190%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.04%)</title><rect x="54.9690%" y="837" width="0.0399%" height="15" fill="rgb(249,229,21)" fg:x="122460" fg:w="89"/><text x="55.2190%" y="847.50"></text></g><g><title>do_syscall_64 (89 samples, 0.04%)</title><rect x="54.9690%" y="821" width="0.0399%" height="15" fill="rgb(212,158,3)" fg:x="122460" fg:w="89"/><text x="55.2190%" y="831.50"></text></g><g><title>__do_sys_clone (89 samples, 0.04%)</title><rect x="54.9690%" y="805" width="0.0399%" height="15" fill="rgb(253,26,48)" fg:x="122460" fg:w="89"/><text x="55.2190%" y="815.50"></text></g><g><title>kernel_clone (89 samples, 0.04%)</title><rect x="54.9690%" y="789" width="0.0399%" height="15" fill="rgb(238,178,20)" fg:x="122460" fg:w="89"/><text x="55.2190%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (183 samples, 0.08%)</title><rect x="55.0211%" y="789" width="0.0821%" height="15" fill="rgb(208,86,15)" fg:x="122576" fg:w="183"/><text x="55.2711%" y="799.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (181 samples, 0.08%)</title><rect x="55.0220%" y="773" width="0.0812%" height="15" fill="rgb(239,42,53)" fg:x="122578" fg:w="181"/><text x="55.2720%" y="783.50"></text></g><g><title>native_write_msr (181 samples, 0.08%)</title><rect x="55.0220%" y="757" width="0.0812%" height="15" fill="rgb(245,226,8)" fg:x="122578" fg:w="181"/><text x="55.2720%" y="767.50"></text></g><g><title>arch_fork (316 samples, 0.14%)</title><rect x="54.9645%" y="853" width="0.1418%" height="15" fill="rgb(216,176,32)" fg:x="122450" fg:w="316"/><text x="55.2145%" y="863.50"></text></g><g><title>ret_from_fork (217 samples, 0.10%)</title><rect x="55.0090%" y="837" width="0.0974%" height="15" fill="rgb(231,186,21)" fg:x="122549" fg:w="217"/><text x="55.2590%" y="847.50"></text></g><g><title>schedule_tail (216 samples, 0.10%)</title><rect x="55.0094%" y="821" width="0.0970%" height="15" fill="rgb(205,95,49)" fg:x="122550" fg:w="216"/><text x="55.2594%" y="831.50"></text></g><g><title>finish_task_switch (193 samples, 0.09%)</title><rect x="55.0198%" y="805" width="0.0866%" height="15" fill="rgb(217,145,8)" fg:x="122573" fg:w="193"/><text x="55.2698%" y="815.50"></text></g><g><title>__libc_fork (330 samples, 0.15%)</title><rect x="54.9601%" y="869" width="0.1481%" height="15" fill="rgb(239,144,48)" fg:x="122440" fg:w="330"/><text x="55.2101%" y="879.50"></text></g><g><title>__libc_open64 (24 samples, 0.01%)</title><rect x="55.1091%" y="869" width="0.0108%" height="15" fill="rgb(214,189,23)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.01%)</title><rect x="55.1091%" y="853" width="0.0108%" height="15" fill="rgb(229,157,17)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="863.50"></text></g><g><title>do_syscall_64 (24 samples, 0.01%)</title><rect x="55.1091%" y="837" width="0.0108%" height="15" fill="rgb(230,5,48)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="847.50"></text></g><g><title>__x64_sys_openat (24 samples, 0.01%)</title><rect x="55.1091%" y="821" width="0.0108%" height="15" fill="rgb(224,156,48)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="831.50"></text></g><g><title>do_sys_openat2 (24 samples, 0.01%)</title><rect x="55.1091%" y="805" width="0.0108%" height="15" fill="rgb(223,14,29)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="815.50"></text></g><g><title>do_filp_open (24 samples, 0.01%)</title><rect x="55.1091%" y="789" width="0.0108%" height="15" fill="rgb(229,96,36)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="799.50"></text></g><g><title>path_openat (24 samples, 0.01%)</title><rect x="55.1091%" y="773" width="0.0108%" height="15" fill="rgb(231,102,53)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="783.50"></text></g><g><title>path_mount (66 samples, 0.03%)</title><rect x="55.1324%" y="805" width="0.0296%" height="15" fill="rgb(210,77,38)" fg:x="122824" fg:w="66"/><text x="55.3824%" y="815.50"></text></g><g><title>vfs_get_tree (23 samples, 0.01%)</title><rect x="55.1517%" y="789" width="0.0103%" height="15" fill="rgb(235,131,6)" fg:x="122867" fg:w="23"/><text x="55.4017%" y="799.50"></text></g><g><title>get_tree_nodev (23 samples, 0.01%)</title><rect x="55.1517%" y="773" width="0.0103%" height="15" fill="rgb(252,55,38)" fg:x="122867" fg:w="23"/><text x="55.4017%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (91 samples, 0.04%)</title><rect x="55.1243%" y="853" width="0.0408%" height="15" fill="rgb(246,38,14)" fg:x="122806" fg:w="91"/><text x="55.3743%" y="863.50"></text></g><g><title>do_syscall_64 (91 samples, 0.04%)</title><rect x="55.1243%" y="837" width="0.0408%" height="15" fill="rgb(242,27,5)" fg:x="122806" fg:w="91"/><text x="55.3743%" y="847.50"></text></g><g><title>__x64_sys_mount (90 samples, 0.04%)</title><rect x="55.1248%" y="821" width="0.0404%" height="15" fill="rgb(228,65,35)" fg:x="122807" fg:w="90"/><text x="55.3748%" y="831.50"></text></g><g><title>__mount (93 samples, 0.04%)</title><rect x="55.1239%" y="869" width="0.0417%" height="15" fill="rgb(245,93,11)" fg:x="122805" fg:w="93"/><text x="55.3739%" y="879.50"></text></g><g><title>__umount2 (31 samples, 0.01%)</title><rect x="55.1755%" y="869" width="0.0139%" height="15" fill="rgb(213,1,31)" fg:x="122920" fg:w="31"/><text x="55.4255%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="55.1755%" y="853" width="0.0139%" height="15" fill="rgb(237,205,14)" fg:x="122920" fg:w="31"/><text x="55.4255%" y="863.50"></text></g><g><title>std::string::append (23 samples, 0.01%)</title><rect x="55.2110%" y="869" width="0.0103%" height="15" fill="rgb(232,118,45)" fg:x="122999" fg:w="23"/><text x="55.4610%" y="879.50"></text></g><g><title>chroot_fs_refs (103 samples, 0.05%)</title><rect x="55.2276%" y="805" width="0.0462%" height="15" fill="rgb(218,5,6)" fg:x="123036" fg:w="103"/><text x="55.4776%" y="815.50"></text></g><g><title>_raw_spin_lock (72 samples, 0.03%)</title><rect x="55.2415%" y="789" width="0.0323%" height="15" fill="rgb(251,87,51)" fg:x="123067" fg:w="72"/><text x="55.4915%" y="799.50"></text></g><g><title>syscall (106 samples, 0.05%)</title><rect x="55.2276%" y="869" width="0.0476%" height="15" fill="rgb(207,225,20)" fg:x="123036" fg:w="106"/><text x="55.4776%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (106 samples, 0.05%)</title><rect x="55.2276%" y="853" width="0.0476%" height="15" fill="rgb(222,78,54)" fg:x="123036" fg:w="106"/><text x="55.4776%" y="863.50"></text></g><g><title>do_syscall_64 (106 samples, 0.05%)</title><rect x="55.2276%" y="837" width="0.0476%" height="15" fill="rgb(232,85,16)" fg:x="123036" fg:w="106"/><text x="55.4776%" y="847.50"></text></g><g><title>__do_sys_pivot_root (106 samples, 0.05%)</title><rect x="55.2276%" y="821" width="0.0476%" height="15" fill="rgb(244,25,33)" fg:x="123036" fg:w="106"/><text x="55.4776%" y="831.50"></text></g><g><title>Pid1Main (1,553 samples, 0.70%)</title><rect x="54.5790%" y="885" width="0.6971%" height="15" fill="rgb(233,24,36)" fg:x="121591" fg:w="1553"/><text x="54.8290%" y="895.50"></text></g><g><title>asm_exc_page_fault (35 samples, 0.02%)</title><rect x="55.2765%" y="885" width="0.0157%" height="15" fill="rgb(253,49,54)" fg:x="123145" fg:w="35"/><text x="55.5265%" y="895.50"></text></g><g><title>exc_page_fault (35 samples, 0.02%)</title><rect x="55.2765%" y="869" width="0.0157%" height="15" fill="rgb(245,12,22)" fg:x="123145" fg:w="35"/><text x="55.5265%" y="879.50"></text></g><g><title>do_user_addr_fault (35 samples, 0.02%)</title><rect x="55.2765%" y="853" width="0.0157%" height="15" fill="rgb(253,141,28)" fg:x="123145" fg:w="35"/><text x="55.5265%" y="863.50"></text></g><g><title>handle_mm_fault (31 samples, 0.01%)</title><rect x="55.2783%" y="837" width="0.0139%" height="15" fill="rgb(225,207,27)" fg:x="123149" fg:w="31"/><text x="55.5283%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (256 samples, 0.11%)</title><rect x="55.2976%" y="837" width="0.1149%" height="15" fill="rgb(220,84,2)" fg:x="123192" fg:w="256"/><text x="55.5476%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (255 samples, 0.11%)</title><rect x="55.2981%" y="821" width="0.1145%" height="15" fill="rgb(224,37,37)" fg:x="123193" fg:w="255"/><text x="55.5481%" y="831.50"></text></g><g><title>native_write_msr (255 samples, 0.11%)</title><rect x="55.2981%" y="805" width="0.1145%" height="15" fill="rgb(220,143,18)" fg:x="123193" fg:w="255"/><text x="55.5481%" y="815.50"></text></g><g><title>schedule_tail (262 samples, 0.12%)</title><rect x="55.2963%" y="869" width="0.1176%" height="15" fill="rgb(210,88,33)" fg:x="123189" fg:w="262"/><text x="55.5463%" y="879.50"></text></g><g><title>finish_task_switch (262 samples, 0.12%)</title><rect x="55.2963%" y="853" width="0.1176%" height="15" fill="rgb(219,87,51)" fg:x="123189" fg:w="262"/><text x="55.5463%" y="863.50"></text></g><g><title>__GI___clone (1,865 samples, 0.84%)</title><rect x="54.5790%" y="901" width="0.8371%" height="15" fill="rgb(211,7,35)" fg:x="121591" fg:w="1865"/><text x="54.8290%" y="911.50"></text></g><g><title>ret_from_fork (276 samples, 0.12%)</title><rect x="55.2922%" y="885" width="0.1239%" height="15" fill="rgb(232,77,2)" fg:x="123180" fg:w="276"/><text x="55.5422%" y="895.50"></text></g><g><title>[libstdc++.so.6.0.28] (30 samples, 0.01%)</title><rect x="55.4183%" y="837" width="0.0135%" height="15" fill="rgb(249,94,25)" fg:x="123461" fg:w="30"/><text x="55.6683%" y="847.50"></text></g><g><title>_dl_start_user (38 samples, 0.02%)</title><rect x="55.4179%" y="901" width="0.0171%" height="15" fill="rgb(215,112,2)" fg:x="123460" fg:w="38"/><text x="55.6679%" y="911.50"></text></g><g><title>_dl_init (38 samples, 0.02%)</title><rect x="55.4179%" y="885" width="0.0171%" height="15" fill="rgb(226,115,48)" fg:x="123460" fg:w="38"/><text x="55.6679%" y="895.50"></text></g><g><title>call_init (38 samples, 0.02%)</title><rect x="55.4179%" y="869" width="0.0171%" height="15" fill="rgb(249,196,10)" fg:x="123460" fg:w="38"/><text x="55.6679%" y="879.50"></text></g><g><title>call_init (38 samples, 0.02%)</title><rect x="55.4179%" y="853" width="0.0171%" height="15" fill="rgb(237,109,14)" fg:x="123460" fg:w="38"/><text x="55.6679%" y="863.50"></text></g><g><title>__GI_exit (40 samples, 0.02%)</title><rect x="55.4394%" y="869" width="0.0180%" height="15" fill="rgb(217,103,53)" fg:x="123508" fg:w="40"/><text x="55.6894%" y="879.50"></text></g><g><title>__run_exit_handlers (40 samples, 0.02%)</title><rect x="55.4394%" y="853" width="0.0180%" height="15" fill="rgb(244,137,9)" fg:x="123508" fg:w="40"/><text x="55.6894%" y="863.50"></text></g><g><title>[libstdc++.so.6.0.28] (25 samples, 0.01%)</title><rect x="55.4637%" y="773" width="0.0112%" height="15" fill="rgb(227,201,3)" fg:x="123562" fg:w="25"/><text x="55.7137%" y="783.50"></text></g><g><title>std::locale::_Impl::_Impl (25 samples, 0.01%)</title><rect x="55.4637%" y="757" width="0.0112%" height="15" fill="rgb(243,94,6)" fg:x="123562" fg:w="25"/><text x="55.7137%" y="767.50"></text></g><g><title>__libc_csu_init (42 samples, 0.02%)</title><rect x="55.4574%" y="869" width="0.0189%" height="15" fill="rgb(235,118,5)" fg:x="123548" fg:w="42"/><text x="55.7074%" y="879.50"></text></g><g><title>_GLOBAL__sub_I_opt (38 samples, 0.02%)</title><rect x="55.4592%" y="853" width="0.0171%" height="15" fill="rgb(247,10,30)" fg:x="123552" fg:w="38"/><text x="55.7092%" y="863.50"></text></g><g><title>std::ios_base::Init::Init (38 samples, 0.02%)</title><rect x="55.4592%" y="837" width="0.0171%" height="15" fill="rgb(205,26,28)" fg:x="123552" fg:w="38"/><text x="55.7092%" y="847.50"></text></g><g><title>std::locale::locale (28 samples, 0.01%)</title><rect x="55.4637%" y="821" width="0.0126%" height="15" fill="rgb(206,99,35)" fg:x="123562" fg:w="28"/><text x="55.7137%" y="831.50"></text></g><g><title>[libstdc++.so.6.0.28] (28 samples, 0.01%)</title><rect x="55.4637%" y="805" width="0.0126%" height="15" fill="rgb(238,130,40)" fg:x="123562" fg:w="28"/><text x="55.7137%" y="815.50"></text></g><g><title>__pthread_once_slow (28 samples, 0.01%)</title><rect x="55.4637%" y="789" width="0.0126%" height="15" fill="rgb(224,126,31)" fg:x="123562" fg:w="28"/><text x="55.7137%" y="799.50"></text></g><g><title>alloc_pages_vma (59 samples, 0.03%)</title><rect x="55.5068%" y="773" width="0.0265%" height="15" fill="rgb(254,105,17)" fg:x="123658" fg:w="59"/><text x="55.7568%" y="783.50"></text></g><g><title>__alloc_pages_nodemask (55 samples, 0.02%)</title><rect x="55.5086%" y="757" width="0.0247%" height="15" fill="rgb(216,87,36)" fg:x="123662" fg:w="55"/><text x="55.7586%" y="767.50"></text></g><g><title>get_page_from_freelist (51 samples, 0.02%)</title><rect x="55.5104%" y="741" width="0.0229%" height="15" fill="rgb(240,21,12)" fg:x="123666" fg:w="51"/><text x="55.7604%" y="751.50"></text></g><g><title>prep_new_page (38 samples, 0.02%)</title><rect x="55.5162%" y="725" width="0.0171%" height="15" fill="rgb(245,192,34)" fg:x="123679" fg:w="38"/><text x="55.7662%" y="735.50"></text></g><g><title>kernel_init_free_pages (37 samples, 0.02%)</title><rect x="55.5167%" y="709" width="0.0166%" height="15" fill="rgb(226,100,49)" fg:x="123680" fg:w="37"/><text x="55.7667%" y="719.50"></text></g><g><title>clear_page_erms (36 samples, 0.02%)</title><rect x="55.5171%" y="693" width="0.0162%" height="15" fill="rgb(245,188,27)" fg:x="123681" fg:w="36"/><text x="55.7671%" y="703.50"></text></g><g><title>handle_mm_fault (125 samples, 0.06%)</title><rect x="55.4960%" y="789" width="0.0561%" height="15" fill="rgb(212,170,8)" fg:x="123634" fg:w="125"/><text x="55.7460%" y="799.50"></text></g><g><title>exc_page_fault (133 samples, 0.06%)</title><rect x="55.4947%" y="821" width="0.0597%" height="15" fill="rgb(217,113,29)" fg:x="123631" fg:w="133"/><text x="55.7447%" y="831.50"></text></g><g><title>do_user_addr_fault (132 samples, 0.06%)</title><rect x="55.4951%" y="805" width="0.0593%" height="15" fill="rgb(237,30,3)" fg:x="123632" fg:w="132"/><text x="55.7451%" y="815.50"></text></g><g><title>asm_exc_page_fault (137 samples, 0.06%)</title><rect x="55.4938%" y="837" width="0.0615%" height="15" fill="rgb(227,19,28)" fg:x="123629" fg:w="137"/><text x="55.7438%" y="847.50"></text></g><g><title>[libc-2.31.so] (166 samples, 0.07%)</title><rect x="55.4857%" y="853" width="0.0745%" height="15" fill="rgb(239,172,45)" fg:x="123611" fg:w="166"/><text x="55.7357%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (279 samples, 0.13%)</title><rect x="55.5719%" y="709" width="0.1252%" height="15" fill="rgb(254,55,39)" fg:x="123803" fg:w="279"/><text x="55.8219%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (274 samples, 0.12%)</title><rect x="55.5741%" y="693" width="0.1230%" height="15" fill="rgb(249,208,12)" fg:x="123808" fg:w="274"/><text x="55.8241%" y="703.50"></text></g><g><title>native_write_msr (274 samples, 0.12%)</title><rect x="55.5741%" y="677" width="0.1230%" height="15" fill="rgb(240,52,13)" fg:x="123808" fg:w="274"/><text x="55.8241%" y="687.50"></text></g><g><title>finish_task_switch (313 samples, 0.14%)</title><rect x="55.5683%" y="725" width="0.1405%" height="15" fill="rgb(252,149,13)" fg:x="123795" fg:w="313"/><text x="55.8183%" y="735.50"></text></g><g><title>schedule (320 samples, 0.14%)</title><rect x="55.5665%" y="757" width="0.1436%" height="15" fill="rgb(232,81,48)" fg:x="123791" fg:w="320"/><text x="55.8165%" y="767.50"></text></g><g><title>__schedule (319 samples, 0.14%)</title><rect x="55.5669%" y="741" width="0.1432%" height="15" fill="rgb(222,144,2)" fg:x="123792" fg:w="319"/><text x="55.8169%" y="751.50"></text></g><g><title>release_task (23 samples, 0.01%)</title><rect x="55.7128%" y="741" width="0.0103%" height="15" fill="rgb(216,81,32)" fg:x="124117" fg:w="23"/><text x="55.9628%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (353 samples, 0.16%)</title><rect x="55.5651%" y="837" width="0.1585%" height="15" fill="rgb(244,78,51)" fg:x="123788" fg:w="353"/><text x="55.8151%" y="847.50"></text></g><g><title>do_syscall_64 (353 samples, 0.16%)</title><rect x="55.5651%" y="821" width="0.1585%" height="15" fill="rgb(217,66,21)" fg:x="123788" fg:w="353"/><text x="55.8151%" y="831.50"></text></g><g><title>__do_sys_wait4 (353 samples, 0.16%)</title><rect x="55.5651%" y="805" width="0.1585%" height="15" fill="rgb(247,101,42)" fg:x="123788" fg:w="353"/><text x="55.8151%" y="815.50"></text></g><g><title>kernel_wait4 (353 samples, 0.16%)</title><rect x="55.5651%" y="789" width="0.1585%" height="15" fill="rgb(227,81,39)" fg:x="123788" fg:w="353"/><text x="55.8151%" y="799.50"></text></g><g><title>do_wait (353 samples, 0.16%)</title><rect x="55.5651%" y="773" width="0.1585%" height="15" fill="rgb(220,223,44)" fg:x="123788" fg:w="353"/><text x="55.8151%" y="783.50"></text></g><g><title>wait_consider_task (30 samples, 0.01%)</title><rect x="55.7101%" y="757" width="0.0135%" height="15" fill="rgb(205,218,2)" fg:x="124111" fg:w="30"/><text x="55.9601%" y="767.50"></text></g><g><title>__GI___wait4 (356 samples, 0.16%)</title><rect x="55.5642%" y="853" width="0.1598%" height="15" fill="rgb(212,207,28)" fg:x="123786" fg:w="356"/><text x="55.8142%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.02%)</title><rect x="55.7362%" y="693" width="0.0189%" height="15" fill="rgb(224,12,41)" fg:x="124169" fg:w="42"/><text x="55.9862%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.02%)</title><rect x="55.7362%" y="677" width="0.0189%" height="15" fill="rgb(216,118,12)" fg:x="124169" fg:w="42"/><text x="55.9862%" y="687.50"></text></g><g><title>native_write_msr (42 samples, 0.02%)</title><rect x="55.7362%" y="661" width="0.0189%" height="15" fill="rgb(252,97,46)" fg:x="124169" fg:w="42"/><text x="55.9862%" y="671.50"></text></g><g><title>finish_task_switch (44 samples, 0.02%)</title><rect x="55.7357%" y="709" width="0.0198%" height="15" fill="rgb(244,206,19)" fg:x="124168" fg:w="44"/><text x="55.9857%" y="719.50"></text></g><g><title>__libc_read (51 samples, 0.02%)</title><rect x="55.7330%" y="853" width="0.0229%" height="15" fill="rgb(231,84,31)" fg:x="124162" fg:w="51"/><text x="55.9830%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.02%)</title><rect x="55.7330%" y="837" width="0.0229%" height="15" fill="rgb(244,133,0)" fg:x="124162" fg:w="51"/><text x="55.9830%" y="847.50"></text></g><g><title>do_syscall_64 (51 samples, 0.02%)</title><rect x="55.7330%" y="821" width="0.0229%" height="15" fill="rgb(223,15,50)" fg:x="124162" fg:w="51"/><text x="55.9830%" y="831.50"></text></g><g><title>ksys_read (51 samples, 0.02%)</title><rect x="55.7330%" y="805" width="0.0229%" height="15" fill="rgb(250,118,49)" fg:x="124162" fg:w="51"/><text x="55.9830%" y="815.50"></text></g><g><title>vfs_read (51 samples, 0.02%)</title><rect x="55.7330%" y="789" width="0.0229%" height="15" fill="rgb(248,25,38)" fg:x="124162" fg:w="51"/><text x="55.9830%" y="799.50"></text></g><g><title>new_sync_read (51 samples, 0.02%)</title><rect x="55.7330%" y="773" width="0.0229%" height="15" fill="rgb(215,70,14)" fg:x="124162" fg:w="51"/><text x="55.9830%" y="783.50"></text></g><g><title>pipe_read (50 samples, 0.02%)</title><rect x="55.7335%" y="757" width="0.0224%" height="15" fill="rgb(215,28,15)" fg:x="124163" fg:w="50"/><text x="55.9835%" y="767.50"></text></g><g><title>schedule (47 samples, 0.02%)</title><rect x="55.7348%" y="741" width="0.0211%" height="15" fill="rgb(243,6,28)" fg:x="124166" fg:w="47"/><text x="55.9848%" y="751.50"></text></g><g><title>__schedule (46 samples, 0.02%)</title><rect x="55.7353%" y="725" width="0.0206%" height="15" fill="rgb(222,130,1)" fg:x="124167" fg:w="46"/><text x="55.9853%" y="735.50"></text></g><g><title>__libc_start_main (718 samples, 0.32%)</title><rect x="55.4394%" y="885" width="0.3223%" height="15" fill="rgb(236,166,44)" fg:x="123508" fg:w="718"/><text x="55.6894%" y="895.50"></text></g><g><title>main (636 samples, 0.29%)</title><rect x="55.4763%" y="869" width="0.2855%" height="15" fill="rgb(221,108,14)" fg:x="123590" fg:w="636"/><text x="55.7263%" y="879.50"></text></g><g><title>__split_vma (23 samples, 0.01%)</title><rect x="55.7797%" y="581" width="0.0103%" height="15" fill="rgb(252,3,45)" fg:x="124266" fg:w="23"/><text x="56.0297%" y="591.50"></text></g><g><title>__do_munmap (37 samples, 0.02%)</title><rect x="55.7783%" y="597" width="0.0166%" height="15" fill="rgb(237,68,30)" fg:x="124263" fg:w="37"/><text x="56.0283%" y="607.50"></text></g><g><title>do_mmap (78 samples, 0.04%)</title><rect x="55.7783%" y="629" width="0.0350%" height="15" fill="rgb(211,79,22)" fg:x="124263" fg:w="78"/><text x="56.0283%" y="639.50"></text></g><g><title>mmap_region (78 samples, 0.04%)</title><rect x="55.7783%" y="613" width="0.0350%" height="15" fill="rgb(252,185,21)" fg:x="124263" fg:w="78"/><text x="56.0283%" y="623.50"></text></g><g><title>ksys_mmap_pgoff (80 samples, 0.04%)</title><rect x="55.7783%" y="661" width="0.0359%" height="15" fill="rgb(225,189,26)" fg:x="124263" fg:w="80"/><text x="56.0283%" y="671.50"></text></g><g><title>vm_mmap_pgoff (80 samples, 0.04%)</title><rect x="55.7783%" y="645" width="0.0359%" height="15" fill="rgb(241,30,40)" fg:x="124263" fg:w="80"/><text x="56.0283%" y="655.50"></text></g><g><title>_dl_map_segments (94 samples, 0.04%)</title><rect x="55.7748%" y="741" width="0.0422%" height="15" fill="rgb(235,215,44)" fg:x="124255" fg:w="94"/><text x="56.0248%" y="751.50"></text></g><g><title>__mmap64 (87 samples, 0.04%)</title><rect x="55.7779%" y="725" width="0.0391%" height="15" fill="rgb(205,8,29)" fg:x="124262" fg:w="87"/><text x="56.0279%" y="735.50"></text></g><g><title>__mmap64 (87 samples, 0.04%)</title><rect x="55.7779%" y="709" width="0.0391%" height="15" fill="rgb(241,137,42)" fg:x="124262" fg:w="87"/><text x="56.0279%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.04%)</title><rect x="55.7783%" y="693" width="0.0386%" height="15" fill="rgb(237,155,2)" fg:x="124263" fg:w="86"/><text x="56.0283%" y="703.50"></text></g><g><title>do_syscall_64 (86 samples, 0.04%)</title><rect x="55.7783%" y="677" width="0.0386%" height="15" fill="rgb(245,29,42)" fg:x="124263" fg:w="86"/><text x="56.0283%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (120 samples, 0.05%)</title><rect x="55.7734%" y="757" width="0.0539%" height="15" fill="rgb(234,101,35)" fg:x="124252" fg:w="120"/><text x="56.0234%" y="767.50"></text></g><g><title>_dl_catch_exception (145 samples, 0.07%)</title><rect x="55.7685%" y="805" width="0.0651%" height="15" fill="rgb(228,64,37)" fg:x="124241" fg:w="145"/><text x="56.0185%" y="815.50"></text></g><g><title>openaux (145 samples, 0.07%)</title><rect x="55.7685%" y="789" width="0.0651%" height="15" fill="rgb(217,214,36)" fg:x="124241" fg:w="145"/><text x="56.0185%" y="799.50"></text></g><g><title>_dl_map_object (145 samples, 0.07%)</title><rect x="55.7685%" y="773" width="0.0651%" height="15" fill="rgb(243,70,3)" fg:x="124241" fg:w="145"/><text x="56.0185%" y="783.50"></text></g><g><title>_dl_map_object_deps (153 samples, 0.07%)</title><rect x="55.7662%" y="821" width="0.0687%" height="15" fill="rgb(253,158,52)" fg:x="124236" fg:w="153"/><text x="56.0162%" y="831.50"></text></g><g><title>mprotect_fixup (27 samples, 0.01%)</title><rect x="55.8416%" y="709" width="0.0121%" height="15" fill="rgb(234,111,54)" fg:x="124404" fg:w="27"/><text x="56.0916%" y="719.50"></text></g><g><title>_dl_protect_relro (32 samples, 0.01%)</title><rect x="55.8398%" y="805" width="0.0144%" height="15" fill="rgb(217,70,32)" fg:x="124400" fg:w="32"/><text x="56.0898%" y="815.50"></text></g><g><title>__mprotect (32 samples, 0.01%)</title><rect x="55.8398%" y="789" width="0.0144%" height="15" fill="rgb(234,18,33)" fg:x="124400" fg:w="32"/><text x="56.0898%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="55.8407%" y="773" width="0.0135%" height="15" fill="rgb(234,12,49)" fg:x="124402" fg:w="30"/><text x="56.0907%" y="783.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="55.8407%" y="757" width="0.0135%" height="15" fill="rgb(236,10,21)" fg:x="124402" fg:w="30"/><text x="56.0907%" y="767.50"></text></g><g><title>__x64_sys_mprotect (30 samples, 0.01%)</title><rect x="55.8407%" y="741" width="0.0135%" height="15" fill="rgb(248,182,45)" fg:x="124402" fg:w="30"/><text x="56.0907%" y="751.50"></text></g><g><title>do_mprotect_pkey (30 samples, 0.01%)</title><rect x="55.8407%" y="725" width="0.0135%" height="15" fill="rgb(217,95,36)" fg:x="124402" fg:w="30"/><text x="56.0907%" y="735.50"></text></g><g><title>dl_new_hash (78 samples, 0.04%)</title><rect x="55.9031%" y="757" width="0.0350%" height="15" fill="rgb(212,110,31)" fg:x="124541" fg:w="78"/><text x="56.1531%" y="767.50"></text></g><g><title>check_match (33 samples, 0.01%)</title><rect x="55.9987%" y="741" width="0.0148%" height="15" fill="rgb(206,32,53)" fg:x="124754" fg:w="33"/><text x="56.2487%" y="751.50"></text></g><g><title>_dl_lookup_symbol_x (269 samples, 0.12%)</title><rect x="55.8973%" y="773" width="0.1207%" height="15" fill="rgb(246,141,37)" fg:x="124528" fg:w="269"/><text x="56.1473%" y="783.50"></text></g><g><title>do_lookup_x (178 samples, 0.08%)</title><rect x="55.9381%" y="757" width="0.0799%" height="15" fill="rgb(219,16,7)" fg:x="124619" fg:w="178"/><text x="56.1881%" y="767.50"></text></g><g><title>elf_machine_rela (332 samples, 0.15%)</title><rect x="55.8704%" y="789" width="0.1490%" height="15" fill="rgb(230,205,45)" fg:x="124468" fg:w="332"/><text x="56.1204%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (387 samples, 0.17%)</title><rect x="55.8542%" y="805" width="0.1737%" height="15" fill="rgb(231,43,49)" fg:x="124432" fg:w="387"/><text x="56.1042%" y="815.50"></text></g><g><title>_dl_relocate_object (422 samples, 0.19%)</title><rect x="55.8394%" y="821" width="0.1894%" height="15" fill="rgb(212,106,34)" fg:x="124399" fg:w="422"/><text x="56.0894%" y="831.50"></text></g><g><title>[ld-2.31.so] (607 samples, 0.27%)</title><rect x="55.7631%" y="837" width="0.2725%" height="15" fill="rgb(206,83,17)" fg:x="124229" fg:w="607"/><text x="56.0131%" y="847.50"></text></g><g><title>_dl_start_final (615 samples, 0.28%)</title><rect x="55.7622%" y="869" width="0.2761%" height="15" fill="rgb(244,154,49)" fg:x="124227" fg:w="615"/><text x="56.0122%" y="879.50"></text></g><g><title>_dl_sysdep_start (615 samples, 0.28%)</title><rect x="55.7622%" y="853" width="0.2761%" height="15" fill="rgb(244,149,49)" fg:x="124227" fg:w="615"/><text x="56.0122%" y="863.50"></text></g><g><title>_dl_start (619 samples, 0.28%)</title><rect x="55.7617%" y="885" width="0.2779%" height="15" fill="rgb(227,134,18)" fg:x="124226" fg:w="619"/><text x="56.0117%" y="895.50"></text></g><g><title>_start (1,343 samples, 0.60%)</title><rect x="55.4394%" y="901" width="0.6028%" height="15" fill="rgb(237,116,36)" fg:x="123508" fg:w="1343"/><text x="55.6894%" y="911.50"></text></g><g><title>asm_exc_page_fault (124 samples, 0.06%)</title><rect x="56.0423%" y="901" width="0.0557%" height="15" fill="rgb(205,129,40)" fg:x="124851" fg:w="124"/><text x="56.2923%" y="911.50"></text></g><g><title>unmap_page_range (23 samples, 0.01%)</title><rect x="56.1186%" y="741" width="0.0103%" height="15" fill="rgb(236,178,4)" fg:x="125021" fg:w="23"/><text x="56.3686%" y="751.50"></text></g><g><title>mmput (62 samples, 0.03%)</title><rect x="56.1015%" y="789" width="0.0278%" height="15" fill="rgb(251,76,53)" fg:x="124983" fg:w="62"/><text x="56.3515%" y="799.50"></text></g><g><title>exit_mmap (62 samples, 0.03%)</title><rect x="56.1015%" y="773" width="0.0278%" height="15" fill="rgb(242,92,40)" fg:x="124983" fg:w="62"/><text x="56.3515%" y="783.50"></text></g><g><title>unmap_vmas (25 samples, 0.01%)</title><rect x="56.1181%" y="757" width="0.0112%" height="15" fill="rgb(209,45,30)" fg:x="125020" fg:w="25"/><text x="56.3681%" y="767.50"></text></g><g><title>begin_new_exec (68 samples, 0.03%)</title><rect x="56.1006%" y="805" width="0.0305%" height="15" fill="rgb(218,157,36)" fg:x="124981" fg:w="68"/><text x="56.3506%" y="815.50"></text></g><g><title>__x64_sys_execve (98 samples, 0.04%)</title><rect x="56.0988%" y="869" width="0.0440%" height="15" fill="rgb(222,186,16)" fg:x="124977" fg:w="98"/><text x="56.3488%" y="879.50"></text></g><g><title>do_execveat_common (98 samples, 0.04%)</title><rect x="56.0988%" y="853" width="0.0440%" height="15" fill="rgb(254,72,35)" fg:x="124977" fg:w="98"/><text x="56.3488%" y="863.50"></text></g><g><title>bprm_execve (98 samples, 0.04%)</title><rect x="56.0988%" y="837" width="0.0440%" height="15" fill="rgb(224,25,35)" fg:x="124977" fg:w="98"/><text x="56.3488%" y="847.50"></text></g><g><title>load_elf_binary (98 samples, 0.04%)</title><rect x="56.0988%" y="821" width="0.0440%" height="15" fill="rgb(206,135,52)" fg:x="124977" fg:w="98"/><text x="56.3488%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.02%)</title><rect x="56.1500%" y="725" width="0.0157%" height="15" fill="rgb(229,174,47)" fg:x="125091" fg:w="35"/><text x="56.4000%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (35 samples, 0.02%)</title><rect x="56.1500%" y="709" width="0.0157%" height="15" fill="rgb(242,184,21)" fg:x="125091" fg:w="35"/><text x="56.4000%" y="719.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="56.1505%" y="693" width="0.0153%" height="15" fill="rgb(213,22,45)" fg:x="125092" fg:w="34"/><text x="56.4005%" y="703.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="56.1496%" y="741" width="0.0166%" height="15" fill="rgb(237,81,54)" fg:x="125090" fg:w="37"/><text x="56.3996%" y="751.50"></text></g><g><title>namespace_unlock (52 samples, 0.02%)</title><rect x="56.1433%" y="805" width="0.0233%" height="15" fill="rgb(248,177,18)" fg:x="125076" fg:w="52"/><text x="56.3933%" y="815.50"></text></g><g><title>synchronize_rcu_expedited (45 samples, 0.02%)</title><rect x="56.1464%" y="789" width="0.0202%" height="15" fill="rgb(254,31,16)" fg:x="125083" fg:w="45"/><text x="56.3964%" y="799.50"></text></g><g><title>schedule (39 samples, 0.02%)</title><rect x="56.1491%" y="773" width="0.0175%" height="15" fill="rgb(235,20,31)" fg:x="125089" fg:w="39"/><text x="56.3991%" y="783.50"></text></g><g><title>__schedule (39 samples, 0.02%)</title><rect x="56.1491%" y="757" width="0.0175%" height="15" fill="rgb(240,56,43)" fg:x="125089" fg:w="39"/><text x="56.3991%" y="767.50"></text></g><g><title>free_nsproxy (60 samples, 0.03%)</title><rect x="56.1428%" y="837" width="0.0269%" height="15" fill="rgb(237,197,51)" fg:x="125075" fg:w="60"/><text x="56.3928%" y="847.50"></text></g><g><title>put_mnt_ns (59 samples, 0.03%)</title><rect x="56.1433%" y="821" width="0.0265%" height="15" fill="rgb(241,162,44)" fg:x="125076" fg:w="59"/><text x="56.3933%" y="831.50"></text></g><g><title>free_pgtables (24 samples, 0.01%)</title><rect x="56.1702%" y="805" width="0.0108%" height="15" fill="rgb(224,23,20)" fg:x="125136" fg:w="24"/><text x="56.4202%" y="815.50"></text></g><g><title>tlb_finish_mmu (33 samples, 0.01%)</title><rect x="56.1841%" y="805" width="0.0148%" height="15" fill="rgb(250,109,34)" fg:x="125167" fg:w="33"/><text x="56.4341%" y="815.50"></text></g><g><title>release_pages (26 samples, 0.01%)</title><rect x="56.1873%" y="789" width="0.0117%" height="15" fill="rgb(214,175,50)" fg:x="125174" fg:w="26"/><text x="56.4373%" y="799.50"></text></g><g><title>unmap_page_range (42 samples, 0.02%)</title><rect x="56.1989%" y="789" width="0.0189%" height="15" fill="rgb(213,182,5)" fg:x="125200" fg:w="42"/><text x="56.4489%" y="799.50"></text></g><g><title>exit_mmap (108 samples, 0.05%)</title><rect x="56.1698%" y="821" width="0.0485%" height="15" fill="rgb(209,199,19)" fg:x="125135" fg:w="108"/><text x="56.4198%" y="831.50"></text></g><g><title>unmap_vmas (43 samples, 0.02%)</title><rect x="56.1989%" y="805" width="0.0193%" height="15" fill="rgb(236,224,42)" fg:x="125200" fg:w="43"/><text x="56.4489%" y="815.50"></text></g><g><title>mmput (109 samples, 0.05%)</title><rect x="56.1698%" y="837" width="0.0489%" height="15" fill="rgb(246,226,29)" fg:x="125135" fg:w="109"/><text x="56.4198%" y="847.50"></text></g><g><title>list_lru_destroy (25 samples, 0.01%)</title><rect x="56.2200%" y="789" width="0.0112%" height="15" fill="rgb(227,223,11)" fg:x="125247" fg:w="25"/><text x="56.4700%" y="799.50"></text></g><g><title>kfree (24 samples, 0.01%)</title><rect x="56.2205%" y="773" width="0.0108%" height="15" fill="rgb(219,7,51)" fg:x="125248" fg:w="24"/><text x="56.4705%" y="783.50"></text></g><g><title>deactivate_locked_super (35 samples, 0.02%)</title><rect x="56.2196%" y="805" width="0.0157%" height="15" fill="rgb(245,167,10)" fg:x="125246" fg:w="35"/><text x="56.4696%" y="815.50"></text></g><g><title>__x64_sys_exit (208 samples, 0.09%)</title><rect x="56.1428%" y="869" width="0.0934%" height="15" fill="rgb(237,224,16)" fg:x="125075" fg:w="208"/><text x="56.3928%" y="879.50"></text></g><g><title>do_exit (208 samples, 0.09%)</title><rect x="56.1428%" y="853" width="0.0934%" height="15" fill="rgb(226,132,13)" fg:x="125075" fg:w="208"/><text x="56.3928%" y="863.50"></text></g><g><title>task_work_run (39 samples, 0.02%)</title><rect x="56.2187%" y="837" width="0.0175%" height="15" fill="rgb(214,140,3)" fg:x="125244" fg:w="39"/><text x="56.4687%" y="847.50"></text></g><g><title>cleanup_mnt (39 samples, 0.02%)</title><rect x="56.2187%" y="821" width="0.0175%" height="15" fill="rgb(221,177,4)" fg:x="125244" fg:w="39"/><text x="56.4687%" y="831.50"></text></g><g><title>unmap_page_range (36 samples, 0.02%)</title><rect x="56.2573%" y="773" width="0.0162%" height="15" fill="rgb(238,139,3)" fg:x="125330" fg:w="36"/><text x="56.5073%" y="783.50"></text></g><g><title>mmput (83 samples, 0.04%)</title><rect x="56.2366%" y="821" width="0.0373%" height="15" fill="rgb(216,17,39)" fg:x="125284" fg:w="83"/><text x="56.4866%" y="831.50"></text></g><g><title>exit_mmap (82 samples, 0.04%)</title><rect x="56.2371%" y="805" width="0.0368%" height="15" fill="rgb(238,120,9)" fg:x="125285" fg:w="82"/><text x="56.4871%" y="815.50"></text></g><g><title>unmap_vmas (38 samples, 0.02%)</title><rect x="56.2568%" y="789" width="0.0171%" height="15" fill="rgb(244,92,53)" fg:x="125329" fg:w="38"/><text x="56.5068%" y="799.50"></text></g><g><title>__x64_sys_exit_group (89 samples, 0.04%)</title><rect x="56.2362%" y="869" width="0.0399%" height="15" fill="rgb(224,148,33)" fg:x="125283" fg:w="89"/><text x="56.4862%" y="879.50"></text></g><g><title>do_group_exit (89 samples, 0.04%)</title><rect x="56.2362%" y="853" width="0.0399%" height="15" fill="rgb(243,6,36)" fg:x="125283" fg:w="89"/><text x="56.4862%" y="863.50"></text></g><g><title>do_exit (89 samples, 0.04%)</title><rect x="56.2362%" y="837" width="0.0399%" height="15" fill="rgb(230,102,11)" fg:x="125283" fg:w="89"/><text x="56.4862%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (397 samples, 0.18%)</title><rect x="56.0984%" y="901" width="0.1782%" height="15" fill="rgb(234,148,36)" fg:x="124976" fg:w="397"/><text x="56.3484%" y="911.50"></text></g><g><title>do_syscall_64 (396 samples, 0.18%)</title><rect x="56.0988%" y="885" width="0.1778%" height="15" fill="rgb(251,153,25)" fg:x="124977" fg:w="396"/><text x="56.3488%" y="895.50"></text></g><g><title>linux-sandbox (3,973 samples, 1.78%)</title><rect x="54.4946%" y="917" width="1.7834%" height="15" fill="rgb(215,129,8)" fg:x="121403" fg:w="3973"/><text x="54.7446%" y="927.50">l..</text></g><g><title>__perf_event_task_sched_in (101 samples, 0.05%)</title><rect x="56.3058%" y="741" width="0.0453%" height="15" fill="rgb(224,128,35)" fg:x="125438" fg:w="101"/><text x="56.5558%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (100 samples, 0.04%)</title><rect x="56.3062%" y="725" width="0.0449%" height="15" fill="rgb(237,56,52)" fg:x="125439" fg:w="100"/><text x="56.5562%" y="735.50"></text></g><g><title>native_write_msr (99 samples, 0.04%)</title><rect x="56.3067%" y="709" width="0.0444%" height="15" fill="rgb(234,213,19)" fg:x="125440" fg:w="99"/><text x="56.5567%" y="719.50"></text></g><g><title>arch_fork (122 samples, 0.05%)</title><rect x="56.2972%" y="805" width="0.0548%" height="15" fill="rgb(252,82,23)" fg:x="125419" fg:w="122"/><text x="56.5472%" y="815.50"></text></g><g><title>ret_from_fork (114 samples, 0.05%)</title><rect x="56.3008%" y="789" width="0.0512%" height="15" fill="rgb(254,201,21)" fg:x="125427" fg:w="114"/><text x="56.5508%" y="799.50"></text></g><g><title>schedule_tail (114 samples, 0.05%)</title><rect x="56.3008%" y="773" width="0.0512%" height="15" fill="rgb(250,186,11)" fg:x="125427" fg:w="114"/><text x="56.5508%" y="783.50"></text></g><g><title>finish_task_switch (103 samples, 0.05%)</title><rect x="56.3058%" y="757" width="0.0462%" height="15" fill="rgb(211,174,5)" fg:x="125438" fg:w="103"/><text x="56.5558%" y="767.50"></text></g><g><title>__libc_fork (132 samples, 0.06%)</title><rect x="56.2946%" y="821" width="0.0593%" height="15" fill="rgb(214,121,10)" fg:x="125413" fg:w="132"/><text x="56.5446%" y="831.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (146 samples, 0.07%)</title><rect x="56.2892%" y="853" width="0.0655%" height="15" fill="rgb(241,66,2)" fg:x="125401" fg:w="146"/><text x="56.5392%" y="863.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (146 samples, 0.07%)</title><rect x="56.2892%" y="837" width="0.0655%" height="15" fill="rgb(220,167,19)" fg:x="125401" fg:w="146"/><text x="56.5392%" y="847.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="56.3565%" y="741" width="0.0144%" height="15" fill="rgb(231,54,50)" fg:x="125551" fg:w="32"/><text x="56.6065%" y="751.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="56.3565%" y="725" width="0.0144%" height="15" fill="rgb(239,217,53)" fg:x="125551" fg:w="32"/><text x="56.6065%" y="735.50"></text></g><g><title>finish_task_switch (32 samples, 0.01%)</title><rect x="56.3565%" y="709" width="0.0144%" height="15" fill="rgb(248,8,0)" fg:x="125551" fg:w="32"/><text x="56.6065%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (31 samples, 0.01%)</title><rect x="56.3569%" y="693" width="0.0139%" height="15" fill="rgb(229,118,37)" fg:x="125552" fg:w="31"/><text x="56.6069%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.01%)</title><rect x="56.3574%" y="677" width="0.0135%" height="15" fill="rgb(253,223,43)" fg:x="125553" fg:w="30"/><text x="56.6074%" y="687.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="56.3574%" y="661" width="0.0135%" height="15" fill="rgb(211,77,36)" fg:x="125553" fg:w="30"/><text x="56.6074%" y="671.50"></text></g><g><title>WaitChild (37 samples, 0.02%)</title><rect x="56.3565%" y="837" width="0.0166%" height="15" fill="rgb(219,3,53)" fg:x="125551" fg:w="37"/><text x="56.6065%" y="847.50"></text></g><g><title>__GI___wait4 (37 samples, 0.02%)</title><rect x="56.3565%" y="821" width="0.0166%" height="15" fill="rgb(244,45,42)" fg:x="125551" fg:w="37"/><text x="56.6065%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.02%)</title><rect x="56.3565%" y="805" width="0.0166%" height="15" fill="rgb(225,95,27)" fg:x="125551" fg:w="37"/><text x="56.6065%" y="815.50"></text></g><g><title>do_syscall_64 (37 samples, 0.02%)</title><rect x="56.3565%" y="789" width="0.0166%" height="15" fill="rgb(207,74,8)" fg:x="125551" fg:w="37"/><text x="56.6065%" y="799.50"></text></g><g><title>kernel_wait4 (37 samples, 0.02%)</title><rect x="56.3565%" y="773" width="0.0166%" height="15" fill="rgb(243,63,36)" fg:x="125551" fg:w="37"/><text x="56.6065%" y="783.50"></text></g><g><title>do_wait (37 samples, 0.02%)</title><rect x="56.3565%" y="757" width="0.0166%" height="15" fill="rgb(211,180,12)" fg:x="125551" fg:w="37"/><text x="56.6065%" y="767.50"></text></g><g><title>__libc_start_main (198 samples, 0.09%)</title><rect x="56.2869%" y="885" width="0.0889%" height="15" fill="rgb(254,166,49)" fg:x="125396" fg:w="198"/><text x="56.5369%" y="895.50"></text></g><g><title>main (193 samples, 0.09%)</title><rect x="56.2892%" y="869" width="0.0866%" height="15" fill="rgb(205,19,0)" fg:x="125401" fg:w="193"/><text x="56.5392%" y="879.50"></text></g><g><title>LegacyProcessWrapper::WaitForChild (47 samples, 0.02%)</title><rect x="56.3547%" y="853" width="0.0211%" height="15" fill="rgb(224,172,32)" fg:x="125547" fg:w="47"/><text x="56.6047%" y="863.50"></text></g><g><title>elf_machine_rela (36 samples, 0.02%)</title><rect x="56.3893%" y="789" width="0.0162%" height="15" fill="rgb(254,136,30)" fg:x="125624" fg:w="36"/><text x="56.6393%" y="799.50"></text></g><g><title>_dl_lookup_symbol_x (30 samples, 0.01%)</title><rect x="56.3920%" y="773" width="0.0135%" height="15" fill="rgb(246,19,35)" fg:x="125630" fg:w="30"/><text x="56.6420%" y="783.50"></text></g><g><title>_dl_relocate_object (48 samples, 0.02%)</title><rect x="56.3857%" y="821" width="0.0215%" height="15" fill="rgb(219,24,36)" fg:x="125616" fg:w="48"/><text x="56.6357%" y="831.50"></text></g><g><title>elf_dynamic_do_Rela (46 samples, 0.02%)</title><rect x="56.3866%" y="805" width="0.0206%" height="15" fill="rgb(251,55,1)" fg:x="125618" fg:w="46"/><text x="56.6366%" y="815.50"></text></g><g><title>[ld-2.31.so] (71 samples, 0.03%)</title><rect x="56.3758%" y="837" width="0.0319%" height="15" fill="rgb(218,117,39)" fg:x="125594" fg:w="71"/><text x="56.6258%" y="847.50"></text></g><g><title>_dl_start_final (73 samples, 0.03%)</title><rect x="56.3758%" y="869" width="0.0328%" height="15" fill="rgb(248,169,11)" fg:x="125594" fg:w="73"/><text x="56.6258%" y="879.50"></text></g><g><title>_dl_sysdep_start (73 samples, 0.03%)</title><rect x="56.3758%" y="853" width="0.0328%" height="15" fill="rgb(244,40,44)" fg:x="125594" fg:w="73"/><text x="56.6258%" y="863.50"></text></g><g><title>_start (273 samples, 0.12%)</title><rect x="56.2869%" y="901" width="0.1225%" height="15" fill="rgb(234,62,37)" fg:x="125396" fg:w="273"/><text x="56.5369%" y="911.50"></text></g><g><title>_dl_start (75 samples, 0.03%)</title><rect x="56.3758%" y="885" width="0.0337%" height="15" fill="rgb(207,117,42)" fg:x="125594" fg:w="75"/><text x="56.6258%" y="895.50"></text></g><g><title>process-wrapper (308 samples, 0.14%)</title><rect x="56.2806%" y="917" width="0.1383%" height="15" fill="rgb(213,43,2)" fg:x="125382" fg:w="308"/><text x="56.5306%" y="927.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (30 samples, 0.01%)</title><rect x="56.4561%" y="853" width="0.0135%" height="15" fill="rgb(244,202,51)" fg:x="125773" fg:w="30"/><text x="56.7061%" y="863.50"></text></g><g><title>VMThread::execute (29 samples, 0.01%)</title><rect x="56.4566%" y="837" width="0.0130%" height="15" fill="rgb(253,174,46)" fg:x="125774" fg:w="29"/><text x="56.7066%" y="847.50"></text></g><g><title>Monitor::wait (29 samples, 0.01%)</title><rect x="56.4566%" y="821" width="0.0130%" height="15" fill="rgb(251,23,1)" fg:x="125774" fg:w="29"/><text x="56.7066%" y="831.50"></text></g><g><title>Monitor::IWait (29 samples, 0.01%)</title><rect x="56.4566%" y="805" width="0.0130%" height="15" fill="rgb(253,26,1)" fg:x="125774" fg:w="29"/><text x="56.7066%" y="815.50"></text></g><g><title>os::PlatformEvent::park (29 samples, 0.01%)</title><rect x="56.4566%" y="789" width="0.0130%" height="15" fill="rgb(216,89,31)" fg:x="125774" fg:w="29"/><text x="56.7066%" y="799.50"></text></g><g><title>__pthread_cond_wait (29 samples, 0.01%)</title><rect x="56.4566%" y="773" width="0.0130%" height="15" fill="rgb(209,109,5)" fg:x="125774" fg:w="29"/><text x="56.7066%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (29 samples, 0.01%)</title><rect x="56.4566%" y="757" width="0.0130%" height="15" fill="rgb(229,63,13)" fg:x="125774" fg:w="29"/><text x="56.7066%" y="767.50"></text></g><g><title>futex_wait_cancelable (28 samples, 0.01%)</title><rect x="56.4570%" y="741" width="0.0126%" height="15" fill="rgb(238,137,54)" fg:x="125775" fg:w="28"/><text x="56.7070%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.01%)</title><rect x="56.4570%" y="725" width="0.0126%" height="15" fill="rgb(228,1,9)" fg:x="125775" fg:w="28"/><text x="56.7070%" y="735.50"></text></g><g><title>do_syscall_64 (28 samples, 0.01%)</title><rect x="56.4570%" y="709" width="0.0126%" height="15" fill="rgb(249,120,48)" fg:x="125775" fg:w="28"/><text x="56.7070%" y="719.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.01%)</title><rect x="56.4570%" y="693" width="0.0126%" height="15" fill="rgb(209,72,36)" fg:x="125775" fg:w="28"/><text x="56.7070%" y="703.50"></text></g><g><title>do_futex (28 samples, 0.01%)</title><rect x="56.4570%" y="677" width="0.0126%" height="15" fill="rgb(247,98,49)" fg:x="125775" fg:w="28"/><text x="56.7070%" y="687.50"></text></g><g><title>futex_wait (27 samples, 0.01%)</title><rect x="56.4575%" y="661" width="0.0121%" height="15" fill="rgb(233,75,36)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="671.50"></text></g><g><title>futex_wait_queue_me (27 samples, 0.01%)</title><rect x="56.4575%" y="645" width="0.0121%" height="15" fill="rgb(225,14,24)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="655.50"></text></g><g><title>schedule (27 samples, 0.01%)</title><rect x="56.4575%" y="629" width="0.0121%" height="15" fill="rgb(237,193,20)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="639.50"></text></g><g><title>__schedule (27 samples, 0.01%)</title><rect x="56.4575%" y="613" width="0.0121%" height="15" fill="rgb(239,122,19)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="623.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="56.4575%" y="597" width="0.0121%" height="15" fill="rgb(231,220,10)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.01%)</title><rect x="56.4575%" y="581" width="0.0121%" height="15" fill="rgb(220,66,15)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.01%)</title><rect x="56.4575%" y="565" width="0.0121%" height="15" fill="rgb(215,171,52)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="575.50"></text></g><g><title>native_write_msr (26 samples, 0.01%)</title><rect x="56.4579%" y="549" width="0.0117%" height="15" fill="rgb(241,169,50)" fg:x="125777" fg:w="26"/><text x="56.7079%" y="559.50"></text></g><g><title>InterpreterRuntime::monitorenter (32 samples, 0.01%)</title><rect x="56.4557%" y="885" width="0.0144%" height="15" fill="rgb(236,189,0)" fg:x="125772" fg:w="32"/><text x="56.7057%" y="895.50"></text></g><g><title>ObjectSynchronizer::fast_enter (31 samples, 0.01%)</title><rect x="56.4561%" y="869" width="0.0139%" height="15" fill="rgb(217,147,20)" fg:x="125773" fg:w="31"/><text x="56.7061%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (231 samples, 0.10%)</title><rect x="56.5145%" y="741" width="0.1037%" height="15" fill="rgb(206,188,39)" fg:x="125903" fg:w="231"/><text x="56.7645%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (228 samples, 0.10%)</title><rect x="56.5158%" y="725" width="0.1023%" height="15" fill="rgb(227,118,25)" fg:x="125906" fg:w="228"/><text x="56.7658%" y="735.50"></text></g><g><title>native_write_msr (227 samples, 0.10%)</title><rect x="56.5163%" y="709" width="0.1019%" height="15" fill="rgb(248,171,40)" fg:x="125907" fg:w="227"/><text x="56.7663%" y="719.50"></text></g><g><title>finish_task_switch (252 samples, 0.11%)</title><rect x="56.5109%" y="757" width="0.1131%" height="15" fill="rgb(251,90,54)" fg:x="125895" fg:w="252"/><text x="56.7609%" y="767.50"></text></g><g><title>schedule (253 samples, 0.11%)</title><rect x="56.5109%" y="789" width="0.1136%" height="15" fill="rgb(234,11,46)" fg:x="125895" fg:w="253"/><text x="56.7609%" y="799.50"></text></g><g><title>__schedule (253 samples, 0.11%)</title><rect x="56.5109%" y="773" width="0.1136%" height="15" fill="rgb(229,134,13)" fg:x="125895" fg:w="253"/><text x="56.7609%" y="783.50"></text></g><g><title>do_wait (354 samples, 0.16%)</title><rect x="56.4799%" y="805" width="0.1589%" height="15" fill="rgb(223,129,3)" fg:x="125826" fg:w="354"/><text x="56.7299%" y="815.50"></text></g><g><title>wait_consider_task (32 samples, 0.01%)</title><rect x="56.6245%" y="789" width="0.0144%" height="15" fill="rgb(221,124,13)" fg:x="126148" fg:w="32"/><text x="56.8745%" y="799.50"></text></g><g><title>release_task (30 samples, 0.01%)</title><rect x="56.6254%" y="773" width="0.0135%" height="15" fill="rgb(234,3,18)" fg:x="126150" fg:w="30"/><text x="56.8754%" y="783.50"></text></g><g><title>__GI___wait4 (357 samples, 0.16%)</title><rect x="56.4795%" y="869" width="0.1602%" height="15" fill="rgb(249,199,20)" fg:x="125825" fg:w="357"/><text x="56.7295%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (356 samples, 0.16%)</title><rect x="56.4799%" y="853" width="0.1598%" height="15" fill="rgb(224,134,6)" fg:x="125826" fg:w="356"/><text x="56.7299%" y="863.50"></text></g><g><title>do_syscall_64 (356 samples, 0.16%)</title><rect x="56.4799%" y="837" width="0.1598%" height="15" fill="rgb(254,83,26)" fg:x="125826" fg:w="356"/><text x="56.7299%" y="847.50"></text></g><g><title>kernel_wait4 (356 samples, 0.16%)</title><rect x="56.4799%" y="821" width="0.1598%" height="15" fill="rgb(217,88,9)" fg:x="125826" fg:w="356"/><text x="56.7299%" y="831.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (359 samples, 0.16%)</title><rect x="56.4790%" y="885" width="0.1611%" height="15" fill="rgb(225,73,2)" fg:x="125824" fg:w="359"/><text x="56.7290%" y="895.50"></text></g><g><title>finish_task_switch (70 samples, 0.03%)</title><rect x="56.6442%" y="677" width="0.0314%" height="15" fill="rgb(226,44,39)" fg:x="126192" fg:w="70"/><text x="56.8942%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.03%)</title><rect x="56.6451%" y="661" width="0.0305%" height="15" fill="rgb(228,53,17)" fg:x="126194" fg:w="68"/><text x="56.8951%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (68 samples, 0.03%)</title><rect x="56.6451%" y="645" width="0.0305%" height="15" fill="rgb(212,27,27)" fg:x="126194" fg:w="68"/><text x="56.8951%" y="655.50"></text></g><g><title>native_write_msr (68 samples, 0.03%)</title><rect x="56.6451%" y="629" width="0.0305%" height="15" fill="rgb(241,50,6)" fg:x="126194" fg:w="68"/><text x="56.8951%" y="639.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.03%)</title><rect x="56.6442%" y="725" width="0.0323%" height="15" fill="rgb(225,28,51)" fg:x="126192" fg:w="72"/><text x="56.8942%" y="735.50"></text></g><g><title>schedule (72 samples, 0.03%)</title><rect x="56.6442%" y="709" width="0.0323%" height="15" fill="rgb(215,33,16)" fg:x="126192" fg:w="72"/><text x="56.8942%" y="719.50"></text></g><g><title>__schedule (72 samples, 0.03%)</title><rect x="56.6442%" y="693" width="0.0323%" height="15" fill="rgb(243,40,39)" fg:x="126192" fg:w="72"/><text x="56.8942%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (81 samples, 0.04%)</title><rect x="56.6429%" y="853" width="0.0364%" height="15" fill="rgb(225,11,42)" fg:x="126189" fg:w="81"/><text x="56.8929%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (81 samples, 0.04%)</title><rect x="56.6429%" y="837" width="0.0364%" height="15" fill="rgb(241,220,38)" fg:x="126189" fg:w="81"/><text x="56.8929%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (79 samples, 0.04%)</title><rect x="56.6438%" y="821" width="0.0355%" height="15" fill="rgb(244,52,35)" fg:x="126191" fg:w="79"/><text x="56.8938%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.04%)</title><rect x="56.6438%" y="805" width="0.0355%" height="15" fill="rgb(246,42,46)" fg:x="126191" fg:w="79"/><text x="56.8938%" y="815.50"></text></g><g><title>do_syscall_64 (79 samples, 0.04%)</title><rect x="56.6438%" y="789" width="0.0355%" height="15" fill="rgb(205,184,13)" fg:x="126191" fg:w="79"/><text x="56.8938%" y="799.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.04%)</title><rect x="56.6438%" y="773" width="0.0355%" height="15" fill="rgb(209,48,36)" fg:x="126191" fg:w="79"/><text x="56.8938%" y="783.50"></text></g><g><title>do_futex (79 samples, 0.04%)</title><rect x="56.6438%" y="757" width="0.0355%" height="15" fill="rgb(244,34,51)" fg:x="126191" fg:w="79"/><text x="56.8938%" y="767.50"></text></g><g><title>futex_wait (79 samples, 0.04%)</title><rect x="56.6438%" y="741" width="0.0355%" height="15" fill="rgb(221,107,33)" fg:x="126191" fg:w="79"/><text x="56.8938%" y="751.50"></text></g><g><title>Unsafe_Park (87 samples, 0.04%)</title><rect x="56.6406%" y="885" width="0.0391%" height="15" fill="rgb(224,203,12)" fg:x="126184" fg:w="87"/><text x="56.8906%" y="895.50"></text></g><g><title>Parker::park (85 samples, 0.04%)</title><rect x="56.6415%" y="869" width="0.0382%" height="15" fill="rgb(230,215,18)" fg:x="126186" fg:w="85"/><text x="56.8915%" y="879.50"></text></g><g><title>[perf-945576.map] (576 samples, 0.26%)</title><rect x="56.4220%" y="901" width="0.2586%" height="15" fill="rgb(206,185,35)" fg:x="125697" fg:w="576"/><text x="56.6720%" y="911.50"></text></g><g><title>process_reaper (585 samples, 0.26%)</title><rect x="56.4189%" y="917" width="0.2626%" height="15" fill="rgb(228,140,34)" fg:x="125690" fg:w="585"/><text x="56.6689%" y="927.50"></text></g><g><title>Java_java_util_zip_Deflater_deflateBytesBytes (39 samples, 0.02%)</title><rect x="56.8462%" y="885" width="0.0175%" height="15" fill="rgb(208,93,13)" fg:x="126642" fg:w="39"/><text x="57.0962%" y="895.50"></text></g><g><title>deflate (39 samples, 0.02%)</title><rect x="56.8462%" y="869" width="0.0175%" height="15" fill="rgb(221,193,39)" fg:x="126642" fg:w="39"/><text x="57.0962%" y="879.50"></text></g><g><title>[libz.so.1.2.11] (39 samples, 0.02%)</title><rect x="56.8462%" y="853" width="0.0175%" height="15" fill="rgb(241,132,34)" fg:x="126642" fg:w="39"/><text x="57.0962%" y="863.50"></text></g><g><title>[libz.so.1.2.11] (26 samples, 0.01%)</title><rect x="56.8521%" y="837" width="0.0117%" height="15" fill="rgb(221,141,10)" fg:x="126655" fg:w="26"/><text x="57.1021%" y="847.50"></text></g><g><title>SafepointSynchronize::block (24 samples, 0.01%)</title><rect x="56.8821%" y="853" width="0.0108%" height="15" fill="rgb(226,90,31)" fg:x="126722" fg:w="24"/><text x="57.1321%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (459 samples, 0.21%)</title><rect x="56.9194%" y="661" width="0.2060%" height="15" fill="rgb(243,75,5)" fg:x="126805" fg:w="459"/><text x="57.1694%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (452 samples, 0.20%)</title><rect x="56.9225%" y="645" width="0.2029%" height="15" fill="rgb(227,156,21)" fg:x="126812" fg:w="452"/><text x="57.1725%" y="655.50"></text></g><g><title>native_write_msr (450 samples, 0.20%)</title><rect x="56.9234%" y="629" width="0.2020%" height="15" fill="rgb(250,195,8)" fg:x="126814" fg:w="450"/><text x="57.1734%" y="639.50"></text></g><g><title>finish_task_switch (481 samples, 0.22%)</title><rect x="56.9158%" y="677" width="0.2159%" height="15" fill="rgb(220,134,5)" fg:x="126797" fg:w="481"/><text x="57.1658%" y="687.50"></text></g><g><title>futex_wait_queue_me (521 samples, 0.23%)</title><rect x="56.9005%" y="725" width="0.2339%" height="15" fill="rgb(246,106,34)" fg:x="126763" fg:w="521"/><text x="57.1505%" y="735.50"></text></g><g><title>schedule (511 samples, 0.23%)</title><rect x="56.9050%" y="709" width="0.2294%" height="15" fill="rgb(205,1,4)" fg:x="126773" fg:w="511"/><text x="57.1550%" y="719.50"></text></g><g><title>__schedule (510 samples, 0.23%)</title><rect x="56.9055%" y="693" width="0.2289%" height="15" fill="rgb(224,151,29)" fg:x="126774" fg:w="510"/><text x="57.1555%" y="703.50"></text></g><g><title>do_syscall_64 (536 samples, 0.24%)</title><rect x="56.8951%" y="789" width="0.2406%" height="15" fill="rgb(251,196,0)" fg:x="126751" fg:w="536"/><text x="57.1451%" y="799.50"></text></g><g><title>__x64_sys_futex (535 samples, 0.24%)</title><rect x="56.8956%" y="773" width="0.2401%" height="15" fill="rgb(212,127,0)" fg:x="126752" fg:w="535"/><text x="57.1456%" y="783.50"></text></g><g><title>do_futex (532 samples, 0.24%)</title><rect x="56.8969%" y="757" width="0.2388%" height="15" fill="rgb(236,71,53)" fg:x="126755" fg:w="532"/><text x="57.1469%" y="767.50"></text></g><g><title>futex_wait (528 samples, 0.24%)</title><rect x="56.8987%" y="741" width="0.2370%" height="15" fill="rgb(227,99,0)" fg:x="126759" fg:w="528"/><text x="57.1487%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (543 samples, 0.24%)</title><rect x="56.8951%" y="805" width="0.2437%" height="15" fill="rgb(239,89,21)" fg:x="126751" fg:w="543"/><text x="57.1451%" y="815.50"></text></g><g><title>__pthread_cond_wait (547 samples, 0.25%)</title><rect x="56.8938%" y="853" width="0.2455%" height="15" fill="rgb(243,122,19)" fg:x="126748" fg:w="547"/><text x="57.1438%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (547 samples, 0.25%)</title><rect x="56.8938%" y="837" width="0.2455%" height="15" fill="rgb(229,192,45)" fg:x="126748" fg:w="547"/><text x="57.1438%" y="847.50"></text></g><g><title>futex_wait_cancelable (546 samples, 0.25%)</title><rect x="56.8942%" y="821" width="0.2451%" height="15" fill="rgb(235,165,35)" fg:x="126749" fg:w="546"/><text x="57.1442%" y="831.50"></text></g><g><title>Parker::park (600 samples, 0.27%)</title><rect x="56.8767%" y="869" width="0.2693%" height="15" fill="rgb(253,202,0)" fg:x="126710" fg:w="600"/><text x="57.1267%" y="879.50"></text></g><g><title>Unsafe_Park (610 samples, 0.27%)</title><rect x="56.8731%" y="885" width="0.2738%" height="15" fill="rgb(235,51,20)" fg:x="126702" fg:w="610"/><text x="57.1231%" y="895.50"></text></g><g><title>[perf-945576.map] (1,032 samples, 0.46%)</title><rect x="56.6864%" y="901" width="0.4632%" height="15" fill="rgb(218,95,46)" fg:x="126286" fg:w="1032"/><text x="56.9364%" y="911.50"></text></g><g><title>profile-writer- (1,059 samples, 0.48%)</title><rect x="56.6815%" y="917" width="0.4754%" height="15" fill="rgb(212,81,10)" fg:x="126275" fg:w="1059"/><text x="56.9315%" y="927.50"></text></g><g><title>PyImport_ImportModuleLevelObject (28 samples, 0.01%)</title><rect x="57.2300%" y="597" width="0.0126%" height="15" fill="rgb(240,59,0)" fg:x="127497" fg:w="28"/><text x="57.4800%" y="607.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (28 samples, 0.01%)</title><rect x="57.2300%" y="581" width="0.0126%" height="15" fill="rgb(212,191,42)" fg:x="127497" fg:w="28"/><text x="57.4800%" y="591.50"></text></g><g><title>[python3.9] (28 samples, 0.01%)</title><rect x="57.2300%" y="565" width="0.0126%" height="15" fill="rgb(233,140,3)" fg:x="127497" fg:w="28"/><text x="57.4800%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (28 samples, 0.01%)</title><rect x="57.2300%" y="549" width="0.0126%" height="15" fill="rgb(215,69,23)" fg:x="127497" fg:w="28"/><text x="57.4800%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.01%)</title><rect x="57.2305%" y="533" width="0.0121%" height="15" fill="rgb(240,202,20)" fg:x="127498" fg:w="27"/><text x="57.4805%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.01%)</title><rect x="57.2305%" y="517" width="0.0121%" height="15" fill="rgb(209,146,50)" fg:x="127498" fg:w="27"/><text x="57.4805%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.01%)</title><rect x="57.2305%" y="501" width="0.0121%" height="15" fill="rgb(253,102,54)" fg:x="127498" fg:w="27"/><text x="57.4805%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.01%)</title><rect x="57.2305%" y="485" width="0.0121%" height="15" fill="rgb(250,173,47)" fg:x="127498" fg:w="27"/><text x="57.4805%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="57.2300%" y="869" width="0.0148%" height="15" fill="rgb(232,142,7)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.2300%" y="853" width="0.0148%" height="15" fill="rgb(230,157,47)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="57.2300%" y="837" width="0.0148%" height="15" fill="rgb(214,177,35)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.2300%" y="821" width="0.0148%" height="15" fill="rgb(234,119,46)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="57.2300%" y="805" width="0.0148%" height="15" fill="rgb(241,180,50)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.2300%" y="789" width="0.0148%" height="15" fill="rgb(221,54,25)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="57.2300%" y="773" width="0.0148%" height="15" fill="rgb(209,157,44)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.2300%" y="757" width="0.0148%" height="15" fill="rgb(246,115,41)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="57.2300%" y="741" width="0.0148%" height="15" fill="rgb(229,86,1)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="751.50"></text></g><g><title>[python3.9] (33 samples, 0.01%)</title><rect x="57.2300%" y="725" width="0.0148%" height="15" fill="rgb(240,108,53)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.2300%" y="709" width="0.0148%" height="15" fill="rgb(227,134,2)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="719.50"></text></g><g><title>[python3.9] (33 samples, 0.01%)</title><rect x="57.2300%" y="693" width="0.0148%" height="15" fill="rgb(213,129,25)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="703.50"></text></g><g><title>[python3.9] (33 samples, 0.01%)</title><rect x="57.2300%" y="677" width="0.0148%" height="15" fill="rgb(226,35,21)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="687.50"></text></g><g><title>PyEval_EvalCode (33 samples, 0.01%)</title><rect x="57.2300%" y="661" width="0.0148%" height="15" fill="rgb(208,129,26)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="671.50"></text></g><g><title>_PyEval_EvalCodeWithName (33 samples, 0.01%)</title><rect x="57.2300%" y="645" width="0.0148%" height="15" fill="rgb(224,83,6)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="655.50"></text></g><g><title>[python3.9] (33 samples, 0.01%)</title><rect x="57.2300%" y="629" width="0.0148%" height="15" fill="rgb(227,52,39)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.2300%" y="613" width="0.0148%" height="15" fill="rgb(241,30,17)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="623.50"></text></g><g><title>[python3.9] (98 samples, 0.04%)</title><rect x="57.2013%" y="885" width="0.0440%" height="15" fill="rgb(246,186,42)" fg:x="127433" fg:w="98"/><text x="57.4513%" y="895.50"></text></g><g><title>PyImport_ImportModuleLevelObject (40 samples, 0.02%)</title><rect x="57.2538%" y="549" width="0.0180%" height="15" fill="rgb(221,169,15)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="559.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (40 samples, 0.02%)</title><rect x="57.2538%" y="533" width="0.0180%" height="15" fill="rgb(235,108,21)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="543.50"></text></g><g><title>[python3.9] (40 samples, 0.02%)</title><rect x="57.2538%" y="517" width="0.0180%" height="15" fill="rgb(219,148,30)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (40 samples, 0.02%)</title><rect x="57.2538%" y="501" width="0.0180%" height="15" fill="rgb(220,109,5)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (40 samples, 0.02%)</title><rect x="57.2538%" y="485" width="0.0180%" height="15" fill="rgb(213,203,48)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (40 samples, 0.02%)</title><rect x="57.2538%" y="469" width="0.0180%" height="15" fill="rgb(244,71,33)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (40 samples, 0.02%)</title><rect x="57.2538%" y="453" width="0.0180%" height="15" fill="rgb(209,23,2)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (40 samples, 0.02%)</title><rect x="57.2538%" y="437" width="0.0180%" height="15" fill="rgb(219,97,7)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="447.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="57.2583%" y="421" width="0.0135%" height="15" fill="rgb(216,161,23)" fg:x="127560" fg:w="30"/><text x="57.5083%" y="431.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="57.2583%" y="405" width="0.0135%" height="15" fill="rgb(207,45,42)" fg:x="127560" fg:w="30"/><text x="57.5083%" y="415.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="57.2583%" y="389" width="0.0135%" height="15" fill="rgb(241,61,4)" fg:x="127560" fg:w="30"/><text x="57.5083%" y="399.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="57.2583%" y="373" width="0.0135%" height="15" fill="rgb(236,170,1)" fg:x="127560" fg:w="30"/><text x="57.5083%" y="383.50"></text></g><g><title>PyImport_ImportModuleLevelObject (50 samples, 0.02%)</title><rect x="57.2533%" y="869" width="0.0224%" height="15" fill="rgb(239,72,5)" fg:x="127549" fg:w="50"/><text x="57.5033%" y="879.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (50 samples, 0.02%)</title><rect x="57.2533%" y="853" width="0.0224%" height="15" fill="rgb(214,13,50)" fg:x="127549" fg:w="50"/><text x="57.5033%" y="863.50"></text></g><g><title>[python3.9] (50 samples, 0.02%)</title><rect x="57.2533%" y="837" width="0.0224%" height="15" fill="rgb(224,88,9)" fg:x="127549" fg:w="50"/><text x="57.5033%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (50 samples, 0.02%)</title><rect x="57.2533%" y="821" width="0.0224%" height="15" fill="rgb(238,192,34)" fg:x="127549" fg:w="50"/><text x="57.5033%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.02%)</title><rect x="57.2538%" y="805" width="0.0220%" height="15" fill="rgb(217,203,50)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (49 samples, 0.02%)</title><rect x="57.2538%" y="789" width="0.0220%" height="15" fill="rgb(241,123,32)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.02%)</title><rect x="57.2538%" y="773" width="0.0220%" height="15" fill="rgb(248,151,39)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (49 samples, 0.02%)</title><rect x="57.2538%" y="757" width="0.0220%" height="15" fill="rgb(208,89,6)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.02%)</title><rect x="57.2538%" y="741" width="0.0220%" height="15" fill="rgb(254,43,26)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (49 samples, 0.02%)</title><rect x="57.2538%" y="725" width="0.0220%" height="15" fill="rgb(216,158,13)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.02%)</title><rect x="57.2538%" y="709" width="0.0220%" height="15" fill="rgb(212,47,37)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (49 samples, 0.02%)</title><rect x="57.2538%" y="693" width="0.0220%" height="15" fill="rgb(254,16,10)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="703.50"></text></g><g><title>[python3.9] (49 samples, 0.02%)</title><rect x="57.2538%" y="677" width="0.0220%" height="15" fill="rgb(223,228,16)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.02%)</title><rect x="57.2538%" y="661" width="0.0220%" height="15" fill="rgb(249,108,50)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="671.50"></text></g><g><title>[python3.9] (49 samples, 0.02%)</title><rect x="57.2538%" y="645" width="0.0220%" height="15" fill="rgb(208,220,5)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="655.50"></text></g><g><title>[python3.9] (49 samples, 0.02%)</title><rect x="57.2538%" y="629" width="0.0220%" height="15" fill="rgb(217,89,48)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="639.50"></text></g><g><title>PyEval_EvalCode (49 samples, 0.02%)</title><rect x="57.2538%" y="613" width="0.0220%" height="15" fill="rgb(212,113,41)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="623.50"></text></g><g><title>_PyEval_EvalCodeWithName (49 samples, 0.02%)</title><rect x="57.2538%" y="597" width="0.0220%" height="15" fill="rgb(231,127,5)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="607.50"></text></g><g><title>[python3.9] (49 samples, 0.02%)</title><rect x="57.2538%" y="581" width="0.0220%" height="15" fill="rgb(217,141,17)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.02%)</title><rect x="57.2538%" y="565" width="0.0220%" height="15" fill="rgb(245,125,54)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="575.50"></text></g><g><title>[python3.9] (23 samples, 0.01%)</title><rect x="57.2875%" y="853" width="0.0103%" height="15" fill="rgb(248,125,3)" fg:x="127625" fg:w="23"/><text x="57.5375%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="57.2875%" y="837" width="0.0103%" height="15" fill="rgb(236,119,51)" fg:x="127625" fg:w="23"/><text x="57.5375%" y="847.50"></text></g><g><title>PyImport_ImportModuleLevelObject (23 samples, 0.01%)</title><rect x="57.3045%" y="661" width="0.0103%" height="15" fill="rgb(239,99,8)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="671.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (23 samples, 0.01%)</title><rect x="57.3045%" y="645" width="0.0103%" height="15" fill="rgb(224,228,4)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="655.50"></text></g><g><title>[python3.9] (23 samples, 0.01%)</title><rect x="57.3045%" y="629" width="0.0103%" height="15" fill="rgb(220,131,45)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="57.3045%" y="613" width="0.0103%" height="15" fill="rgb(215,62,5)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="57.3045%" y="597" width="0.0103%" height="15" fill="rgb(253,12,24)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="57.3045%" y="581" width="0.0103%" height="15" fill="rgb(248,120,50)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="57.3045%" y="565" width="0.0103%" height="15" fill="rgb(245,194,10)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="57.3045%" y="549" width="0.0103%" height="15" fill="rgb(241,149,38)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="559.50"></text></g><g><title>[python3.9] (29 samples, 0.01%)</title><rect x="57.3045%" y="789" width="0.0130%" height="15" fill="rgb(219,215,7)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.01%)</title><rect x="57.3045%" y="773" width="0.0130%" height="15" fill="rgb(208,120,31)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="783.50"></text></g><g><title>[python3.9] (29 samples, 0.01%)</title><rect x="57.3045%" y="757" width="0.0130%" height="15" fill="rgb(244,30,8)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="767.50"></text></g><g><title>[python3.9] (29 samples, 0.01%)</title><rect x="57.3045%" y="741" width="0.0130%" height="15" fill="rgb(238,35,44)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="751.50"></text></g><g><title>PyEval_EvalCode (29 samples, 0.01%)</title><rect x="57.3045%" y="725" width="0.0130%" height="15" fill="rgb(243,218,37)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="735.50"></text></g><g><title>_PyEval_EvalCodeWithName (29 samples, 0.01%)</title><rect x="57.3045%" y="709" width="0.0130%" height="15" fill="rgb(218,169,10)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="719.50"></text></g><g><title>[python3.9] (29 samples, 0.01%)</title><rect x="57.3045%" y="693" width="0.0130%" height="15" fill="rgb(221,144,10)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.01%)</title><rect x="57.3045%" y="677" width="0.0130%" height="15" fill="rgb(226,41,38)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="687.50"></text></g><g><title>[python3.9] (25 samples, 0.01%)</title><rect x="57.3198%" y="437" width="0.0112%" height="15" fill="rgb(228,3,1)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="447.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.01%)</title><rect x="57.3198%" y="421" width="0.0112%" height="15" fill="rgb(209,129,12)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="431.50"></text></g><g><title>[python3.9] (25 samples, 0.01%)</title><rect x="57.3198%" y="405" width="0.0112%" height="15" fill="rgb(213,136,33)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="415.50"></text></g><g><title>[python3.9] (25 samples, 0.01%)</title><rect x="57.3198%" y="389" width="0.0112%" height="15" fill="rgb(209,181,29)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="399.50"></text></g><g><title>PyEval_EvalCode (25 samples, 0.01%)</title><rect x="57.3198%" y="373" width="0.0112%" height="15" fill="rgb(234,173,18)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="383.50"></text></g><g><title>_PyEval_EvalCodeWithName (25 samples, 0.01%)</title><rect x="57.3198%" y="357" width="0.0112%" height="15" fill="rgb(227,73,47)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="367.50"></text></g><g><title>[python3.9] (25 samples, 0.01%)</title><rect x="57.3198%" y="341" width="0.0112%" height="15" fill="rgb(234,9,34)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="351.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.01%)</title><rect x="57.3198%" y="325" width="0.0112%" height="15" fill="rgb(235,172,15)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="335.50"></text></g><g><title>PyImport_ImportModuleLevelObject (31 samples, 0.01%)</title><rect x="57.3175%" y="629" width="0.0139%" height="15" fill="rgb(245,61,2)" fg:x="127692" fg:w="31"/><text x="57.5675%" y="639.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (31 samples, 0.01%)</title><rect x="57.3175%" y="613" width="0.0139%" height="15" fill="rgb(238,39,47)" fg:x="127692" fg:w="31"/><text x="57.5675%" y="623.50"></text></g><g><title>[python3.9] (31 samples, 0.01%)</title><rect x="57.3175%" y="597" width="0.0139%" height="15" fill="rgb(234,37,24)" fg:x="127692" fg:w="31"/><text x="57.5675%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.01%)</title><rect x="57.3175%" y="581" width="0.0139%" height="15" fill="rgb(248,223,24)" fg:x="127692" fg:w="31"/><text x="57.5675%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="57.3180%" y="565" width="0.0135%" height="15" fill="rgb(223,12,15)" fg:x="127693" fg:w="30"/><text x="57.5680%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="57.3180%" y="549" width="0.0135%" height="15" fill="rgb(249,6,3)" fg:x="127693" fg:w="30"/><text x="57.5680%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="57.3180%" y="533" width="0.0135%" height="15" fill="rgb(237,105,33)" fg:x="127693" fg:w="30"/><text x="57.5680%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="57.3180%" y="517" width="0.0135%" height="15" fill="rgb(252,208,35)" fg:x="127693" fg:w="30"/><text x="57.5680%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3198%" y="501" width="0.0117%" height="15" fill="rgb(215,181,35)" fg:x="127697" fg:w="26"/><text x="57.5698%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3198%" y="485" width="0.0117%" height="15" fill="rgb(246,212,3)" fg:x="127697" fg:w="26"/><text x="57.5698%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3198%" y="469" width="0.0117%" height="15" fill="rgb(247,156,24)" fg:x="127697" fg:w="26"/><text x="57.5698%" y="479.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3198%" y="453" width="0.0117%" height="15" fill="rgb(248,9,31)" fg:x="127697" fg:w="26"/><text x="57.5698%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (103 samples, 0.05%)</title><rect x="57.2875%" y="869" width="0.0462%" height="15" fill="rgb(234,26,45)" fg:x="127625" fg:w="103"/><text x="57.5375%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (80 samples, 0.04%)</title><rect x="57.2978%" y="853" width="0.0359%" height="15" fill="rgb(249,11,32)" fg:x="127648" fg:w="80"/><text x="57.5478%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (79 samples, 0.04%)</title><rect x="57.2982%" y="837" width="0.0355%" height="15" fill="rgb(249,162,33)" fg:x="127649" fg:w="79"/><text x="57.5482%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (65 samples, 0.03%)</title><rect x="57.3045%" y="821" width="0.0292%" height="15" fill="rgb(232,4,32)" fg:x="127663" fg:w="65"/><text x="57.5545%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (65 samples, 0.03%)</title><rect x="57.3045%" y="805" width="0.0292%" height="15" fill="rgb(212,5,45)" fg:x="127663" fg:w="65"/><text x="57.5545%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="57.3175%" y="789" width="0.0162%" height="15" fill="rgb(227,95,13)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="57.3175%" y="773" width="0.0162%" height="15" fill="rgb(223,205,10)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="783.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="57.3175%" y="757" width="0.0162%" height="15" fill="rgb(222,178,8)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="57.3175%" y="741" width="0.0162%" height="15" fill="rgb(216,13,22)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="751.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="57.3175%" y="725" width="0.0162%" height="15" fill="rgb(240,167,12)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="735.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="57.3175%" y="709" width="0.0162%" height="15" fill="rgb(235,68,35)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="719.50"></text></g><g><title>PyEval_EvalCode (36 samples, 0.02%)</title><rect x="57.3175%" y="693" width="0.0162%" height="15" fill="rgb(253,40,27)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="703.50"></text></g><g><title>_PyEval_EvalCodeWithName (36 samples, 0.02%)</title><rect x="57.3175%" y="677" width="0.0162%" height="15" fill="rgb(214,19,28)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="687.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="57.3175%" y="661" width="0.0162%" height="15" fill="rgb(210,167,45)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="57.3175%" y="645" width="0.0162%" height="15" fill="rgb(232,97,40)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (180 samples, 0.08%)</title><rect x="57.2533%" y="885" width="0.0808%" height="15" fill="rgb(250,35,23)" fg:x="127549" fg:w="180"/><text x="57.5033%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (47 samples, 0.02%)</title><rect x="57.3341%" y="885" width="0.0211%" height="15" fill="rgb(248,47,53)" fg:x="127729" fg:w="47"/><text x="57.5841%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.3404%" y="869" width="0.0148%" height="15" fill="rgb(226,58,50)" fg:x="127743" fg:w="33"/><text x="57.5904%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="57.3404%" y="853" width="0.0148%" height="15" fill="rgb(217,105,26)" fg:x="127743" fg:w="33"/><text x="57.5904%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3436%" y="837" width="0.0117%" height="15" fill="rgb(208,64,1)" fg:x="127750" fg:w="26"/><text x="57.5936%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3436%" y="821" width="0.0117%" height="15" fill="rgb(214,80,1)" fg:x="127750" fg:w="26"/><text x="57.5936%" y="831.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (27 samples, 0.01%)</title><rect x="57.3552%" y="885" width="0.0121%" height="15" fill="rgb(206,175,26)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="895.50"></text></g><g><title>[python3.9] (27 samples, 0.01%)</title><rect x="57.3552%" y="869" width="0.0121%" height="15" fill="rgb(235,156,37)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.01%)</title><rect x="57.3552%" y="853" width="0.0121%" height="15" fill="rgb(213,100,9)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.01%)</title><rect x="57.3552%" y="837" width="0.0121%" height="15" fill="rgb(241,15,13)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.01%)</title><rect x="57.3552%" y="821" width="0.0121%" height="15" fill="rgb(205,97,43)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.01%)</title><rect x="57.3552%" y="805" width="0.0121%" height="15" fill="rgb(216,106,32)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.01%)</title><rect x="57.3552%" y="789" width="0.0121%" height="15" fill="rgb(226,200,8)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3557%" y="773" width="0.0117%" height="15" fill="rgb(244,54,29)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3557%" y="757" width="0.0117%" height="15" fill="rgb(252,169,12)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3557%" y="741" width="0.0117%" height="15" fill="rgb(231,199,11)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3557%" y="725" width="0.0117%" height="15" fill="rgb(233,191,18)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="735.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3557%" y="709" width="0.0117%" height="15" fill="rgb(215,83,47)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3557%" y="693" width="0.0117%" height="15" fill="rgb(251,67,19)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="703.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3557%" y="677" width="0.0117%" height="15" fill="rgb(240,7,20)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="687.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3557%" y="661" width="0.0117%" height="15" fill="rgb(210,150,26)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="671.50"></text></g><g><title>PyEval_EvalCode (26 samples, 0.01%)</title><rect x="57.3557%" y="645" width="0.0117%" height="15" fill="rgb(228,75,42)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="655.50"></text></g><g><title>_PyEval_EvalCodeWithName (26 samples, 0.01%)</title><rect x="57.3557%" y="629" width="0.0117%" height="15" fill="rgb(237,134,48)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="639.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3557%" y="613" width="0.0117%" height="15" fill="rgb(205,80,50)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3557%" y="597" width="0.0117%" height="15" fill="rgb(217,74,48)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="607.50"></text></g><g><title>[unknown] (440 samples, 0.20%)</title><rect x="57.1779%" y="901" width="0.1975%" height="15" fill="rgb(205,82,50)" fg:x="127381" fg:w="440"/><text x="57.4279%" y="911.50"></text></g><g><title>PyRun_SimpleStringFlags (28 samples, 0.01%)</title><rect x="57.3759%" y="837" width="0.0126%" height="15" fill="rgb(228,1,33)" fg:x="127822" fg:w="28"/><text x="57.6259%" y="847.50"></text></g><g><title>PyRun_StringFlags (28 samples, 0.01%)</title><rect x="57.3759%" y="821" width="0.0126%" height="15" fill="rgb(214,50,23)" fg:x="127822" fg:w="28"/><text x="57.6259%" y="831.50"></text></g><g><title>[python3.9] (27 samples, 0.01%)</title><rect x="57.3763%" y="805" width="0.0121%" height="15" fill="rgb(210,62,9)" fg:x="127823" fg:w="27"/><text x="57.6263%" y="815.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3768%" y="789" width="0.0117%" height="15" fill="rgb(210,104,37)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="799.50"></text></g><g><title>PyEval_EvalCode (26 samples, 0.01%)</title><rect x="57.3768%" y="773" width="0.0117%" height="15" fill="rgb(232,104,43)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="783.50"></text></g><g><title>_PyEval_EvalCodeWithName (26 samples, 0.01%)</title><rect x="57.3768%" y="757" width="0.0117%" height="15" fill="rgb(244,52,6)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="767.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3768%" y="741" width="0.0117%" height="15" fill="rgb(211,174,52)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3768%" y="725" width="0.0117%" height="15" fill="rgb(229,48,4)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="735.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.01%)</title><rect x="57.3768%" y="709" width="0.0117%" height="15" fill="rgb(205,155,16)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="719.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.01%)</title><rect x="57.3768%" y="693" width="0.0117%" height="15" fill="rgb(211,141,53)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="703.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3768%" y="677" width="0.0117%" height="15" fill="rgb(240,148,11)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3768%" y="661" width="0.0117%" height="15" fill="rgb(214,45,23)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3768%" y="645" width="0.0117%" height="15" fill="rgb(248,74,26)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3768%" y="629" width="0.0117%" height="15" fill="rgb(218,121,16)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3768%" y="613" width="0.0117%" height="15" fill="rgb(218,10,47)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3768%" y="597" width="0.0117%" height="15" fill="rgb(227,99,14)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.01%)</title><rect x="57.3777%" y="581" width="0.0108%" height="15" fill="rgb(229,83,46)" fg:x="127826" fg:w="24"/><text x="57.6277%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.01%)</title><rect x="57.3777%" y="565" width="0.0108%" height="15" fill="rgb(228,25,1)" fg:x="127826" fg:w="24"/><text x="57.6277%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="57.3781%" y="549" width="0.0103%" height="15" fill="rgb(252,190,15)" fg:x="127827" fg:w="23"/><text x="57.6281%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="57.3781%" y="533" width="0.0103%" height="15" fill="rgb(213,103,51)" fg:x="127827" fg:w="23"/><text x="57.6281%" y="543.50"></text></g><g><title>PyGC_Collect (25 samples, 0.01%)</title><rect x="57.3885%" y="821" width="0.0112%" height="15" fill="rgb(220,38,44)" fg:x="127850" fg:w="25"/><text x="57.6385%" y="831.50"></text></g><g><title>[python3.9] (25 samples, 0.01%)</title><rect x="57.3885%" y="805" width="0.0112%" height="15" fill="rgb(210,45,26)" fg:x="127850" fg:w="25"/><text x="57.6385%" y="815.50"></text></g><g><title>[python3.9] (25 samples, 0.01%)</title><rect x="57.3885%" y="789" width="0.0112%" height="15" fill="rgb(205,95,48)" fg:x="127850" fg:w="25"/><text x="57.6385%" y="799.50"></text></g><g><title>_PyGC_CollectNoFail (35 samples, 0.02%)</title><rect x="57.4028%" y="805" width="0.0157%" height="15" fill="rgb(225,179,37)" fg:x="127882" fg:w="35"/><text x="57.6528%" y="815.50"></text></g><g><title>[python3.9] (35 samples, 0.02%)</title><rect x="57.4028%" y="789" width="0.0157%" height="15" fill="rgb(230,209,3)" fg:x="127882" fg:w="35"/><text x="57.6528%" y="799.50"></text></g><g><title>[python3.9] (29 samples, 0.01%)</title><rect x="57.4055%" y="773" width="0.0130%" height="15" fill="rgb(248,12,46)" fg:x="127888" fg:w="29"/><text x="57.6555%" y="783.50"></text></g><g><title>[python3.9] (45 samples, 0.02%)</title><rect x="57.4006%" y="821" width="0.0202%" height="15" fill="rgb(234,18,0)" fg:x="127877" fg:w="45"/><text x="57.6506%" y="831.50"></text></g><g><title>Py_RunMain (116 samples, 0.05%)</title><rect x="57.3759%" y="853" width="0.0521%" height="15" fill="rgb(238,197,14)" fg:x="127822" fg:w="116"/><text x="57.6259%" y="863.50"></text></g><g><title>Py_FinalizeEx (88 samples, 0.04%)</title><rect x="57.3885%" y="837" width="0.0395%" height="15" fill="rgb(251,162,48)" fg:x="127850" fg:w="88"/><text x="57.6385%" y="847.50"></text></g><g><title>PyImport_ImportModule (37 samples, 0.02%)</title><rect x="57.4333%" y="773" width="0.0166%" height="15" fill="rgb(237,73,42)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="783.50"></text></g><g><title>PyImport_Import (37 samples, 0.02%)</title><rect x="57.4333%" y="757" width="0.0166%" height="15" fill="rgb(211,108,8)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="767.50"></text></g><g><title>PyObject_CallFunction (37 samples, 0.02%)</title><rect x="57.4333%" y="741" width="0.0166%" height="15" fill="rgb(213,45,22)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="751.50"></text></g><g><title>_PyObject_MakeTpCall (37 samples, 0.02%)</title><rect x="57.4333%" y="725" width="0.0166%" height="15" fill="rgb(252,154,5)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="735.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="57.4333%" y="709" width="0.0166%" height="15" fill="rgb(221,79,52)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="719.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="57.4333%" y="693" width="0.0166%" height="15" fill="rgb(229,220,36)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="703.50"></text></g><g><title>PyImport_ImportModuleLevelObject (37 samples, 0.02%)</title><rect x="57.4333%" y="677" width="0.0166%" height="15" fill="rgb(211,17,16)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="687.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (36 samples, 0.02%)</title><rect x="57.4338%" y="661" width="0.0162%" height="15" fill="rgb(222,55,31)" fg:x="127951" fg:w="36"/><text x="57.6838%" y="671.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="57.4338%" y="645" width="0.0162%" height="15" fill="rgb(221,221,31)" fg:x="127951" fg:w="36"/><text x="57.6838%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="57.4338%" y="629" width="0.0162%" height="15" fill="rgb(227,168,26)" fg:x="127951" fg:w="36"/><text x="57.6838%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (35 samples, 0.02%)</title><rect x="57.4342%" y="613" width="0.0157%" height="15" fill="rgb(224,139,9)" fg:x="127952" fg:w="35"/><text x="57.6842%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (35 samples, 0.02%)</title><rect x="57.4342%" y="597" width="0.0157%" height="15" fill="rgb(254,172,0)" fg:x="127952" fg:w="35"/><text x="57.6842%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (35 samples, 0.02%)</title><rect x="57.4342%" y="581" width="0.0157%" height="15" fill="rgb(235,203,1)" fg:x="127952" fg:w="35"/><text x="57.6842%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (35 samples, 0.02%)</title><rect x="57.4342%" y="565" width="0.0157%" height="15" fill="rgb(216,205,24)" fg:x="127952" fg:w="35"/><text x="57.6842%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.01%)</title><rect x="57.4360%" y="549" width="0.0139%" height="15" fill="rgb(233,24,6)" fg:x="127956" fg:w="31"/><text x="57.6860%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.01%)</title><rect x="57.4369%" y="533" width="0.0130%" height="15" fill="rgb(244,110,9)" fg:x="127958" fg:w="29"/><text x="57.6869%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.01%)</title><rect x="57.4378%" y="517" width="0.0121%" height="15" fill="rgb(239,222,42)" fg:x="127960" fg:w="27"/><text x="57.6878%" y="527.50"></text></g><g><title>PyObject_CallMethod (27 samples, 0.01%)</title><rect x="57.4500%" y="773" width="0.0121%" height="15" fill="rgb(218,145,13)" fg:x="127987" fg:w="27"/><text x="57.7000%" y="783.50"></text></g><g><title>[python3.9] (27 samples, 0.01%)</title><rect x="57.4500%" y="757" width="0.0121%" height="15" fill="rgb(207,69,11)" fg:x="127987" fg:w="27"/><text x="57.7000%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.01%)</title><rect x="57.4500%" y="741" width="0.0121%" height="15" fill="rgb(220,223,22)" fg:x="127987" fg:w="27"/><text x="57.7000%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.01%)</title><rect x="57.4500%" y="725" width="0.0121%" height="15" fill="rgb(245,102,5)" fg:x="127987" fg:w="27"/><text x="57.7000%" y="735.50"></text></g><g><title>Py_InitializeFromConfig (112 samples, 0.05%)</title><rect x="57.4280%" y="821" width="0.0503%" height="15" fill="rgb(211,148,2)" fg:x="127938" fg:w="112"/><text x="57.6780%" y="831.50"></text></g><g><title>[python3.9] (112 samples, 0.05%)</title><rect x="57.4280%" y="805" width="0.0503%" height="15" fill="rgb(241,13,44)" fg:x="127938" fg:w="112"/><text x="57.6780%" y="815.50"></text></g><g><title>[python3.9] (110 samples, 0.05%)</title><rect x="57.4289%" y="789" width="0.0494%" height="15" fill="rgb(219,137,21)" fg:x="127940" fg:w="110"/><text x="57.6789%" y="799.50"></text></g><g><title>__libc_start_main (231 samples, 0.10%)</title><rect x="57.3759%" y="885" width="0.1037%" height="15" fill="rgb(242,206,5)" fg:x="127822" fg:w="231"/><text x="57.6259%" y="895.50"></text></g><g><title>Py_BytesMain (231 samples, 0.10%)</title><rect x="57.3759%" y="869" width="0.1037%" height="15" fill="rgb(217,114,22)" fg:x="127822" fg:w="231"/><text x="57.6259%" y="879.50"></text></g><g><title>[python3.9] (115 samples, 0.05%)</title><rect x="57.4280%" y="853" width="0.0516%" height="15" fill="rgb(253,206,42)" fg:x="127938" fg:w="115"/><text x="57.6780%" y="863.50"></text></g><g><title>[python3.9] (115 samples, 0.05%)</title><rect x="57.4280%" y="837" width="0.0516%" height="15" fill="rgb(236,102,18)" fg:x="127938" fg:w="115"/><text x="57.6780%" y="847.50"></text></g><g><title>_start (241 samples, 0.11%)</title><rect x="57.3759%" y="901" width="0.1082%" height="15" fill="rgb(208,59,49)" fg:x="127822" fg:w="241"/><text x="57.6259%" y="911.50"></text></g><g><title>python3 (742 samples, 0.33%)</title><rect x="57.1582%" y="917" width="0.3331%" height="15" fill="rgb(215,194,28)" fg:x="127337" fg:w="742"/><text x="57.4082%" y="927.50"></text></g><g><title>[ld-2.31.so] (40 samples, 0.02%)</title><rect x="57.5038%" y="837" width="0.0180%" height="15" fill="rgb(243,207,11)" fg:x="128107" fg:w="40"/><text x="57.7538%" y="847.50"></text></g><g><title>_start (42 samples, 0.02%)</title><rect x="57.5038%" y="901" width="0.0189%" height="15" fill="rgb(254,179,35)" fg:x="128107" fg:w="42"/><text x="57.7538%" y="911.50"></text></g><g><title>_dl_start (42 samples, 0.02%)</title><rect x="57.5038%" y="885" width="0.0189%" height="15" fill="rgb(235,97,3)" fg:x="128107" fg:w="42"/><text x="57.7538%" y="895.50"></text></g><g><title>_dl_start_final (42 samples, 0.02%)</title><rect x="57.5038%" y="869" width="0.0189%" height="15" fill="rgb(215,155,33)" fg:x="128107" fg:w="42"/><text x="57.7538%" y="879.50"></text></g><g><title>_dl_sysdep_start (42 samples, 0.02%)</title><rect x="57.5038%" y="853" width="0.0189%" height="15" fill="rgb(223,128,12)" fg:x="128107" fg:w="42"/><text x="57.7538%" y="863.50"></text></g><g><title>sed (87 samples, 0.04%)</title><rect x="57.4912%" y="917" width="0.0391%" height="15" fill="rgb(208,157,18)" fg:x="128079" fg:w="87"/><text x="57.7412%" y="927.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (26 samples, 0.01%)</title><rect x="57.5478%" y="885" width="0.0117%" height="15" fill="rgb(249,70,54)" fg:x="128205" fg:w="26"/><text x="57.7978%" y="895.50"></text></g><g><title>JNIHandleBlock::allocate_block (28 samples, 0.01%)</title><rect x="57.6317%" y="885" width="0.0126%" height="15" fill="rgb(244,118,24)" fg:x="128392" fg:w="28"/><text x="57.8817%" y="895.50"></text></g><g><title>JavaThread::is_Java_thread (31 samples, 0.01%)</title><rect x="57.6730%" y="885" width="0.0139%" height="15" fill="rgb(211,54,0)" fg:x="128484" fg:w="31"/><text x="57.9230%" y="895.50"></text></g><g><title>_int_free (23 samples, 0.01%)</title><rect x="57.7888%" y="885" width="0.0103%" height="15" fill="rgb(245,137,45)" fg:x="128742" fg:w="23"/><text x="58.0388%" y="895.50"></text></g><g><title>[anon] (713 samples, 0.32%)</title><rect x="57.5406%" y="901" width="0.3200%" height="15" fill="rgb(232,154,31)" fg:x="128189" fg:w="713"/><text x="57.7906%" y="911.50"></text></g><g><title>btrfs_release_file (23 samples, 0.01%)</title><rect x="58.0281%" y="789" width="0.0103%" height="15" fill="rgb(253,6,39)" fg:x="129275" fg:w="23"/><text x="58.2781%" y="799.50"></text></g><g><title>kfree (23 samples, 0.01%)</title><rect x="58.0281%" y="773" width="0.0103%" height="15" fill="rgb(234,183,24)" fg:x="129275" fg:w="23"/><text x="58.2781%" y="783.50"></text></g><g><title>__fput (35 samples, 0.02%)</title><rect x="58.0272%" y="805" width="0.0157%" height="15" fill="rgb(252,84,40)" fg:x="129273" fg:w="35"/><text x="58.2772%" y="815.50"></text></g><g><title>__GI___close_nocancel (61 samples, 0.03%)</title><rect x="58.0160%" y="885" width="0.0274%" height="15" fill="rgb(224,65,2)" fg:x="129248" fg:w="61"/><text x="58.2660%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.03%)</title><rect x="58.0169%" y="869" width="0.0265%" height="15" fill="rgb(229,38,24)" fg:x="129250" fg:w="59"/><text x="58.2669%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (40 samples, 0.02%)</title><rect x="58.0254%" y="853" width="0.0180%" height="15" fill="rgb(218,131,50)" fg:x="129269" fg:w="40"/><text x="58.2754%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (40 samples, 0.02%)</title><rect x="58.0254%" y="837" width="0.0180%" height="15" fill="rgb(233,106,18)" fg:x="129269" fg:w="40"/><text x="58.2754%" y="847.50"></text></g><g><title>task_work_run (36 samples, 0.02%)</title><rect x="58.0272%" y="821" width="0.0162%" height="15" fill="rgb(220,216,11)" fg:x="129273" fg:w="36"/><text x="58.2772%" y="831.50"></text></g><g><title>__GI___libc_free (50 samples, 0.02%)</title><rect x="58.0434%" y="885" width="0.0224%" height="15" fill="rgb(251,100,45)" fg:x="129309" fg:w="50"/><text x="58.2934%" y="895.50"></text></g><g><title>_cond_resched (23 samples, 0.01%)</title><rect x="58.0977%" y="789" width="0.0103%" height="15" fill="rgb(235,143,32)" fg:x="129430" fg:w="23"/><text x="58.3477%" y="799.50"></text></g><g><title>dput (54 samples, 0.02%)</title><rect x="58.0905%" y="805" width="0.0242%" height="15" fill="rgb(248,124,34)" fg:x="129414" fg:w="54"/><text x="58.3405%" y="815.50"></text></g><g><title>__lookup_hash (23 samples, 0.01%)</title><rect x="58.1188%" y="789" width="0.0103%" height="15" fill="rgb(225,221,4)" fg:x="129477" fg:w="23"/><text x="58.3688%" y="799.50"></text></g><g><title>inode_permission.part.0 (84 samples, 0.04%)</title><rect x="58.1928%" y="741" width="0.0377%" height="15" fill="rgb(242,27,43)" fg:x="129642" fg:w="84"/><text x="58.4428%" y="751.50"></text></g><g><title>lookup_fast (172 samples, 0.08%)</title><rect x="58.2458%" y="725" width="0.0772%" height="15" fill="rgb(227,54,8)" fg:x="129760" fg:w="172"/><text x="58.4958%" y="735.50"></text></g><g><title>__d_lookup_rcu (143 samples, 0.06%)</title><rect x="58.2588%" y="709" width="0.0642%" height="15" fill="rgb(253,139,49)" fg:x="129789" fg:w="143"/><text x="58.5088%" y="719.50"></text></g><g><title>link_path_walk.part.0 (448 samples, 0.20%)</title><rect x="58.1426%" y="757" width="0.2011%" height="15" fill="rgb(231,26,43)" fg:x="129530" fg:w="448"/><text x="58.3926%" y="767.50"></text></g><g><title>walk_component (246 samples, 0.11%)</title><rect x="58.2332%" y="741" width="0.1104%" height="15" fill="rgb(207,121,39)" fg:x="129732" fg:w="246"/><text x="58.4832%" y="751.50"></text></g><g><title>step_into (46 samples, 0.02%)</title><rect x="58.3230%" y="725" width="0.0206%" height="15" fill="rgb(223,101,35)" fg:x="129932" fg:w="46"/><text x="58.5730%" y="735.50"></text></g><g><title>filename_parentat (488 samples, 0.22%)</title><rect x="58.1327%" y="789" width="0.2191%" height="15" fill="rgb(232,87,23)" fg:x="129508" fg:w="488"/><text x="58.3827%" y="799.50"></text></g><g><title>path_parentat (481 samples, 0.22%)</title><rect x="58.1358%" y="773" width="0.2159%" height="15" fill="rgb(225,180,29)" fg:x="129515" fg:w="481"/><text x="58.3858%" y="783.50"></text></g><g><title>filename_create (557 samples, 0.25%)</title><rect x="58.1147%" y="805" width="0.2500%" height="15" fill="rgb(225,25,17)" fg:x="129468" fg:w="557"/><text x="58.3647%" y="815.50"></text></g><g><title>inode_permission.part.0 (115 samples, 0.05%)</title><rect x="58.4460%" y="757" width="0.0516%" height="15" fill="rgb(223,8,52)" fg:x="130206" fg:w="115"/><text x="58.6960%" y="767.50"></text></g><g><title>generic_permission (32 samples, 0.01%)</title><rect x="58.4833%" y="741" width="0.0144%" height="15" fill="rgb(246,42,21)" fg:x="130289" fg:w="32"/><text x="58.7333%" y="751.50"></text></g><g><title>lookup_fast (197 samples, 0.09%)</title><rect x="58.5237%" y="741" width="0.0884%" height="15" fill="rgb(205,64,43)" fg:x="130379" fg:w="197"/><text x="58.7737%" y="751.50"></text></g><g><title>__d_lookup_rcu (158 samples, 0.07%)</title><rect x="58.5412%" y="725" width="0.0709%" height="15" fill="rgb(221,160,13)" fg:x="130418" fg:w="158"/><text x="58.7912%" y="735.50"></text></g><g><title>page_get_link (41 samples, 0.02%)</title><rect x="58.6489%" y="725" width="0.0184%" height="15" fill="rgb(239,58,35)" fg:x="130658" fg:w="41"/><text x="58.8989%" y="735.50"></text></g><g><title>pagecache_get_page (37 samples, 0.02%)</title><rect x="58.6507%" y="709" width="0.0166%" height="15" fill="rgb(251,26,40)" fg:x="130662" fg:w="37"/><text x="58.9007%" y="719.50"></text></g><g><title>find_get_entry (32 samples, 0.01%)</title><rect x="58.6529%" y="693" width="0.0144%" height="15" fill="rgb(247,0,4)" fg:x="130667" fg:w="32"/><text x="58.9029%" y="703.50"></text></g><g><title>link_path_walk.part.0 (632 samples, 0.28%)</title><rect x="58.3854%" y="773" width="0.2837%" height="15" fill="rgb(218,130,10)" fg:x="130071" fg:w="632"/><text x="58.6354%" y="783.50"></text></g><g><title>walk_component (372 samples, 0.17%)</title><rect x="58.5021%" y="757" width="0.1670%" height="15" fill="rgb(239,32,7)" fg:x="130331" fg:w="372"/><text x="58.7521%" y="767.50"></text></g><g><title>step_into (123 samples, 0.06%)</title><rect x="58.6139%" y="741" width="0.0552%" height="15" fill="rgb(210,192,24)" fg:x="130580" fg:w="123"/><text x="58.8639%" y="751.50"></text></g><g><title>path_lookupat (688 samples, 0.31%)</title><rect x="58.3751%" y="789" width="0.3088%" height="15" fill="rgb(226,212,17)" fg:x="130048" fg:w="688"/><text x="58.6251%" y="799.50"></text></g><g><title>filename_lookup (713 samples, 0.32%)</title><rect x="58.3648%" y="805" width="0.3200%" height="15" fill="rgb(219,201,28)" fg:x="130025" fg:w="713"/><text x="58.6148%" y="815.50"></text></g><g><title>memset_erms (68 samples, 0.03%)</title><rect x="58.6969%" y="773" width="0.0305%" height="15" fill="rgb(235,207,41)" fg:x="130765" fg:w="68"/><text x="58.9469%" y="783.50"></text></g><g><title>kmem_cache_alloc (109 samples, 0.05%)</title><rect x="58.6884%" y="789" width="0.0489%" height="15" fill="rgb(241,95,54)" fg:x="130746" fg:w="109"/><text x="58.9384%" y="799.50"></text></g><g><title>getname_flags.part.0 (201 samples, 0.09%)</title><rect x="58.6861%" y="805" width="0.0902%" height="15" fill="rgb(248,12,23)" fg:x="130741" fg:w="201"/><text x="58.9361%" y="815.50"></text></g><g><title>strncpy_from_user (87 samples, 0.04%)</title><rect x="58.7373%" y="789" width="0.0391%" height="15" fill="rgb(228,173,4)" fg:x="130855" fg:w="87"/><text x="58.9873%" y="799.50"></text></g><g><title>__check_object_size (43 samples, 0.02%)</title><rect x="58.7571%" y="773" width="0.0193%" height="15" fill="rgb(254,99,5)" fg:x="130899" fg:w="43"/><text x="59.0071%" y="783.50"></text></g><g><title>security_path_link (35 samples, 0.02%)</title><rect x="58.7907%" y="805" width="0.0157%" height="15" fill="rgb(212,184,17)" fg:x="130974" fg:w="35"/><text x="59.0407%" y="815.50"></text></g><g><title>tomoyo_path_link (23 samples, 0.01%)</title><rect x="58.7961%" y="789" width="0.0103%" height="15" fill="rgb(252,174,1)" fg:x="130986" fg:w="23"/><text x="59.0461%" y="799.50"></text></g><g><title>btrfs_trans_release_metadata (48 samples, 0.02%)</title><rect x="58.8513%" y="757" width="0.0215%" height="15" fill="rgb(241,118,51)" fg:x="131109" fg:w="48"/><text x="59.1013%" y="767.50"></text></g><g><title>btrfs_block_rsv_release (41 samples, 0.02%)</title><rect x="58.8545%" y="741" width="0.0184%" height="15" fill="rgb(227,94,47)" fg:x="131116" fg:w="41"/><text x="59.1045%" y="751.50"></text></g><g><title>__btrfs_end_transaction (120 samples, 0.05%)</title><rect x="58.8262%" y="773" width="0.0539%" height="15" fill="rgb(229,104,2)" fg:x="131053" fg:w="120"/><text x="59.0762%" y="783.50"></text></g><g><title>btrfs_comp_cpu_keys (23 samples, 0.01%)</title><rect x="58.9182%" y="709" width="0.0103%" height="15" fill="rgb(219,28,31)" fg:x="131258" fg:w="23"/><text x="59.1682%" y="719.50"></text></g><g><title>__btrfs_add_delayed_item (57 samples, 0.03%)</title><rect x="58.9061%" y="725" width="0.0256%" height="15" fill="rgb(233,109,36)" fg:x="131231" fg:w="57"/><text x="59.1561%" y="735.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (37 samples, 0.02%)</title><rect x="58.9317%" y="725" width="0.0166%" height="15" fill="rgb(246,88,11)" fg:x="131288" fg:w="37"/><text x="59.1817%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="58.9640%" y="645" width="0.0117%" height="15" fill="rgb(209,212,17)" fg:x="131360" fg:w="26"/><text x="59.2140%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="58.9644%" y="629" width="0.0112%" height="15" fill="rgb(243,59,29)" fg:x="131361" fg:w="25"/><text x="59.2144%" y="639.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="58.9644%" y="613" width="0.0112%" height="15" fill="rgb(244,205,48)" fg:x="131361" fg:w="25"/><text x="59.2144%" y="623.50"></text></g><g><title>finish_task_switch (29 samples, 0.01%)</title><rect x="58.9640%" y="661" width="0.0130%" height="15" fill="rgb(227,30,6)" fg:x="131360" fg:w="29"/><text x="59.2140%" y="671.50"></text></g><g><title>_cond_resched (34 samples, 0.02%)</title><rect x="58.9631%" y="693" width="0.0153%" height="15" fill="rgb(220,205,48)" fg:x="131358" fg:w="34"/><text x="59.2131%" y="703.50"></text></g><g><title>__schedule (34 samples, 0.02%)</title><rect x="58.9631%" y="677" width="0.0153%" height="15" fill="rgb(250,94,14)" fg:x="131358" fg:w="34"/><text x="59.2131%" y="687.50"></text></g><g><title>__kmalloc (68 samples, 0.03%)</title><rect x="58.9483%" y="725" width="0.0305%" height="15" fill="rgb(216,119,42)" fg:x="131325" fg:w="68"/><text x="59.1983%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (42 samples, 0.02%)</title><rect x="58.9600%" y="709" width="0.0189%" height="15" fill="rgb(232,155,0)" fg:x="131351" fg:w="42"/><text x="59.2100%" y="719.50"></text></g><g><title>mutex_spin_on_owner (25 samples, 0.01%)</title><rect x="58.9788%" y="709" width="0.0112%" height="15" fill="rgb(212,24,32)" fg:x="131393" fg:w="25"/><text x="59.2288%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (53 samples, 0.02%)</title><rect x="58.9914%" y="645" width="0.0238%" height="15" fill="rgb(216,69,20)" fg:x="131421" fg:w="53"/><text x="59.2414%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.02%)</title><rect x="58.9923%" y="629" width="0.0229%" height="15" fill="rgb(229,73,31)" fg:x="131423" fg:w="51"/><text x="59.2423%" y="639.50"></text></g><g><title>native_write_msr (50 samples, 0.02%)</title><rect x="58.9927%" y="613" width="0.0224%" height="15" fill="rgb(224,219,20)" fg:x="131424" fg:w="50"/><text x="59.2427%" y="623.50"></text></g><g><title>finish_task_switch (57 samples, 0.03%)</title><rect x="58.9900%" y="661" width="0.0256%" height="15" fill="rgb(215,146,41)" fg:x="131418" fg:w="57"/><text x="59.2400%" y="671.50"></text></g><g><title>__mutex_lock.constprop.0 (83 samples, 0.04%)</title><rect x="58.9788%" y="725" width="0.0373%" height="15" fill="rgb(244,71,31)" fg:x="131393" fg:w="83"/><text x="59.2288%" y="735.50"></text></g><g><title>schedule_preempt_disabled (58 samples, 0.03%)</title><rect x="58.9900%" y="709" width="0.0260%" height="15" fill="rgb(224,24,11)" fg:x="131418" fg:w="58"/><text x="59.2400%" y="719.50"></text></g><g><title>schedule (58 samples, 0.03%)</title><rect x="58.9900%" y="693" width="0.0260%" height="15" fill="rgb(229,76,15)" fg:x="131418" fg:w="58"/><text x="59.2400%" y="703.50"></text></g><g><title>__schedule (58 samples, 0.03%)</title><rect x="58.9900%" y="677" width="0.0260%" height="15" fill="rgb(209,93,2)" fg:x="131418" fg:w="58"/><text x="59.2400%" y="687.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (31 samples, 0.01%)</title><rect x="59.0161%" y="725" width="0.0139%" height="15" fill="rgb(216,200,50)" fg:x="131476" fg:w="31"/><text x="59.2661%" y="735.50"></text></g><g><title>btrfs_block_rsv_migrate (27 samples, 0.01%)</title><rect x="59.0179%" y="709" width="0.0121%" height="15" fill="rgb(211,67,34)" fg:x="131480" fg:w="27"/><text x="59.2679%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (24 samples, 0.01%)</title><rect x="59.0300%" y="725" width="0.0108%" height="15" fill="rgb(225,87,47)" fg:x="131507" fg:w="24"/><text x="59.2800%" y="735.50"></text></g><g><title>btrfs_insert_delayed_dir_index (323 samples, 0.14%)</title><rect x="58.9021%" y="741" width="0.1450%" height="15" fill="rgb(217,185,16)" fg:x="131222" fg:w="323"/><text x="59.1521%" y="751.50"></text></g><g><title>free_extent_buffer.part.0 (32 samples, 0.01%)</title><rect x="59.0556%" y="725" width="0.0144%" height="15" fill="rgb(205,0,0)" fg:x="131564" fg:w="32"/><text x="59.3056%" y="735.50"></text></g><g><title>btrfs_release_path (48 samples, 0.02%)</title><rect x="59.0529%" y="741" width="0.0215%" height="15" fill="rgb(207,116,45)" fg:x="131558" fg:w="48"/><text x="59.3029%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.02%)</title><rect x="59.1269%" y="613" width="0.0215%" height="15" fill="rgb(221,156,26)" fg:x="131723" fg:w="48"/><text x="59.3769%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (47 samples, 0.02%)</title><rect x="59.1274%" y="597" width="0.0211%" height="15" fill="rgb(213,140,4)" fg:x="131724" fg:w="47"/><text x="59.3774%" y="607.50"></text></g><g><title>native_write_msr (44 samples, 0.02%)</title><rect x="59.1287%" y="581" width="0.0198%" height="15" fill="rgb(231,224,15)" fg:x="131727" fg:w="44"/><text x="59.3787%" y="591.50"></text></g><g><title>finish_task_switch (52 samples, 0.02%)</title><rect x="59.1260%" y="629" width="0.0233%" height="15" fill="rgb(244,76,20)" fg:x="131721" fg:w="52"/><text x="59.3760%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (90 samples, 0.04%)</title><rect x="59.1099%" y="677" width="0.0404%" height="15" fill="rgb(238,117,7)" fg:x="131685" fg:w="90"/><text x="59.3599%" y="687.50"></text></g><g><title>schedule (54 samples, 0.02%)</title><rect x="59.1260%" y="661" width="0.0242%" height="15" fill="rgb(235,1,10)" fg:x="131721" fg:w="54"/><text x="59.3760%" y="671.50"></text></g><g><title>__schedule (54 samples, 0.02%)</title><rect x="59.1260%" y="645" width="0.0242%" height="15" fill="rgb(216,165,6)" fg:x="131721" fg:w="54"/><text x="59.3760%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (97 samples, 0.04%)</title><rect x="59.1094%" y="693" width="0.0435%" height="15" fill="rgb(246,91,35)" fg:x="131684" fg:w="97"/><text x="59.3594%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (486 samples, 0.22%)</title><rect x="59.1907%" y="629" width="0.2182%" height="15" fill="rgb(228,96,24)" fg:x="131865" fg:w="486"/><text x="59.4407%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (471 samples, 0.21%)</title><rect x="59.1974%" y="613" width="0.2114%" height="15" fill="rgb(254,217,53)" fg:x="131880" fg:w="471"/><text x="59.4474%" y="623.50"></text></g><g><title>native_write_msr (466 samples, 0.21%)</title><rect x="59.1997%" y="597" width="0.2092%" height="15" fill="rgb(209,60,0)" fg:x="131885" fg:w="466"/><text x="59.4497%" y="607.50"></text></g><g><title>finish_task_switch (527 samples, 0.24%)</title><rect x="59.1826%" y="645" width="0.2366%" height="15" fill="rgb(250,93,26)" fg:x="131847" fg:w="527"/><text x="59.4326%" y="655.50"></text></g><g><title>__btrfs_tree_lock (619 samples, 0.28%)</title><rect x="59.1530%" y="693" width="0.2779%" height="15" fill="rgb(211,9,40)" fg:x="131781" fg:w="619"/><text x="59.4030%" y="703.50"></text></g><g><title>schedule (588 samples, 0.26%)</title><rect x="59.1669%" y="677" width="0.2639%" height="15" fill="rgb(242,57,20)" fg:x="131812" fg:w="588"/><text x="59.4169%" y="687.50"></text></g><g><title>__schedule (585 samples, 0.26%)</title><rect x="59.1682%" y="661" width="0.2626%" height="15" fill="rgb(248,85,48)" fg:x="131815" fg:w="585"/><text x="59.4182%" y="671.50"></text></g><g><title>btrfs_leaf_free_space (23 samples, 0.01%)</title><rect x="59.4317%" y="693" width="0.0103%" height="15" fill="rgb(212,117,2)" fg:x="132402" fg:w="23"/><text x="59.6817%" y="703.50"></text></g><g><title>btrfs_try_tree_write_lock (110 samples, 0.05%)</title><rect x="59.4438%" y="693" width="0.0494%" height="15" fill="rgb(243,19,3)" fg:x="132429" fg:w="110"/><text x="59.6938%" y="703.50"></text></g><g><title>queued_write_lock_slowpath (99 samples, 0.04%)</title><rect x="59.4488%" y="677" width="0.0444%" height="15" fill="rgb(232,217,24)" fg:x="132440" fg:w="99"/><text x="59.6988%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (106 samples, 0.05%)</title><rect x="59.4932%" y="693" width="0.0476%" height="15" fill="rgb(224,175,40)" fg:x="132539" fg:w="106"/><text x="59.7432%" y="703.50"></text></g><g><title>__radix_tree_lookup (52 samples, 0.02%)</title><rect x="59.5740%" y="661" width="0.0233%" height="15" fill="rgb(212,162,32)" fg:x="132719" fg:w="52"/><text x="59.8240%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (27 samples, 0.01%)</title><rect x="59.5974%" y="661" width="0.0121%" height="15" fill="rgb(215,9,4)" fg:x="132771" fg:w="27"/><text x="59.8474%" y="671.50"></text></g><g><title>find_extent_buffer (112 samples, 0.05%)</title><rect x="59.5597%" y="677" width="0.0503%" height="15" fill="rgb(242,42,7)" fg:x="132687" fg:w="112"/><text x="59.8097%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (166 samples, 0.07%)</title><rect x="59.5408%" y="693" width="0.0745%" height="15" fill="rgb(242,184,45)" fg:x="132645" fg:w="166"/><text x="59.7908%" y="703.50"></text></g><g><title>alloc_tree_block_no_bg_flush (27 samples, 0.01%)</title><rect x="59.6171%" y="677" width="0.0121%" height="15" fill="rgb(228,111,51)" fg:x="132815" fg:w="27"/><text x="59.8671%" y="687.50"></text></g><g><title>btrfs_alloc_tree_block (27 samples, 0.01%)</title><rect x="59.6171%" y="661" width="0.0121%" height="15" fill="rgb(236,147,17)" fg:x="132815" fg:w="27"/><text x="59.8671%" y="671.50"></text></g><g><title>__push_leaf_left (50 samples, 0.02%)</title><rect x="59.6337%" y="661" width="0.0224%" height="15" fill="rgb(210,75,22)" fg:x="132852" fg:w="50"/><text x="59.8837%" y="671.50"></text></g><g><title>push_leaf_left (54 samples, 0.02%)</title><rect x="59.6337%" y="677" width="0.0242%" height="15" fill="rgb(217,159,45)" fg:x="132852" fg:w="54"/><text x="59.8837%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="59.6607%" y="597" width="0.0117%" height="15" fill="rgb(245,165,53)" fg:x="132912" fg:w="26"/><text x="59.9107%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="59.6607%" y="581" width="0.0117%" height="15" fill="rgb(251,190,50)" fg:x="132912" fg:w="26"/><text x="59.9107%" y="591.50"></text></g><g><title>native_write_msr (26 samples, 0.01%)</title><rect x="59.6607%" y="565" width="0.0117%" height="15" fill="rgb(208,203,29)" fg:x="132912" fg:w="26"/><text x="59.9107%" y="575.50"></text></g><g><title>__btrfs_tree_lock (31 samples, 0.01%)</title><rect x="59.6589%" y="661" width="0.0139%" height="15" fill="rgb(207,209,35)" fg:x="132908" fg:w="31"/><text x="59.9089%" y="671.50"></text></g><g><title>schedule (27 samples, 0.01%)</title><rect x="59.6607%" y="645" width="0.0121%" height="15" fill="rgb(230,144,49)" fg:x="132912" fg:w="27"/><text x="59.9107%" y="655.50"></text></g><g><title>__schedule (27 samples, 0.01%)</title><rect x="59.6607%" y="629" width="0.0121%" height="15" fill="rgb(229,31,6)" fg:x="132912" fg:w="27"/><text x="59.9107%" y="639.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="59.6607%" y="613" width="0.0121%" height="15" fill="rgb(251,129,24)" fg:x="132912" fg:w="27"/><text x="59.9107%" y="623.50"></text></g><g><title>__push_leaf_right (75 samples, 0.03%)</title><rect x="59.6728%" y="661" width="0.0337%" height="15" fill="rgb(235,105,15)" fg:x="132939" fg:w="75"/><text x="59.9228%" y="671.50"></text></g><g><title>split_leaf (214 samples, 0.10%)</title><rect x="59.6153%" y="693" width="0.0961%" height="15" fill="rgb(216,52,43)" fg:x="132811" fg:w="214"/><text x="59.8653%" y="703.50"></text></g><g><title>push_leaf_right (119 samples, 0.05%)</title><rect x="59.6580%" y="677" width="0.0534%" height="15" fill="rgb(238,144,41)" fg:x="132906" fg:w="119"/><text x="59.9080%" y="687.50"></text></g><g><title>ttwu_do_activate (33 samples, 0.01%)</title><rect x="59.7423%" y="613" width="0.0148%" height="15" fill="rgb(243,63,9)" fg:x="133094" fg:w="33"/><text x="59.9923%" y="623.50"></text></g><g><title>__wake_up_common (96 samples, 0.04%)</title><rect x="59.7172%" y="661" width="0.0431%" height="15" fill="rgb(246,208,1)" fg:x="133038" fg:w="96"/><text x="59.9672%" y="671.50"></text></g><g><title>autoremove_wake_function (93 samples, 0.04%)</title><rect x="59.7186%" y="645" width="0.0417%" height="15" fill="rgb(233,182,18)" fg:x="133041" fg:w="93"/><text x="59.9686%" y="655.50"></text></g><g><title>try_to_wake_up (88 samples, 0.04%)</title><rect x="59.7208%" y="629" width="0.0395%" height="15" fill="rgb(242,224,8)" fg:x="133046" fg:w="88"/><text x="59.9708%" y="639.50"></text></g><g><title>__wake_up_common_lock (97 samples, 0.04%)</title><rect x="59.7172%" y="677" width="0.0435%" height="15" fill="rgb(243,54,37)" fg:x="133038" fg:w="97"/><text x="59.9672%" y="687.50"></text></g><g><title>btrfs_search_slot (1,496 samples, 0.67%)</title><rect x="59.0973%" y="709" width="0.6715%" height="15" fill="rgb(233,192,12)" fg:x="131657" fg:w="1496"/><text x="59.3473%" y="719.50"></text></g><g><title>unlock_up (128 samples, 0.06%)</title><rect x="59.7114%" y="693" width="0.0575%" height="15" fill="rgb(251,192,53)" fg:x="133025" fg:w="128"/><text x="59.9614%" y="703.50"></text></g><g><title>btrfs_get_token_32 (281 samples, 0.13%)</title><rect x="59.8011%" y="693" width="0.1261%" height="15" fill="rgb(246,141,26)" fg:x="133225" fg:w="281"/><text x="60.0511%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (37 samples, 0.02%)</title><rect x="59.9107%" y="677" width="0.0166%" height="15" fill="rgb(239,195,19)" fg:x="133469" fg:w="37"/><text x="60.1607%" y="687.50"></text></g><g><title>btrfs_leaf_free_space (37 samples, 0.02%)</title><rect x="59.9273%" y="693" width="0.0166%" height="15" fill="rgb(241,16,39)" fg:x="133506" fg:w="37"/><text x="60.1773%" y="703.50"></text></g><g><title>leaf_space_used (33 samples, 0.01%)</title><rect x="59.9291%" y="677" width="0.0148%" height="15" fill="rgb(223,13,53)" fg:x="133510" fg:w="33"/><text x="60.1791%" y="687.50"></text></g><g><title>btrfs_get_32 (25 samples, 0.01%)</title><rect x="59.9327%" y="661" width="0.0112%" height="15" fill="rgb(214,227,0)" fg:x="133518" fg:w="25"/><text x="60.1827%" y="671.50"></text></g><g><title>btrfs_set_token_32 (230 samples, 0.10%)</title><rect x="59.9475%" y="693" width="0.1032%" height="15" fill="rgb(228,103,26)" fg:x="133551" fg:w="230"/><text x="60.1975%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (36 samples, 0.02%)</title><rect x="60.0346%" y="677" width="0.0162%" height="15" fill="rgb(254,177,53)" fg:x="133745" fg:w="36"/><text x="60.2846%" y="687.50"></text></g><g><title>memcpy_extent_buffer (80 samples, 0.04%)</title><rect x="60.0588%" y="693" width="0.0359%" height="15" fill="rgb(208,201,34)" fg:x="133799" fg:w="80"/><text x="60.3088%" y="703.50"></text></g><g><title>memmove (62 samples, 0.03%)</title><rect x="60.0669%" y="677" width="0.0278%" height="15" fill="rgb(212,39,5)" fg:x="133817" fg:w="62"/><text x="60.3169%" y="687.50"></text></g><g><title>memmove_extent_buffer (80 samples, 0.04%)</title><rect x="60.0947%" y="693" width="0.0359%" height="15" fill="rgb(246,117,3)" fg:x="133879" fg:w="80"/><text x="60.3447%" y="703.50"></text></g><g><title>memmove (55 samples, 0.02%)</title><rect x="60.1059%" y="677" width="0.0247%" height="15" fill="rgb(244,118,39)" fg:x="133904" fg:w="55"/><text x="60.3559%" y="687.50"></text></g><g><title>insert_with_overflow (2,331 samples, 1.05%)</title><rect x="59.0892%" y="741" width="1.0463%" height="15" fill="rgb(241,64,10)" fg:x="131639" fg:w="2331"/><text x="59.3392%" y="751.50"></text></g><g><title>btrfs_insert_empty_items (2,314 samples, 1.04%)</title><rect x="59.0969%" y="725" width="1.0387%" height="15" fill="rgb(229,39,44)" fg:x="131656" fg:w="2314"/><text x="59.3469%" y="735.50"></text></g><g><title>setup_items_for_insert (817 samples, 0.37%)</title><rect x="59.7688%" y="709" width="0.3667%" height="15" fill="rgb(230,226,3)" fg:x="133153" fg:w="817"/><text x="60.0188%" y="719.50"></text></g><g><title>btrfs_insert_dir_item (2,826 samples, 1.27%)</title><rect x="58.8922%" y="757" width="1.2685%" height="15" fill="rgb(222,13,42)" fg:x="131200" fg:w="2826"/><text x="59.1422%" y="767.50"></text></g><g><title>write_extent_buffer (23 samples, 0.01%)</title><rect x="60.1504%" y="741" width="0.0103%" height="15" fill="rgb(247,180,54)" fg:x="134003" fg:w="23"/><text x="60.4004%" y="751.50"></text></g><g><title>free_extent_buffer.part.0 (25 samples, 0.01%)</title><rect x="60.1701%" y="709" width="0.0112%" height="15" fill="rgb(205,96,16)" fg:x="134047" fg:w="25"/><text x="60.4201%" y="719.50"></text></g><g><title>btrfs_free_path (32 samples, 0.01%)</title><rect x="60.1692%" y="741" width="0.0144%" height="15" fill="rgb(205,100,21)" fg:x="134045" fg:w="32"/><text x="60.4192%" y="751.50"></text></g><g><title>btrfs_release_path (32 samples, 0.01%)</title><rect x="60.1692%" y="725" width="0.0144%" height="15" fill="rgb(248,51,4)" fg:x="134045" fg:w="32"/><text x="60.4192%" y="735.50"></text></g><g><title>queued_read_lock_slowpath (28 samples, 0.01%)</title><rect x="60.2186%" y="677" width="0.0126%" height="15" fill="rgb(217,197,30)" fg:x="134155" fg:w="28"/><text x="60.4686%" y="687.50"></text></g><g><title>finish_task_switch (48 samples, 0.02%)</title><rect x="60.2343%" y="645" width="0.0215%" height="15" fill="rgb(240,179,40)" fg:x="134190" fg:w="48"/><text x="60.4843%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.02%)</title><rect x="60.2343%" y="629" width="0.0215%" height="15" fill="rgb(212,185,35)" fg:x="134190" fg:w="48"/><text x="60.4843%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.02%)</title><rect x="60.2352%" y="613" width="0.0206%" height="15" fill="rgb(251,222,31)" fg:x="134192" fg:w="46"/><text x="60.4852%" y="623.50"></text></g><g><title>native_write_msr (45 samples, 0.02%)</title><rect x="60.2357%" y="597" width="0.0202%" height="15" fill="rgb(208,140,36)" fg:x="134193" fg:w="45"/><text x="60.4857%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (110 samples, 0.05%)</title><rect x="60.2092%" y="693" width="0.0494%" height="15" fill="rgb(220,148,1)" fg:x="134134" fg:w="110"/><text x="60.4592%" y="703.50"></text></g><g><title>schedule (61 samples, 0.03%)</title><rect x="60.2312%" y="677" width="0.0274%" height="15" fill="rgb(254,4,28)" fg:x="134183" fg:w="61"/><text x="60.4812%" y="687.50"></text></g><g><title>__schedule (61 samples, 0.03%)</title><rect x="60.2312%" y="661" width="0.0274%" height="15" fill="rgb(222,185,44)" fg:x="134183" fg:w="61"/><text x="60.4812%" y="671.50"></text></g><g><title>__btrfs_read_lock_root_node (136 samples, 0.06%)</title><rect x="60.2078%" y="709" width="0.0610%" height="15" fill="rgb(215,74,39)" fg:x="134131" fg:w="136"/><text x="60.4578%" y="719.50"></text></g><g><title>btrfs_root_node (23 samples, 0.01%)</title><rect x="60.2586%" y="693" width="0.0103%" height="15" fill="rgb(247,86,4)" fg:x="134244" fg:w="23"/><text x="60.5086%" y="703.50"></text></g><g><title>btrfs_try_tree_write_lock (70 samples, 0.03%)</title><rect x="60.2747%" y="709" width="0.0314%" height="15" fill="rgb(231,105,32)" fg:x="134280" fg:w="70"/><text x="60.5247%" y="719.50"></text></g><g><title>queued_write_lock_slowpath (55 samples, 0.02%)</title><rect x="60.2814%" y="693" width="0.0247%" height="15" fill="rgb(222,65,35)" fg:x="134295" fg:w="55"/><text x="60.5314%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (113 samples, 0.05%)</title><rect x="60.3061%" y="709" width="0.0507%" height="15" fill="rgb(218,145,35)" fg:x="134350" fg:w="113"/><text x="60.5561%" y="719.50"></text></g><g><title>__radix_tree_lookup (62 samples, 0.03%)</title><rect x="60.4013%" y="677" width="0.0278%" height="15" fill="rgb(208,7,15)" fg:x="134562" fg:w="62"/><text x="60.6513%" y="687.50"></text></g><g><title>mark_extent_buffer_accessed (42 samples, 0.02%)</title><rect x="60.4300%" y="677" width="0.0189%" height="15" fill="rgb(209,83,13)" fg:x="134626" fg:w="42"/><text x="60.6800%" y="687.50"></text></g><g><title>mark_page_accessed (31 samples, 0.01%)</title><rect x="60.4350%" y="661" width="0.0139%" height="15" fill="rgb(218,3,10)" fg:x="134637" fg:w="31"/><text x="60.6850%" y="671.50"></text></g><g><title>find_extent_buffer (143 samples, 0.06%)</title><rect x="60.3851%" y="693" width="0.0642%" height="15" fill="rgb(211,219,4)" fg:x="134526" fg:w="143"/><text x="60.6351%" y="703.50"></text></g><g><title>read_block_for_search.isra.0 (228 samples, 0.10%)</title><rect x="60.3569%" y="709" width="0.1023%" height="15" fill="rgb(228,194,12)" fg:x="134463" fg:w="228"/><text x="60.6069%" y="719.50"></text></g><g><title>btrfs_search_slot (646 samples, 0.29%)</title><rect x="60.1876%" y="725" width="0.2900%" height="15" fill="rgb(210,175,7)" fg:x="134086" fg:w="646"/><text x="60.4376%" y="735.50"></text></g><g><title>unlock_up (39 samples, 0.02%)</title><rect x="60.4601%" y="709" width="0.0175%" height="15" fill="rgb(243,132,6)" fg:x="134693" fg:w="39"/><text x="60.7101%" y="719.50"></text></g><g><title>btrfs_get_token_32 (180 samples, 0.08%)</title><rect x="60.5050%" y="709" width="0.0808%" height="15" fill="rgb(207,72,18)" fg:x="134793" fg:w="180"/><text x="60.7550%" y="719.50"></text></g><g><title>btrfs_leaf_free_space (23 samples, 0.01%)</title><rect x="60.5858%" y="709" width="0.0103%" height="15" fill="rgb(236,1,18)" fg:x="134973" fg:w="23"/><text x="60.8358%" y="719.50"></text></g><g><title>btrfs_set_token_32 (134 samples, 0.06%)</title><rect x="60.6028%" y="709" width="0.0601%" height="15" fill="rgb(227,0,18)" fg:x="135011" fg:w="134"/><text x="60.8528%" y="719.50"></text></g><g><title>memcpy_extent_buffer (111 samples, 0.05%)</title><rect x="60.6643%" y="709" width="0.0498%" height="15" fill="rgb(247,37,5)" fg:x="135148" fg:w="111"/><text x="60.9143%" y="719.50"></text></g><g><title>memmove (90 samples, 0.04%)</title><rect x="60.6738%" y="693" width="0.0404%" height="15" fill="rgb(237,179,24)" fg:x="135169" fg:w="90"/><text x="60.9238%" y="703.50"></text></g><g><title>memmove_extent_buffer (50 samples, 0.02%)</title><rect x="60.7142%" y="709" width="0.0224%" height="15" fill="rgb(226,53,20)" fg:x="135259" fg:w="50"/><text x="60.9642%" y="719.50"></text></g><g><title>memmove (35 samples, 0.02%)</title><rect x="60.7209%" y="693" width="0.0157%" height="15" fill="rgb(247,75,7)" fg:x="135274" fg:w="35"/><text x="60.9709%" y="703.50"></text></g><g><title>btrfs_insert_empty_items (1,240 samples, 0.56%)</title><rect x="60.1840%" y="741" width="0.5566%" height="15" fill="rgb(233,96,12)" fg:x="134078" fg:w="1240"/><text x="60.4340%" y="751.50"></text></g><g><title>setup_items_for_insert (586 samples, 0.26%)</title><rect x="60.4776%" y="725" width="0.2630%" height="15" fill="rgb(224,125,0)" fg:x="134732" fg:w="586"/><text x="60.7276%" y="735.50"></text></g><g><title>kmem_cache_alloc (23 samples, 0.01%)</title><rect x="60.7514%" y="741" width="0.0103%" height="15" fill="rgb(224,92,25)" fg:x="135342" fg:w="23"/><text x="61.0014%" y="751.50"></text></g><g><title>btrfs_insert_inode_ref (1,368 samples, 0.61%)</title><rect x="60.1607%" y="757" width="0.6141%" height="15" fill="rgb(224,42,24)" fg:x="134026" fg:w="1368"/><text x="60.4107%" y="767.50"></text></g><g><title>btrfs_delayed_update_inode (69 samples, 0.03%)</title><rect x="60.7815%" y="741" width="0.0310%" height="15" fill="rgb(234,132,49)" fg:x="135409" fg:w="69"/><text x="61.0315%" y="751.50"></text></g><g><title>btrfs_update_inode (115 samples, 0.05%)</title><rect x="60.7748%" y="757" width="0.0516%" height="15" fill="rgb(248,100,35)" fg:x="135394" fg:w="115"/><text x="61.0248%" y="767.50"></text></g><g><title>btrfs_update_root_times (31 samples, 0.01%)</title><rect x="60.8125%" y="741" width="0.0139%" height="15" fill="rgb(239,94,40)" fg:x="135478" fg:w="31"/><text x="61.0625%" y="751.50"></text></g><g><title>btrfs_add_link (4,344 samples, 1.95%)</title><rect x="58.8801%" y="773" width="1.9499%" height="15" fill="rgb(235,139,28)" fg:x="131173" fg:w="4344"/><text x="59.1301%" y="783.50">b..</text></g><g><title>btrfs_balance_delayed_items (24 samples, 0.01%)</title><rect x="60.8327%" y="757" width="0.0108%" height="15" fill="rgb(217,144,7)" fg:x="135523" fg:w="24"/><text x="61.0827%" y="767.50"></text></g><g><title>ttwu_do_activate (32 samples, 0.01%)</title><rect x="60.8681%" y="709" width="0.0144%" height="15" fill="rgb(227,55,4)" fg:x="135602" fg:w="32"/><text x="61.1181%" y="719.50"></text></g><g><title>__queue_work (94 samples, 0.04%)</title><rect x="60.8448%" y="741" width="0.0422%" height="15" fill="rgb(252,82,54)" fg:x="135550" fg:w="94"/><text x="61.0948%" y="751.50"></text></g><g><title>try_to_wake_up (66 samples, 0.03%)</title><rect x="60.8573%" y="725" width="0.0296%" height="15" fill="rgb(245,172,4)" fg:x="135578" fg:w="66"/><text x="61.1073%" y="735.50"></text></g><g><title>btrfs_btree_balance_dirty (129 samples, 0.06%)</title><rect x="60.8300%" y="773" width="0.0579%" height="15" fill="rgb(207,26,27)" fg:x="135517" fg:w="129"/><text x="61.0800%" y="783.50"></text></g><g><title>queue_work_on (97 samples, 0.04%)</title><rect x="60.8443%" y="757" width="0.0435%" height="15" fill="rgb(252,98,18)" fg:x="135549" fg:w="97"/><text x="61.0943%" y="767.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (33 samples, 0.01%)</title><rect x="60.9009%" y="741" width="0.0148%" height="15" fill="rgb(244,8,26)" fg:x="135675" fg:w="33"/><text x="61.1509%" y="751.50"></text></g><g><title>btrfs_get_or_create_delayed_node (32 samples, 0.01%)</title><rect x="60.9215%" y="741" width="0.0144%" height="15" fill="rgb(237,173,45)" fg:x="135721" fg:w="32"/><text x="61.1715%" y="751.50"></text></g><g><title>btrfs_get_delayed_node (31 samples, 0.01%)</title><rect x="60.9220%" y="725" width="0.0139%" height="15" fill="rgb(208,213,49)" fg:x="135722" fg:w="31"/><text x="61.1720%" y="735.50"></text></g><g><title>btrfs_delayed_update_inode (112 samples, 0.05%)</title><rect x="60.8951%" y="757" width="0.0503%" height="15" fill="rgb(212,122,37)" fg:x="135662" fg:w="112"/><text x="61.1451%" y="767.50"></text></g><g><title>btrfs_update_inode (122 samples, 0.05%)</title><rect x="60.8942%" y="773" width="0.0548%" height="15" fill="rgb(213,80,17)" fg:x="135660" fg:w="122"/><text x="61.1442%" y="783.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (39 samples, 0.02%)</title><rect x="61.0050%" y="709" width="0.0175%" height="15" fill="rgb(206,210,43)" fg:x="135907" fg:w="39"/><text x="61.2550%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (133 samples, 0.06%)</title><rect x="60.9794%" y="757" width="0.0597%" height="15" fill="rgb(229,214,3)" fg:x="135850" fg:w="133"/><text x="61.2294%" y="767.50"></text></g><g><title>btrfs_reserve_metadata_bytes (118 samples, 0.05%)</title><rect x="60.9862%" y="741" width="0.0530%" height="15" fill="rgb(235,213,29)" fg:x="135865" fg:w="118"/><text x="61.2362%" y="751.50"></text></g><g><title>__reserve_bytes (107 samples, 0.05%)</title><rect x="60.9911%" y="725" width="0.0480%" height="15" fill="rgb(248,135,26)" fg:x="135876" fg:w="107"/><text x="61.2411%" y="735.50"></text></g><g><title>calc_available_free_space.isra.0 (37 samples, 0.02%)</title><rect x="61.0225%" y="709" width="0.0166%" height="15" fill="rgb(242,188,12)" fg:x="135946" fg:w="37"/><text x="61.2725%" y="719.50"></text></g><g><title>kmem_cache_alloc (42 samples, 0.02%)</title><rect x="61.0472%" y="757" width="0.0189%" height="15" fill="rgb(245,38,12)" fg:x="136001" fg:w="42"/><text x="61.2972%" y="767.50"></text></g><g><title>btrfs_link (5,028 samples, 2.26%)</title><rect x="58.8154%" y="789" width="2.2569%" height="15" fill="rgb(218,42,13)" fg:x="131029" fg:w="5028"/><text x="59.0654%" y="799.50">b..</text></g><g><title>start_transaction (249 samples, 0.11%)</title><rect x="60.9606%" y="773" width="0.1118%" height="15" fill="rgb(238,132,49)" fg:x="135808" fg:w="249"/><text x="61.2106%" y="783.50"></text></g><g><title>fsnotify (25 samples, 0.01%)</title><rect x="61.0751%" y="789" width="0.0112%" height="15" fill="rgb(209,196,19)" fg:x="136063" fg:w="25"/><text x="61.3251%" y="799.50"></text></g><g><title>__x64_sys_link (6,715 samples, 3.01%)</title><rect x="58.0847%" y="837" width="3.0142%" height="15" fill="rgb(244,131,22)" fg:x="129401" fg:w="6715"/><text x="58.3347%" y="847.50">__x..</text></g><g><title>do_linkat (6,711 samples, 3.01%)</title><rect x="58.0865%" y="821" width="3.0124%" height="15" fill="rgb(223,18,34)" fg:x="129405" fg:w="6711"/><text x="58.3365%" y="831.50">do_..</text></g><g><title>vfs_link (5,104 samples, 2.29%)</title><rect x="58.8078%" y="805" width="2.2910%" height="15" fill="rgb(252,124,54)" fg:x="131012" fg:w="5104"/><text x="59.0578%" y="815.50">v..</text></g><g><title>do_syscall_64 (6,720 samples, 3.02%)</title><rect x="58.0829%" y="853" width="3.0164%" height="15" fill="rgb(229,106,42)" fg:x="129397" fg:w="6720"/><text x="58.3329%" y="863.50">do_..</text></g><g><title>entry_SYSCALL_64_after_hwframe (6,738 samples, 3.02%)</title><rect x="58.0793%" y="869" width="3.0245%" height="15" fill="rgb(221,129,1)" fg:x="129389" fg:w="6738"/><text x="58.3293%" y="879.50">ent..</text></g><g><title>__GI___link (6,778 samples, 3.04%)</title><rect x="58.0658%" y="885" width="3.0425%" height="15" fill="rgb(229,74,15)" fg:x="129359" fg:w="6778"/><text x="58.3158%" y="895.50">__G..</text></g><g><title>entry_SYSCALL_64 (29 samples, 0.01%)</title><rect x="61.1195%" y="869" width="0.0130%" height="15" fill="rgb(210,206,50)" fg:x="136162" fg:w="29"/><text x="61.3695%" y="879.50"></text></g><g><title>_copy_to_user (30 samples, 0.01%)</title><rect x="61.1460%" y="805" width="0.0135%" height="15" fill="rgb(251,114,31)" fg:x="136221" fg:w="30"/><text x="61.3960%" y="815.50"></text></g><g><title>copy_user_enhanced_fast_string (26 samples, 0.01%)</title><rect x="61.1478%" y="789" width="0.0117%" height="15" fill="rgb(215,225,28)" fg:x="136225" fg:w="26"/><text x="61.3978%" y="799.50"></text></g><g><title>cp_new_stat (59 samples, 0.03%)</title><rect x="61.1410%" y="821" width="0.0265%" height="15" fill="rgb(237,109,14)" fg:x="136210" fg:w="59"/><text x="61.3910%" y="831.50"></text></g><g><title>btrfs_getattr (111 samples, 0.05%)</title><rect x="61.1716%" y="805" width="0.0498%" height="15" fill="rgb(230,13,37)" fg:x="136278" fg:w="111"/><text x="61.4216%" y="815.50"></text></g><g><title>kmem_cache_free (41 samples, 0.02%)</title><rect x="61.2290%" y="789" width="0.0184%" height="15" fill="rgb(231,40,28)" fg:x="136406" fg:w="41"/><text x="61.4790%" y="799.50"></text></g><g><title>__legitimize_path (30 samples, 0.01%)</title><rect x="61.2582%" y="741" width="0.0135%" height="15" fill="rgb(231,202,18)" fg:x="136471" fg:w="30"/><text x="61.5082%" y="751.50"></text></g><g><title>complete_walk (45 samples, 0.02%)</title><rect x="61.2537%" y="773" width="0.0202%" height="15" fill="rgb(225,33,18)" fg:x="136461" fg:w="45"/><text x="61.5037%" y="783.50"></text></g><g><title>try_to_unlazy (39 samples, 0.02%)</title><rect x="61.2564%" y="757" width="0.0175%" height="15" fill="rgb(223,64,47)" fg:x="136467" fg:w="39"/><text x="61.5064%" y="767.50"></text></g><g><title>inode_permission.part.0 (302 samples, 0.14%)</title><rect x="61.4229%" y="757" width="0.1356%" height="15" fill="rgb(234,114,13)" fg:x="136838" fg:w="302"/><text x="61.6729%" y="767.50"></text></g><g><title>generic_permission (72 samples, 0.03%)</title><rect x="61.5262%" y="741" width="0.0323%" height="15" fill="rgb(248,56,40)" fg:x="137068" fg:w="72"/><text x="61.7762%" y="751.50"></text></g><g><title>security_inode_permission (25 samples, 0.01%)</title><rect x="61.5585%" y="757" width="0.0112%" height="15" fill="rgb(221,194,21)" fg:x="137140" fg:w="25"/><text x="61.8085%" y="767.50"></text></g><g><title>lookup_fast (488 samples, 0.22%)</title><rect x="61.6074%" y="741" width="0.2191%" height="15" fill="rgb(242,108,46)" fg:x="137249" fg:w="488"/><text x="61.8574%" y="751.50"></text></g><g><title>__d_lookup_rcu (403 samples, 0.18%)</title><rect x="61.6456%" y="725" width="0.1809%" height="15" fill="rgb(220,106,10)" fg:x="137334" fg:w="403"/><text x="61.8956%" y="735.50"></text></g><g><title>page_put_link (24 samples, 0.01%)</title><rect x="61.8265%" y="741" width="0.0108%" height="15" fill="rgb(211,88,4)" fg:x="137737" fg:w="24"/><text x="62.0765%" y="751.50"></text></g><g><title>__lookup_mnt (23 samples, 0.01%)</title><rect x="61.8924%" y="725" width="0.0103%" height="15" fill="rgb(214,95,34)" fg:x="137884" fg:w="23"/><text x="62.1424%" y="735.50"></text></g><g><title>page_get_link (61 samples, 0.03%)</title><rect x="61.9118%" y="725" width="0.0274%" height="15" fill="rgb(250,160,33)" fg:x="137927" fg:w="61"/><text x="62.1618%" y="735.50"></text></g><g><title>pagecache_get_page (55 samples, 0.02%)</title><rect x="61.9144%" y="709" width="0.0247%" height="15" fill="rgb(225,29,10)" fg:x="137933" fg:w="55"/><text x="62.1644%" y="719.50"></text></g><g><title>find_get_entry (46 samples, 0.02%)</title><rect x="61.9185%" y="693" width="0.0206%" height="15" fill="rgb(224,28,30)" fg:x="137942" fg:w="46"/><text x="62.1685%" y="703.50"></text></g><g><title>link_path_walk.part.0 (1,486 samples, 0.67%)</title><rect x="61.2739%" y="773" width="0.6670%" height="15" fill="rgb(231,77,4)" fg:x="136506" fg:w="1486"/><text x="61.5239%" y="783.50"></text></g><g><title>walk_component (827 samples, 0.37%)</title><rect x="61.5697%" y="757" width="0.3712%" height="15" fill="rgb(209,63,21)" fg:x="137165" fg:w="827"/><text x="61.8197%" y="767.50"></text></g><g><title>step_into (231 samples, 0.10%)</title><rect x="61.8372%" y="741" width="0.1037%" height="15" fill="rgb(226,22,11)" fg:x="137761" fg:w="231"/><text x="62.0872%" y="751.50"></text></g><g><title>path_init (50 samples, 0.02%)</title><rect x="61.9409%" y="773" width="0.0224%" height="15" fill="rgb(216,82,30)" fg:x="137992" fg:w="50"/><text x="62.1909%" y="783.50"></text></g><g><title>nd_jump_root (32 samples, 0.01%)</title><rect x="61.9490%" y="757" width="0.0144%" height="15" fill="rgb(246,227,38)" fg:x="138010" fg:w="32"/><text x="62.1990%" y="767.50"></text></g><g><title>set_root (25 samples, 0.01%)</title><rect x="61.9522%" y="741" width="0.0112%" height="15" fill="rgb(251,203,53)" fg:x="138017" fg:w="25"/><text x="62.2022%" y="751.50"></text></g><g><title>__d_lookup_rcu (84 samples, 0.04%)</title><rect x="61.9697%" y="741" width="0.0377%" height="15" fill="rgb(254,101,1)" fg:x="138056" fg:w="84"/><text x="62.2197%" y="751.50"></text></g><g><title>lookup_fast (86 samples, 0.04%)</title><rect x="61.9692%" y="757" width="0.0386%" height="15" fill="rgb(241,180,5)" fg:x="138055" fg:w="86"/><text x="62.2192%" y="767.50"></text></g><g><title>path_lookupat (1,698 samples, 0.76%)</title><rect x="61.2474%" y="789" width="0.7622%" height="15" fill="rgb(218,168,4)" fg:x="136447" fg:w="1698"/><text x="61.4974%" y="799.50"></text></g><g><title>walk_component (96 samples, 0.04%)</title><rect x="61.9665%" y="773" width="0.0431%" height="15" fill="rgb(224,223,32)" fg:x="138049" fg:w="96"/><text x="62.2165%" y="783.50"></text></g><g><title>filename_lookup (1,760 samples, 0.79%)</title><rect x="61.2214%" y="805" width="0.7900%" height="15" fill="rgb(236,106,22)" fg:x="136389" fg:w="1760"/><text x="61.4714%" y="815.50"></text></g><g><title>path_put (31 samples, 0.01%)</title><rect x="62.0190%" y="805" width="0.0139%" height="15" fill="rgb(206,121,5)" fg:x="138166" fg:w="31"/><text x="62.2690%" y="815.50"></text></g><g><title>dput (31 samples, 0.01%)</title><rect x="62.0190%" y="789" width="0.0139%" height="15" fill="rgb(233,87,28)" fg:x="138166" fg:w="31"/><text x="62.2690%" y="799.50"></text></g><g><title>security_inode_getattr (116 samples, 0.05%)</title><rect x="62.0329%" y="805" width="0.0521%" height="15" fill="rgb(236,137,17)" fg:x="138197" fg:w="116"/><text x="62.2829%" y="815.50"></text></g><g><title>tomoyo_path_perm (56 samples, 0.03%)</title><rect x="62.0599%" y="789" width="0.0251%" height="15" fill="rgb(209,183,38)" fg:x="138257" fg:w="56"/><text x="62.3099%" y="799.50"></text></g><g><title>tomoyo_init_request_info (36 samples, 0.02%)</title><rect x="62.0689%" y="773" width="0.0162%" height="15" fill="rgb(206,162,44)" fg:x="138277" fg:w="36"/><text x="62.3189%" y="783.50"></text></g><g><title>memset_erms (96 samples, 0.04%)</title><rect x="62.1128%" y="757" width="0.0431%" height="15" fill="rgb(237,70,39)" fg:x="138375" fg:w="96"/><text x="62.3628%" y="767.50"></text></g><g><title>kmem_cache_alloc (172 samples, 0.08%)</title><rect x="62.0909%" y="773" width="0.0772%" height="15" fill="rgb(212,176,5)" fg:x="138326" fg:w="172"/><text x="62.3409%" y="783.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (27 samples, 0.01%)</title><rect x="62.1559%" y="757" width="0.0121%" height="15" fill="rgb(232,95,16)" fg:x="138471" fg:w="27"/><text x="62.4059%" y="767.50"></text></g><g><title>__virt_addr_valid (36 samples, 0.02%)</title><rect x="62.2129%" y="741" width="0.0162%" height="15" fill="rgb(219,115,35)" fg:x="138598" fg:w="36"/><text x="62.4629%" y="751.50"></text></g><g><title>__check_object_size (73 samples, 0.03%)</title><rect x="62.1977%" y="757" width="0.0328%" height="15" fill="rgb(251,67,27)" fg:x="138564" fg:w="73"/><text x="62.4477%" y="767.50"></text></g><g><title>user_path_at_empty (325 samples, 0.15%)</title><rect x="62.0850%" y="805" width="0.1459%" height="15" fill="rgb(222,95,40)" fg:x="138313" fg:w="325"/><text x="62.3350%" y="815.50"></text></g><g><title>getname_flags.part.0 (320 samples, 0.14%)</title><rect x="62.0873%" y="789" width="0.1436%" height="15" fill="rgb(250,35,16)" fg:x="138318" fg:w="320"/><text x="62.3373%" y="799.50"></text></g><g><title>strncpy_from_user (140 samples, 0.06%)</title><rect x="62.1681%" y="773" width="0.0628%" height="15" fill="rgb(224,86,44)" fg:x="138498" fg:w="140"/><text x="62.4181%" y="783.50"></text></g><g><title>__do_sys_newlstat (2,466 samples, 1.11%)</title><rect x="61.1379%" y="837" width="1.1069%" height="15" fill="rgb(237,53,53)" fg:x="136203" fg:w="2466"/><text x="61.3879%" y="847.50"></text></g><g><title>vfs_statx (2,400 samples, 1.08%)</title><rect x="61.1675%" y="821" width="1.0773%" height="15" fill="rgb(208,171,33)" fg:x="136269" fg:w="2400"/><text x="61.4175%" y="831.50"></text></g><g><title>vfs_getattr_nosec (31 samples, 0.01%)</title><rect x="62.2309%" y="805" width="0.0139%" height="15" fill="rgb(222,64,27)" fg:x="138638" fg:w="31"/><text x="62.4809%" y="815.50"></text></g><g><title>do_syscall_64 (2,481 samples, 1.11%)</title><rect x="61.1334%" y="853" width="1.1137%" height="15" fill="rgb(221,121,35)" fg:x="136193" fg:w="2481"/><text x="61.3834%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,501 samples, 1.12%)</title><rect x="61.1325%" y="869" width="1.1226%" height="15" fill="rgb(228,137,42)" fg:x="136191" fg:w="2501"/><text x="61.3825%" y="879.50"></text></g><g><title>__GI___lxstat (2,566 samples, 1.15%)</title><rect x="61.1083%" y="885" width="1.1518%" height="15" fill="rgb(227,54,21)" fg:x="136137" fg:w="2566"/><text x="61.3583%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.03%)</title><rect x="62.2843%" y="661" width="0.0265%" height="15" fill="rgb(240,168,33)" fg:x="138757" fg:w="59"/><text x="62.5343%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.02%)</title><rect x="62.2866%" y="645" width="0.0242%" height="15" fill="rgb(243,159,6)" fg:x="138762" fg:w="54"/><text x="62.5366%" y="655.50"></text></g><g><title>native_write_msr (54 samples, 0.02%)</title><rect x="62.2866%" y="629" width="0.0242%" height="15" fill="rgb(205,211,41)" fg:x="138762" fg:w="54"/><text x="62.5366%" y="639.50"></text></g><g><title>finish_task_switch (63 samples, 0.03%)</title><rect x="62.2830%" y="677" width="0.0283%" height="15" fill="rgb(253,30,1)" fg:x="138754" fg:w="63"/><text x="62.5330%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (68 samples, 0.03%)</title><rect x="62.2812%" y="725" width="0.0305%" height="15" fill="rgb(226,80,18)" fg:x="138750" fg:w="68"/><text x="62.5312%" y="735.50"></text></g><g><title>schedule (68 samples, 0.03%)</title><rect x="62.2812%" y="709" width="0.0305%" height="15" fill="rgb(253,156,46)" fg:x="138750" fg:w="68"/><text x="62.5312%" y="719.50"></text></g><g><title>__schedule (68 samples, 0.03%)</title><rect x="62.2812%" y="693" width="0.0305%" height="15" fill="rgb(248,87,27)" fg:x="138750" fg:w="68"/><text x="62.5312%" y="703.50"></text></g><g><title>btrfs_search_slot (138 samples, 0.06%)</title><rect x="62.2731%" y="741" width="0.0619%" height="15" fill="rgb(227,122,2)" fg:x="138732" fg:w="138"/><text x="62.5231%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (141 samples, 0.06%)</title><rect x="62.2722%" y="757" width="0.0633%" height="15" fill="rgb(229,94,39)" fg:x="138730" fg:w="141"/><text x="62.5222%" y="767.50"></text></g><g><title>btrfs_lookup (152 samples, 0.07%)</title><rect x="62.2677%" y="789" width="0.0682%" height="15" fill="rgb(225,173,31)" fg:x="138720" fg:w="152"/><text x="62.5177%" y="799.50"></text></g><g><title>btrfs_lookup_dentry (152 samples, 0.07%)</title><rect x="62.2677%" y="773" width="0.0682%" height="15" fill="rgb(239,176,30)" fg:x="138720" fg:w="152"/><text x="62.5177%" y="783.50"></text></g><g><title>__lookup_hash (170 samples, 0.08%)</title><rect x="62.2673%" y="805" width="0.0763%" height="15" fill="rgb(212,104,21)" fg:x="138719" fg:w="170"/><text x="62.5173%" y="815.50"></text></g><g><title>lookup_fast (26 samples, 0.01%)</title><rect x="62.3543%" y="741" width="0.0117%" height="15" fill="rgb(240,209,40)" fg:x="138913" fg:w="26"/><text x="62.6043%" y="751.50"></text></g><g><title>link_path_walk.part.0 (45 samples, 0.02%)</title><rect x="62.3472%" y="773" width="0.0202%" height="15" fill="rgb(234,195,5)" fg:x="138897" fg:w="45"/><text x="62.5972%" y="783.50"></text></g><g><title>walk_component (33 samples, 0.01%)</title><rect x="62.3525%" y="757" width="0.0148%" height="15" fill="rgb(238,213,1)" fg:x="138909" fg:w="33"/><text x="62.6025%" y="767.50"></text></g><g><title>filename_parentat (58 samples, 0.03%)</title><rect x="62.3440%" y="805" width="0.0260%" height="15" fill="rgb(235,182,54)" fg:x="138890" fg:w="58"/><text x="62.5940%" y="815.50"></text></g><g><title>path_parentat (56 samples, 0.03%)</title><rect x="62.3449%" y="789" width="0.0251%" height="15" fill="rgb(229,50,46)" fg:x="138892" fg:w="56"/><text x="62.5949%" y="799.50"></text></g><g><title>filename_create (233 samples, 0.10%)</title><rect x="62.2673%" y="821" width="0.1046%" height="15" fill="rgb(219,145,13)" fg:x="138719" fg:w="233"/><text x="62.5173%" y="831.50"></text></g><g><title>__btrfs_tree_read_lock (28 samples, 0.01%)</title><rect x="62.3970%" y="693" width="0.0126%" height="15" fill="rgb(220,226,10)" fg:x="139008" fg:w="28"/><text x="62.6470%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (30 samples, 0.01%)</title><rect x="62.3965%" y="709" width="0.0135%" height="15" fill="rgb(248,47,30)" fg:x="139007" fg:w="30"/><text x="62.6465%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.04%)</title><rect x="62.4136%" y="645" width="0.0377%" height="15" fill="rgb(231,209,44)" fg:x="139045" fg:w="84"/><text x="62.6636%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.04%)</title><rect x="62.4136%" y="629" width="0.0377%" height="15" fill="rgb(209,80,30)" fg:x="139045" fg:w="84"/><text x="62.6636%" y="639.50"></text></g><g><title>native_write_msr (81 samples, 0.04%)</title><rect x="62.4149%" y="613" width="0.0364%" height="15" fill="rgb(232,9,14)" fg:x="139048" fg:w="81"/><text x="62.6649%" y="623.50"></text></g><g><title>finish_task_switch (92 samples, 0.04%)</title><rect x="62.4109%" y="661" width="0.0413%" height="15" fill="rgb(243,91,43)" fg:x="139039" fg:w="92"/><text x="62.6609%" y="671.50"></text></g><g><title>__btrfs_tree_lock (98 samples, 0.04%)</title><rect x="62.4100%" y="709" width="0.0440%" height="15" fill="rgb(231,90,52)" fg:x="139037" fg:w="98"/><text x="62.6600%" y="719.50"></text></g><g><title>schedule (96 samples, 0.04%)</title><rect x="62.4109%" y="693" width="0.0431%" height="15" fill="rgb(253,192,44)" fg:x="139039" fg:w="96"/><text x="62.6609%" y="703.50"></text></g><g><title>__schedule (96 samples, 0.04%)</title><rect x="62.4109%" y="677" width="0.0431%" height="15" fill="rgb(241,66,31)" fg:x="139039" fg:w="96"/><text x="62.6609%" y="687.50"></text></g><g><title>btrfs_search_slot (186 samples, 0.08%)</title><rect x="62.3947%" y="725" width="0.0835%" height="15" fill="rgb(235,81,37)" fg:x="139003" fg:w="186"/><text x="62.6447%" y="735.50"></text></g><g><title>insert_with_overflow (223 samples, 0.10%)</title><rect x="62.3938%" y="757" width="0.1001%" height="15" fill="rgb(223,221,9)" fg:x="139001" fg:w="223"/><text x="62.6438%" y="767.50"></text></g><g><title>btrfs_insert_empty_items (221 samples, 0.10%)</title><rect x="62.3947%" y="741" width="0.0992%" height="15" fill="rgb(242,180,7)" fg:x="139003" fg:w="221"/><text x="62.6447%" y="751.50"></text></g><g><title>setup_items_for_insert (35 samples, 0.02%)</title><rect x="62.4782%" y="725" width="0.0157%" height="15" fill="rgb(243,78,19)" fg:x="139189" fg:w="35"/><text x="62.7282%" y="735.50"></text></g><g><title>btrfs_insert_dir_item (246 samples, 0.11%)</title><rect x="62.3840%" y="773" width="0.1104%" height="15" fill="rgb(233,23,17)" fg:x="138979" fg:w="246"/><text x="62.6340%" y="783.50"></text></g><g><title>btrfs_add_link (254 samples, 0.11%)</title><rect x="62.3835%" y="789" width="0.1140%" height="15" fill="rgb(252,122,45)" fg:x="138978" fg:w="254"/><text x="62.6335%" y="799.50"></text></g><g><title>__btrfs_tree_read_lock (24 samples, 0.01%)</title><rect x="62.5074%" y="725" width="0.0108%" height="15" fill="rgb(247,108,20)" fg:x="139254" fg:w="24"/><text x="62.7574%" y="735.50"></text></g><g><title>__btrfs_read_lock_root_node (25 samples, 0.01%)</title><rect x="62.5074%" y="741" width="0.0112%" height="15" fill="rgb(235,84,21)" fg:x="139254" fg:w="25"/><text x="62.7574%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (40 samples, 0.02%)</title><rect x="62.5204%" y="677" width="0.0180%" height="15" fill="rgb(247,129,10)" fg:x="139283" fg:w="40"/><text x="62.7704%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (40 samples, 0.02%)</title><rect x="62.5204%" y="661" width="0.0180%" height="15" fill="rgb(208,173,14)" fg:x="139283" fg:w="40"/><text x="62.7704%" y="671.50"></text></g><g><title>native_write_msr (39 samples, 0.02%)</title><rect x="62.5209%" y="645" width="0.0175%" height="15" fill="rgb(236,31,38)" fg:x="139284" fg:w="39"/><text x="62.7709%" y="655.50"></text></g><g><title>__btrfs_tree_lock (47 samples, 0.02%)</title><rect x="62.5186%" y="741" width="0.0211%" height="15" fill="rgb(232,65,17)" fg:x="139279" fg:w="47"/><text x="62.7686%" y="751.50"></text></g><g><title>schedule (46 samples, 0.02%)</title><rect x="62.5191%" y="725" width="0.0206%" height="15" fill="rgb(224,45,49)" fg:x="139280" fg:w="46"/><text x="62.7691%" y="735.50"></text></g><g><title>__schedule (46 samples, 0.02%)</title><rect x="62.5191%" y="709" width="0.0206%" height="15" fill="rgb(225,2,53)" fg:x="139280" fg:w="46"/><text x="62.7691%" y="719.50"></text></g><g><title>finish_task_switch (44 samples, 0.02%)</title><rect x="62.5200%" y="693" width="0.0198%" height="15" fill="rgb(248,210,53)" fg:x="139282" fg:w="44"/><text x="62.7700%" y="703.50"></text></g><g><title>split_leaf (34 samples, 0.02%)</title><rect x="62.5541%" y="741" width="0.0153%" height="15" fill="rgb(211,1,30)" fg:x="139358" fg:w="34"/><text x="62.8041%" y="751.50"></text></g><g><title>btrfs_search_slot (157 samples, 0.07%)</title><rect x="62.5047%" y="757" width="0.0705%" height="15" fill="rgb(224,96,15)" fg:x="139248" fg:w="157"/><text x="62.7547%" y="767.50"></text></g><g><title>btrfs_insert_empty_items (184 samples, 0.08%)</title><rect x="62.5047%" y="773" width="0.0826%" height="15" fill="rgb(252,45,11)" fg:x="139248" fg:w="184"/><text x="62.7547%" y="783.50"></text></g><g><title>setup_items_for_insert (27 samples, 0.01%)</title><rect x="62.5752%" y="757" width="0.0121%" height="15" fill="rgb(220,125,38)" fg:x="139405" fg:w="27"/><text x="62.8252%" y="767.50"></text></g><g><title>btrfs_new_inode (240 samples, 0.11%)</title><rect x="62.5016%" y="789" width="0.1077%" height="15" fill="rgb(243,161,33)" fg:x="139241" fg:w="240"/><text x="62.7516%" y="799.50"></text></g><g><title>btrfs_delayed_update_inode (23 samples, 0.01%)</title><rect x="62.6097%" y="773" width="0.0103%" height="15" fill="rgb(248,197,34)" fg:x="139482" fg:w="23"/><text x="62.8597%" y="783.50"></text></g><g><title>btrfs_update_inode (26 samples, 0.01%)</title><rect x="62.6093%" y="789" width="0.0117%" height="15" fill="rgb(228,165,23)" fg:x="139481" fg:w="26"/><text x="62.8593%" y="799.50"></text></g><g><title>btrfs_mkdir (561 samples, 0.25%)</title><rect x="62.3804%" y="805" width="0.2518%" height="15" fill="rgb(236,94,38)" fg:x="138971" fg:w="561"/><text x="62.6304%" y="815.50"></text></g><g><title>__GI___mkdir (833 samples, 0.37%)</title><rect x="62.2601%" y="885" width="0.3739%" height="15" fill="rgb(220,13,23)" fg:x="138703" fg:w="833"/><text x="62.5101%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (831 samples, 0.37%)</title><rect x="62.2610%" y="869" width="0.3730%" height="15" fill="rgb(234,26,39)" fg:x="138705" fg:w="831"/><text x="62.5110%" y="879.50"></text></g><g><title>do_syscall_64 (831 samples, 0.37%)</title><rect x="62.2610%" y="853" width="0.3730%" height="15" fill="rgb(205,117,44)" fg:x="138705" fg:w="831"/><text x="62.5110%" y="863.50"></text></g><g><title>do_mkdirat (831 samples, 0.37%)</title><rect x="62.2610%" y="837" width="0.3730%" height="15" fill="rgb(250,42,2)" fg:x="138705" fg:w="831"/><text x="62.5110%" y="847.50"></text></g><g><title>vfs_mkdir (565 samples, 0.25%)</title><rect x="62.3804%" y="821" width="0.2536%" height="15" fill="rgb(223,83,14)" fg:x="138971" fg:w="565"/><text x="62.6304%" y="831.50"></text></g><g><title>btrfs_filldir (37 samples, 0.02%)</title><rect x="62.6582%" y="773" width="0.0166%" height="15" fill="rgb(241,147,50)" fg:x="139590" fg:w="37"/><text x="62.9082%" y="783.50"></text></g><g><title>filldir64 (36 samples, 0.02%)</title><rect x="62.6587%" y="757" width="0.0162%" height="15" fill="rgb(218,90,6)" fg:x="139591" fg:w="36"/><text x="62.9087%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="62.7157%" y="677" width="0.0117%" height="15" fill="rgb(210,191,5)" fg:x="139718" fg:w="26"/><text x="62.9657%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="62.7161%" y="661" width="0.0112%" height="15" fill="rgb(225,139,19)" fg:x="139719" fg:w="25"/><text x="62.9661%" y="671.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="62.7161%" y="645" width="0.0112%" height="15" fill="rgb(210,1,33)" fg:x="139719" fg:w="25"/><text x="62.9661%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (53 samples, 0.02%)</title><rect x="62.7040%" y="741" width="0.0238%" height="15" fill="rgb(213,50,3)" fg:x="139692" fg:w="53"/><text x="62.9540%" y="751.50"></text></g><g><title>schedule (28 samples, 0.01%)</title><rect x="62.7152%" y="725" width="0.0126%" height="15" fill="rgb(234,227,4)" fg:x="139717" fg:w="28"/><text x="62.9652%" y="735.50"></text></g><g><title>__schedule (28 samples, 0.01%)</title><rect x="62.7152%" y="709" width="0.0126%" height="15" fill="rgb(246,63,5)" fg:x="139717" fg:w="28"/><text x="62.9652%" y="719.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="62.7152%" y="693" width="0.0126%" height="15" fill="rgb(245,136,27)" fg:x="139717" fg:w="28"/><text x="62.9652%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (58 samples, 0.03%)</title><rect x="62.7040%" y="757" width="0.0260%" height="15" fill="rgb(247,199,27)" fg:x="139692" fg:w="58"/><text x="62.9540%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (77 samples, 0.03%)</title><rect x="62.7363%" y="693" width="0.0346%" height="15" fill="rgb(252,158,49)" fg:x="139764" fg:w="77"/><text x="62.9863%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (77 samples, 0.03%)</title><rect x="62.7363%" y="677" width="0.0346%" height="15" fill="rgb(254,73,1)" fg:x="139764" fg:w="77"/><text x="62.9863%" y="687.50"></text></g><g><title>native_write_msr (77 samples, 0.03%)</title><rect x="62.7363%" y="661" width="0.0346%" height="15" fill="rgb(248,93,19)" fg:x="139764" fg:w="77"/><text x="62.9863%" y="671.50"></text></g><g><title>finish_task_switch (80 samples, 0.04%)</title><rect x="62.7359%" y="709" width="0.0359%" height="15" fill="rgb(206,67,5)" fg:x="139763" fg:w="80"/><text x="62.9859%" y="719.50"></text></g><g><title>__btrfs_tree_read_lock (98 samples, 0.04%)</title><rect x="62.7300%" y="757" width="0.0440%" height="15" fill="rgb(209,210,4)" fg:x="139750" fg:w="98"/><text x="62.9800%" y="767.50"></text></g><g><title>schedule (89 samples, 0.04%)</title><rect x="62.7341%" y="741" width="0.0399%" height="15" fill="rgb(214,185,36)" fg:x="139759" fg:w="89"/><text x="62.9841%" y="751.50"></text></g><g><title>__schedule (89 samples, 0.04%)</title><rect x="62.7341%" y="725" width="0.0399%" height="15" fill="rgb(233,191,26)" fg:x="139759" fg:w="89"/><text x="62.9841%" y="735.50"></text></g><g><title>btrfs_tree_read_lock_atomic (32 samples, 0.01%)</title><rect x="62.7817%" y="757" width="0.0144%" height="15" fill="rgb(248,94,17)" fg:x="139865" fg:w="32"/><text x="63.0317%" y="767.50"></text></g><g><title>queued_read_lock_slowpath (29 samples, 0.01%)</title><rect x="62.7830%" y="741" width="0.0130%" height="15" fill="rgb(250,64,4)" fg:x="139868" fg:w="29"/><text x="63.0330%" y="751.50"></text></g><g><title>generic_bin_search.constprop.0 (25 samples, 0.01%)</title><rect x="62.7987%" y="757" width="0.0112%" height="15" fill="rgb(218,41,53)" fg:x="139903" fg:w="25"/><text x="63.0487%" y="767.50"></text></g><g><title>find_extent_buffer (25 samples, 0.01%)</title><rect x="62.8153%" y="741" width="0.0112%" height="15" fill="rgb(251,176,28)" fg:x="139940" fg:w="25"/><text x="63.0653%" y="751.50"></text></g><g><title>read_block_for_search.isra.0 (43 samples, 0.02%)</title><rect x="62.8099%" y="757" width="0.0193%" height="15" fill="rgb(247,22,9)" fg:x="139928" fg:w="43"/><text x="63.0599%" y="767.50"></text></g><g><title>btrfs_search_slot (290 samples, 0.13%)</title><rect x="62.7009%" y="773" width="0.1302%" height="15" fill="rgb(218,201,14)" fg:x="139685" fg:w="290"/><text x="62.9509%" y="783.50"></text></g><g><title>btrfs_real_readdir (462 samples, 0.21%)</title><rect x="62.6501%" y="789" width="0.2074%" height="15" fill="rgb(218,94,10)" fg:x="139572" fg:w="462"/><text x="62.9001%" y="799.50"></text></g><g><title>read_extent_buffer (32 samples, 0.01%)</title><rect x="62.8432%" y="773" width="0.0144%" height="15" fill="rgb(222,183,52)" fg:x="140002" fg:w="32"/><text x="63.0932%" y="783.50"></text></g><g><title>btrfs_dirty_inode (29 samples, 0.01%)</title><rect x="62.8652%" y="773" width="0.0130%" height="15" fill="rgb(242,140,25)" fg:x="140051" fg:w="29"/><text x="63.1152%" y="783.50"></text></g><g><title>touch_atime (37 samples, 0.02%)</title><rect x="62.8620%" y="789" width="0.0166%" height="15" fill="rgb(235,197,38)" fg:x="140044" fg:w="37"/><text x="63.1120%" y="799.50"></text></g><g><title>iterate_dir (517 samples, 0.23%)</title><rect x="62.6470%" y="805" width="0.2321%" height="15" fill="rgb(237,136,15)" fg:x="139565" fg:w="517"/><text x="62.8970%" y="815.50"></text></g><g><title>__x64_sys_getdents64 (524 samples, 0.24%)</title><rect x="62.6443%" y="821" width="0.2352%" height="15" fill="rgb(223,44,49)" fg:x="139559" fg:w="524"/><text x="62.8943%" y="831.50"></text></g><g><title>do_syscall_64 (526 samples, 0.24%)</title><rect x="62.6439%" y="837" width="0.2361%" height="15" fill="rgb(227,71,15)" fg:x="139558" fg:w="526"/><text x="62.8939%" y="847.50"></text></g><g><title>__GI___readdir64 (550 samples, 0.25%)</title><rect x="62.6340%" y="885" width="0.2469%" height="15" fill="rgb(225,153,20)" fg:x="139536" fg:w="550"/><text x="62.8840%" y="895.50"></text></g><g><title>__GI___getdents64 (533 samples, 0.24%)</title><rect x="62.6416%" y="869" width="0.2392%" height="15" fill="rgb(210,190,26)" fg:x="139553" fg:w="533"/><text x="62.8916%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (529 samples, 0.24%)</title><rect x="62.6434%" y="853" width="0.2375%" height="15" fill="rgb(223,147,5)" fg:x="139557" fg:w="529"/><text x="62.8934%" y="863.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="62.8818%" y="853" width="0.0162%" height="15" fill="rgb(207,14,23)" fg:x="140088" fg:w="36"/><text x="63.1318%" y="863.50"></text></g><g><title>__x64_sys_readlink (36 samples, 0.02%)</title><rect x="62.8818%" y="837" width="0.0162%" height="15" fill="rgb(211,195,53)" fg:x="140088" fg:w="36"/><text x="63.1318%" y="847.50"></text></g><g><title>do_readlinkat (36 samples, 0.02%)</title><rect x="62.8818%" y="821" width="0.0162%" height="15" fill="rgb(237,75,46)" fg:x="140088" fg:w="36"/><text x="63.1318%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.02%)</title><rect x="62.8813%" y="869" width="0.0171%" height="15" fill="rgb(254,55,14)" fg:x="140087" fg:w="38"/><text x="63.1313%" y="879.50"></text></g><g><title>__GI___readlink (40 samples, 0.02%)</title><rect x="62.8809%" y="885" width="0.0180%" height="15" fill="rgb(230,185,30)" fg:x="140086" fg:w="40"/><text x="63.1309%" y="895.50"></text></g><g><title>entry_SYSCALL_64 (23 samples, 0.01%)</title><rect x="62.9123%" y="869" width="0.0103%" height="15" fill="rgb(220,14,11)" fg:x="140156" fg:w="23"/><text x="63.1623%" y="879.50"></text></g><g><title>_copy_to_user (30 samples, 0.01%)</title><rect x="62.9361%" y="805" width="0.0135%" height="15" fill="rgb(215,169,44)" fg:x="140209" fg:w="30"/><text x="63.1861%" y="815.50"></text></g><g><title>copy_user_enhanced_fast_string (24 samples, 0.01%)</title><rect x="62.9388%" y="789" width="0.0108%" height="15" fill="rgb(253,203,20)" fg:x="140215" fg:w="24"/><text x="63.1888%" y="799.50"></text></g><g><title>cp_new_stat (50 samples, 0.02%)</title><rect x="62.9316%" y="821" width="0.0224%" height="15" fill="rgb(229,225,17)" fg:x="140199" fg:w="50"/><text x="63.1816%" y="831.50"></text></g><g><title>btrfs_getattr (58 samples, 0.03%)</title><rect x="62.9599%" y="805" width="0.0260%" height="15" fill="rgb(236,76,26)" fg:x="140262" fg:w="58"/><text x="63.2099%" y="815.50"></text></g><g><title>kmem_cache_free (49 samples, 0.02%)</title><rect x="62.9958%" y="789" width="0.0220%" height="15" fill="rgb(234,15,30)" fg:x="140342" fg:w="49"/><text x="63.2458%" y="799.50"></text></g><g><title>__legitimize_path (33 samples, 0.01%)</title><rect x="63.0259%" y="741" width="0.0148%" height="15" fill="rgb(211,113,48)" fg:x="140409" fg:w="33"/><text x="63.2759%" y="751.50"></text></g><g><title>complete_walk (43 samples, 0.02%)</title><rect x="63.0232%" y="773" width="0.0193%" height="15" fill="rgb(221,31,36)" fg:x="140403" fg:w="43"/><text x="63.2732%" y="783.50"></text></g><g><title>try_to_unlazy (42 samples, 0.02%)</title><rect x="63.0236%" y="757" width="0.0189%" height="15" fill="rgb(215,118,52)" fg:x="140404" fg:w="42"/><text x="63.2736%" y="767.50"></text></g><g><title>inode_permission.part.0 (320 samples, 0.14%)</title><rect x="63.2184%" y="757" width="0.1436%" height="15" fill="rgb(241,151,27)" fg:x="140838" fg:w="320"/><text x="63.4684%" y="767.50"></text></g><g><title>generic_permission (86 samples, 0.04%)</title><rect x="63.3235%" y="741" width="0.0386%" height="15" fill="rgb(253,51,3)" fg:x="141072" fg:w="86"/><text x="63.5735%" y="751.50"></text></g><g><title>security_inode_permission (40 samples, 0.02%)</title><rect x="63.3621%" y="757" width="0.0180%" height="15" fill="rgb(216,201,24)" fg:x="141158" fg:w="40"/><text x="63.6121%" y="767.50"></text></g><g><title>lookup_fast (584 samples, 0.26%)</title><rect x="63.4357%" y="741" width="0.2621%" height="15" fill="rgb(231,107,4)" fg:x="141322" fg:w="584"/><text x="63.6857%" y="751.50"></text></g><g><title>__d_lookup_rcu (457 samples, 0.21%)</title><rect x="63.4927%" y="725" width="0.2051%" height="15" fill="rgb(243,97,54)" fg:x="141449" fg:w="457"/><text x="63.7427%" y="735.50"></text></g><g><title>page_get_link (48 samples, 0.02%)</title><rect x="63.7809%" y="725" width="0.0215%" height="15" fill="rgb(221,32,51)" fg:x="142091" fg:w="48"/><text x="64.0309%" y="735.50"></text></g><g><title>pagecache_get_page (38 samples, 0.02%)</title><rect x="63.7853%" y="709" width="0.0171%" height="15" fill="rgb(218,171,35)" fg:x="142101" fg:w="38"/><text x="64.0353%" y="719.50"></text></g><g><title>find_get_entry (30 samples, 0.01%)</title><rect x="63.7889%" y="693" width="0.0135%" height="15" fill="rgb(214,20,53)" fg:x="142109" fg:w="30"/><text x="64.0389%" y="703.50"></text></g><g><title>link_path_walk.part.0 (1,695 samples, 0.76%)</title><rect x="63.0425%" y="773" width="0.7608%" height="15" fill="rgb(239,9,52)" fg:x="140446" fg:w="1695"/><text x="63.2925%" y="783.50"></text></g><g><title>walk_component (943 samples, 0.42%)</title><rect x="63.3800%" y="757" width="0.4233%" height="15" fill="rgb(215,114,45)" fg:x="141198" fg:w="943"/><text x="63.6300%" y="767.50"></text></g><g><title>step_into (220 samples, 0.10%)</title><rect x="63.7046%" y="741" width="0.0988%" height="15" fill="rgb(208,118,9)" fg:x="141921" fg:w="220"/><text x="63.9546%" y="751.50"></text></g><g><title>path_init (52 samples, 0.02%)</title><rect x="63.8033%" y="773" width="0.0233%" height="15" fill="rgb(235,7,39)" fg:x="142141" fg:w="52"/><text x="64.0533%" y="783.50"></text></g><g><title>nd_jump_root (33 samples, 0.01%)</title><rect x="63.8118%" y="757" width="0.0148%" height="15" fill="rgb(243,225,15)" fg:x="142160" fg:w="33"/><text x="64.0618%" y="767.50"></text></g><g><title>dput (24 samples, 0.01%)</title><rect x="63.8289%" y="757" width="0.0108%" height="15" fill="rgb(225,216,18)" fg:x="142198" fg:w="24"/><text x="64.0789%" y="767.50"></text></g><g><title>terminate_walk (32 samples, 0.01%)</title><rect x="63.8266%" y="773" width="0.0144%" height="15" fill="rgb(233,36,38)" fg:x="142193" fg:w="32"/><text x="64.0766%" y="783.50"></text></g><g><title>free_extent_buffer.part.0 (29 samples, 0.01%)</title><rect x="63.8621%" y="677" width="0.0130%" height="15" fill="rgb(239,88,23)" fg:x="142272" fg:w="29"/><text x="64.1121%" y="687.50"></text></g><g><title>btrfs_free_path (55 samples, 0.02%)</title><rect x="63.8554%" y="709" width="0.0247%" height="15" fill="rgb(219,181,35)" fg:x="142257" fg:w="55"/><text x="64.1054%" y="719.50"></text></g><g><title>btrfs_release_path (53 samples, 0.02%)</title><rect x="63.8563%" y="693" width="0.0238%" height="15" fill="rgb(215,18,46)" fg:x="142259" fg:w="53"/><text x="64.1063%" y="703.50"></text></g><g><title>queued_read_lock_slowpath (32 samples, 0.01%)</title><rect x="63.9155%" y="645" width="0.0144%" height="15" fill="rgb(241,38,11)" fg:x="142391" fg:w="32"/><text x="64.1655%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.03%)</title><rect x="63.9330%" y="597" width="0.0337%" height="15" fill="rgb(248,169,45)" fg:x="142430" fg:w="75"/><text x="64.1830%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.03%)</title><rect x="63.9348%" y="581" width="0.0319%" height="15" fill="rgb(239,50,49)" fg:x="142434" fg:w="71"/><text x="64.1848%" y="591.50"></text></g><g><title>native_write_msr (71 samples, 0.03%)</title><rect x="63.9348%" y="565" width="0.0319%" height="15" fill="rgb(231,96,31)" fg:x="142434" fg:w="71"/><text x="64.1848%" y="575.50"></text></g><g><title>finish_task_switch (91 samples, 0.04%)</title><rect x="63.9326%" y="613" width="0.0408%" height="15" fill="rgb(224,193,37)" fg:x="142429" fg:w="91"/><text x="64.1826%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (153 samples, 0.07%)</title><rect x="63.9074%" y="661" width="0.0687%" height="15" fill="rgb(227,153,50)" fg:x="142373" fg:w="153"/><text x="64.1574%" y="671.50"></text></g><g><title>schedule (103 samples, 0.05%)</title><rect x="63.9299%" y="645" width="0.0462%" height="15" fill="rgb(249,228,3)" fg:x="142423" fg:w="103"/><text x="64.1799%" y="655.50"></text></g><g><title>__schedule (101 samples, 0.05%)</title><rect x="63.9308%" y="629" width="0.0453%" height="15" fill="rgb(219,164,43)" fg:x="142425" fg:w="101"/><text x="64.1808%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (183 samples, 0.08%)</title><rect x="63.9065%" y="677" width="0.0821%" height="15" fill="rgb(216,45,41)" fg:x="142371" fg:w="183"/><text x="64.1565%" y="687.50"></text></g><g><title>btrfs_root_node (28 samples, 0.01%)</title><rect x="63.9761%" y="661" width="0.0126%" height="15" fill="rgb(210,226,51)" fg:x="142526" fg:w="28"/><text x="64.2261%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (536 samples, 0.24%)</title><rect x="64.0210%" y="613" width="0.2406%" height="15" fill="rgb(209,117,49)" fg:x="142626" fg:w="536"/><text x="64.2710%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (517 samples, 0.23%)</title><rect x="64.0295%" y="597" width="0.2321%" height="15" fill="rgb(206,196,24)" fg:x="142645" fg:w="517"/><text x="64.2795%" y="607.50"></text></g><g><title>native_write_msr (515 samples, 0.23%)</title><rect x="64.0304%" y="581" width="0.2312%" height="15" fill="rgb(253,218,3)" fg:x="142647" fg:w="515"/><text x="64.2804%" y="591.50"></text></g><g><title>finish_task_switch (578 samples, 0.26%)</title><rect x="64.0143%" y="629" width="0.2594%" height="15" fill="rgb(252,166,2)" fg:x="142611" fg:w="578"/><text x="64.2643%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (656 samples, 0.29%)</title><rect x="63.9887%" y="677" width="0.2945%" height="15" fill="rgb(236,218,26)" fg:x="142554" fg:w="656"/><text x="64.2387%" y="687.50"></text></g><g><title>schedule (627 samples, 0.28%)</title><rect x="64.0017%" y="661" width="0.2814%" height="15" fill="rgb(254,84,19)" fg:x="142583" fg:w="627"/><text x="64.2517%" y="671.50"></text></g><g><title>__schedule (625 samples, 0.28%)</title><rect x="64.0026%" y="645" width="0.2805%" height="15" fill="rgb(219,137,29)" fg:x="142585" fg:w="625"/><text x="64.2526%" y="655.50"></text></g><g><title>__wake_up_common_lock (45 samples, 0.02%)</title><rect x="64.2836%" y="677" width="0.0202%" height="15" fill="rgb(227,47,52)" fg:x="143211" fg:w="45"/><text x="64.5336%" y="687.50"></text></g><g><title>__wake_up_common (44 samples, 0.02%)</title><rect x="64.2840%" y="661" width="0.0198%" height="15" fill="rgb(229,167,24)" fg:x="143212" fg:w="44"/><text x="64.5340%" y="671.50"></text></g><g><title>autoremove_wake_function (40 samples, 0.02%)</title><rect x="64.2858%" y="645" width="0.0180%" height="15" fill="rgb(233,164,1)" fg:x="143216" fg:w="40"/><text x="64.5358%" y="655.50"></text></g><g><title>try_to_wake_up (38 samples, 0.02%)</title><rect x="64.2867%" y="629" width="0.0171%" height="15" fill="rgb(218,88,48)" fg:x="143218" fg:w="38"/><text x="64.5367%" y="639.50"></text></g><g><title>ttwu_do_activate (23 samples, 0.01%)</title><rect x="64.2935%" y="613" width="0.0103%" height="15" fill="rgb(226,214,24)" fg:x="143233" fg:w="23"/><text x="64.5435%" y="623.50"></text></g><g><title>btrfs_tree_read_lock_atomic (97 samples, 0.04%)</title><rect x="64.3137%" y="677" width="0.0435%" height="15" fill="rgb(233,29,12)" fg:x="143278" fg:w="97"/><text x="64.5637%" y="687.50"></text></g><g><title>queued_read_lock_slowpath (84 samples, 0.04%)</title><rect x="64.3195%" y="661" width="0.0377%" height="15" fill="rgb(219,120,34)" fg:x="143291" fg:w="84"/><text x="64.5695%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (98 samples, 0.04%)</title><rect x="64.3662%" y="677" width="0.0440%" height="15" fill="rgb(226,78,44)" fg:x="143395" fg:w="98"/><text x="64.6162%" y="687.50"></text></g><g><title>__radix_tree_lookup (68 samples, 0.03%)</title><rect x="64.4555%" y="645" width="0.0305%" height="15" fill="rgb(240,15,48)" fg:x="143594" fg:w="68"/><text x="64.7055%" y="655.50"></text></g><g><title>find_extent_buffer (129 samples, 0.06%)</title><rect x="64.4412%" y="661" width="0.0579%" height="15" fill="rgb(253,176,7)" fg:x="143562" fg:w="129"/><text x="64.6912%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (28 samples, 0.01%)</title><rect x="64.4865%" y="645" width="0.0126%" height="15" fill="rgb(206,166,28)" fg:x="143663" fg:w="28"/><text x="64.7365%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (215 samples, 0.10%)</title><rect x="64.4102%" y="677" width="0.0965%" height="15" fill="rgb(241,53,51)" fg:x="143493" fg:w="215"/><text x="64.6602%" y="687.50"></text></g><g><title>btrfs_search_slot (1,408 samples, 0.63%)</title><rect x="63.8845%" y="693" width="0.6320%" height="15" fill="rgb(249,112,30)" fg:x="142322" fg:w="1408"/><text x="64.1345%" y="703.50"></text></g><g><title>btrfs_lookup_dir_item (1,451 samples, 0.65%)</title><rect x="63.8801%" y="709" width="0.6513%" height="15" fill="rgb(217,85,30)" fg:x="142312" fg:w="1451"/><text x="64.1301%" y="719.50"></text></g><g><title>crc32c (33 samples, 0.01%)</title><rect x="64.5166%" y="693" width="0.0148%" height="15" fill="rgb(233,49,7)" fg:x="143730" fg:w="33"/><text x="64.7666%" y="703.50"></text></g><g><title>btrfs_lookup (1,565 samples, 0.70%)</title><rect x="63.8468%" y="741" width="0.7025%" height="15" fill="rgb(234,109,9)" fg:x="142238" fg:w="1565"/><text x="64.0968%" y="751.50"></text></g><g><title>btrfs_lookup_dentry (1,565 samples, 0.70%)</title><rect x="63.8468%" y="725" width="0.7025%" height="15" fill="rgb(253,95,22)" fg:x="142238" fg:w="1565"/><text x="64.0968%" y="735.50"></text></g><g><title>memcg_slab_post_alloc_hook (46 samples, 0.02%)</title><rect x="64.5879%" y="677" width="0.0206%" height="15" fill="rgb(233,176,25)" fg:x="143889" fg:w="46"/><text x="64.8379%" y="687.50"></text></g><g><title>get_obj_cgroup_from_current (29 samples, 0.01%)</title><rect x="64.6162%" y="661" width="0.0130%" height="15" fill="rgb(236,33,39)" fg:x="143952" fg:w="29"/><text x="64.8662%" y="671.50"></text></g><g><title>kmem_cache_alloc (134 samples, 0.06%)</title><rect x="64.5776%" y="693" width="0.0601%" height="15" fill="rgb(223,226,42)" fg:x="143866" fg:w="134"/><text x="64.8276%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (60 samples, 0.03%)</title><rect x="64.6108%" y="677" width="0.0269%" height="15" fill="rgb(216,99,33)" fg:x="143940" fg:w="60"/><text x="64.8608%" y="687.50"></text></g><g><title>__d_alloc (161 samples, 0.07%)</title><rect x="64.5668%" y="709" width="0.0723%" height="15" fill="rgb(235,84,23)" fg:x="143842" fg:w="161"/><text x="64.8168%" y="719.50"></text></g><g><title>d_alloc_parallel (210 samples, 0.09%)</title><rect x="64.5493%" y="741" width="0.0943%" height="15" fill="rgb(232,2,27)" fg:x="143803" fg:w="210"/><text x="64.7993%" y="751.50"></text></g><g><title>d_alloc (175 samples, 0.08%)</title><rect x="64.5650%" y="725" width="0.0786%" height="15" fill="rgb(241,23,22)" fg:x="143838" fg:w="175"/><text x="64.8150%" y="735.50"></text></g><g><title>__d_lookup_done (27 samples, 0.01%)</title><rect x="64.6517%" y="709" width="0.0121%" height="15" fill="rgb(211,73,27)" fg:x="144031" fg:w="27"/><text x="64.9017%" y="719.50"></text></g><g><title>__lookup_slow (1,836 samples, 0.82%)</title><rect x="63.8459%" y="757" width="0.8241%" height="15" fill="rgb(235,109,49)" fg:x="142236" fg:w="1836"/><text x="64.0959%" y="767.50"></text></g><g><title>d_splice_alias (59 samples, 0.03%)</title><rect x="64.6436%" y="741" width="0.0265%" height="15" fill="rgb(230,99,29)" fg:x="144013" fg:w="59"/><text x="64.8936%" y="751.50"></text></g><g><title>__d_add (51 samples, 0.02%)</title><rect x="64.6472%" y="725" width="0.0229%" height="15" fill="rgb(245,199,7)" fg:x="144021" fg:w="51"/><text x="64.8972%" y="735.50"></text></g><g><title>__d_lookup_rcu (111 samples, 0.05%)</title><rect x="64.6813%" y="741" width="0.0498%" height="15" fill="rgb(217,179,10)" fg:x="144097" fg:w="111"/><text x="64.9313%" y="751.50"></text></g><g><title>__legitimize_path (29 samples, 0.01%)</title><rect x="64.7311%" y="725" width="0.0130%" height="15" fill="rgb(254,99,47)" fg:x="144208" fg:w="29"/><text x="64.9811%" y="735.50"></text></g><g><title>lookup_fast (150 samples, 0.07%)</title><rect x="64.6786%" y="757" width="0.0673%" height="15" fill="rgb(251,121,7)" fg:x="144091" fg:w="150"/><text x="64.9286%" y="767.50"></text></g><g><title>try_to_unlazy (33 samples, 0.01%)</title><rect x="64.7311%" y="741" width="0.0148%" height="15" fill="rgb(250,177,26)" fg:x="144208" fg:w="33"/><text x="64.9811%" y="751.50"></text></g><g><title>d_lru_add (62 samples, 0.03%)</title><rect x="64.7639%" y="725" width="0.0278%" height="15" fill="rgb(232,88,15)" fg:x="144281" fg:w="62"/><text x="65.0139%" y="735.50"></text></g><g><title>list_lru_add (58 samples, 0.03%)</title><rect x="64.7657%" y="709" width="0.0260%" height="15" fill="rgb(251,54,54)" fg:x="144285" fg:w="58"/><text x="65.0157%" y="719.50"></text></g><g><title>dput (98 samples, 0.04%)</title><rect x="64.7495%" y="741" width="0.0440%" height="15" fill="rgb(208,177,15)" fg:x="144249" fg:w="98"/><text x="64.9995%" y="751.50"></text></g><g><title>step_into (107 samples, 0.05%)</title><rect x="64.7459%" y="757" width="0.0480%" height="15" fill="rgb(205,97,32)" fg:x="144241" fg:w="107"/><text x="64.9959%" y="767.50"></text></g><g><title>path_lookupat (3,967 samples, 1.78%)</title><rect x="63.0178%" y="789" width="1.7807%" height="15" fill="rgb(217,192,13)" fg:x="140391" fg:w="3967"/><text x="63.2678%" y="799.50">p..</text></g><g><title>walk_component (2,133 samples, 0.96%)</title><rect x="63.8410%" y="773" width="0.9574%" height="15" fill="rgb(215,163,41)" fg:x="142225" fg:w="2133"/><text x="64.0910%" y="783.50"></text></g><g><title>filename_lookup (4,044 samples, 1.82%)</title><rect x="62.9859%" y="805" width="1.8152%" height="15" fill="rgb(246,83,29)" fg:x="140320" fg:w="4044"/><text x="63.2359%" y="815.50">f..</text></g><g><title>path_put (31 samples, 0.01%)</title><rect x="64.8034%" y="805" width="0.0139%" height="15" fill="rgb(219,2,45)" fg:x="144369" fg:w="31"/><text x="65.0534%" y="815.50"></text></g><g><title>dput (31 samples, 0.01%)</title><rect x="64.8034%" y="789" width="0.0139%" height="15" fill="rgb(242,215,33)" fg:x="144369" fg:w="31"/><text x="65.0534%" y="799.50"></text></g><g><title>security_inode_getattr (84 samples, 0.04%)</title><rect x="64.8178%" y="805" width="0.0377%" height="15" fill="rgb(217,1,6)" fg:x="144401" fg:w="84"/><text x="65.0678%" y="815.50"></text></g><g><title>tomoyo_path_perm (40 samples, 0.02%)</title><rect x="64.8375%" y="789" width="0.0180%" height="15" fill="rgb(207,85,52)" fg:x="144445" fg:w="40"/><text x="65.0875%" y="799.50"></text></g><g><title>tomoyo_init_request_info (23 samples, 0.01%)</title><rect x="64.8451%" y="773" width="0.0103%" height="15" fill="rgb(231,171,19)" fg:x="144462" fg:w="23"/><text x="65.0951%" y="783.50"></text></g><g><title>memset_erms (94 samples, 0.04%)</title><rect x="64.8793%" y="757" width="0.0422%" height="15" fill="rgb(207,128,4)" fg:x="144538" fg:w="94"/><text x="65.1293%" y="767.50"></text></g><g><title>kmem_cache_alloc (153 samples, 0.07%)</title><rect x="64.8644%" y="773" width="0.0687%" height="15" fill="rgb(219,208,4)" fg:x="144505" fg:w="153"/><text x="65.1144%" y="783.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (26 samples, 0.01%)</title><rect x="64.9214%" y="757" width="0.0117%" height="15" fill="rgb(235,161,42)" fg:x="144632" fg:w="26"/><text x="65.1714%" y="767.50"></text></g><g><title>__virt_addr_valid (26 samples, 0.01%)</title><rect x="64.9865%" y="741" width="0.0117%" height="15" fill="rgb(247,218,18)" fg:x="144777" fg:w="26"/><text x="65.2365%" y="751.50"></text></g><g><title>__check_object_size (58 samples, 0.03%)</title><rect x="64.9731%" y="757" width="0.0260%" height="15" fill="rgb(232,114,51)" fg:x="144747" fg:w="58"/><text x="65.2231%" y="767.50"></text></g><g><title>user_path_at_empty (321 samples, 0.14%)</title><rect x="64.8555%" y="805" width="0.1441%" height="15" fill="rgb(222,95,3)" fg:x="144485" fg:w="321"/><text x="65.1055%" y="815.50"></text></g><g><title>getname_flags.part.0 (313 samples, 0.14%)</title><rect x="64.8591%" y="789" width="0.1405%" height="15" fill="rgb(240,65,29)" fg:x="144493" fg:w="313"/><text x="65.1091%" y="799.50"></text></g><g><title>strncpy_from_user (148 samples, 0.07%)</title><rect x="64.9331%" y="773" width="0.0664%" height="15" fill="rgb(249,209,20)" fg:x="144658" fg:w="148"/><text x="65.1831%" y="783.50"></text></g><g><title>__do_sys_newstat (4,622 samples, 2.07%)</title><rect x="62.9307%" y="837" width="2.0747%" height="15" fill="rgb(241,48,37)" fg:x="140197" fg:w="4622"/><text x="63.1807%" y="847.50">_..</text></g><g><title>vfs_statx (4,570 samples, 2.05%)</title><rect x="62.9540%" y="821" width="2.0514%" height="15" fill="rgb(230,140,42)" fg:x="140249" fg:w="4570"/><text x="63.2040%" y="831.50">v..</text></g><g><title>do_syscall_64 (4,635 samples, 2.08%)</title><rect x="62.9280%" y="853" width="2.0805%" height="15" fill="rgb(230,176,45)" fg:x="140191" fg:w="4635"/><text x="63.1780%" y="863.50">d..</text></g><g><title>entry_SYSCALL_64_after_hwframe (4,665 samples, 2.09%)</title><rect x="62.9226%" y="869" width="2.0940%" height="15" fill="rgb(245,112,21)" fg:x="140179" fg:w="4665"/><text x="63.1726%" y="879.50">e..</text></g><g><title>__GI___xstat (4,735 samples, 2.13%)</title><rect x="62.8988%" y="885" width="2.1254%" height="15" fill="rgb(207,183,35)" fg:x="140126" fg:w="4735"/><text x="63.1488%" y="895.50">_..</text></g><g><title>__GI_remove (33 samples, 0.01%)</title><rect x="65.0242%" y="869" width="0.0148%" height="15" fill="rgb(227,44,33)" fg:x="144861" fg:w="33"/><text x="65.2742%" y="879.50"></text></g><g><title>__GI___rmdir (33 samples, 0.01%)</title><rect x="65.0242%" y="853" width="0.0148%" height="15" fill="rgb(246,120,21)" fg:x="144861" fg:w="33"/><text x="65.2742%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.01%)</title><rect x="65.0242%" y="837" width="0.0148%" height="15" fill="rgb(235,57,52)" fg:x="144861" fg:w="33"/><text x="65.2742%" y="847.50"></text></g><g><title>do_syscall_64 (33 samples, 0.01%)</title><rect x="65.0242%" y="821" width="0.0148%" height="15" fill="rgb(238,84,10)" fg:x="144861" fg:w="33"/><text x="65.2742%" y="831.50"></text></g><g><title>do_rmdir (33 samples, 0.01%)</title><rect x="65.0242%" y="805" width="0.0148%" height="15" fill="rgb(251,200,32)" fg:x="144861" fg:w="33"/><text x="65.2742%" y="815.50"></text></g><g><title>vfs_rmdir.part.0 (32 samples, 0.01%)</title><rect x="65.0247%" y="789" width="0.0144%" height="15" fill="rgb(247,159,13)" fg:x="144862" fg:w="32"/><text x="65.2747%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="65.0422%" y="645" width="0.0117%" height="15" fill="rgb(238,64,4)" fg:x="144901" fg:w="26"/><text x="65.2922%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="65.0426%" y="629" width="0.0112%" height="15" fill="rgb(221,131,51)" fg:x="144902" fg:w="25"/><text x="65.2926%" y="639.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="65.0426%" y="613" width="0.0112%" height="15" fill="rgb(242,5,29)" fg:x="144902" fg:w="25"/><text x="65.2926%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (29 samples, 0.01%)</title><rect x="65.0413%" y="725" width="0.0130%" height="15" fill="rgb(214,130,32)" fg:x="144899" fg:w="29"/><text x="65.2913%" y="735.50"></text></g><g><title>__btrfs_tree_read_lock (29 samples, 0.01%)</title><rect x="65.0413%" y="709" width="0.0130%" height="15" fill="rgb(244,210,16)" fg:x="144899" fg:w="29"/><text x="65.2913%" y="719.50"></text></g><g><title>schedule (28 samples, 0.01%)</title><rect x="65.0417%" y="693" width="0.0126%" height="15" fill="rgb(234,48,26)" fg:x="144900" fg:w="28"/><text x="65.2917%" y="703.50"></text></g><g><title>__schedule (28 samples, 0.01%)</title><rect x="65.0417%" y="677" width="0.0126%" height="15" fill="rgb(231,82,38)" fg:x="144900" fg:w="28"/><text x="65.2917%" y="687.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="65.0417%" y="661" width="0.0126%" height="15" fill="rgb(254,128,41)" fg:x="144900" fg:w="28"/><text x="65.2917%" y="671.50"></text></g><g><title>btrfs_lookup (51 samples, 0.02%)</title><rect x="65.0399%" y="789" width="0.0229%" height="15" fill="rgb(212,73,49)" fg:x="144896" fg:w="51"/><text x="65.2899%" y="799.50"></text></g><g><title>btrfs_lookup_dentry (51 samples, 0.02%)</title><rect x="65.0399%" y="773" width="0.0229%" height="15" fill="rgb(205,62,54)" fg:x="144896" fg:w="51"/><text x="65.2899%" y="783.50"></text></g><g><title>btrfs_lookup_dir_item (49 samples, 0.02%)</title><rect x="65.0408%" y="757" width="0.0220%" height="15" fill="rgb(228,0,8)" fg:x="144898" fg:w="49"/><text x="65.2908%" y="767.50"></text></g><g><title>btrfs_search_slot (49 samples, 0.02%)</title><rect x="65.0408%" y="741" width="0.0220%" height="15" fill="rgb(251,28,17)" fg:x="144898" fg:w="49"/><text x="65.2908%" y="751.50"></text></g><g><title>__lookup_hash (53 samples, 0.02%)</title><rect x="65.0399%" y="805" width="0.0238%" height="15" fill="rgb(238,105,27)" fg:x="144896" fg:w="53"/><text x="65.2899%" y="815.50"></text></g><g><title>__GI_remove (119 samples, 0.05%)</title><rect x="65.0242%" y="885" width="0.0534%" height="15" fill="rgb(237,216,33)" fg:x="144861" fg:w="119"/><text x="65.2742%" y="895.50"></text></g><g><title>__unlink (86 samples, 0.04%)</title><rect x="65.0391%" y="869" width="0.0386%" height="15" fill="rgb(229,228,25)" fg:x="144894" fg:w="86"/><text x="65.2891%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.04%)</title><rect x="65.0391%" y="853" width="0.0386%" height="15" fill="rgb(233,75,23)" fg:x="144894" fg:w="86"/><text x="65.2891%" y="863.50"></text></g><g><title>do_syscall_64 (86 samples, 0.04%)</title><rect x="65.0391%" y="837" width="0.0386%" height="15" fill="rgb(231,207,16)" fg:x="144894" fg:w="86"/><text x="65.2891%" y="847.50"></text></g><g><title>do_unlinkat (84 samples, 0.04%)</title><rect x="65.0399%" y="821" width="0.0377%" height="15" fill="rgb(231,191,45)" fg:x="144896" fg:w="84"/><text x="65.2899%" y="831.50"></text></g><g><title>memset_erms (44 samples, 0.02%)</title><rect x="65.1145%" y="789" width="0.0198%" height="15" fill="rgb(224,133,17)" fg:x="145062" fg:w="44"/><text x="65.3645%" y="799.50"></text></g><g><title>kmem_cache_alloc (63 samples, 0.03%)</title><rect x="65.1077%" y="805" width="0.0283%" height="15" fill="rgb(209,178,27)" fg:x="145047" fg:w="63"/><text x="65.3577%" y="815.50"></text></g><g><title>__x64_sys_unlinkat (123 samples, 0.06%)</title><rect x="65.1023%" y="837" width="0.0552%" height="15" fill="rgb(218,37,11)" fg:x="145035" fg:w="123"/><text x="65.3523%" y="847.50"></text></g><g><title>getname_flags.part.0 (114 samples, 0.05%)</title><rect x="65.1064%" y="821" width="0.0512%" height="15" fill="rgb(251,226,25)" fg:x="145044" fg:w="114"/><text x="65.3564%" y="831.50"></text></g><g><title>strncpy_from_user (48 samples, 0.02%)</title><rect x="65.1360%" y="805" width="0.0215%" height="15" fill="rgb(209,222,27)" fg:x="145110" fg:w="48"/><text x="65.3860%" y="815.50"></text></g><g><title>__check_object_size (25 samples, 0.01%)</title><rect x="65.1463%" y="789" width="0.0112%" height="15" fill="rgb(238,22,21)" fg:x="145133" fg:w="25"/><text x="65.3963%" y="799.50"></text></g><g><title>btrfs_del_inode_ref_in_log (23 samples, 0.01%)</title><rect x="65.1930%" y="773" width="0.0103%" height="15" fill="rgb(233,161,25)" fg:x="145237" fg:w="23"/><text x="65.4430%" y="783.50"></text></g><g><title>btrfs_del_items (66 samples, 0.03%)</title><rect x="65.2033%" y="773" width="0.0296%" height="15" fill="rgb(226,122,53)" fg:x="145260" fg:w="66"/><text x="65.4533%" y="783.50"></text></g><g><title>btrfs_delete_delayed_dir_index (32 samples, 0.01%)</title><rect x="65.2352%" y="773" width="0.0144%" height="15" fill="rgb(220,123,17)" fg:x="145331" fg:w="32"/><text x="65.4852%" y="783.50"></text></g><g><title>finish_task_switch (38 samples, 0.02%)</title><rect x="65.2572%" y="693" width="0.0171%" height="15" fill="rgb(230,224,35)" fg:x="145380" fg:w="38"/><text x="65.5072%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.02%)</title><rect x="65.2577%" y="677" width="0.0166%" height="15" fill="rgb(246,83,8)" fg:x="145381" fg:w="37"/><text x="65.5077%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="65.2577%" y="661" width="0.0166%" height="15" fill="rgb(230,214,17)" fg:x="145381" fg:w="37"/><text x="65.5077%" y="671.50"></text></g><g><title>native_write_msr (37 samples, 0.02%)</title><rect x="65.2577%" y="645" width="0.0166%" height="15" fill="rgb(222,97,18)" fg:x="145381" fg:w="37"/><text x="65.5077%" y="655.50"></text></g><g><title>__btrfs_tree_lock (45 samples, 0.02%)</title><rect x="65.2545%" y="741" width="0.0202%" height="15" fill="rgb(206,79,1)" fg:x="145374" fg:w="45"/><text x="65.5045%" y="751.50"></text></g><g><title>schedule (40 samples, 0.02%)</title><rect x="65.2568%" y="725" width="0.0180%" height="15" fill="rgb(214,121,34)" fg:x="145379" fg:w="40"/><text x="65.5068%" y="735.50"></text></g><g><title>__schedule (40 samples, 0.02%)</title><rect x="65.2568%" y="709" width="0.0180%" height="15" fill="rgb(249,199,46)" fg:x="145379" fg:w="40"/><text x="65.5068%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.03%)</title><rect x="65.2837%" y="661" width="0.0305%" height="15" fill="rgb(214,222,46)" fg:x="145439" fg:w="68"/><text x="65.5337%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.03%)</title><rect x="65.2846%" y="645" width="0.0296%" height="15" fill="rgb(248,168,30)" fg:x="145441" fg:w="66"/><text x="65.5346%" y="655.50"></text></g><g><title>native_write_msr (66 samples, 0.03%)</title><rect x="65.2846%" y="629" width="0.0296%" height="15" fill="rgb(226,14,28)" fg:x="145441" fg:w="66"/><text x="65.5346%" y="639.50"></text></g><g><title>finish_task_switch (73 samples, 0.03%)</title><rect x="65.2832%" y="677" width="0.0328%" height="15" fill="rgb(253,123,1)" fg:x="145438" fg:w="73"/><text x="65.5332%" y="687.50"></text></g><g><title>__btrfs_tree_lock (92 samples, 0.04%)</title><rect x="65.2756%" y="725" width="0.0413%" height="15" fill="rgb(225,24,42)" fg:x="145421" fg:w="92"/><text x="65.5256%" y="735.50"></text></g><g><title>schedule (76 samples, 0.03%)</title><rect x="65.2828%" y="709" width="0.0341%" height="15" fill="rgb(216,161,37)" fg:x="145437" fg:w="76"/><text x="65.5328%" y="719.50"></text></g><g><title>__schedule (76 samples, 0.03%)</title><rect x="65.2828%" y="693" width="0.0341%" height="15" fill="rgb(251,164,26)" fg:x="145437" fg:w="76"/><text x="65.5328%" y="703.50"></text></g><g><title>btrfs_lock_root_node (93 samples, 0.04%)</title><rect x="65.2756%" y="741" width="0.0417%" height="15" fill="rgb(219,177,3)" fg:x="145421" fg:w="93"/><text x="65.5256%" y="751.50"></text></g><g><title>btrfs_search_slot (207 samples, 0.09%)</title><rect x="65.2509%" y="757" width="0.0929%" height="15" fill="rgb(222,65,0)" fg:x="145366" fg:w="207"/><text x="65.5009%" y="767.50"></text></g><g><title>btrfs_lookup_dir_item (213 samples, 0.10%)</title><rect x="65.2500%" y="773" width="0.0956%" height="15" fill="rgb(223,69,54)" fg:x="145364" fg:w="213"/><text x="65.5000%" y="783.50"></text></g><g><title>__btrfs_unlink_inode (384 samples, 0.17%)</title><rect x="65.1845%" y="789" width="0.1724%" height="15" fill="rgb(235,30,27)" fg:x="145218" fg:w="384"/><text x="65.4345%" y="799.50"></text></g><g><title>__btrfs_read_lock_root_node (25 samples, 0.01%)</title><rect x="65.3640%" y="725" width="0.0112%" height="15" fill="rgb(220,183,50)" fg:x="145618" fg:w="25"/><text x="65.6140%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (46 samples, 0.02%)</title><rect x="65.3762%" y="661" width="0.0206%" height="15" fill="rgb(248,198,15)" fg:x="145645" fg:w="46"/><text x="65.6262%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.02%)</title><rect x="65.3775%" y="645" width="0.0193%" height="15" fill="rgb(222,211,4)" fg:x="145648" fg:w="43"/><text x="65.6275%" y="655.50"></text></g><g><title>native_write_msr (42 samples, 0.02%)</title><rect x="65.3780%" y="629" width="0.0189%" height="15" fill="rgb(214,102,34)" fg:x="145649" fg:w="42"/><text x="65.6280%" y="639.50"></text></g><g><title>__btrfs_tree_lock (51 samples, 0.02%)</title><rect x="65.3753%" y="725" width="0.0229%" height="15" fill="rgb(245,92,5)" fg:x="145643" fg:w="51"/><text x="65.6253%" y="735.50"></text></g><g><title>schedule (49 samples, 0.02%)</title><rect x="65.3762%" y="709" width="0.0220%" height="15" fill="rgb(252,72,51)" fg:x="145645" fg:w="49"/><text x="65.6262%" y="719.50"></text></g><g><title>__schedule (49 samples, 0.02%)</title><rect x="65.3762%" y="693" width="0.0220%" height="15" fill="rgb(252,208,19)" fg:x="145645" fg:w="49"/><text x="65.6262%" y="703.50"></text></g><g><title>finish_task_switch (49 samples, 0.02%)</title><rect x="65.3762%" y="677" width="0.0220%" height="15" fill="rgb(211,69,7)" fg:x="145645" fg:w="49"/><text x="65.6262%" y="687.50"></text></g><g><title>btrfs_search_slot (150 samples, 0.07%)</title><rect x="65.3618%" y="741" width="0.0673%" height="15" fill="rgb(211,27,16)" fg:x="145613" fg:w="150"/><text x="65.6118%" y="751.50"></text></g><g><title>btrfs_insert_empty_items (170 samples, 0.08%)</title><rect x="65.3618%" y="757" width="0.0763%" height="15" fill="rgb(219,216,14)" fg:x="145613" fg:w="170"/><text x="65.6118%" y="767.50"></text></g><g><title>btrfs_orphan_add (178 samples, 0.08%)</title><rect x="65.3595%" y="789" width="0.0799%" height="15" fill="rgb(219,71,8)" fg:x="145608" fg:w="178"/><text x="65.6095%" y="799.50"></text></g><g><title>btrfs_insert_orphan_item (178 samples, 0.08%)</title><rect x="65.3595%" y="773" width="0.0799%" height="15" fill="rgb(223,170,53)" fg:x="145608" fg:w="178"/><text x="65.6095%" y="783.50"></text></g><g><title>btrfs_rmdir (615 samples, 0.28%)</title><rect x="65.1809%" y="805" width="0.2761%" height="15" fill="rgb(246,21,26)" fg:x="145210" fg:w="615"/><text x="65.4309%" y="815.50"></text></g><g><title>start_transaction (31 samples, 0.01%)</title><rect x="65.4430%" y="789" width="0.0139%" height="15" fill="rgb(248,20,46)" fg:x="145794" fg:w="31"/><text x="65.6930%" y="799.50"></text></g><g><title>btrfs_destroy_inode (39 samples, 0.02%)</title><rect x="65.4637%" y="789" width="0.0175%" height="15" fill="rgb(252,94,11)" fg:x="145840" fg:w="39"/><text x="65.7137%" y="799.50"></text></g><g><title>destroy_inode (49 samples, 0.02%)</title><rect x="65.4601%" y="805" width="0.0220%" height="15" fill="rgb(236,163,8)" fg:x="145832" fg:w="49"/><text x="65.7101%" y="815.50"></text></g><g><title>btrfs_get_token_32 (25 samples, 0.01%)</title><rect x="65.5184%" y="725" width="0.0112%" height="15" fill="rgb(217,221,45)" fg:x="145962" fg:w="25"/><text x="65.7684%" y="735.50"></text></g><g><title>btrfs_del_items (72 samples, 0.03%)</title><rect x="65.5140%" y="741" width="0.0323%" height="15" fill="rgb(238,38,17)" fg:x="145952" fg:w="72"/><text x="65.7640%" y="751.50"></text></g><g><title>__btrfs_tree_read_lock (25 samples, 0.01%)</title><rect x="65.5503%" y="693" width="0.0112%" height="15" fill="rgb(242,210,23)" fg:x="146033" fg:w="25"/><text x="65.8003%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (26 samples, 0.01%)</title><rect x="65.5503%" y="709" width="0.0117%" height="15" fill="rgb(250,86,53)" fg:x="146033" fg:w="26"/><text x="65.8003%" y="719.50"></text></g><g><title>finish_task_switch (26 samples, 0.01%)</title><rect x="65.5624%" y="661" width="0.0117%" height="15" fill="rgb(223,168,25)" fg:x="146060" fg:w="26"/><text x="65.8124%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="65.5624%" y="645" width="0.0117%" height="15" fill="rgb(251,189,4)" fg:x="146060" fg:w="26"/><text x="65.8124%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="65.5624%" y="629" width="0.0117%" height="15" fill="rgb(245,19,28)" fg:x="146060" fg:w="26"/><text x="65.8124%" y="639.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="65.5629%" y="613" width="0.0112%" height="15" fill="rgb(207,10,34)" fg:x="146061" fg:w="25"/><text x="65.8129%" y="623.50"></text></g><g><title>__btrfs_tree_lock (30 samples, 0.01%)</title><rect x="65.5620%" y="709" width="0.0135%" height="15" fill="rgb(235,153,31)" fg:x="146059" fg:w="30"/><text x="65.8120%" y="719.50"></text></g><g><title>schedule (30 samples, 0.01%)</title><rect x="65.5620%" y="693" width="0.0135%" height="15" fill="rgb(228,72,37)" fg:x="146059" fg:w="30"/><text x="65.8120%" y="703.50"></text></g><g><title>__schedule (30 samples, 0.01%)</title><rect x="65.5620%" y="677" width="0.0135%" height="15" fill="rgb(215,15,16)" fg:x="146059" fg:w="30"/><text x="65.8120%" y="687.50"></text></g><g><title>finish_task_switch (23 samples, 0.01%)</title><rect x="65.5871%" y="645" width="0.0103%" height="15" fill="rgb(250,119,29)" fg:x="146115" fg:w="23"/><text x="65.8371%" y="655.50"></text></g><g><title>btrfs_lock_root_node (47 samples, 0.02%)</title><rect x="65.5768%" y="709" width="0.0211%" height="15" fill="rgb(214,59,1)" fg:x="146092" fg:w="47"/><text x="65.8268%" y="719.50"></text></g><g><title>__btrfs_tree_lock (47 samples, 0.02%)</title><rect x="65.5768%" y="693" width="0.0211%" height="15" fill="rgb(223,109,25)" fg:x="146092" fg:w="47"/><text x="65.8268%" y="703.50"></text></g><g><title>schedule (26 samples, 0.01%)</title><rect x="65.5862%" y="677" width="0.0117%" height="15" fill="rgb(230,198,22)" fg:x="146113" fg:w="26"/><text x="65.8362%" y="687.50"></text></g><g><title>__schedule (26 samples, 0.01%)</title><rect x="65.5862%" y="661" width="0.0117%" height="15" fill="rgb(245,184,46)" fg:x="146113" fg:w="26"/><text x="65.8362%" y="671.50"></text></g><g><title>btrfs_lookup_inode (163 samples, 0.07%)</title><rect x="65.5494%" y="741" width="0.0732%" height="15" fill="rgb(253,73,16)" fg:x="146031" fg:w="163"/><text x="65.7994%" y="751.50"></text></g><g><title>btrfs_search_slot (163 samples, 0.07%)</title><rect x="65.5494%" y="725" width="0.0732%" height="15" fill="rgb(206,94,45)" fg:x="146031" fg:w="163"/><text x="65.7994%" y="735.50"></text></g><g><title>__btrfs_update_delayed_inode (255 samples, 0.11%)</title><rect x="65.5126%" y="757" width="0.1145%" height="15" fill="rgb(236,83,27)" fg:x="145949" fg:w="255"/><text x="65.7626%" y="767.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (284 samples, 0.13%)</title><rect x="65.5077%" y="773" width="0.1275%" height="15" fill="rgb(220,196,8)" fg:x="145938" fg:w="284"/><text x="65.7577%" y="783.50"></text></g><g><title>btrfs_free_path (29 samples, 0.01%)</title><rect x="65.6396%" y="757" width="0.0130%" height="15" fill="rgb(254,185,14)" fg:x="146232" fg:w="29"/><text x="65.8896%" y="767.50"></text></g><g><title>btrfs_release_path (29 samples, 0.01%)</title><rect x="65.6396%" y="741" width="0.0130%" height="15" fill="rgb(226,50,22)" fg:x="146232" fg:w="29"/><text x="65.8896%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (193 samples, 0.09%)</title><rect x="65.6751%" y="661" width="0.0866%" height="15" fill="rgb(253,147,0)" fg:x="146311" fg:w="193"/><text x="65.9251%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (187 samples, 0.08%)</title><rect x="65.6778%" y="645" width="0.0839%" height="15" fill="rgb(252,46,33)" fg:x="146317" fg:w="187"/><text x="65.9278%" y="655.50"></text></g><g><title>native_write_msr (187 samples, 0.08%)</title><rect x="65.6778%" y="629" width="0.0839%" height="15" fill="rgb(242,22,54)" fg:x="146317" fg:w="187"/><text x="65.9278%" y="639.50"></text></g><g><title>finish_task_switch (208 samples, 0.09%)</title><rect x="65.6715%" y="677" width="0.0934%" height="15" fill="rgb(223,178,32)" fg:x="146303" fg:w="208"/><text x="65.9215%" y="687.50"></text></g><g><title>__schedule (220 samples, 0.10%)</title><rect x="65.6670%" y="693" width="0.0988%" height="15" fill="rgb(214,106,53)" fg:x="146293" fg:w="220"/><text x="65.9170%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (246 samples, 0.11%)</title><rect x="65.6558%" y="725" width="0.1104%" height="15" fill="rgb(232,65,50)" fg:x="146268" fg:w="246"/><text x="65.9058%" y="735.50"></text></g><g><title>schedule (222 samples, 0.10%)</title><rect x="65.6666%" y="709" width="0.0996%" height="15" fill="rgb(231,110,28)" fg:x="146292" fg:w="222"/><text x="65.9166%" y="719.50"></text></g><g><title>__btrfs_read_lock_root_node (247 samples, 0.11%)</title><rect x="65.6558%" y="741" width="0.1109%" height="15" fill="rgb(216,71,40)" fg:x="146268" fg:w="247"/><text x="65.9058%" y="751.50"></text></g><g><title>__btrfs_tree_lock (34 samples, 0.02%)</title><rect x="65.7667%" y="741" width="0.0153%" height="15" fill="rgb(229,89,53)" fg:x="146515" fg:w="34"/><text x="66.0167%" y="751.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="65.7676%" y="725" width="0.0144%" height="15" fill="rgb(210,124,14)" fg:x="146517" fg:w="32"/><text x="66.0176%" y="735.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="65.7676%" y="709" width="0.0144%" height="15" fill="rgb(236,213,6)" fg:x="146517" fg:w="32"/><text x="66.0176%" y="719.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="65.7698%" y="693" width="0.0121%" height="15" fill="rgb(228,41,5)" fg:x="146522" fg:w="27"/><text x="66.0198%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.01%)</title><rect x="65.7698%" y="677" width="0.0121%" height="15" fill="rgb(221,167,25)" fg:x="146522" fg:w="27"/><text x="66.0198%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="65.7703%" y="661" width="0.0117%" height="15" fill="rgb(228,144,37)" fg:x="146523" fg:w="26"/><text x="66.0203%" y="671.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="65.7707%" y="645" width="0.0112%" height="15" fill="rgb(227,189,38)" fg:x="146524" fg:w="25"/><text x="66.0207%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (226 samples, 0.10%)</title><rect x="65.8053%" y="661" width="0.1014%" height="15" fill="rgb(218,8,2)" fg:x="146601" fg:w="226"/><text x="66.0553%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (220 samples, 0.10%)</title><rect x="65.8080%" y="645" width="0.0988%" height="15" fill="rgb(209,61,28)" fg:x="146607" fg:w="220"/><text x="66.0580%" y="655.50"></text></g><g><title>native_write_msr (219 samples, 0.10%)</title><rect x="65.8084%" y="629" width="0.0983%" height="15" fill="rgb(233,140,39)" fg:x="146608" fg:w="219"/><text x="66.0584%" y="639.50"></text></g><g><title>finish_task_switch (245 samples, 0.11%)</title><rect x="65.8026%" y="677" width="0.1100%" height="15" fill="rgb(251,66,48)" fg:x="146595" fg:w="245"/><text x="66.0526%" y="687.50"></text></g><g><title>__btrfs_tree_lock (300 samples, 0.13%)</title><rect x="65.7824%" y="725" width="0.1347%" height="15" fill="rgb(210,44,45)" fg:x="146550" fg:w="300"/><text x="66.0324%" y="735.50"></text></g><g><title>schedule (264 samples, 0.12%)</title><rect x="65.7985%" y="709" width="0.1185%" height="15" fill="rgb(214,136,46)" fg:x="146586" fg:w="264"/><text x="66.0485%" y="719.50"></text></g><g><title>__schedule (264 samples, 0.12%)</title><rect x="65.7985%" y="693" width="0.1185%" height="15" fill="rgb(207,130,50)" fg:x="146586" fg:w="264"/><text x="66.0485%" y="703.50"></text></g><g><title>btrfs_lock_root_node (303 samples, 0.14%)</title><rect x="65.7819%" y="741" width="0.1360%" height="15" fill="rgb(228,102,49)" fg:x="146549" fg:w="303"/><text x="66.0319%" y="751.50"></text></g><g><title>btrfs_search_slot (663 samples, 0.30%)</title><rect x="65.6527%" y="757" width="0.2976%" height="15" fill="rgb(253,55,1)" fg:x="146261" fg:w="663"/><text x="65.9027%" y="767.50"></text></g><g><title>btrfs_del_orphan_item (705 samples, 0.32%)</title><rect x="65.6352%" y="773" width="0.3165%" height="15" fill="rgb(238,222,9)" fg:x="146222" fg:w="705"/><text x="65.8852%" y="783.50"></text></g><g><title>_find_next_bit.constprop.0 (48 samples, 0.02%)</title><rect x="65.9709%" y="677" width="0.0215%" height="15" fill="rgb(246,99,6)" fg:x="146970" fg:w="48"/><text x="66.2209%" y="687.50"></text></g><g><title>__btrfs_add_free_space (59 samples, 0.03%)</title><rect x="65.9682%" y="709" width="0.0265%" height="15" fill="rgb(219,110,26)" fg:x="146964" fg:w="59"/><text x="66.2182%" y="719.50"></text></g><g><title>steal_from_bitmap.part.0 (58 samples, 0.03%)</title><rect x="65.9687%" y="693" width="0.0260%" height="15" fill="rgb(239,160,33)" fg:x="146965" fg:w="58"/><text x="66.2187%" y="703.50"></text></g><g><title>btrfs_free_tree_block (62 samples, 0.03%)</title><rect x="65.9682%" y="725" width="0.0278%" height="15" fill="rgb(220,202,23)" fg:x="146964" fg:w="62"/><text x="66.2182%" y="735.50"></text></g><g><title>btrfs_del_leaf (66 samples, 0.03%)</title><rect x="65.9682%" y="741" width="0.0296%" height="15" fill="rgb(208,80,26)" fg:x="146964" fg:w="66"/><text x="66.2182%" y="751.50"></text></g><g><title>btrfs_get_token_32 (30 samples, 0.01%)</title><rect x="65.9996%" y="741" width="0.0135%" height="15" fill="rgb(243,85,7)" fg:x="147034" fg:w="30"/><text x="66.2496%" y="751.50"></text></g><g><title>btrfs_set_token_32 (23 samples, 0.01%)</title><rect x="66.0136%" y="741" width="0.0103%" height="15" fill="rgb(228,77,47)" fg:x="147065" fg:w="23"/><text x="66.2636%" y="751.50"></text></g><g><title>btrfs_del_items (159 samples, 0.07%)</title><rect x="65.9646%" y="757" width="0.0714%" height="15" fill="rgb(212,226,8)" fg:x="146956" fg:w="159"/><text x="66.2146%" y="767.50"></text></g><g><title>__wake_up_common (38 samples, 0.02%)</title><rect x="66.0427%" y="709" width="0.0171%" height="15" fill="rgb(241,120,54)" fg:x="147130" fg:w="38"/><text x="66.2927%" y="719.50"></text></g><g><title>autoremove_wake_function (35 samples, 0.02%)</title><rect x="66.0441%" y="693" width="0.0157%" height="15" fill="rgb(226,80,16)" fg:x="147133" fg:w="35"/><text x="66.2941%" y="703.50"></text></g><g><title>try_to_wake_up (34 samples, 0.02%)</title><rect x="66.0445%" y="677" width="0.0153%" height="15" fill="rgb(240,76,13)" fg:x="147134" fg:w="34"/><text x="66.2945%" y="687.50"></text></g><g><title>__wake_up_common_lock (39 samples, 0.02%)</title><rect x="66.0427%" y="725" width="0.0175%" height="15" fill="rgb(252,74,8)" fg:x="147130" fg:w="39"/><text x="66.2927%" y="735.50"></text></g><g><title>btrfs_free_path (43 samples, 0.02%)</title><rect x="66.0418%" y="757" width="0.0193%" height="15" fill="rgb(244,155,2)" fg:x="147128" fg:w="43"/><text x="66.2918%" y="767.50"></text></g><g><title>btrfs_release_path (43 samples, 0.02%)</title><rect x="66.0418%" y="741" width="0.0193%" height="15" fill="rgb(215,81,35)" fg:x="147128" fg:w="43"/><text x="66.2918%" y="751.50"></text></g><g><title>btrfs_kill_delayed_inode_items (31 samples, 0.01%)</title><rect x="66.0629%" y="757" width="0.0139%" height="15" fill="rgb(206,55,2)" fg:x="147175" fg:w="31"/><text x="66.3129%" y="767.50"></text></g><g><title>__btrfs_kill_delayed_node (30 samples, 0.01%)</title><rect x="66.0634%" y="741" width="0.0135%" height="15" fill="rgb(231,2,34)" fg:x="147176" fg:w="30"/><text x="66.3134%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="66.0872%" y="661" width="0.0117%" height="15" fill="rgb(242,176,48)" fg:x="147229" fg:w="26"/><text x="66.3372%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="66.0881%" y="645" width="0.0108%" height="15" fill="rgb(249,31,36)" fg:x="147231" fg:w="24"/><text x="66.3381%" y="655.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="66.0881%" y="629" width="0.0108%" height="15" fill="rgb(205,18,17)" fg:x="147231" fg:w="24"/><text x="66.3381%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (39 samples, 0.02%)</title><rect x="66.0818%" y="725" width="0.0175%" height="15" fill="rgb(254,130,5)" fg:x="147217" fg:w="39"/><text x="66.3318%" y="735.50"></text></g><g><title>schedule (27 samples, 0.01%)</title><rect x="66.0872%" y="709" width="0.0121%" height="15" fill="rgb(229,42,45)" fg:x="147229" fg:w="27"/><text x="66.3372%" y="719.50"></text></g><g><title>__schedule (27 samples, 0.01%)</title><rect x="66.0872%" y="693" width="0.0121%" height="15" fill="rgb(245,95,25)" fg:x="147229" fg:w="27"/><text x="66.3372%" y="703.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="66.0872%" y="677" width="0.0121%" height="15" fill="rgb(249,193,38)" fg:x="147229" fg:w="27"/><text x="66.3372%" y="687.50"></text></g><g><title>__btrfs_read_lock_root_node (40 samples, 0.02%)</title><rect x="66.0818%" y="741" width="0.0180%" height="15" fill="rgb(241,140,43)" fg:x="147217" fg:w="40"/><text x="66.3318%" y="751.50"></text></g><g><title>__btrfs_tree_lock (30 samples, 0.01%)</title><rect x="66.0997%" y="741" width="0.0135%" height="15" fill="rgb(245,78,48)" fg:x="147257" fg:w="30"/><text x="66.3497%" y="751.50"></text></g><g><title>schedule (29 samples, 0.01%)</title><rect x="66.1002%" y="725" width="0.0130%" height="15" fill="rgb(214,92,39)" fg:x="147258" fg:w="29"/><text x="66.3502%" y="735.50"></text></g><g><title>__schedule (29 samples, 0.01%)</title><rect x="66.1002%" y="709" width="0.0130%" height="15" fill="rgb(211,189,14)" fg:x="147258" fg:w="29"/><text x="66.3502%" y="719.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="66.1006%" y="693" width="0.0126%" height="15" fill="rgb(218,7,24)" fg:x="147259" fg:w="28"/><text x="66.3506%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.01%)</title><rect x="66.1020%" y="677" width="0.0112%" height="15" fill="rgb(224,200,49)" fg:x="147262" fg:w="25"/><text x="66.3520%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="66.1024%" y="661" width="0.0108%" height="15" fill="rgb(218,210,14)" fg:x="147263" fg:w="24"/><text x="66.3524%" y="671.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="66.1024%" y="645" width="0.0108%" height="15" fill="rgb(234,142,31)" fg:x="147263" fg:w="24"/><text x="66.3524%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.03%)</title><rect x="66.1222%" y="661" width="0.0260%" height="15" fill="rgb(227,165,2)" fg:x="147307" fg:w="58"/><text x="66.3722%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.02%)</title><rect x="66.1235%" y="645" width="0.0247%" height="15" fill="rgb(232,44,46)" fg:x="147310" fg:w="55"/><text x="66.3735%" y="655.50"></text></g><g><title>native_write_msr (55 samples, 0.02%)</title><rect x="66.1235%" y="629" width="0.0247%" height="15" fill="rgb(236,149,47)" fg:x="147310" fg:w="55"/><text x="66.3735%" y="639.50"></text></g><g><title>finish_task_switch (60 samples, 0.03%)</title><rect x="66.1217%" y="677" width="0.0269%" height="15" fill="rgb(227,45,31)" fg:x="147306" fg:w="60"/><text x="66.3717%" y="687.50"></text></g><g><title>__btrfs_tree_lock (80 samples, 0.04%)</title><rect x="66.1141%" y="725" width="0.0359%" height="15" fill="rgb(240,176,51)" fg:x="147289" fg:w="80"/><text x="66.3641%" y="735.50"></text></g><g><title>schedule (66 samples, 0.03%)</title><rect x="66.1204%" y="709" width="0.0296%" height="15" fill="rgb(249,146,41)" fg:x="147303" fg:w="66"/><text x="66.3704%" y="719.50"></text></g><g><title>__schedule (66 samples, 0.03%)</title><rect x="66.1204%" y="693" width="0.0296%" height="15" fill="rgb(213,208,4)" fg:x="147303" fg:w="66"/><text x="66.3704%" y="703.50"></text></g><g><title>btrfs_lock_root_node (83 samples, 0.04%)</title><rect x="66.1141%" y="741" width="0.0373%" height="15" fill="rgb(245,84,36)" fg:x="147289" fg:w="83"/><text x="66.3641%" y="751.50"></text></g><g><title>btrfs_search_slot (209 samples, 0.09%)</title><rect x="66.0782%" y="757" width="0.0938%" height="15" fill="rgb(254,84,18)" fg:x="147209" fg:w="209"/><text x="66.3282%" y="767.50"></text></g><g><title>btrfs_truncate_inode_items (513 samples, 0.23%)</title><rect x="65.9521%" y="773" width="0.2303%" height="15" fill="rgb(225,38,54)" fg:x="146928" fg:w="513"/><text x="66.2021%" y="783.50"></text></g><g><title>evict_refill_and_join (37 samples, 0.02%)</title><rect x="66.1823%" y="773" width="0.0166%" height="15" fill="rgb(246,50,30)" fg:x="147441" fg:w="37"/><text x="66.4323%" y="783.50"></text></g><g><title>btrfs_evict_inode (1,595 samples, 0.72%)</title><rect x="65.4866%" y="789" width="0.7160%" height="15" fill="rgb(246,148,9)" fg:x="145891" fg:w="1595"/><text x="65.7366%" y="799.50"></text></g><g><title>evict (1,609 samples, 0.72%)</title><rect x="65.4830%" y="805" width="0.7222%" height="15" fill="rgb(223,75,4)" fg:x="145883" fg:w="1609"/><text x="65.7330%" y="815.50"></text></g><g><title>d_walk (69 samples, 0.03%)</title><rect x="66.2084%" y="789" width="0.0310%" height="15" fill="rgb(239,148,41)" fg:x="147499" fg:w="69"/><text x="66.4584%" y="799.50"></text></g><g><title>select_collect (46 samples, 0.02%)</title><rect x="66.2187%" y="773" width="0.0206%" height="15" fill="rgb(205,195,3)" fg:x="147522" fg:w="46"/><text x="66.4687%" y="783.50"></text></g><g><title>d_lru_del (43 samples, 0.02%)</title><rect x="66.2200%" y="757" width="0.0193%" height="15" fill="rgb(254,161,1)" fg:x="147525" fg:w="43"/><text x="66.4700%" y="767.50"></text></g><g><title>list_lru_del (42 samples, 0.02%)</title><rect x="66.2205%" y="741" width="0.0189%" height="15" fill="rgb(211,229,8)" fg:x="147526" fg:w="42"/><text x="66.4705%" y="751.50"></text></g><g><title>___d_drop (24 samples, 0.01%)</title><rect x="66.2411%" y="757" width="0.0108%" height="15" fill="rgb(220,97,9)" fg:x="147572" fg:w="24"/><text x="66.4911%" y="767.50"></text></g><g><title>__dentry_kill (56 samples, 0.03%)</title><rect x="66.2393%" y="773" width="0.0251%" height="15" fill="rgb(240,218,8)" fg:x="147568" fg:w="56"/><text x="66.4893%" y="783.50"></text></g><g><title>do_rmdir (2,486 samples, 1.12%)</title><rect x="65.1576%" y="837" width="1.1159%" height="15" fill="rgb(250,44,0)" fg:x="145158" fg:w="2486"/><text x="65.4076%" y="847.50"></text></g><g><title>vfs_rmdir.part.0 (2,437 samples, 1.09%)</title><rect x="65.1795%" y="821" width="1.0939%" height="15" fill="rgb(236,41,53)" fg:x="145207" fg:w="2437"/><text x="65.4295%" y="831.50"></text></g><g><title>shrink_dcache_parent (146 samples, 0.07%)</title><rect x="66.2079%" y="805" width="0.0655%" height="15" fill="rgb(218,227,13)" fg:x="147498" fg:w="146"/><text x="66.4579%" y="815.50"></text></g><g><title>shrink_dentry_list (76 samples, 0.03%)</title><rect x="66.2393%" y="789" width="0.0341%" height="15" fill="rgb(217,94,32)" fg:x="147568" fg:w="76"/><text x="66.4893%" y="799.50"></text></g><g><title>__lookup_hash (70 samples, 0.03%)</title><rect x="66.2784%" y="821" width="0.0314%" height="15" fill="rgb(213,217,12)" fg:x="147655" fg:w="70"/><text x="66.5284%" y="831.50"></text></g><g><title>lookup_dcache (69 samples, 0.03%)</title><rect x="66.2788%" y="805" width="0.0310%" height="15" fill="rgb(229,13,46)" fg:x="147656" fg:w="69"/><text x="66.5288%" y="815.50"></text></g><g><title>d_lookup (66 samples, 0.03%)</title><rect x="66.2802%" y="789" width="0.0296%" height="15" fill="rgb(243,139,5)" fg:x="147659" fg:w="66"/><text x="66.5302%" y="799.50"></text></g><g><title>__d_lookup (64 samples, 0.03%)</title><rect x="66.2811%" y="773" width="0.0287%" height="15" fill="rgb(249,38,45)" fg:x="147661" fg:w="64"/><text x="66.5311%" y="783.50"></text></g><g><title>dput (41 samples, 0.02%)</title><rect x="66.3121%" y="821" width="0.0184%" height="15" fill="rgb(216,70,11)" fg:x="147730" fg:w="41"/><text x="66.5621%" y="831.50"></text></g><g><title>btrfs_del_orphan_item (35 samples, 0.02%)</title><rect x="66.3385%" y="789" width="0.0157%" height="15" fill="rgb(253,101,25)" fg:x="147789" fg:w="35"/><text x="66.5885%" y="799.50"></text></g><g><title>btrfs_search_slot (34 samples, 0.02%)</title><rect x="66.3390%" y="773" width="0.0153%" height="15" fill="rgb(207,197,30)" fg:x="147790" fg:w="34"/><text x="66.5890%" y="783.50"></text></g><g><title>btrfs_truncate_inode_items (33 samples, 0.01%)</title><rect x="66.3543%" y="789" width="0.0148%" height="15" fill="rgb(238,87,13)" fg:x="147824" fg:w="33"/><text x="66.6043%" y="799.50"></text></g><g><title>btrfs_evict_inode (92 samples, 0.04%)</title><rect x="66.3309%" y="805" width="0.0413%" height="15" fill="rgb(215,155,8)" fg:x="147772" fg:w="92"/><text x="66.5809%" y="815.50"></text></g><g><title>evict (94 samples, 0.04%)</title><rect x="66.3305%" y="821" width="0.0422%" height="15" fill="rgb(239,166,38)" fg:x="147771" fg:w="94"/><text x="66.5805%" y="831.50"></text></g><g><title>__fget_light (25 samples, 0.01%)</title><rect x="66.4009%" y="773" width="0.0112%" height="15" fill="rgb(240,194,35)" fg:x="147928" fg:w="25"/><text x="66.6509%" y="783.50"></text></g><g><title>path_init (36 samples, 0.02%)</title><rect x="66.3978%" y="789" width="0.0162%" height="15" fill="rgb(219,10,44)" fg:x="147921" fg:w="36"/><text x="66.6478%" y="799.50"></text></g><g><title>filename_parentat (102 samples, 0.05%)</title><rect x="66.3727%" y="821" width="0.0458%" height="15" fill="rgb(251,220,35)" fg:x="147865" fg:w="102"/><text x="66.6227%" y="831.50"></text></g><g><title>path_parentat (86 samples, 0.04%)</title><rect x="66.3798%" y="805" width="0.0386%" height="15" fill="rgb(218,117,13)" fg:x="147881" fg:w="86"/><text x="66.6298%" y="815.50"></text></g><g><title>ihold (36 samples, 0.02%)</title><rect x="66.4184%" y="821" width="0.0162%" height="15" fill="rgb(221,213,40)" fg:x="147967" fg:w="36"/><text x="66.6684%" y="831.50"></text></g><g><title>security_path_unlink (33 samples, 0.01%)</title><rect x="66.4539%" y="821" width="0.0148%" height="15" fill="rgb(251,224,35)" fg:x="148046" fg:w="33"/><text x="66.7039%" y="831.50"></text></g><g><title>_raw_spin_lock (25 samples, 0.01%)</title><rect x="66.4934%" y="741" width="0.0112%" height="15" fill="rgb(241,33,39)" fg:x="148134" fg:w="25"/><text x="66.7434%" y="751.50"></text></g><g><title>btrfs_trans_release_metadata (31 samples, 0.01%)</title><rect x="66.4921%" y="773" width="0.0139%" height="15" fill="rgb(222,74,17)" fg:x="148131" fg:w="31"/><text x="66.7421%" y="783.50"></text></g><g><title>btrfs_block_rsv_release (30 samples, 0.01%)</title><rect x="66.4925%" y="757" width="0.0135%" height="15" fill="rgb(225,103,0)" fg:x="148132" fg:w="30"/><text x="66.7425%" y="767.50"></text></g><g><title>__btrfs_end_transaction (85 samples, 0.04%)</title><rect x="66.4759%" y="789" width="0.0382%" height="15" fill="rgb(240,0,12)" fg:x="148095" fg:w="85"/><text x="66.7259%" y="799.50"></text></g><g><title>btrfs_lookup_dir_index_item (86 samples, 0.04%)</title><rect x="66.5504%" y="757" width="0.0386%" height="15" fill="rgb(233,213,37)" fg:x="148261" fg:w="86"/><text x="66.8004%" y="767.50"></text></g><g><title>btrfs_search_slot (85 samples, 0.04%)</title><rect x="66.5509%" y="741" width="0.0382%" height="15" fill="rgb(225,84,52)" fg:x="148262" fg:w="85"/><text x="66.8009%" y="751.50"></text></g><g><title>__btrfs_read_lock_root_node (27 samples, 0.01%)</title><rect x="66.5984%" y="725" width="0.0121%" height="15" fill="rgb(247,160,51)" fg:x="148368" fg:w="27"/><text x="66.8484%" y="735.50"></text></g><g><title>btrfs_search_slot (108 samples, 0.05%)</title><rect x="66.5908%" y="741" width="0.0485%" height="15" fill="rgb(244,60,51)" fg:x="148351" fg:w="108"/><text x="66.8408%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (131 samples, 0.06%)</title><rect x="66.5890%" y="757" width="0.0588%" height="15" fill="rgb(233,114,7)" fg:x="148347" fg:w="131"/><text x="66.8390%" y="767.50"></text></g><g><title>btrfs_del_dir_entries_in_log (312 samples, 0.14%)</title><rect x="66.5329%" y="773" width="0.1400%" height="15" fill="rgb(246,136,16)" fg:x="148222" fg:w="312"/><text x="66.7829%" y="783.50"></text></g><g><title>btrfs_get_token_32 (211 samples, 0.09%)</title><rect x="66.7057%" y="741" width="0.0947%" height="15" fill="rgb(243,114,45)" fg:x="148607" fg:w="211"/><text x="66.9557%" y="751.50"></text></g><g><title>btrfs_set_token_32 (147 samples, 0.07%)</title><rect x="66.8058%" y="741" width="0.0660%" height="15" fill="rgb(247,183,43)" fg:x="148830" fg:w="147"/><text x="67.0558%" y="751.50"></text></g><g><title>memcpy_extent_buffer (25 samples, 0.01%)</title><rect x="66.8758%" y="741" width="0.0112%" height="15" fill="rgb(251,210,42)" fg:x="148986" fg:w="25"/><text x="67.1258%" y="751.50"></text></g><g><title>btrfs_del_items (658 samples, 0.30%)</title><rect x="66.6797%" y="757" width="0.2954%" height="15" fill="rgb(221,88,35)" fg:x="148549" fg:w="658"/><text x="66.9297%" y="767.50"></text></g><g><title>memmove_extent_buffer (196 samples, 0.09%)</title><rect x="66.8871%" y="741" width="0.0880%" height="15" fill="rgb(242,21,20)" fg:x="149011" fg:w="196"/><text x="67.1371%" y="751.50"></text></g><g><title>memmove (167 samples, 0.07%)</title><rect x="66.9001%" y="725" width="0.0750%" height="15" fill="rgb(233,226,36)" fg:x="149040" fg:w="167"/><text x="67.1501%" y="735.50"></text></g><g><title>btrfs_find_name_in_backref (38 samples, 0.02%)</title><rect x="66.9750%" y="757" width="0.0171%" height="15" fill="rgb(243,189,34)" fg:x="149207" fg:w="38"/><text x="67.2250%" y="767.50"></text></g><g><title>free_extent_buffer.part.0 (28 samples, 0.01%)</title><rect x="66.9966%" y="725" width="0.0126%" height="15" fill="rgb(207,145,50)" fg:x="149255" fg:w="28"/><text x="67.2466%" y="735.50"></text></g><g><title>btrfs_free_path (51 samples, 0.02%)</title><rect x="66.9921%" y="757" width="0.0229%" height="15" fill="rgb(242,1,50)" fg:x="149245" fg:w="51"/><text x="67.2421%" y="767.50"></text></g><g><title>btrfs_release_path (50 samples, 0.02%)</title><rect x="66.9925%" y="741" width="0.0224%" height="15" fill="rgb(231,65,32)" fg:x="149246" fg:w="50"/><text x="67.2425%" y="751.50"></text></g><g><title>queued_read_lock_slowpath (83 samples, 0.04%)</title><rect x="67.0437%" y="709" width="0.0373%" height="15" fill="rgb(208,68,49)" fg:x="149360" fg:w="83"/><text x="67.2937%" y="719.50"></text></g><g><title>native_queued_spin_lock_slowpath (51 samples, 0.02%)</title><rect x="67.0581%" y="693" width="0.0229%" height="15" fill="rgb(253,54,49)" fg:x="149392" fg:w="51"/><text x="67.3081%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="67.0819%" y="661" width="0.0117%" height="15" fill="rgb(245,186,24)" fg:x="149445" fg:w="26"/><text x="67.3319%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="67.0823%" y="645" width="0.0112%" height="15" fill="rgb(209,2,41)" fg:x="149446" fg:w="25"/><text x="67.3323%" y="655.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="67.0823%" y="629" width="0.0112%" height="15" fill="rgb(242,208,54)" fg:x="149446" fg:w="25"/><text x="67.3323%" y="639.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="67.0819%" y="677" width="0.0121%" height="15" fill="rgb(225,9,51)" fg:x="149445" fg:w="27"/><text x="67.3319%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (135 samples, 0.06%)</title><rect x="67.0352%" y="725" width="0.0606%" height="15" fill="rgb(207,207,25)" fg:x="149341" fg:w="135"/><text x="67.2852%" y="735.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="67.0810%" y="709" width="0.0148%" height="15" fill="rgb(253,96,18)" fg:x="149443" fg:w="33"/><text x="67.3310%" y="719.50"></text></g><g><title>__schedule (33 samples, 0.01%)</title><rect x="67.0810%" y="693" width="0.0148%" height="15" fill="rgb(252,215,20)" fg:x="149443" fg:w="33"/><text x="67.3310%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (144 samples, 0.06%)</title><rect x="67.0343%" y="741" width="0.0646%" height="15" fill="rgb(245,227,26)" fg:x="149339" fg:w="144"/><text x="67.2843%" y="751.50"></text></g><g><title>queued_write_lock_slowpath (120 samples, 0.05%)</title><rect x="67.1124%" y="709" width="0.0539%" height="15" fill="rgb(241,208,0)" fg:x="149513" fg:w="120"/><text x="67.3624%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (198 samples, 0.09%)</title><rect x="67.1761%" y="661" width="0.0889%" height="15" fill="rgb(224,130,10)" fg:x="149655" fg:w="198"/><text x="67.4261%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (193 samples, 0.09%)</title><rect x="67.1784%" y="645" width="0.0866%" height="15" fill="rgb(237,29,0)" fg:x="149660" fg:w="193"/><text x="67.4284%" y="655.50"></text></g><g><title>native_write_msr (191 samples, 0.09%)</title><rect x="67.1793%" y="629" width="0.0857%" height="15" fill="rgb(219,27,41)" fg:x="149662" fg:w="191"/><text x="67.4293%" y="639.50"></text></g><g><title>finish_task_switch (214 samples, 0.10%)</title><rect x="67.1730%" y="677" width="0.0961%" height="15" fill="rgb(245,101,19)" fg:x="149648" fg:w="214"/><text x="67.4230%" y="687.50"></text></g><g><title>__btrfs_tree_lock (378 samples, 0.17%)</title><rect x="67.1034%" y="725" width="0.1697%" height="15" fill="rgb(243,44,37)" fg:x="149493" fg:w="378"/><text x="67.3534%" y="735.50"></text></g><g><title>schedule (238 samples, 0.11%)</title><rect x="67.1663%" y="709" width="0.1068%" height="15" fill="rgb(228,213,43)" fg:x="149633" fg:w="238"/><text x="67.4163%" y="719.50"></text></g><g><title>__schedule (238 samples, 0.11%)</title><rect x="67.1663%" y="693" width="0.1068%" height="15" fill="rgb(219,163,21)" fg:x="149633" fg:w="238"/><text x="67.4163%" y="703.50"></text></g><g><title>btrfs_lock_root_node (385 samples, 0.17%)</title><rect x="67.1030%" y="741" width="0.1728%" height="15" fill="rgb(234,86,24)" fg:x="149492" fg:w="385"/><text x="67.3530%" y="751.50"></text></g><g><title>btrfs_try_tree_write_lock (74 samples, 0.03%)</title><rect x="67.2794%" y="741" width="0.0332%" height="15" fill="rgb(225,10,24)" fg:x="149885" fg:w="74"/><text x="67.5294%" y="751.50"></text></g><g><title>queued_write_lock_slowpath (66 samples, 0.03%)</title><rect x="67.2830%" y="725" width="0.0296%" height="15" fill="rgb(218,109,7)" fg:x="149893" fg:w="66"/><text x="67.5330%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (133 samples, 0.06%)</title><rect x="67.3148%" y="741" width="0.0597%" height="15" fill="rgb(210,20,26)" fg:x="149964" fg:w="133"/><text x="67.5648%" y="751.50"></text></g><g><title>__radix_tree_lookup (45 samples, 0.02%)</title><rect x="67.4073%" y="709" width="0.0202%" height="15" fill="rgb(216,18,1)" fg:x="150170" fg:w="45"/><text x="67.6573%" y="719.50"></text></g><g><title>find_extent_buffer (107 samples, 0.05%)</title><rect x="67.3965%" y="725" width="0.0480%" height="15" fill="rgb(206,163,23)" fg:x="150146" fg:w="107"/><text x="67.6465%" y="735.50"></text></g><g><title>mark_extent_buffer_accessed (37 samples, 0.02%)</title><rect x="67.4280%" y="709" width="0.0166%" height="15" fill="rgb(229,150,31)" fg:x="150216" fg:w="37"/><text x="67.6780%" y="719.50"></text></g><g><title>mark_page_accessed (24 samples, 0.01%)</title><rect x="67.4338%" y="693" width="0.0108%" height="15" fill="rgb(231,10,5)" fg:x="150229" fg:w="24"/><text x="67.6838%" y="703.50"></text></g><g><title>read_block_for_search.isra.0 (179 samples, 0.08%)</title><rect x="67.3745%" y="741" width="0.0803%" height="15" fill="rgb(250,40,50)" fg:x="150097" fg:w="179"/><text x="67.6245%" y="751.50"></text></g><g><title>read_extent_buffer (23 samples, 0.01%)</title><rect x="67.4446%" y="725" width="0.0103%" height="15" fill="rgb(217,119,7)" fg:x="150253" fg:w="23"/><text x="67.6946%" y="735.50"></text></g><g><title>btrfs_search_slot (993 samples, 0.45%)</title><rect x="67.0217%" y="757" width="0.4457%" height="15" fill="rgb(245,214,40)" fg:x="149311" fg:w="993"/><text x="67.2717%" y="767.50"></text></g><g><title>unlock_up (28 samples, 0.01%)</title><rect x="67.4549%" y="741" width="0.0126%" height="15" fill="rgb(216,187,1)" fg:x="150276" fg:w="28"/><text x="67.7049%" y="751.50"></text></g><g><title>kmem_cache_alloc (33 samples, 0.01%)</title><rect x="67.4746%" y="757" width="0.0148%" height="15" fill="rgb(237,146,21)" fg:x="150320" fg:w="33"/><text x="67.7246%" y="767.50"></text></g><g><title>btrfs_del_inode_ref (1,832 samples, 0.82%)</title><rect x="66.6730%" y="773" width="0.8223%" height="15" fill="rgb(210,174,47)" fg:x="148534" fg:w="1832"/><text x="66.9230%" y="783.50"></text></g><g><title>_find_next_bit.constprop.0 (80 samples, 0.04%)</title><rect x="67.5424%" y="693" width="0.0359%" height="15" fill="rgb(218,111,39)" fg:x="150471" fg:w="80"/><text x="67.7924%" y="703.50"></text></g><g><title>steal_from_bitmap.part.0 (98 samples, 0.04%)</title><rect x="67.5388%" y="709" width="0.0440%" height="15" fill="rgb(224,95,19)" fg:x="150463" fg:w="98"/><text x="67.7888%" y="719.50"></text></g><g><title>__btrfs_add_free_space (110 samples, 0.05%)</title><rect x="67.5357%" y="725" width="0.0494%" height="15" fill="rgb(234,15,38)" fg:x="150456" fg:w="110"/><text x="67.7857%" y="735.50"></text></g><g><title>btrfs_free_tree_block (120 samples, 0.05%)</title><rect x="67.5357%" y="741" width="0.0539%" height="15" fill="rgb(246,56,12)" fg:x="150456" fg:w="120"/><text x="67.7857%" y="751.50"></text></g><g><title>btrfs_del_leaf (123 samples, 0.06%)</title><rect x="67.5357%" y="757" width="0.0552%" height="15" fill="rgb(247,16,17)" fg:x="150456" fg:w="123"/><text x="67.7857%" y="767.50"></text></g><g><title>btrfs_get_token_32 (305 samples, 0.14%)</title><rect x="67.5958%" y="757" width="0.1369%" height="15" fill="rgb(215,151,11)" fg:x="150590" fg:w="305"/><text x="67.8458%" y="767.50"></text></g><g><title>check_setget_bounds.isra.0 (51 samples, 0.02%)</title><rect x="67.7098%" y="741" width="0.0229%" height="15" fill="rgb(225,16,24)" fg:x="150844" fg:w="51"/><text x="67.9598%" y="751.50"></text></g><g><title>btrfs_set_token_32 (238 samples, 0.11%)</title><rect x="67.7408%" y="757" width="0.1068%" height="15" fill="rgb(217,117,5)" fg:x="150913" fg:w="238"/><text x="67.9908%" y="767.50"></text></g><g><title>check_setget_bounds.isra.0 (33 samples, 0.01%)</title><rect x="67.8328%" y="741" width="0.0148%" height="15" fill="rgb(246,187,53)" fg:x="151118" fg:w="33"/><text x="68.0828%" y="751.50"></text></g><g><title>memcpy_extent_buffer (43 samples, 0.02%)</title><rect x="67.8539%" y="757" width="0.0193%" height="15" fill="rgb(241,71,40)" fg:x="151165" fg:w="43"/><text x="68.1039%" y="767.50"></text></g><g><title>memmove (30 samples, 0.01%)</title><rect x="67.8598%" y="741" width="0.0135%" height="15" fill="rgb(231,67,39)" fg:x="151178" fg:w="30"/><text x="68.1098%" y="751.50"></text></g><g><title>memmove_extent_buffer (152 samples, 0.07%)</title><rect x="67.8732%" y="757" width="0.0682%" height="15" fill="rgb(222,120,24)" fg:x="151208" fg:w="152"/><text x="68.1232%" y="767.50"></text></g><g><title>memmove (129 samples, 0.06%)</title><rect x="67.8836%" y="741" width="0.0579%" height="15" fill="rgb(248,3,3)" fg:x="151231" fg:w="129"/><text x="68.1336%" y="751.50"></text></g><g><title>btrfs_del_items (1,002 samples, 0.45%)</title><rect x="67.5038%" y="773" width="0.4498%" height="15" fill="rgb(228,218,5)" fg:x="150385" fg:w="1002"/><text x="67.7538%" y="783.50"></text></g><g><title>__btrfs_add_delayed_item (47 samples, 0.02%)</title><rect x="67.9545%" y="757" width="0.0211%" height="15" fill="rgb(212,202,43)" fg:x="151389" fg:w="47"/><text x="68.2045%" y="767.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (38 samples, 0.02%)</title><rect x="67.9756%" y="757" width="0.0171%" height="15" fill="rgb(235,183,2)" fg:x="151436" fg:w="38"/><text x="68.2256%" y="767.50"></text></g><g><title>mutex_spin_on_owner (37 samples, 0.02%)</title><rect x="67.9931%" y="741" width="0.0166%" height="15" fill="rgb(230,165,10)" fg:x="151475" fg:w="37"/><text x="68.2431%" y="751.50"></text></g><g><title>__mutex_lock.constprop.0 (45 samples, 0.02%)</title><rect x="67.9926%" y="757" width="0.0202%" height="15" fill="rgb(219,54,40)" fg:x="151474" fg:w="45"/><text x="68.2426%" y="767.50"></text></g><g><title>_raw_spin_lock (24 samples, 0.01%)</title><rect x="68.0187%" y="725" width="0.0108%" height="15" fill="rgb(244,73,9)" fg:x="151532" fg:w="24"/><text x="68.2687%" y="735.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (37 samples, 0.02%)</title><rect x="68.0133%" y="757" width="0.0166%" height="15" fill="rgb(212,32,45)" fg:x="151520" fg:w="37"/><text x="68.2633%" y="767.50"></text></g><g><title>btrfs_block_rsv_migrate (28 samples, 0.01%)</title><rect x="68.0173%" y="741" width="0.0126%" height="15" fill="rgb(205,58,31)" fg:x="151529" fg:w="28"/><text x="68.2673%" y="751.50"></text></g><g><title>btrfs_delete_delayed_dir_index (221 samples, 0.10%)</title><rect x="67.9536%" y="773" width="0.0992%" height="15" fill="rgb(250,120,43)" fg:x="151387" fg:w="221"/><text x="68.2036%" y="783.50"></text></g><g><title>btrfs_match_dir_item_name (58 samples, 0.03%)</title><rect x="68.0698%" y="757" width="0.0260%" height="15" fill="rgb(235,13,10)" fg:x="151646" fg:w="58"/><text x="68.3198%" y="767.50"></text></g><g><title>memcmp_extent_buffer (24 samples, 0.01%)</title><rect x="68.0851%" y="741" width="0.0108%" height="15" fill="rgb(232,219,31)" fg:x="151680" fg:w="24"/><text x="68.3351%" y="751.50"></text></g><g><title>queued_read_lock_slowpath (67 samples, 0.03%)</title><rect x="68.1237%" y="709" width="0.0301%" height="15" fill="rgb(218,157,51)" fg:x="151766" fg:w="67"/><text x="68.3737%" y="719.50"></text></g><g><title>native_queued_spin_lock_slowpath (42 samples, 0.02%)</title><rect x="68.1349%" y="693" width="0.0189%" height="15" fill="rgb(211,91,52)" fg:x="151791" fg:w="42"/><text x="68.3849%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (164 samples, 0.07%)</title><rect x="68.1583%" y="661" width="0.0736%" height="15" fill="rgb(240,173,1)" fg:x="151843" fg:w="164"/><text x="68.4083%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (154 samples, 0.07%)</title><rect x="68.1628%" y="645" width="0.0691%" height="15" fill="rgb(248,20,47)" fg:x="151853" fg:w="154"/><text x="68.4128%" y="655.50"></text></g><g><title>native_write_msr (152 samples, 0.07%)</title><rect x="68.1637%" y="629" width="0.0682%" height="15" fill="rgb(217,221,40)" fg:x="151855" fg:w="152"/><text x="68.4137%" y="639.50"></text></g><g><title>finish_task_switch (175 samples, 0.08%)</title><rect x="68.1560%" y="677" width="0.0786%" height="15" fill="rgb(226,149,51)" fg:x="151838" fg:w="175"/><text x="68.4060%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (275 samples, 0.12%)</title><rect x="68.1134%" y="725" width="0.1234%" height="15" fill="rgb(252,193,7)" fg:x="151743" fg:w="275"/><text x="68.3634%" y="735.50"></text></g><g><title>schedule (185 samples, 0.08%)</title><rect x="68.1538%" y="709" width="0.0830%" height="15" fill="rgb(205,123,0)" fg:x="151833" fg:w="185"/><text x="68.4038%" y="719.50"></text></g><g><title>__schedule (185 samples, 0.08%)</title><rect x="68.1538%" y="693" width="0.0830%" height="15" fill="rgb(233,173,25)" fg:x="151833" fg:w="185"/><text x="68.4038%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (300 samples, 0.13%)</title><rect x="68.1125%" y="741" width="0.1347%" height="15" fill="rgb(216,63,32)" fg:x="151741" fg:w="300"/><text x="68.3625%" y="751.50"></text></g><g><title>btrfs_root_node (23 samples, 0.01%)</title><rect x="68.2368%" y="725" width="0.0103%" height="15" fill="rgb(209,56,45)" fg:x="152018" fg:w="23"/><text x="68.4868%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (373 samples, 0.17%)</title><rect x="68.2665%" y="677" width="0.1674%" height="15" fill="rgb(226,111,49)" fg:x="152084" fg:w="373"/><text x="68.5165%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (366 samples, 0.16%)</title><rect x="68.2696%" y="661" width="0.1643%" height="15" fill="rgb(244,181,21)" fg:x="152091" fg:w="366"/><text x="68.5196%" y="671.50"></text></g><g><title>native_write_msr (364 samples, 0.16%)</title><rect x="68.2705%" y="645" width="0.1634%" height="15" fill="rgb(222,126,15)" fg:x="152093" fg:w="364"/><text x="68.5205%" y="655.50"></text></g><g><title>finish_task_switch (398 samples, 0.18%)</title><rect x="68.2615%" y="693" width="0.1787%" height="15" fill="rgb(222,95,17)" fg:x="152073" fg:w="398"/><text x="68.5115%" y="703.50"></text></g><g><title>__btrfs_tree_lock (443 samples, 0.20%)</title><rect x="68.2471%" y="741" width="0.1989%" height="15" fill="rgb(254,46,5)" fg:x="152041" fg:w="443"/><text x="68.4971%" y="751.50"></text></g><g><title>schedule (424 samples, 0.19%)</title><rect x="68.2557%" y="725" width="0.1903%" height="15" fill="rgb(236,216,35)" fg:x="152060" fg:w="424"/><text x="68.5057%" y="735.50"></text></g><g><title>__schedule (421 samples, 0.19%)</title><rect x="68.2570%" y="709" width="0.1890%" height="15" fill="rgb(217,187,26)" fg:x="152063" fg:w="421"/><text x="68.5070%" y="719.50"></text></g><g><title>queued_write_lock_slowpath (110 samples, 0.05%)</title><rect x="68.4613%" y="709" width="0.0494%" height="15" fill="rgb(207,192,25)" fg:x="152518" fg:w="110"/><text x="68.7113%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (339 samples, 0.15%)</title><rect x="68.5246%" y="661" width="0.1522%" height="15" fill="rgb(253,135,27)" fg:x="152659" fg:w="339"/><text x="68.7746%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (324 samples, 0.15%)</title><rect x="68.5313%" y="645" width="0.1454%" height="15" fill="rgb(211,122,29)" fg:x="152674" fg:w="324"/><text x="68.7813%" y="655.50"></text></g><g><title>native_write_msr (318 samples, 0.14%)</title><rect x="68.5340%" y="629" width="0.1427%" height="15" fill="rgb(233,162,40)" fg:x="152680" fg:w="318"/><text x="68.7840%" y="639.50"></text></g><g><title>finish_task_switch (365 samples, 0.16%)</title><rect x="68.5201%" y="677" width="0.1638%" height="15" fill="rgb(222,184,47)" fg:x="152649" fg:w="365"/><text x="68.7701%" y="687.50"></text></g><g><title>__btrfs_tree_lock (540 samples, 0.24%)</title><rect x="68.4482%" y="725" width="0.2424%" height="15" fill="rgb(249,99,23)" fg:x="152489" fg:w="540"/><text x="68.6982%" y="735.50"></text></g><g><title>schedule (401 samples, 0.18%)</title><rect x="68.5106%" y="709" width="0.1800%" height="15" fill="rgb(214,60,12)" fg:x="152628" fg:w="401"/><text x="68.7606%" y="719.50"></text></g><g><title>__schedule (400 samples, 0.18%)</title><rect x="68.5111%" y="693" width="0.1795%" height="15" fill="rgb(250,229,36)" fg:x="152629" fg:w="400"/><text x="68.7611%" y="703.50"></text></g><g><title>btrfs_lock_root_node (542 samples, 0.24%)</title><rect x="68.4482%" y="741" width="0.2433%" height="15" fill="rgb(232,195,10)" fg:x="152489" fg:w="542"/><text x="68.6982%" y="751.50"></text></g><g><title>btrfs_try_tree_write_lock (143 samples, 0.06%)</title><rect x="68.6947%" y="741" width="0.0642%" height="15" fill="rgb(205,213,31)" fg:x="153038" fg:w="143"/><text x="68.9447%" y="751.50"></text></g><g><title>queued_write_lock_slowpath (134 samples, 0.06%)</title><rect x="68.6987%" y="725" width="0.0601%" height="15" fill="rgb(237,43,8)" fg:x="153047" fg:w="134"/><text x="68.9487%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (95 samples, 0.04%)</title><rect x="68.7602%" y="741" width="0.0426%" height="15" fill="rgb(216,208,3)" fg:x="153184" fg:w="95"/><text x="69.0102%" y="751.50"></text></g><g><title>__radix_tree_lookup (55 samples, 0.02%)</title><rect x="68.8473%" y="709" width="0.0247%" height="15" fill="rgb(228,179,44)" fg:x="153378" fg:w="55"/><text x="69.0973%" y="719.50"></text></g><g><title>find_extent_buffer (129 samples, 0.06%)</title><rect x="68.8275%" y="725" width="0.0579%" height="15" fill="rgb(230,192,27)" fg:x="153334" fg:w="129"/><text x="69.0775%" y="735.50"></text></g><g><title>mark_extent_buffer_accessed (30 samples, 0.01%)</title><rect x="68.8720%" y="709" width="0.0135%" height="15" fill="rgb(251,30,38)" fg:x="153433" fg:w="30"/><text x="69.1220%" y="719.50"></text></g><g><title>mark_page_accessed (23 samples, 0.01%)</title><rect x="68.8751%" y="693" width="0.0103%" height="15" fill="rgb(246,55,52)" fg:x="153440" fg:w="23"/><text x="69.1251%" y="703.50"></text></g><g><title>read_block_for_search.isra.0 (196 samples, 0.09%)</title><rect x="68.8029%" y="741" width="0.0880%" height="15" fill="rgb(249,79,26)" fg:x="153279" fg:w="196"/><text x="69.0529%" y="751.50"></text></g><g><title>select_task_rq_fair (26 samples, 0.01%)</title><rect x="68.9101%" y="661" width="0.0117%" height="15" fill="rgb(220,202,16)" fg:x="153518" fg:w="26"/><text x="69.1601%" y="671.50"></text></g><g><title>enqueue_task_fair (24 samples, 0.01%)</title><rect x="68.9245%" y="645" width="0.0108%" height="15" fill="rgb(250,170,23)" fg:x="153550" fg:w="24"/><text x="69.1745%" y="655.50"></text></g><g><title>ttwu_do_activate (43 samples, 0.02%)</title><rect x="68.9232%" y="661" width="0.0193%" height="15" fill="rgb(230,7,37)" fg:x="153547" fg:w="43"/><text x="69.1732%" y="671.50"></text></g><g><title>__wake_up_common_lock (109 samples, 0.05%)</title><rect x="68.8967%" y="725" width="0.0489%" height="15" fill="rgb(213,71,1)" fg:x="153488" fg:w="109"/><text x="69.1467%" y="735.50"></text></g><g><title>__wake_up_common (108 samples, 0.05%)</title><rect x="68.8971%" y="709" width="0.0485%" height="15" fill="rgb(227,87,39)" fg:x="153489" fg:w="108"/><text x="69.1471%" y="719.50"></text></g><g><title>autoremove_wake_function (108 samples, 0.05%)</title><rect x="68.8971%" y="693" width="0.0485%" height="15" fill="rgb(210,41,29)" fg:x="153489" fg:w="108"/><text x="69.1471%" y="703.50"></text></g><g><title>try_to_wake_up (105 samples, 0.05%)</title><rect x="68.8985%" y="677" width="0.0471%" height="15" fill="rgb(206,191,31)" fg:x="153492" fg:w="105"/><text x="69.1485%" y="687.50"></text></g><g><title>btrfs_search_slot (1,899 samples, 0.85%)</title><rect x="68.0959%" y="757" width="0.8524%" height="15" fill="rgb(247,75,54)" fg:x="151704" fg:w="1899"/><text x="68.3459%" y="767.50"></text></g><g><title>unlock_up (128 samples, 0.06%)</title><rect x="68.8908%" y="741" width="0.0575%" height="15" fill="rgb(208,54,50)" fg:x="153475" fg:w="128"/><text x="69.1408%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (1,979 samples, 0.89%)</title><rect x="68.0654%" y="773" width="0.8883%" height="15" fill="rgb(214,90,37)" fg:x="151636" fg:w="1979"/><text x="68.3154%" y="783.50"></text></g><g><title>free_extent_buffer.part.0 (26 samples, 0.01%)</title><rect x="68.9586%" y="757" width="0.0117%" height="15" fill="rgb(220,132,6)" fg:x="153626" fg:w="26"/><text x="69.2086%" y="767.50"></text></g><g><title>btrfs_release_path (47 samples, 0.02%)</title><rect x="68.9537%" y="773" width="0.0211%" height="15" fill="rgb(213,167,7)" fg:x="153615" fg:w="47"/><text x="69.2037%" y="783.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (32 samples, 0.01%)</title><rect x="68.9779%" y="741" width="0.0144%" height="15" fill="rgb(243,36,27)" fg:x="153669" fg:w="32"/><text x="69.2279%" y="751.50"></text></g><g><title>btrfs_delayed_update_inode (74 samples, 0.03%)</title><rect x="68.9775%" y="757" width="0.0332%" height="15" fill="rgb(235,147,12)" fg:x="153668" fg:w="74"/><text x="69.2275%" y="767.50"></text></g><g><title>btrfs_update_inode (93 samples, 0.04%)</title><rect x="68.9748%" y="773" width="0.0417%" height="15" fill="rgb(212,198,44)" fg:x="153662" fg:w="93"/><text x="69.2248%" y="783.50"></text></g><g><title>kmem_cache_alloc (23 samples, 0.01%)</title><rect x="69.0170%" y="773" width="0.0103%" height="15" fill="rgb(218,68,50)" fg:x="153756" fg:w="23"/><text x="69.2670%" y="783.50"></text></g><g><title>__btrfs_unlink_inode (5,618 samples, 2.52%)</title><rect x="66.5140%" y="789" width="2.5218%" height="15" fill="rgb(224,79,48)" fg:x="148180" fg:w="5618"/><text x="66.7640%" y="799.50">__..</text></g><g><title>__queue_work (47 samples, 0.02%)</title><rect x="69.0466%" y="757" width="0.0211%" height="15" fill="rgb(213,191,50)" fg:x="153822" fg:w="47"/><text x="69.2966%" y="767.50"></text></g><g><title>try_to_wake_up (33 samples, 0.01%)</title><rect x="69.0529%" y="741" width="0.0148%" height="15" fill="rgb(254,146,10)" fg:x="153836" fg:w="33"/><text x="69.3029%" y="751.50"></text></g><g><title>btrfs_btree_balance_dirty (72 samples, 0.03%)</title><rect x="69.0358%" y="789" width="0.0323%" height="15" fill="rgb(215,175,11)" fg:x="153798" fg:w="72"/><text x="69.2858%" y="799.50"></text></g><g><title>queue_work_on (49 samples, 0.02%)</title><rect x="69.0461%" y="773" width="0.0220%" height="15" fill="rgb(207,49,7)" fg:x="153821" fg:w="49"/><text x="69.2961%" y="783.50"></text></g><g><title>mutex_lock (28 samples, 0.01%)</title><rect x="69.0740%" y="773" width="0.0126%" height="15" fill="rgb(234,144,29)" fg:x="153883" fg:w="28"/><text x="69.3240%" y="783.50"></text></g><g><title>btrfs_record_unlink_dir (41 samples, 0.02%)</title><rect x="69.0717%" y="789" width="0.0184%" height="15" fill="rgb(213,222,48)" fg:x="153878" fg:w="41"/><text x="69.3217%" y="799.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (24 samples, 0.01%)</title><rect x="69.1000%" y="757" width="0.0108%" height="15" fill="rgb(222,8,6)" fg:x="153941" fg:w="24"/><text x="69.3500%" y="767.50"></text></g><g><title>btrfs_get_or_create_delayed_node (33 samples, 0.01%)</title><rect x="69.1148%" y="757" width="0.0148%" height="15" fill="rgb(221,114,49)" fg:x="153974" fg:w="33"/><text x="69.3648%" y="767.50"></text></g><g><title>btrfs_get_delayed_node (32 samples, 0.01%)</title><rect x="69.1153%" y="741" width="0.0144%" height="15" fill="rgb(250,140,42)" fg:x="153975" fg:w="32"/><text x="69.3653%" y="751.50"></text></g><g><title>btrfs_delayed_update_inode (110 samples, 0.05%)</title><rect x="69.0924%" y="773" width="0.0494%" height="15" fill="rgb(250,150,27)" fg:x="153924" fg:w="110"/><text x="69.3424%" y="783.50"></text></g><g><title>btrfs_update_inode (123 samples, 0.06%)</title><rect x="69.0901%" y="789" width="0.0552%" height="15" fill="rgb(252,159,3)" fg:x="153919" fg:w="123"/><text x="69.3401%" y="799.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (40 samples, 0.02%)</title><rect x="69.1669%" y="725" width="0.0180%" height="15" fill="rgb(241,182,3)" fg:x="154090" fg:w="40"/><text x="69.4169%" y="735.50"></text></g><g><title>btrfs_block_rsv_add (95 samples, 0.04%)</title><rect x="69.1539%" y="773" width="0.0426%" height="15" fill="rgb(236,3,9)" fg:x="154061" fg:w="95"/><text x="69.4039%" y="783.50"></text></g><g><title>btrfs_reserve_metadata_bytes (88 samples, 0.04%)</title><rect x="69.1570%" y="757" width="0.0395%" height="15" fill="rgb(223,227,51)" fg:x="154068" fg:w="88"/><text x="69.4070%" y="767.50"></text></g><g><title>__reserve_bytes (84 samples, 0.04%)</title><rect x="69.1588%" y="741" width="0.0377%" height="15" fill="rgb(232,133,30)" fg:x="154072" fg:w="84"/><text x="69.4088%" y="751.50"></text></g><g><title>calc_available_free_space.isra.0 (26 samples, 0.01%)</title><rect x="69.1848%" y="725" width="0.0117%" height="15" fill="rgb(209,93,27)" fg:x="154130" fg:w="26"/><text x="69.4348%" y="735.50"></text></g><g><title>btrfs_unlink (6,118 samples, 2.75%)</title><rect x="66.4737%" y="805" width="2.7462%" height="15" fill="rgb(208,108,34)" fg:x="148090" fg:w="6118"/><text x="66.7237%" y="815.50">bt..</text></g><g><title>start_transaction (165 samples, 0.07%)</title><rect x="69.1458%" y="789" width="0.0741%" height="15" fill="rgb(215,189,13)" fg:x="154043" fg:w="165"/><text x="69.3958%" y="799.50"></text></g><g><title>down_write (23 samples, 0.01%)</title><rect x="69.2257%" y="805" width="0.0103%" height="15" fill="rgb(206,88,23)" fg:x="154221" fg:w="23"/><text x="69.4757%" y="815.50"></text></g><g><title>fsnotify (29 samples, 0.01%)</title><rect x="69.2360%" y="805" width="0.0130%" height="15" fill="rgb(240,173,0)" fg:x="154244" fg:w="29"/><text x="69.4860%" y="815.50"></text></g><g><title>rwsem_down_write_slowpath (28 samples, 0.01%)</title><rect x="69.2656%" y="805" width="0.0126%" height="15" fill="rgb(223,106,52)" fg:x="154310" fg:w="28"/><text x="69.5156%" y="815.50"></text></g><g><title>do_unlinkat (6,700 samples, 3.01%)</title><rect x="66.2735%" y="837" width="3.0075%" height="15" fill="rgb(206,130,16)" fg:x="147644" fg:w="6700"/><text x="66.5235%" y="847.50">do_..</text></g><g><title>vfs_unlink (6,260 samples, 2.81%)</title><rect x="66.4710%" y="821" width="2.8099%" height="15" fill="rgb(220,54,25)" fg:x="148084" fg:w="6260"/><text x="66.7210%" y="831.50">vf..</text></g><g><title>do_syscall_64 (9,323 samples, 4.18%)</title><rect x="65.0983%" y="853" width="4.1848%" height="15" fill="rgb(210,4,38)" fg:x="145026" fg:w="9323"/><text x="65.3483%" y="863.50">do_sy..</text></g><g><title>entry_SYSCALL_64_after_hwframe (9,346 samples, 4.20%)</title><rect x="65.0952%" y="869" width="4.1952%" height="15" fill="rgb(238,94,39)" fg:x="145019" fg:w="9346"/><text x="65.3452%" y="879.50">entry..</text></g><g><title>__GI_unlinkat (9,400 samples, 4.22%)</title><rect x="65.0777%" y="885" width="4.2194%" height="15" fill="rgb(234,124,34)" fg:x="144980" fg:w="9400"/><text x="65.3277%" y="895.50">__GI_..</text></g><g><title>__GI___libc_malloc (30 samples, 0.01%)</title><rect x="69.3285%" y="853" width="0.0135%" height="15" fill="rgb(221,91,40)" fg:x="154450" fg:w="30"/><text x="69.5785%" y="863.50"></text></g><g><title>__fdopendir (60 samples, 0.03%)</title><rect x="69.3155%" y="885" width="0.0269%" height="15" fill="rgb(246,53,28)" fg:x="154421" fg:w="60"/><text x="69.5655%" y="895.50"></text></g><g><title>__alloc_dir (35 samples, 0.02%)</title><rect x="69.3267%" y="869" width="0.0157%" height="15" fill="rgb(229,109,7)" fg:x="154446" fg:w="35"/><text x="69.5767%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.01%)</title><rect x="69.3478%" y="613" width="0.0126%" height="15" fill="rgb(249,117,8)" fg:x="154493" fg:w="28"/><text x="69.5978%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="69.3496%" y="597" width="0.0108%" height="15" fill="rgb(210,181,1)" fg:x="154497" fg:w="24"/><text x="69.5996%" y="607.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="69.3496%" y="581" width="0.0108%" height="15" fill="rgb(211,66,1)" fg:x="154497" fg:w="24"/><text x="69.5996%" y="591.50"></text></g><g><title>__btrfs_tree_lock (29 samples, 0.01%)</title><rect x="69.3478%" y="677" width="0.0130%" height="15" fill="rgb(221,90,14)" fg:x="154493" fg:w="29"/><text x="69.5978%" y="687.50"></text></g><g><title>schedule (29 samples, 0.01%)</title><rect x="69.3478%" y="661" width="0.0130%" height="15" fill="rgb(219,222,44)" fg:x="154493" fg:w="29"/><text x="69.5978%" y="671.50"></text></g><g><title>__schedule (29 samples, 0.01%)</title><rect x="69.3478%" y="645" width="0.0130%" height="15" fill="rgb(246,34,33)" fg:x="154493" fg:w="29"/><text x="69.5978%" y="655.50"></text></g><g><title>finish_task_switch (29 samples, 0.01%)</title><rect x="69.3478%" y="629" width="0.0130%" height="15" fill="rgb(227,135,41)" fg:x="154493" fg:w="29"/><text x="69.5978%" y="639.50"></text></g><g><title>btrfs_search_slot (42 samples, 0.02%)</title><rect x="69.3469%" y="693" width="0.0189%" height="15" fill="rgb(226,15,14)" fg:x="154491" fg:w="42"/><text x="69.5969%" y="703.50"></text></g><g><title>btrfs_insert_dir_item (45 samples, 0.02%)</title><rect x="69.3464%" y="741" width="0.0202%" height="15" fill="rgb(236,148,47)" fg:x="154490" fg:w="45"/><text x="69.5964%" y="751.50"></text></g><g><title>insert_with_overflow (44 samples, 0.02%)</title><rect x="69.3469%" y="725" width="0.0198%" height="15" fill="rgb(233,162,52)" fg:x="154491" fg:w="44"/><text x="69.5969%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (44 samples, 0.02%)</title><rect x="69.3469%" y="709" width="0.0198%" height="15" fill="rgb(244,35,28)" fg:x="154491" fg:w="44"/><text x="69.5969%" y="719.50"></text></g><g><title>btrfs_add_link (46 samples, 0.02%)</title><rect x="69.3464%" y="757" width="0.0206%" height="15" fill="rgb(205,121,10)" fg:x="154490" fg:w="46"/><text x="69.5964%" y="767.50"></text></g><g><title>btrfs_search_slot (24 samples, 0.01%)</title><rect x="69.3680%" y="725" width="0.0108%" height="15" fill="rgb(250,58,18)" fg:x="154538" fg:w="24"/><text x="69.6180%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (25 samples, 0.01%)</title><rect x="69.3680%" y="741" width="0.0112%" height="15" fill="rgb(216,37,13)" fg:x="154538" fg:w="25"/><text x="69.6180%" y="751.50"></text></g><g><title>btrfs_new_inode (31 samples, 0.01%)</title><rect x="69.3680%" y="757" width="0.0139%" height="15" fill="rgb(221,215,42)" fg:x="154538" fg:w="31"/><text x="69.6180%" y="767.50"></text></g><g><title>btrfs_create (84 samples, 0.04%)</title><rect x="69.3460%" y="773" width="0.0377%" height="15" fill="rgb(217,214,19)" fg:x="154489" fg:w="84"/><text x="69.5960%" y="783.50"></text></g><g><title>do_filp_open (92 samples, 0.04%)</title><rect x="69.3437%" y="805" width="0.0413%" height="15" fill="rgb(233,139,13)" fg:x="154484" fg:w="92"/><text x="69.5937%" y="815.50"></text></g><g><title>path_openat (92 samples, 0.04%)</title><rect x="69.3437%" y="789" width="0.0413%" height="15" fill="rgb(247,168,23)" fg:x="154484" fg:w="92"/><text x="69.5937%" y="799.50"></text></g><g><title>do_syscall_64 (97 samples, 0.04%)</title><rect x="69.3424%" y="853" width="0.0435%" height="15" fill="rgb(207,202,1)" fg:x="154481" fg:w="97"/><text x="69.5924%" y="863.50"></text></g><g><title>__x64_sys_openat (96 samples, 0.04%)</title><rect x="69.3428%" y="837" width="0.0431%" height="15" fill="rgb(220,155,48)" fg:x="154482" fg:w="96"/><text x="69.5928%" y="847.50"></text></g><g><title>do_sys_openat2 (96 samples, 0.04%)</title><rect x="69.3428%" y="821" width="0.0431%" height="15" fill="rgb(250,43,26)" fg:x="154482" fg:w="96"/><text x="69.5928%" y="831.50"></text></g><g><title>__libc_open64 (98 samples, 0.04%)</title><rect x="69.3424%" y="885" width="0.0440%" height="15" fill="rgb(212,190,23)" fg:x="154481" fg:w="98"/><text x="69.5924%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (98 samples, 0.04%)</title><rect x="69.3424%" y="869" width="0.0440%" height="15" fill="rgb(216,39,24)" fg:x="154481" fg:w="98"/><text x="69.5924%" y="879.50"></text></g><g><title>alloc_empty_file (28 samples, 0.01%)</title><rect x="69.3972%" y="773" width="0.0126%" height="15" fill="rgb(252,113,16)" fg:x="154603" fg:w="28"/><text x="69.6472%" y="783.50"></text></g><g><title>__alloc_file (27 samples, 0.01%)</title><rect x="69.3976%" y="757" width="0.0121%" height="15" fill="rgb(208,113,19)" fg:x="154604" fg:w="27"/><text x="69.6476%" y="767.50"></text></g><g><title>do_dentry_open (30 samples, 0.01%)</title><rect x="69.4111%" y="773" width="0.0135%" height="15" fill="rgb(234,107,25)" fg:x="154634" fg:w="30"/><text x="69.6611%" y="783.50"></text></g><g><title>do_filp_open (91 samples, 0.04%)</title><rect x="69.3922%" y="805" width="0.0408%" height="15" fill="rgb(234,217,51)" fg:x="154592" fg:w="91"/><text x="69.6422%" y="815.50"></text></g><g><title>path_openat (89 samples, 0.04%)</title><rect x="69.3931%" y="789" width="0.0399%" height="15" fill="rgb(251,29,42)" fg:x="154594" fg:w="89"/><text x="69.6431%" y="799.50"></text></g><g><title>__x64_sys_openat (119 samples, 0.05%)</title><rect x="69.3886%" y="837" width="0.0534%" height="15" fill="rgb(221,62,51)" fg:x="154584" fg:w="119"/><text x="69.6386%" y="847.50"></text></g><g><title>do_sys_openat2 (119 samples, 0.05%)</title><rect x="69.3886%" y="821" width="0.0534%" height="15" fill="rgb(240,192,43)" fg:x="154584" fg:w="119"/><text x="69.6386%" y="831.50"></text></g><g><title>__libc_openat64 (125 samples, 0.06%)</title><rect x="69.3864%" y="885" width="0.0561%" height="15" fill="rgb(224,157,47)" fg:x="154579" fg:w="125"/><text x="69.6364%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (121 samples, 0.05%)</title><rect x="69.3882%" y="869" width="0.0543%" height="15" fill="rgb(226,84,45)" fg:x="154583" fg:w="121"/><text x="69.6382%" y="879.50"></text></g><g><title>do_syscall_64 (121 samples, 0.05%)</title><rect x="69.3882%" y="853" width="0.0543%" height="15" fill="rgb(208,207,23)" fg:x="154583" fg:w="121"/><text x="69.6382%" y="863.50"></text></g><g><title>new_sync_write (26 samples, 0.01%)</title><rect x="69.4438%" y="789" width="0.0117%" height="15" fill="rgb(253,34,51)" fg:x="154707" fg:w="26"/><text x="69.6938%" y="799.50"></text></g><g><title>btrfs_file_write_iter (26 samples, 0.01%)</title><rect x="69.4438%" y="773" width="0.0117%" height="15" fill="rgb(227,26,34)" fg:x="154707" fg:w="26"/><text x="69.6938%" y="783.50"></text></g><g><title>__libc_write (30 samples, 0.01%)</title><rect x="69.4425%" y="885" width="0.0135%" height="15" fill="rgb(245,75,19)" fg:x="154704" fg:w="30"/><text x="69.6925%" y="895.50"></text></g><g><title>__libc_write (30 samples, 0.01%)</title><rect x="69.4425%" y="869" width="0.0135%" height="15" fill="rgb(250,191,31)" fg:x="154704" fg:w="30"/><text x="69.6925%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.01%)</title><rect x="69.4429%" y="853" width="0.0130%" height="15" fill="rgb(224,11,50)" fg:x="154705" fg:w="29"/><text x="69.6929%" y="863.50"></text></g><g><title>do_syscall_64 (29 samples, 0.01%)</title><rect x="69.4429%" y="837" width="0.0130%" height="15" fill="rgb(231,171,7)" fg:x="154705" fg:w="29"/><text x="69.6929%" y="847.50"></text></g><g><title>ksys_write (29 samples, 0.01%)</title><rect x="69.4429%" y="821" width="0.0130%" height="15" fill="rgb(252,214,10)" fg:x="154705" fg:w="29"/><text x="69.6929%" y="831.50"></text></g><g><title>vfs_write (28 samples, 0.01%)</title><rect x="69.4434%" y="805" width="0.0126%" height="15" fill="rgb(249,45,46)" fg:x="154706" fg:w="28"/><text x="69.6934%" y="815.50"></text></g><g><title>_int_free (46 samples, 0.02%)</title><rect x="69.4685%" y="885" width="0.0206%" height="15" fill="rgb(240,173,7)" fg:x="154762" fg:w="46"/><text x="69.7185%" y="895.50"></text></g><g><title>Monitor::lock_without_safepoint_check (24 samples, 0.01%)</title><rect x="69.5062%" y="821" width="0.0108%" height="15" fill="rgb(235,214,13)" fg:x="154846" fg:w="24"/><text x="69.7562%" y="831.50"></text></g><g><title>Monitor::ILock (24 samples, 0.01%)</title><rect x="69.5062%" y="805" width="0.0108%" height="15" fill="rgb(245,156,8)" fg:x="154846" fg:w="24"/><text x="69.7562%" y="815.50"></text></g><g><title>os::PlatformEvent::park (24 samples, 0.01%)</title><rect x="69.5062%" y="789" width="0.0108%" height="15" fill="rgb(235,46,12)" fg:x="154846" fg:w="24"/><text x="69.7562%" y="799.50"></text></g><g><title>__pthread_cond_wait (24 samples, 0.01%)</title><rect x="69.5062%" y="773" width="0.0108%" height="15" fill="rgb(221,81,14)" fg:x="154846" fg:w="24"/><text x="69.7562%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.01%)</title><rect x="69.5062%" y="757" width="0.0108%" height="15" fill="rgb(238,207,9)" fg:x="154846" fg:w="24"/><text x="69.7562%" y="767.50"></text></g><g><title>futex_wait_cancelable (24 samples, 0.01%)</title><rect x="69.5062%" y="741" width="0.0108%" height="15" fill="rgb(224,129,35)" fg:x="154846" fg:w="24"/><text x="69.7562%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="69.5067%" y="725" width="0.0103%" height="15" fill="rgb(243,218,34)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="735.50"></text></g><g><title>do_syscall_64 (23 samples, 0.01%)</title><rect x="69.5067%" y="709" width="0.0103%" height="15" fill="rgb(220,166,13)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="719.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.01%)</title><rect x="69.5067%" y="693" width="0.0103%" height="15" fill="rgb(227,167,49)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="703.50"></text></g><g><title>do_futex (23 samples, 0.01%)</title><rect x="69.5067%" y="677" width="0.0103%" height="15" fill="rgb(234,142,12)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="687.50"></text></g><g><title>futex_wait (23 samples, 0.01%)</title><rect x="69.5067%" y="661" width="0.0103%" height="15" fill="rgb(207,100,48)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="671.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.01%)</title><rect x="69.5067%" y="645" width="0.0103%" height="15" fill="rgb(210,25,14)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="655.50"></text></g><g><title>schedule (23 samples, 0.01%)</title><rect x="69.5067%" y="629" width="0.0103%" height="15" fill="rgb(246,116,27)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="639.50"></text></g><g><title>__schedule (23 samples, 0.01%)</title><rect x="69.5067%" y="613" width="0.0103%" height="15" fill="rgb(214,193,42)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="623.50"></text></g><g><title>jni_ExceptionOccurred (58 samples, 0.03%)</title><rect x="69.4955%" y="885" width="0.0260%" height="15" fill="rgb(214,122,8)" fg:x="154822" fg:w="58"/><text x="69.7455%" y="895.50"></text></g><g><title>ThreadStateTransition::transition_from_native (39 samples, 0.02%)</title><rect x="69.5040%" y="869" width="0.0175%" height="15" fill="rgb(244,173,18)" fg:x="154841" fg:w="39"/><text x="69.7540%" y="879.50"></text></g><g><title>JavaThread::check_safepoint_and_suspend_for_native_trans (34 samples, 0.02%)</title><rect x="69.5062%" y="853" width="0.0153%" height="15" fill="rgb(232,68,19)" fg:x="154846" fg:w="34"/><text x="69.7562%" y="863.50"></text></g><g><title>SafepointSynchronize::block (34 samples, 0.02%)</title><rect x="69.5062%" y="837" width="0.0153%" height="15" fill="rgb(236,224,1)" fg:x="154846" fg:w="34"/><text x="69.7562%" y="847.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (39 samples, 0.02%)</title><rect x="69.5386%" y="869" width="0.0175%" height="15" fill="rgb(240,11,8)" fg:x="154918" fg:w="39"/><text x="69.7886%" y="879.50"></text></g><g><title>ThreadStateTransition::transition_from_native (41 samples, 0.02%)</title><rect x="69.5561%" y="869" width="0.0184%" height="15" fill="rgb(244,159,20)" fg:x="154957" fg:w="41"/><text x="69.8061%" y="879.50"></text></g><g><title>[libc-2.31.so] (30 samples, 0.01%)</title><rect x="69.5745%" y="869" width="0.0135%" height="15" fill="rgb(240,223,54)" fg:x="154998" fg:w="30"/><text x="69.8245%" y="879.50"></text></g><g><title>check_bounds (23 samples, 0.01%)</title><rect x="69.5888%" y="869" width="0.0103%" height="15" fill="rgb(237,146,5)" fg:x="155030" fg:w="23"/><text x="69.8388%" y="879.50"></text></g><g><title>jni_GetByteArrayRegion (189 samples, 0.08%)</title><rect x="69.5228%" y="885" width="0.0848%" height="15" fill="rgb(218,221,32)" fg:x="154883" fg:w="189"/><text x="69.7728%" y="895.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (73 samples, 0.03%)</title><rect x="69.6243%" y="869" width="0.0328%" height="15" fill="rgb(244,96,26)" fg:x="155109" fg:w="73"/><text x="69.8743%" y="879.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (64 samples, 0.03%)</title><rect x="69.6283%" y="853" width="0.0287%" height="15" fill="rgb(245,184,37)" fg:x="155118" fg:w="64"/><text x="69.8783%" y="863.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (59 samples, 0.03%)</title><rect x="69.6306%" y="837" width="0.0265%" height="15" fill="rgb(248,91,47)" fg:x="155123" fg:w="59"/><text x="69.8806%" y="847.50"></text></g><g><title>HandleMark::pop_and_restore (28 samples, 0.01%)</title><rect x="69.6571%" y="869" width="0.0126%" height="15" fill="rgb(243,199,8)" fg:x="155182" fg:w="28"/><text x="69.9071%" y="879.50"></text></g><g><title>JNIHandles::make_local (30 samples, 0.01%)</title><rect x="69.6696%" y="869" width="0.0135%" height="15" fill="rgb(249,12,15)" fg:x="155210" fg:w="30"/><text x="69.9196%" y="879.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (32 samples, 0.01%)</title><rect x="69.6835%" y="869" width="0.0144%" height="15" fill="rgb(245,97,12)" fg:x="155241" fg:w="32"/><text x="69.9335%" y="879.50"></text></g><g><title>jni_GetObjectField (244 samples, 0.11%)</title><rect x="69.6081%" y="885" width="0.1095%" height="15" fill="rgb(244,61,1)" fg:x="155073" fg:w="244"/><text x="69.8581%" y="895.50"></text></g><g><title>ThreadStateTransition::transition_from_native (44 samples, 0.02%)</title><rect x="69.6979%" y="869" width="0.0198%" height="15" fill="rgb(222,194,10)" fg:x="155273" fg:w="44"/><text x="69.9479%" y="879.50"></text></g><g><title>jni_GetStringLength (112 samples, 0.05%)</title><rect x="69.7177%" y="885" width="0.0503%" height="15" fill="rgb(226,178,8)" fg:x="155317" fg:w="112"/><text x="69.9677%" y="895.50"></text></g><g><title>ThreadStateTransition::transition_from_native (39 samples, 0.02%)</title><rect x="69.7504%" y="869" width="0.0175%" height="15" fill="rgb(241,32,34)" fg:x="155390" fg:w="39"/><text x="70.0004%" y="879.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (29 samples, 0.01%)</title><rect x="69.8442%" y="821" width="0.0130%" height="15" fill="rgb(254,26,6)" fg:x="155599" fg:w="29"/><text x="70.0942%" y="831.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (23 samples, 0.01%)</title><rect x="69.8573%" y="821" width="0.0103%" height="15" fill="rgb(249,71,11)" fg:x="155628" fg:w="23"/><text x="70.1073%" y="831.50"></text></g><g><title>ObjAllocator::initialize (57 samples, 0.03%)</title><rect x="69.8680%" y="821" width="0.0256%" height="15" fill="rgb(232,170,27)" fg:x="155652" fg:w="57"/><text x="70.1180%" y="831.50"></text></g><g><title>__tls_get_addr (24 samples, 0.01%)</title><rect x="69.8936%" y="821" width="0.0108%" height="15" fill="rgb(214,223,17)" fg:x="155709" fg:w="24"/><text x="70.1436%" y="831.50"></text></g><g><title>InstanceKlass::allocate_instance (215 samples, 0.10%)</title><rect x="69.8110%" y="869" width="0.0965%" height="15" fill="rgb(250,18,15)" fg:x="155525" fg:w="215"/><text x="70.0610%" y="879.50"></text></g><g><title>CollectedHeap::obj_allocate (167 samples, 0.07%)</title><rect x="69.8326%" y="853" width="0.0750%" height="15" fill="rgb(212,153,51)" fg:x="155573" fg:w="167"/><text x="70.0826%" y="863.50"></text></g><g><title>MemAllocator::allocate (160 samples, 0.07%)</title><rect x="69.8357%" y="837" width="0.0718%" height="15" fill="rgb(219,194,12)" fg:x="155580" fg:w="160"/><text x="70.0857%" y="847.50"></text></g><g><title>ThreadStateTransition::transition_from_native (72 samples, 0.03%)</title><rect x="69.9282%" y="869" width="0.0323%" height="15" fill="rgb(212,58,17)" fg:x="155786" fg:w="72"/><text x="70.1782%" y="879.50"></text></g><g><title>alloc_object (80 samples, 0.04%)</title><rect x="69.9605%" y="869" width="0.0359%" height="15" fill="rgb(254,5,10)" fg:x="155858" fg:w="80"/><text x="70.2105%" y="879.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (112 samples, 0.05%)</title><rect x="70.0399%" y="853" width="0.0503%" height="15" fill="rgb(246,91,7)" fg:x="156035" fg:w="112"/><text x="70.2899%" y="863.50"></text></g><g><title>JavaCallArguments::parameters (41 samples, 0.02%)</title><rect x="70.1508%" y="837" width="0.0184%" height="15" fill="rgb(218,108,49)" fg:x="156282" fg:w="41"/><text x="70.4008%" y="847.50"></text></g><g><title>JNIHandleBlock::allocate_block (34 samples, 0.02%)</title><rect x="70.1939%" y="821" width="0.0153%" height="15" fill="rgb(238,123,20)" fg:x="156378" fg:w="34"/><text x="70.4439%" y="831.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (111 samples, 0.05%)</title><rect x="70.1692%" y="837" width="0.0498%" height="15" fill="rgb(231,69,23)" fg:x="156323" fg:w="111"/><text x="70.4192%" y="847.50"></text></g><g><title>JavaCalls::call_helper (323 samples, 0.14%)</title><rect x="70.0907%" y="853" width="0.1450%" height="15" fill="rgb(230,209,3)" fg:x="156148" fg:w="323"/><text x="70.3407%" y="863.50"></text></g><g><title>os::stack_shadow_pages_available (36 samples, 0.02%)</title><rect x="70.2195%" y="837" width="0.0162%" height="15" fill="rgb(231,19,0)" fg:x="156435" fg:w="36"/><text x="70.4695%" y="847.50"></text></g><g><title>methodHandle::~methodHandle (36 samples, 0.02%)</title><rect x="70.2410%" y="853" width="0.0162%" height="15" fill="rgb(226,192,25)" fg:x="156483" fg:w="36"/><text x="70.4910%" y="863.50"></text></g><g><title>jni_invoke_nonstatic (601 samples, 0.27%)</title><rect x="69.9987%" y="869" width="0.2698%" height="15" fill="rgb(223,175,53)" fg:x="155943" fg:w="601"/><text x="70.2487%" y="879.50"></text></g><g><title>resource_allocate_bytes (23 samples, 0.01%)</title><rect x="70.2581%" y="853" width="0.0103%" height="15" fill="rgb(248,35,51)" fg:x="156521" fg:w="23"/><text x="70.5081%" y="863.50"></text></g><g><title>jni_NewObjectV (1,116 samples, 0.50%)</title><rect x="69.7679%" y="885" width="0.5009%" height="15" fill="rgb(230,37,26)" fg:x="155429" fg:w="1116"/><text x="70.0179%" y="895.50"></text></g><g><title>operator delete@plt (24 samples, 0.01%)</title><rect x="70.2868%" y="885" width="0.0108%" height="15" fill="rgb(206,120,22)" fg:x="156585" fg:w="24"/><text x="70.5368%" y="895.50"></text></g><g><title>__GI___libc_malloc (68 samples, 0.03%)</title><rect x="70.3030%" y="869" width="0.0305%" height="15" fill="rgb(207,165,28)" fg:x="156621" fg:w="68"/><text x="70.5530%" y="879.50"></text></g><g><title>tcache_get (36 samples, 0.02%)</title><rect x="70.3174%" y="853" width="0.0162%" height="15" fill="rgb(226,23,46)" fg:x="156653" fg:w="36"/><text x="70.5674%" y="863.50"></text></g><g><title>operator new (80 samples, 0.04%)</title><rect x="70.3021%" y="885" width="0.0359%" height="15" fill="rgb(208,130,44)" fg:x="156619" fg:w="80"/><text x="70.5521%" y="895.50"></text></g><g><title>btrfs_del_inode_ref (38 samples, 0.02%)</title><rect x="70.3551%" y="757" width="0.0171%" height="15" fill="rgb(231,67,8)" fg:x="156737" fg:w="38"/><text x="70.6051%" y="767.50"></text></g><g><title>btrfs_search_slot (36 samples, 0.02%)</title><rect x="70.3560%" y="741" width="0.0162%" height="15" fill="rgb(205,183,22)" fg:x="156739" fg:w="36"/><text x="70.6060%" y="751.50"></text></g><g><title>btrfs_lock_root_node (39 samples, 0.02%)</title><rect x="70.3735%" y="725" width="0.0175%" height="15" fill="rgb(224,47,9)" fg:x="156778" fg:w="39"/><text x="70.6235%" y="735.50"></text></g><g><title>__btrfs_tree_lock (39 samples, 0.02%)</title><rect x="70.3735%" y="709" width="0.0175%" height="15" fill="rgb(250,183,49)" fg:x="156778" fg:w="39"/><text x="70.6235%" y="719.50"></text></g><g><title>schedule (34 samples, 0.02%)</title><rect x="70.3757%" y="693" width="0.0153%" height="15" fill="rgb(220,151,39)" fg:x="156783" fg:w="34"/><text x="70.6257%" y="703.50"></text></g><g><title>__schedule (34 samples, 0.02%)</title><rect x="70.3757%" y="677" width="0.0153%" height="15" fill="rgb(220,118,20)" fg:x="156783" fg:w="34"/><text x="70.6257%" y="687.50"></text></g><g><title>finish_task_switch (33 samples, 0.01%)</title><rect x="70.3762%" y="661" width="0.0148%" height="15" fill="rgb(231,65,51)" fg:x="156784" fg:w="33"/><text x="70.6262%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (31 samples, 0.01%)</title><rect x="70.3771%" y="645" width="0.0139%" height="15" fill="rgb(253,125,37)" fg:x="156786" fg:w="31"/><text x="70.6271%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.01%)</title><rect x="70.3775%" y="629" width="0.0135%" height="15" fill="rgb(232,102,6)" fg:x="156787" fg:w="30"/><text x="70.6275%" y="639.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="70.3775%" y="613" width="0.0135%" height="15" fill="rgb(251,105,13)" fg:x="156787" fg:w="30"/><text x="70.6275%" y="623.50"></text></g><g><title>__btrfs_unlink_inode (89 samples, 0.04%)</title><rect x="70.3551%" y="773" width="0.0399%" height="15" fill="rgb(222,179,29)" fg:x="156737" fg:w="89"/><text x="70.6051%" y="783.50"></text></g><g><title>btrfs_lookup_dir_item (50 samples, 0.02%)</title><rect x="70.3726%" y="757" width="0.0224%" height="15" fill="rgb(229,180,53)" fg:x="156776" fg:w="50"/><text x="70.6226%" y="767.50"></text></g><g><title>btrfs_search_slot (49 samples, 0.02%)</title><rect x="70.3730%" y="741" width="0.0220%" height="15" fill="rgb(238,104,13)" fg:x="156777" fg:w="49"/><text x="70.6230%" y="751.50"></text></g><g><title>btrfs_rename2 (132 samples, 0.06%)</title><rect x="70.3546%" y="789" width="0.0593%" height="15" fill="rgb(210,130,5)" fg:x="156736" fg:w="132"/><text x="70.6046%" y="799.50"></text></g><g><title>do_syscall_64 (148 samples, 0.07%)</title><rect x="70.3483%" y="853" width="0.0664%" height="15" fill="rgb(233,87,49)" fg:x="156722" fg:w="148"/><text x="70.5983%" y="863.50"></text></g><g><title>__x64_sys_rename (148 samples, 0.07%)</title><rect x="70.3483%" y="837" width="0.0664%" height="15" fill="rgb(243,34,9)" fg:x="156722" fg:w="148"/><text x="70.5983%" y="847.50"></text></g><g><title>do_renameat2 (148 samples, 0.07%)</title><rect x="70.3483%" y="821" width="0.0664%" height="15" fill="rgb(235,225,10)" fg:x="156722" fg:w="148"/><text x="70.5983%" y="831.50"></text></g><g><title>vfs_rename (134 samples, 0.06%)</title><rect x="70.3546%" y="805" width="0.0601%" height="15" fill="rgb(212,0,30)" fg:x="156736" fg:w="134"/><text x="70.6046%" y="815.50"></text></g><g><title>rename (149 samples, 0.07%)</title><rect x="70.3483%" y="885" width="0.0669%" height="15" fill="rgb(211,177,0)" fg:x="156722" fg:w="149"/><text x="70.5983%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (149 samples, 0.07%)</title><rect x="70.3483%" y="869" width="0.0669%" height="15" fill="rgb(225,220,11)" fg:x="156722" fg:w="149"/><text x="70.5983%" y="879.50"></text></g><g><title>__GI___libc_malloc (25 samples, 0.01%)</title><rect x="70.4166%" y="853" width="0.0112%" height="15" fill="rgb(215,10,13)" fg:x="156874" fg:w="25"/><text x="70.6666%" y="863.50"></text></g><g><title>operator new (26 samples, 0.01%)</title><rect x="70.4166%" y="869" width="0.0117%" height="15" fill="rgb(240,177,14)" fg:x="156874" fg:w="26"/><text x="70.6666%" y="879.50"></text></g><g><title>std::string::_Rep::_S_create (32 samples, 0.01%)</title><rect x="70.4152%" y="885" width="0.0144%" height="15" fill="rgb(243,7,39)" fg:x="156871" fg:w="32"/><text x="70.6652%" y="895.50"></text></g><g><title>[libunix_jni.so] (28,001 samples, 12.57%)</title><rect x="57.8611%" y="901" width="12.5689%" height="15" fill="rgb(212,99,0)" fg:x="128903" fg:w="28001"/><text x="58.1111%" y="911.50">[libunix_jni.so]</text></g><g><title>ConstantPool::klass_at_impl (29 samples, 0.01%)</title><rect x="96.2340%" y="869" width="0.0130%" height="15" fill="rgb(225,162,48)" fg:x="214390" fg:w="29"/><text x="96.4840%" y="879.50"></text></g><g><title>SystemDictionary::resolve_or_fail (26 samples, 0.01%)</title><rect x="96.2353%" y="853" width="0.0117%" height="15" fill="rgb(246,16,25)" fg:x="214393" fg:w="26"/><text x="96.4853%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (26 samples, 0.01%)</title><rect x="96.2353%" y="837" width="0.0117%" height="15" fill="rgb(220,150,2)" fg:x="214393" fg:w="26"/><text x="96.4853%" y="847.50"></text></g><g><title>Rewriter::rewrite (27 samples, 0.01%)</title><rect x="96.2681%" y="837" width="0.0121%" height="15" fill="rgb(237,113,11)" fg:x="214466" fg:w="27"/><text x="96.5181%" y="847.50"></text></g><g><title>Rewriter::Rewriter (26 samples, 0.01%)</title><rect x="96.2685%" y="821" width="0.0117%" height="15" fill="rgb(236,70,20)" fg:x="214467" fg:w="26"/><text x="96.5185%" y="831.50"></text></g><g><title>InstanceKlass::link_class_impl (81 samples, 0.04%)</title><rect x="96.2515%" y="853" width="0.0364%" height="15" fill="rgb(234,94,7)" fg:x="214429" fg:w="81"/><text x="96.5015%" y="863.50"></text></g><g><title>InstanceKlass::initialize_impl (83 samples, 0.04%)</title><rect x="96.2510%" y="869" width="0.0373%" height="15" fill="rgb(250,221,0)" fg:x="214428" fg:w="83"/><text x="96.5010%" y="879.50"></text></g><g><title>InterpreterRuntime::_new (122 samples, 0.05%)</title><rect x="96.2340%" y="885" width="0.0548%" height="15" fill="rgb(245,149,46)" fg:x="214390" fg:w="122"/><text x="96.4840%" y="895.50"></text></g><g><title>CollectedHeap::array_allocate (38 samples, 0.02%)</title><rect x="96.3147%" y="853" width="0.0171%" height="15" fill="rgb(215,37,27)" fg:x="214570" fg:w="38"/><text x="96.5647%" y="863.50"></text></g><g><title>MemAllocator::allocate (37 samples, 0.02%)</title><rect x="96.3152%" y="837" width="0.0166%" height="15" fill="rgb(232,65,3)" fg:x="214571" fg:w="37"/><text x="96.5652%" y="847.50"></text></g><g><title>InstanceKlass::allocate_objArray (80 samples, 0.04%)</title><rect x="96.3040%" y="869" width="0.0359%" height="15" fill="rgb(214,2,16)" fg:x="214546" fg:w="80"/><text x="96.5540%" y="879.50"></text></g><g><title>InterpreterRuntime::anewarray (121 samples, 0.05%)</title><rect x="96.2887%" y="885" width="0.0543%" height="15" fill="rgb(227,131,50)" fg:x="214512" fg:w="121"/><text x="96.5387%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.02%)</title><rect x="96.3444%" y="613" width="0.0224%" height="15" fill="rgb(247,131,45)" fg:x="214636" fg:w="50"/><text x="96.5944%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.02%)</title><rect x="96.3448%" y="597" width="0.0220%" height="15" fill="rgb(215,97,47)" fg:x="214637" fg:w="49"/><text x="96.5948%" y="607.50"></text></g><g><title>native_write_msr (49 samples, 0.02%)</title><rect x="96.3448%" y="581" width="0.0220%" height="15" fill="rgb(233,143,12)" fg:x="214637" fg:w="49"/><text x="96.5948%" y="591.50"></text></g><g><title>finish_task_switch (53 samples, 0.02%)</title><rect x="96.3444%" y="629" width="0.0238%" height="15" fill="rgb(222,57,17)" fg:x="214636" fg:w="53"/><text x="96.5944%" y="639.50"></text></g><g><title>do_syscall_64 (54 samples, 0.02%)</title><rect x="96.3444%" y="741" width="0.0242%" height="15" fill="rgb(214,119,38)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="751.50"></text></g><g><title>__x64_sys_futex (54 samples, 0.02%)</title><rect x="96.3444%" y="725" width="0.0242%" height="15" fill="rgb(217,28,47)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="735.50"></text></g><g><title>do_futex (54 samples, 0.02%)</title><rect x="96.3444%" y="709" width="0.0242%" height="15" fill="rgb(231,14,52)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="719.50"></text></g><g><title>futex_wait (54 samples, 0.02%)</title><rect x="96.3444%" y="693" width="0.0242%" height="15" fill="rgb(220,158,18)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="703.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.02%)</title><rect x="96.3444%" y="677" width="0.0242%" height="15" fill="rgb(222,143,46)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="687.50"></text></g><g><title>schedule (54 samples, 0.02%)</title><rect x="96.3444%" y="661" width="0.0242%" height="15" fill="rgb(227,165,5)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="671.50"></text></g><g><title>__schedule (54 samples, 0.02%)</title><rect x="96.3444%" y="645" width="0.0242%" height="15" fill="rgb(216,222,49)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="655.50"></text></g><g><title>__pthread_cond_wait (56 samples, 0.03%)</title><rect x="96.3439%" y="805" width="0.0251%" height="15" fill="rgb(238,73,39)" fg:x="214635" fg:w="56"/><text x="96.5939%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (56 samples, 0.03%)</title><rect x="96.3439%" y="789" width="0.0251%" height="15" fill="rgb(252,115,9)" fg:x="214635" fg:w="56"/><text x="96.5939%" y="799.50"></text></g><g><title>futex_wait_cancelable (55 samples, 0.02%)</title><rect x="96.3444%" y="773" width="0.0247%" height="15" fill="rgb(238,202,4)" fg:x="214636" fg:w="55"/><text x="96.5944%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.02%)</title><rect x="96.3444%" y="757" width="0.0247%" height="15" fill="rgb(252,153,44)" fg:x="214636" fg:w="55"/><text x="96.5944%" y="767.50"></text></g><g><title>Monitor::lock_without_safepoint_check (58 samples, 0.03%)</title><rect x="96.3435%" y="853" width="0.0260%" height="15" fill="rgb(235,128,27)" fg:x="214634" fg:w="58"/><text x="96.5935%" y="863.50"></text></g><g><title>Monitor::ILock (58 samples, 0.03%)</title><rect x="96.3435%" y="837" width="0.0260%" height="15" fill="rgb(221,121,47)" fg:x="214634" fg:w="58"/><text x="96.5935%" y="847.50"></text></g><g><title>os::PlatformEvent::park (57 samples, 0.03%)</title><rect x="96.3439%" y="821" width="0.0256%" height="15" fill="rgb(247,211,47)" fg:x="214635" fg:w="57"/><text x="96.5939%" y="831.50"></text></g><g><title>InterpreterRuntime::at_safepoint (71 samples, 0.03%)</title><rect x="96.3430%" y="885" width="0.0319%" height="15" fill="rgb(252,47,49)" fg:x="214633" fg:w="71"/><text x="96.5930%" y="895.50"></text></g><g><title>SafepointSynchronize::block (70 samples, 0.03%)</title><rect x="96.3435%" y="869" width="0.0314%" height="15" fill="rgb(219,119,53)" fg:x="214634" fg:w="70"/><text x="96.5935%" y="879.50"></text></g><g><title>InterpreterRuntime::build_method_counters (29 samples, 0.01%)</title><rect x="96.3749%" y="885" width="0.0130%" height="15" fill="rgb(243,165,53)" fg:x="214704" fg:w="29"/><text x="96.6249%" y="895.50"></text></g><g><title>Method::build_method_counters (28 samples, 0.01%)</title><rect x="96.3753%" y="869" width="0.0126%" height="15" fill="rgb(230,12,35)" fg:x="214705" fg:w="28"/><text x="96.6253%" y="879.50"></text></g><g><title>TieredThresholdPolicy::call_event (60 samples, 0.03%)</title><rect x="96.4229%" y="821" width="0.0269%" height="15" fill="rgb(239,57,49)" fg:x="214811" fg:w="60"/><text x="96.6729%" y="831.50"></text></g><g><title>Monitor::ILock (26 samples, 0.01%)</title><rect x="96.4597%" y="741" width="0.0117%" height="15" fill="rgb(231,154,7)" fg:x="214893" fg:w="26"/><text x="96.7097%" y="751.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.01%)</title><rect x="96.4611%" y="725" width="0.0103%" height="15" fill="rgb(248,81,34)" fg:x="214896" fg:w="23"/><text x="96.7111%" y="735.50"></text></g><g><title>Monitor::lock (28 samples, 0.01%)</title><rect x="96.4597%" y="757" width="0.0126%" height="15" fill="rgb(247,9,5)" fg:x="214893" fg:w="28"/><text x="96.7097%" y="767.50"></text></g><g><title>CompileBroker::compile_method_base (42 samples, 0.02%)</title><rect x="96.4566%" y="773" width="0.0189%" height="15" fill="rgb(228,172,27)" fg:x="214886" fg:w="42"/><text x="96.7066%" y="783.50"></text></g><g><title>TieredThresholdPolicy::compile (63 samples, 0.03%)</title><rect x="96.4499%" y="821" width="0.0283%" height="15" fill="rgb(230,57,44)" fg:x="214871" fg:w="63"/><text x="96.6999%" y="831.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (60 samples, 0.03%)</title><rect x="96.4512%" y="805" width="0.0269%" height="15" fill="rgb(249,35,22)" fg:x="214874" fg:w="60"/><text x="96.7012%" y="815.50"></text></g><g><title>CompileBroker::compile_method (58 samples, 0.03%)</title><rect x="96.4521%" y="789" width="0.0260%" height="15" fill="rgb(250,137,27)" fg:x="214876" fg:w="58"/><text x="96.7021%" y="799.50"></text></g><g><title>TieredThresholdPolicy::event (176 samples, 0.08%)</title><rect x="96.4000%" y="853" width="0.0790%" height="15" fill="rgb(251,57,31)" fg:x="214760" fg:w="176"/><text x="96.6500%" y="863.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (156 samples, 0.07%)</title><rect x="96.4090%" y="837" width="0.0700%" height="15" fill="rgb(238,60,0)" fg:x="214780" fg:w="156"/><text x="96.6590%" y="847.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (204 samples, 0.09%)</title><rect x="96.3879%" y="885" width="0.0916%" height="15" fill="rgb(242,185,39)" fg:x="214733" fg:w="204"/><text x="96.6379%" y="895.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (204 samples, 0.09%)</title><rect x="96.3879%" y="869" width="0.0916%" height="15" fill="rgb(240,63,43)" fg:x="214733" fg:w="204"/><text x="96.6379%" y="879.50"></text></g><g><title>JavaThread::pd_last_frame (25 samples, 0.01%)</title><rect x="96.4983%" y="869" width="0.0112%" height="15" fill="rgb(236,155,6)" fg:x="214979" fg:w="25"/><text x="96.7483%" y="879.50"></text></g><g><title>CodeCache::find_blob (24 samples, 0.01%)</title><rect x="96.4988%" y="853" width="0.0108%" height="15" fill="rgb(215,11,29)" fg:x="214980" fg:w="24"/><text x="96.7488%" y="863.50"></text></g><g><title>InterpreterRuntime::ldc (77 samples, 0.03%)</title><rect x="96.4795%" y="885" width="0.0346%" height="15" fill="rgb(228,180,48)" fg:x="214937" fg:w="77"/><text x="96.7295%" y="895.50"></text></g><g><title>__pthread_cond_timedwait (24 samples, 0.01%)</title><rect x="96.5212%" y="837" width="0.0108%" height="15" fill="rgb(241,102,12)" fg:x="215030" fg:w="24"/><text x="96.7712%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.01%)</title><rect x="96.5212%" y="821" width="0.0108%" height="15" fill="rgb(246,213,4)" fg:x="215030" fg:w="24"/><text x="96.7712%" y="831.50"></text></g><g><title>futex_abstimed_wait_cancelable (23 samples, 0.01%)</title><rect x="96.5217%" y="805" width="0.0103%" height="15" fill="rgb(218,134,35)" fg:x="215031" fg:w="23"/><text x="96.7717%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="96.5217%" y="789" width="0.0103%" height="15" fill="rgb(251,117,35)" fg:x="215031" fg:w="23"/><text x="96.7717%" y="799.50"></text></g><g><title>do_syscall_64 (23 samples, 0.01%)</title><rect x="96.5217%" y="773" width="0.0103%" height="15" fill="rgb(206,156,45)" fg:x="215031" fg:w="23"/><text x="96.7717%" y="783.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.01%)</title><rect x="96.5217%" y="757" width="0.0103%" height="15" fill="rgb(218,52,27)" fg:x="215031" fg:w="23"/><text x="96.7717%" y="767.50"></text></g><g><title>do_futex (23 samples, 0.01%)</title><rect x="96.5217%" y="741" width="0.0103%" height="15" fill="rgb(238,83,36)" fg:x="215031" fg:w="23"/><text x="96.7717%" y="751.50"></text></g><g><title>futex_wait (23 samples, 0.01%)</title><rect x="96.5217%" y="725" width="0.0103%" height="15" fill="rgb(218,53,43)" fg:x="215031" fg:w="23"/><text x="96.7717%" y="735.50"></text></g><g><title>ObjectMonitor::enter (41 samples, 0.02%)</title><rect x="96.5145%" y="869" width="0.0184%" height="15" fill="rgb(239,54,39)" fg:x="215015" fg:w="41"/><text x="96.7645%" y="879.50"></text></g><g><title>os::PlatformEvent::park (26 samples, 0.01%)</title><rect x="96.5212%" y="853" width="0.0117%" height="15" fill="rgb(212,198,13)" fg:x="215030" fg:w="26"/><text x="96.7712%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="96.5360%" y="725" width="0.0153%" height="15" fill="rgb(234,54,46)" fg:x="215063" fg:w="34"/><text x="96.7860%" y="735.50"></text></g><g><title>do_syscall_64 (34 samples, 0.02%)</title><rect x="96.5360%" y="709" width="0.0153%" height="15" fill="rgb(217,120,7)" fg:x="215063" fg:w="34"/><text x="96.7860%" y="719.50"></text></g><g><title>__x64_sys_futex (34 samples, 0.02%)</title><rect x="96.5360%" y="693" width="0.0153%" height="15" fill="rgb(246,39,15)" fg:x="215063" fg:w="34"/><text x="96.7860%" y="703.50"></text></g><g><title>do_futex (34 samples, 0.02%)</title><rect x="96.5360%" y="677" width="0.0153%" height="15" fill="rgb(242,143,31)" fg:x="215063" fg:w="34"/><text x="96.7860%" y="687.50"></text></g><g><title>futex_wait (34 samples, 0.02%)</title><rect x="96.5360%" y="661" width="0.0153%" height="15" fill="rgb(252,60,24)" fg:x="215063" fg:w="34"/><text x="96.7860%" y="671.50"></text></g><g><title>futex_wait_queue_me (33 samples, 0.01%)</title><rect x="96.5365%" y="645" width="0.0148%" height="15" fill="rgb(249,220,7)" fg:x="215064" fg:w="33"/><text x="96.7865%" y="655.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="96.5365%" y="629" width="0.0148%" height="15" fill="rgb(236,67,13)" fg:x="215064" fg:w="33"/><text x="96.7865%" y="639.50"></text></g><g><title>__schedule (33 samples, 0.01%)</title><rect x="96.5365%" y="613" width="0.0148%" height="15" fill="rgb(210,62,39)" fg:x="215064" fg:w="33"/><text x="96.7865%" y="623.50"></text></g><g><title>finish_task_switch (33 samples, 0.01%)</title><rect x="96.5365%" y="597" width="0.0148%" height="15" fill="rgb(219,122,53)" fg:x="215064" fg:w="33"/><text x="96.7865%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.01%)</title><rect x="96.5365%" y="581" width="0.0148%" height="15" fill="rgb(218,87,25)" fg:x="215064" fg:w="33"/><text x="96.7865%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.01%)</title><rect x="96.5365%" y="565" width="0.0148%" height="15" fill="rgb(234,179,48)" fg:x="215064" fg:w="33"/><text x="96.7865%" y="575.50"></text></g><g><title>native_write_msr (32 samples, 0.01%)</title><rect x="96.5369%" y="549" width="0.0144%" height="15" fill="rgb(248,90,0)" fg:x="215065" fg:w="32"/><text x="96.7869%" y="559.50"></text></g><g><title>Monitor::wait (40 samples, 0.02%)</title><rect x="96.5338%" y="821" width="0.0180%" height="15" fill="rgb(207,228,37)" fg:x="215058" fg:w="40"/><text x="96.7838%" y="831.50"></text></g><g><title>Monitor::IWait (38 samples, 0.02%)</title><rect x="96.5347%" y="805" width="0.0171%" height="15" fill="rgb(235,214,15)" fg:x="215060" fg:w="38"/><text x="96.7847%" y="815.50"></text></g><g><title>os::PlatformEvent::park (37 samples, 0.02%)</title><rect x="96.5351%" y="789" width="0.0166%" height="15" fill="rgb(210,144,39)" fg:x="215061" fg:w="37"/><text x="96.7851%" y="799.50"></text></g><g><title>__pthread_cond_wait (37 samples, 0.02%)</title><rect x="96.5351%" y="773" width="0.0166%" height="15" fill="rgb(222,67,41)" fg:x="215061" fg:w="37"/><text x="96.7851%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (37 samples, 0.02%)</title><rect x="96.5351%" y="757" width="0.0166%" height="15" fill="rgb(205,35,37)" fg:x="215061" fg:w="37"/><text x="96.7851%" y="767.50"></text></g><g><title>futex_wait_cancelable (35 samples, 0.02%)</title><rect x="96.5360%" y="741" width="0.0157%" height="15" fill="rgb(216,125,40)" fg:x="215063" fg:w="35"/><text x="96.7860%" y="751.50"></text></g><g><title>InterpreterRuntime::monitorenter (94 samples, 0.04%)</title><rect x="96.5140%" y="885" width="0.0422%" height="15" fill="rgb(228,227,20)" fg:x="215014" fg:w="94"/><text x="96.7640%" y="895.50"></text></g><g><title>ObjectSynchronizer::fast_enter (52 samples, 0.02%)</title><rect x="96.5329%" y="869" width="0.0233%" height="15" fill="rgb(242,173,45)" fg:x="215056" fg:w="52"/><text x="96.7829%" y="879.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (51 samples, 0.02%)</title><rect x="96.5334%" y="853" width="0.0229%" height="15" fill="rgb(215,79,24)" fg:x="215057" fg:w="51"/><text x="96.7834%" y="863.50"></text></g><g><title>VMThread::execute (50 samples, 0.02%)</title><rect x="96.5338%" y="837" width="0.0224%" height="15" fill="rgb(238,164,38)" fg:x="215058" fg:w="50"/><text x="96.7838%" y="847.50"></text></g><g><title>InterpreterRuntime::newarray (23 samples, 0.01%)</title><rect x="96.5580%" y="885" width="0.0103%" height="15" fill="rgb(245,196,38)" fg:x="215112" fg:w="23"/><text x="96.8080%" y="895.50"></text></g><g><title>LinkResolver::resolve_field_access (33 samples, 0.01%)</title><rect x="96.5764%" y="853" width="0.0148%" height="15" fill="rgb(231,217,29)" fg:x="215153" fg:w="33"/><text x="96.8264%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (41 samples, 0.02%)</title><rect x="96.5737%" y="869" width="0.0184%" height="15" fill="rgb(245,6,4)" fg:x="215147" fg:w="41"/><text x="96.8237%" y="879.50"></text></g><g><title>ConstantPool::klass_ref_at (33 samples, 0.01%)</title><rect x="96.6173%" y="837" width="0.0148%" height="15" fill="rgb(214,76,49)" fg:x="215244" fg:w="33"/><text x="96.8673%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (25 samples, 0.01%)</title><rect x="96.6209%" y="821" width="0.0112%" height="15" fill="rgb(205,96,12)" fg:x="215252" fg:w="25"/><text x="96.8709%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (25 samples, 0.01%)</title><rect x="96.6209%" y="805" width="0.0112%" height="15" fill="rgb(243,131,4)" fg:x="215252" fg:w="25"/><text x="96.8709%" y="815.50"></text></g><g><title>LinkResolver::resolve_interface_method (23 samples, 0.01%)</title><rect x="96.6393%" y="821" width="0.0103%" height="15" fill="rgb(214,114,4)" fg:x="215293" fg:w="23"/><text x="96.8893%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (38 samples, 0.02%)</title><rect x="96.6375%" y="837" width="0.0171%" height="15" fill="rgb(234,215,15)" fg:x="215289" fg:w="38"/><text x="96.8875%" y="847.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (27 samples, 0.01%)</title><rect x="96.6595%" y="821" width="0.0121%" height="15" fill="rgb(250,216,45)" fg:x="215338" fg:w="27"/><text x="96.9095%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (49 samples, 0.02%)</title><rect x="96.6545%" y="837" width="0.0220%" height="15" fill="rgb(236,128,4)" fg:x="215327" fg:w="49"/><text x="96.9045%" y="847.50"></text></g><g><title>InstanceKlass::link_class_impl (39 samples, 0.02%)</title><rect x="96.6788%" y="805" width="0.0175%" height="15" fill="rgb(234,50,33)" fg:x="215381" fg:w="39"/><text x="96.9288%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (48 samples, 0.02%)</title><rect x="96.6783%" y="821" width="0.0215%" height="15" fill="rgb(253,131,37)" fg:x="215380" fg:w="48"/><text x="96.9283%" y="831.50"></text></g><g><title>LinkResolver::resolve_static_call (75 samples, 0.03%)</title><rect x="96.6765%" y="837" width="0.0337%" height="15" fill="rgb(218,55,27)" fg:x="215376" fg:w="75"/><text x="96.9265%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (216 samples, 0.10%)</title><rect x="96.6141%" y="853" width="0.0970%" height="15" fill="rgb(241,220,28)" fg:x="215237" fg:w="216"/><text x="96.8641%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (283 samples, 0.13%)</title><rect x="96.5922%" y="869" width="0.1270%" height="15" fill="rgb(241,90,48)" fg:x="215188" fg:w="283"/><text x="96.8422%" y="879.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (34 samples, 0.02%)</title><rect x="96.7201%" y="805" width="0.0153%" height="15" fill="rgb(216,43,37)" fg:x="215473" fg:w="34"/><text x="96.9701%" y="815.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (34 samples, 0.02%)</title><rect x="96.7201%" y="789" width="0.0153%" height="15" fill="rgb(207,173,9)" fg:x="215473" fg:w="34"/><text x="96.9701%" y="799.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (23 samples, 0.01%)</title><rect x="96.7250%" y="773" width="0.0103%" height="15" fill="rgb(240,126,30)" fg:x="215484" fg:w="23"/><text x="96.9750%" y="783.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (50 samples, 0.02%)</title><rect x="96.7196%" y="821" width="0.0224%" height="15" fill="rgb(228,178,53)" fg:x="215472" fg:w="50"/><text x="96.9696%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (76 samples, 0.03%)</title><rect x="96.7192%" y="869" width="0.0341%" height="15" fill="rgb(217,33,4)" fg:x="215471" fg:w="76"/><text x="96.9692%" y="879.50"></text></g><g><title>LinkResolver::resolve_invoke (76 samples, 0.03%)</title><rect x="96.7192%" y="853" width="0.0341%" height="15" fill="rgb(206,124,34)" fg:x="215471" fg:w="76"/><text x="96.9692%" y="863.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (76 samples, 0.03%)</title><rect x="96.7192%" y="837" width="0.0341%" height="15" fill="rgb(208,122,53)" fg:x="215471" fg:w="76"/><text x="96.9692%" y="847.50"></text></g><g><title>LinkResolver::resolve_dynamic_call (25 samples, 0.01%)</title><rect x="96.7421%" y="821" width="0.0112%" height="15" fill="rgb(215,202,26)" fg:x="215522" fg:w="25"/><text x="96.9921%" y="831.50"></text></g><g><title>SystemDictionary::find_dynamic_call_site_invoker (25 samples, 0.01%)</title><rect x="96.7421%" y="805" width="0.0112%" height="15" fill="rgb(232,198,31)" fg:x="215522" fg:w="25"/><text x="96.9921%" y="815.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (410 samples, 0.18%)</title><rect x="96.5702%" y="885" width="0.1840%" height="15" fill="rgb(222,23,35)" fg:x="215139" fg:w="410"/><text x="96.8202%" y="895.50"></text></g><g><title>JVM_Clone (43 samples, 0.02%)</title><rect x="96.7713%" y="885" width="0.0193%" height="15" fill="rgb(242,27,53)" fg:x="215587" fg:w="43"/><text x="97.0213%" y="895.50"></text></g><g><title>JVM_FindLoadedClass (27 samples, 0.01%)</title><rect x="96.8063%" y="885" width="0.0121%" height="15" fill="rgb(210,216,42)" fg:x="215665" fg:w="27"/><text x="97.0563%" y="895.50"></text></g><g><title>JVM_GetClassDeclaredMethods (39 samples, 0.02%)</title><rect x="96.8332%" y="885" width="0.0175%" height="15" fill="rgb(234,39,38)" fg:x="215725" fg:w="39"/><text x="97.0832%" y="895.50"></text></g><g><title>get_class_declared_methods_helper (39 samples, 0.02%)</title><rect x="96.8332%" y="869" width="0.0175%" height="15" fill="rgb(235,126,54)" fg:x="215725" fg:w="39"/><text x="97.0832%" y="879.50"></text></g><g><title>Reflection::new_method (32 samples, 0.01%)</title><rect x="96.8363%" y="853" width="0.0144%" height="15" fill="rgb(235,150,33)" fg:x="215732" fg:w="32"/><text x="97.0863%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.02%)</title><rect x="96.8543%" y="581" width="0.0229%" height="15" fill="rgb(249,49,53)" fg:x="215772" fg:w="51"/><text x="97.1043%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.02%)</title><rect x="96.8552%" y="565" width="0.0220%" height="15" fill="rgb(238,60,50)" fg:x="215774" fg:w="49"/><text x="97.1052%" y="575.50"></text></g><g><title>native_write_msr (49 samples, 0.02%)</title><rect x="96.8552%" y="549" width="0.0220%" height="15" fill="rgb(210,5,2)" fg:x="215774" fg:w="49"/><text x="97.1052%" y="559.50"></text></g><g><title>Monitor::IWait (57 samples, 0.03%)</title><rect x="96.8529%" y="805" width="0.0256%" height="15" fill="rgb(214,207,24)" fg:x="215769" fg:w="57"/><text x="97.1029%" y="815.50"></text></g><g><title>os::PlatformEvent::park (57 samples, 0.03%)</title><rect x="96.8529%" y="789" width="0.0256%" height="15" fill="rgb(228,173,2)" fg:x="215769" fg:w="57"/><text x="97.1029%" y="799.50"></text></g><g><title>__pthread_cond_wait (57 samples, 0.03%)</title><rect x="96.8529%" y="773" width="0.0256%" height="15" fill="rgb(244,26,8)" fg:x="215769" fg:w="57"/><text x="97.1029%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.03%)</title><rect x="96.8529%" y="757" width="0.0256%" height="15" fill="rgb(249,153,35)" fg:x="215769" fg:w="57"/><text x="97.1029%" y="767.50"></text></g><g><title>futex_wait_cancelable (57 samples, 0.03%)</title><rect x="96.8529%" y="741" width="0.0256%" height="15" fill="rgb(221,215,40)" fg:x="215769" fg:w="57"/><text x="97.1029%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.02%)</title><rect x="96.8538%" y="725" width="0.0247%" height="15" fill="rgb(238,106,35)" fg:x="215771" fg:w="55"/><text x="97.1038%" y="735.50"></text></g><g><title>do_syscall_64 (55 samples, 0.02%)</title><rect x="96.8538%" y="709" width="0.0247%" height="15" fill="rgb(207,195,21)" fg:x="215771" fg:w="55"/><text x="97.1038%" y="719.50"></text></g><g><title>__x64_sys_futex (55 samples, 0.02%)</title><rect x="96.8538%" y="693" width="0.0247%" height="15" fill="rgb(205,43,29)" fg:x="215771" fg:w="55"/><text x="97.1038%" y="703.50"></text></g><g><title>do_futex (55 samples, 0.02%)</title><rect x="96.8538%" y="677" width="0.0247%" height="15" fill="rgb(236,35,21)" fg:x="215771" fg:w="55"/><text x="97.1038%" y="687.50"></text></g><g><title>futex_wait (55 samples, 0.02%)</title><rect x="96.8538%" y="661" width="0.0247%" height="15" fill="rgb(244,74,8)" fg:x="215771" fg:w="55"/><text x="97.1038%" y="671.50"></text></g><g><title>futex_wait_queue_me (55 samples, 0.02%)</title><rect x="96.8538%" y="645" width="0.0247%" height="15" fill="rgb(241,229,7)" fg:x="215771" fg:w="55"/><text x="97.1038%" y="655.50"></text></g><g><title>schedule (54 samples, 0.02%)</title><rect x="96.8543%" y="629" width="0.0242%" height="15" fill="rgb(212,223,25)" fg:x="215772" fg:w="54"/><text x="97.1043%" y="639.50"></text></g><g><title>__schedule (54 samples, 0.02%)</title><rect x="96.8543%" y="613" width="0.0242%" height="15" fill="rgb(234,58,53)" fg:x="215772" fg:w="54"/><text x="97.1043%" y="623.50"></text></g><g><title>finish_task_switch (54 samples, 0.02%)</title><rect x="96.8543%" y="597" width="0.0242%" height="15" fill="rgb(244,36,1)" fg:x="215772" fg:w="54"/><text x="97.1043%" y="607.50"></text></g><g><title>Monitor::wait (65 samples, 0.03%)</title><rect x="96.8529%" y="821" width="0.0292%" height="15" fill="rgb(222,40,54)" fg:x="215769" fg:w="65"/><text x="97.1029%" y="831.50"></text></g><g><title>VMThread::execute (67 samples, 0.03%)</title><rect x="96.8529%" y="837" width="0.0301%" height="15" fill="rgb(210,207,39)" fg:x="215769" fg:w="67"/><text x="97.1029%" y="847.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (69 samples, 0.03%)</title><rect x="96.8525%" y="853" width="0.0310%" height="15" fill="rgb(234,52,14)" fg:x="215768" fg:w="69"/><text x="97.1025%" y="863.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (73 samples, 0.03%)</title><rect x="96.8516%" y="869" width="0.0328%" height="15" fill="rgb(239,108,46)" fg:x="215766" fg:w="73"/><text x="97.1016%" y="879.50"></text></g><g><title>JVM_IHashCode (76 samples, 0.03%)</title><rect x="96.8512%" y="885" width="0.0341%" height="15" fill="rgb(252,223,5)" fg:x="215765" fg:w="76"/><text x="97.1012%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.04%)</title><rect x="96.9315%" y="629" width="0.0377%" height="15" fill="rgb(227,181,11)" fg:x="215944" fg:w="84"/><text x="97.1815%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.04%)</title><rect x="96.9315%" y="613" width="0.0377%" height="15" fill="rgb(248,126,40)" fg:x="215944" fg:w="84"/><text x="97.1815%" y="623.50"></text></g><g><title>native_write_msr (82 samples, 0.04%)</title><rect x="96.9324%" y="597" width="0.0368%" height="15" fill="rgb(243,1,18)" fg:x="215946" fg:w="82"/><text x="97.1824%" y="607.50"></text></g><g><title>futex_wait_queue_me (88 samples, 0.04%)</title><rect x="96.9302%" y="693" width="0.0395%" height="15" fill="rgb(214,145,23)" fg:x="215941" fg:w="88"/><text x="97.1802%" y="703.50"></text></g><g><title>schedule (87 samples, 0.04%)</title><rect x="96.9306%" y="677" width="0.0391%" height="15" fill="rgb(241,218,11)" fg:x="215942" fg:w="87"/><text x="97.1806%" y="687.50"></text></g><g><title>__schedule (87 samples, 0.04%)</title><rect x="96.9306%" y="661" width="0.0391%" height="15" fill="rgb(214,219,24)" fg:x="215942" fg:w="87"/><text x="97.1806%" y="671.50"></text></g><g><title>finish_task_switch (87 samples, 0.04%)</title><rect x="96.9306%" y="645" width="0.0391%" height="15" fill="rgb(235,32,7)" fg:x="215942" fg:w="87"/><text x="97.1806%" y="655.50"></text></g><g><title>do_syscall_64 (91 samples, 0.04%)</title><rect x="96.9293%" y="757" width="0.0408%" height="15" fill="rgb(227,121,28)" fg:x="215939" fg:w="91"/><text x="97.1793%" y="767.50"></text></g><g><title>__x64_sys_futex (90 samples, 0.04%)</title><rect x="96.9297%" y="741" width="0.0404%" height="15" fill="rgb(216,129,49)" fg:x="215940" fg:w="90"/><text x="97.1797%" y="751.50"></text></g><g><title>do_futex (90 samples, 0.04%)</title><rect x="96.9297%" y="725" width="0.0404%" height="15" fill="rgb(207,194,50)" fg:x="215940" fg:w="90"/><text x="97.1797%" y="735.50"></text></g><g><title>futex_wait (90 samples, 0.04%)</title><rect x="96.9297%" y="709" width="0.0404%" height="15" fill="rgb(207,4,18)" fg:x="215940" fg:w="90"/><text x="97.1797%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (94 samples, 0.04%)</title><rect x="96.9293%" y="773" width="0.0422%" height="15" fill="rgb(213,50,30)" fg:x="215939" fg:w="94"/><text x="97.1793%" y="783.50"></text></g><g><title>__pthread_cond_wait (97 samples, 0.04%)</title><rect x="96.9284%" y="821" width="0.0435%" height="15" fill="rgb(208,77,22)" fg:x="215937" fg:w="97"/><text x="97.1784%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (97 samples, 0.04%)</title><rect x="96.9284%" y="805" width="0.0435%" height="15" fill="rgb(244,204,34)" fg:x="215937" fg:w="97"/><text x="97.1784%" y="815.50"></text></g><g><title>futex_wait_cancelable (96 samples, 0.04%)</title><rect x="96.9288%" y="789" width="0.0431%" height="15" fill="rgb(230,20,17)" fg:x="215938" fg:w="96"/><text x="97.1788%" y="799.50"></text></g><g><title>ObjectMonitor::wait (116 samples, 0.05%)</title><rect x="96.9216%" y="853" width="0.0521%" height="15" fill="rgb(237,83,15)" fg:x="215922" fg:w="116"/><text x="97.1716%" y="863.50"></text></g><g><title>os::PlatformEvent::park (110 samples, 0.05%)</title><rect x="96.9243%" y="837" width="0.0494%" height="15" fill="rgb(221,109,25)" fg:x="215928" fg:w="110"/><text x="97.1743%" y="847.50"></text></g><g><title>JVM_MonitorWait (127 samples, 0.06%)</title><rect x="96.9176%" y="885" width="0.0570%" height="15" fill="rgb(205,194,52)" fg:x="215913" fg:w="127"/><text x="97.1676%" y="895.50"></text></g><g><title>ObjectSynchronizer::wait (126 samples, 0.06%)</title><rect x="96.9180%" y="869" width="0.0566%" height="15" fill="rgb(244,173,54)" fg:x="215914" fg:w="126"/><text x="97.1680%" y="879.50"></text></g><g><title>JavaThread::check_special_condition_for_native_trans (23 samples, 0.01%)</title><rect x="96.9827%" y="885" width="0.0103%" height="15" fill="rgb(227,181,18)" fg:x="216058" fg:w="23"/><text x="97.2327%" y="895.50"></text></g><g><title>JavaThread::check_safepoint_and_suspend_for_native_trans (23 samples, 0.01%)</title><rect x="96.9827%" y="869" width="0.0103%" height="15" fill="rgb(238,36,30)" fg:x="216058" fg:w="23"/><text x="97.2327%" y="879.50"></text></g><g><title>SafepointSynchronize::block (23 samples, 0.01%)</title><rect x="96.9827%" y="853" width="0.0103%" height="15" fill="rgb(254,85,0)" fg:x="216058" fg:w="23"/><text x="97.2327%" y="863.50"></text></g><g><title>Java_java_io_UnixFileSystem_getBooleanAttributes0 (27 samples, 0.01%)</title><rect x="96.9997%" y="885" width="0.0121%" height="15" fill="rgb(247,63,33)" fg:x="216096" fg:w="27"/><text x="97.2497%" y="895.50"></text></g><g><title>__GI___xstat (23 samples, 0.01%)</title><rect x="97.0015%" y="869" width="0.0103%" height="15" fill="rgb(220,7,54)" fg:x="216100" fg:w="23"/><text x="97.2515%" y="879.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (320 samples, 0.14%)</title><rect x="97.0253%" y="757" width="0.1436%" height="15" fill="rgb(238,227,21)" fg:x="216153" fg:w="320"/><text x="97.2753%" y="767.50"></text></g><g><title>SymbolTable::lookup_only (293 samples, 0.13%)</title><rect x="97.0374%" y="741" width="0.1315%" height="15" fill="rgb(237,29,31)" fg:x="216180" fg:w="293"/><text x="97.2874%" y="751.50"></text></g><g><title>ClassFileParser::parse_constant_pool (331 samples, 0.15%)</title><rect x="97.0208%" y="773" width="0.1486%" height="15" fill="rgb(211,21,50)" fg:x="216143" fg:w="331"/><text x="97.2708%" y="783.50"></text></g><g><title>ClassFileParser::parse_methods (76 samples, 0.03%)</title><rect x="97.1734%" y="773" width="0.0341%" height="15" fill="rgb(239,119,2)" fg:x="216483" fg:w="76"/><text x="97.4234%" y="783.50"></text></g><g><title>ClassFileParser::parse_method (76 samples, 0.03%)</title><rect x="97.1734%" y="757" width="0.0341%" height="15" fill="rgb(250,2,39)" fg:x="216483" fg:w="76"/><text x="97.4234%" y="767.50"></text></g><g><title>ClassFileParser::parse_stream (440 samples, 0.20%)</title><rect x="97.0186%" y="789" width="0.1975%" height="15" fill="rgb(244,46,53)" fg:x="216138" fg:w="440"/><text x="97.2686%" y="799.50"></text></g><g><title>ClassFileParser::ClassFileParser (442 samples, 0.20%)</title><rect x="97.0181%" y="805" width="0.1984%" height="15" fill="rgb(209,21,19)" fg:x="216137" fg:w="442"/><text x="97.2681%" y="815.50"></text></g><g><title>DefaultMethods::generate_default_methods (41 samples, 0.02%)</title><rect x="97.2197%" y="773" width="0.0184%" height="15" fill="rgb(236,145,4)" fg:x="216586" fg:w="41"/><text x="97.4697%" y="783.50"></text></g><g><title>ClassFileParser::fill_instance_klass (62 samples, 0.03%)</title><rect x="97.2165%" y="789" width="0.0278%" height="15" fill="rgb(220,133,36)" fg:x="216579" fg:w="62"/><text x="97.4665%" y="799.50"></text></g><g><title>ClassFileParser::create_instance_klass (70 samples, 0.03%)</title><rect x="97.2165%" y="805" width="0.0314%" height="15" fill="rgb(244,18,3)" fg:x="216579" fg:w="70"/><text x="97.4665%" y="815.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (27 samples, 0.01%)</title><rect x="97.2480%" y="805" width="0.0121%" height="15" fill="rgb(232,171,48)" fg:x="216649" fg:w="27"/><text x="97.4980%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (542 samples, 0.24%)</title><rect x="97.0172%" y="821" width="0.2433%" height="15" fill="rgb(223,223,53)" fg:x="216135" fg:w="542"/><text x="97.2672%" y="831.50"></text></g><g><title>JVM_DefineClassWithSource (583 samples, 0.26%)</title><rect x="97.0132%" y="869" width="0.2617%" height="15" fill="rgb(246,92,13)" fg:x="216126" fg:w="583"/><text x="97.2632%" y="879.50"></text></g><g><title>jvm_define_class_common (582 samples, 0.26%)</title><rect x="97.0136%" y="853" width="0.2612%" height="15" fill="rgb(229,171,10)" fg:x="216127" fg:w="582"/><text x="97.2636%" y="863.50"></text></g><g><title>SystemDictionary::resolve_from_stream (575 samples, 0.26%)</title><rect x="97.0168%" y="837" width="0.2581%" height="15" fill="rgb(213,131,26)" fg:x="216134" fg:w="575"/><text x="97.2668%" y="847.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (32 samples, 0.01%)</title><rect x="97.2605%" y="821" width="0.0144%" height="15" fill="rgb(242,87,54)" fg:x="216677" fg:w="32"/><text x="97.5105%" y="831.50"></text></g><g><title>SystemDictionary::define_instance_class (29 samples, 0.01%)</title><rect x="97.2619%" y="805" width="0.0130%" height="15" fill="rgb(237,21,35)" fg:x="216680" fg:w="29"/><text x="97.5119%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (606 samples, 0.27%)</title><rect x="97.0123%" y="885" width="0.2720%" height="15" fill="rgb(253,13,47)" fg:x="216124" fg:w="606"/><text x="97.2623%" y="895.50"></text></g><g><title>JVM_FindClassFromBootLoader (26 samples, 0.01%)</title><rect x="97.2843%" y="869" width="0.0117%" height="15" fill="rgb(215,122,49)" fg:x="216730" fg:w="26"/><text x="97.5343%" y="879.50"></text></g><g><title>SystemDictionary::resolve_or_null (24 samples, 0.01%)</title><rect x="97.2852%" y="853" width="0.0108%" height="15" fill="rgb(209,179,30)" fg:x="216732" fg:w="24"/><text x="97.5352%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (24 samples, 0.01%)</title><rect x="97.2852%" y="837" width="0.0108%" height="15" fill="rgb(235,100,24)" fg:x="216732" fg:w="24"/><text x="97.5352%" y="847.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (31 samples, 0.01%)</title><rect x="97.2843%" y="885" width="0.0139%" height="15" fill="rgb(209,67,24)" fg:x="216730" fg:w="31"/><text x="97.5343%" y="895.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (42 samples, 0.02%)</title><rect x="97.3054%" y="885" width="0.0189%" height="15" fill="rgb(206,74,32)" fg:x="216777" fg:w="42"/><text x="97.5554%" y="895.50"></text></g><g><title>os_getParentPidAndTimings (42 samples, 0.02%)</title><rect x="97.3054%" y="869" width="0.0189%" height="15" fill="rgb(212,45,25)" fg:x="216777" fg:w="42"/><text x="97.5554%" y="879.50"></text></g><g><title>copy_process (39 samples, 0.02%)</title><rect x="97.3490%" y="773" width="0.0175%" height="15" fill="rgb(239,26,3)" fg:x="216874" fg:w="39"/><text x="97.5990%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.03%)</title><rect x="97.3696%" y="677" width="0.0265%" height="15" fill="rgb(218,36,15)" fg:x="216920" fg:w="59"/><text x="97.6196%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.03%)</title><rect x="97.3701%" y="661" width="0.0260%" height="15" fill="rgb(206,108,24)" fg:x="216921" fg:w="58"/><text x="97.6201%" y="671.50"></text></g><g><title>native_write_msr (58 samples, 0.03%)</title><rect x="97.3701%" y="645" width="0.0260%" height="15" fill="rgb(234,204,42)" fg:x="216921" fg:w="58"/><text x="97.6201%" y="655.50"></text></g><g><title>finish_task_switch (62 samples, 0.03%)</title><rect x="97.3692%" y="693" width="0.0278%" height="15" fill="rgb(229,2,11)" fg:x="216919" fg:w="62"/><text x="97.6192%" y="703.50"></text></g><g><title>wait_for_completion_killable (69 samples, 0.03%)</title><rect x="97.3669%" y="773" width="0.0310%" height="15" fill="rgb(221,20,48)" fg:x="216914" fg:w="69"/><text x="97.6169%" y="783.50"></text></g><g><title>__wait_for_common (69 samples, 0.03%)</title><rect x="97.3669%" y="757" width="0.0310%" height="15" fill="rgb(244,164,10)" fg:x="216914" fg:w="69"/><text x="97.6169%" y="767.50"></text></g><g><title>schedule_timeout (68 samples, 0.03%)</title><rect x="97.3674%" y="741" width="0.0305%" height="15" fill="rgb(243,229,2)" fg:x="216915" fg:w="68"/><text x="97.6174%" y="751.50"></text></g><g><title>schedule (67 samples, 0.03%)</title><rect x="97.3678%" y="725" width="0.0301%" height="15" fill="rgb(232,131,37)" fg:x="216916" fg:w="67"/><text x="97.6178%" y="735.50"></text></g><g><title>__schedule (67 samples, 0.03%)</title><rect x="97.3678%" y="709" width="0.0301%" height="15" fill="rgb(217,156,11)" fg:x="216916" fg:w="67"/><text x="97.6178%" y="719.50"></text></g><g><title>do_syscall_64 (118 samples, 0.05%)</title><rect x="97.3490%" y="821" width="0.0530%" height="15" fill="rgb(239,99,48)" fg:x="216874" fg:w="118"/><text x="97.5990%" y="831.50"></text></g><g><title>__x64_sys_vfork (118 samples, 0.05%)</title><rect x="97.3490%" y="805" width="0.0530%" height="15" fill="rgb(231,209,9)" fg:x="216874" fg:w="118"/><text x="97.5990%" y="815.50"></text></g><g><title>kernel_clone (118 samples, 0.05%)</title><rect x="97.3490%" y="789" width="0.0530%" height="15" fill="rgb(254,97,27)" fg:x="216874" fg:w="118"/><text x="97.5990%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (120 samples, 0.05%)</title><rect x="97.3485%" y="837" width="0.0539%" height="15" fill="rgb(223,151,38)" fg:x="216873" fg:w="120"/><text x="97.5985%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (433 samples, 0.19%)</title><rect x="97.4176%" y="789" width="0.1944%" height="15" fill="rgb(219,206,35)" fg:x="217027" fg:w="433"/><text x="97.6676%" y="799.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (428 samples, 0.19%)</title><rect x="97.4199%" y="773" width="0.1921%" height="15" fill="rgb(216,130,31)" fg:x="217032" fg:w="428"/><text x="97.6699%" y="783.50"></text></g><g><title>native_write_msr (428 samples, 0.19%)</title><rect x="97.4199%" y="757" width="0.1921%" height="15" fill="rgb(251,97,34)" fg:x="217032" fg:w="428"/><text x="97.6699%" y="767.50"></text></g><g><title>schedule_tail (454 samples, 0.20%)</title><rect x="97.4113%" y="821" width="0.2038%" height="15" fill="rgb(246,159,47)" fg:x="217013" fg:w="454"/><text x="97.6613%" y="831.50"></text></g><g><title>finish_task_switch (452 samples, 0.20%)</title><rect x="97.4122%" y="805" width="0.2029%" height="15" fill="rgb(232,87,10)" fg:x="217015" fg:w="452"/><text x="97.6622%" y="815.50"></text></g><g><title>__libc_vfork (603 samples, 0.27%)</title><rect x="97.3463%" y="853" width="0.2707%" height="15" fill="rgb(249,1,37)" fg:x="216868" fg:w="603"/><text x="97.5963%" y="863.50"></text></g><g><title>ret_from_fork (478 samples, 0.21%)</title><rect x="97.4024%" y="837" width="0.2146%" height="15" fill="rgb(239,135,14)" fg:x="216993" fg:w="478"/><text x="97.6524%" y="847.50"></text></g><g><title>sched_exec (25 samples, 0.01%)</title><rect x="97.6317%" y="725" width="0.0112%" height="15" fill="rgb(253,116,46)" fg:x="217504" fg:w="25"/><text x="97.8817%" y="735.50"></text></g><g><title>bprm_execve (64 samples, 0.03%)</title><rect x="97.6214%" y="741" width="0.0287%" height="15" fill="rgb(222,217,37)" fg:x="217481" fg:w="64"/><text x="97.8714%" y="751.50"></text></g><g><title>JDK_execvpe (102 samples, 0.05%)</title><rect x="97.6183%" y="837" width="0.0458%" height="15" fill="rgb(252,96,8)" fg:x="217474" fg:w="102"/><text x="97.8683%" y="847.50"></text></g><g><title>__GI_execve (102 samples, 0.05%)</title><rect x="97.6183%" y="821" width="0.0458%" height="15" fill="rgb(254,103,41)" fg:x="217474" fg:w="102"/><text x="97.8683%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.05%)</title><rect x="97.6183%" y="805" width="0.0458%" height="15" fill="rgb(218,213,19)" fg:x="217474" fg:w="102"/><text x="97.8683%" y="815.50"></text></g><g><title>do_syscall_64 (102 samples, 0.05%)</title><rect x="97.6183%" y="789" width="0.0458%" height="15" fill="rgb(253,95,21)" fg:x="217474" fg:w="102"/><text x="97.8683%" y="799.50"></text></g><g><title>__x64_sys_execve (102 samples, 0.05%)</title><rect x="97.6183%" y="773" width="0.0458%" height="15" fill="rgb(229,26,28)" fg:x="217474" fg:w="102"/><text x="97.8683%" y="783.50"></text></g><g><title>do_execveat_common (102 samples, 0.05%)</title><rect x="97.6183%" y="757" width="0.0458%" height="15" fill="rgb(230,129,16)" fg:x="217474" fg:w="102"/><text x="97.8683%" y="767.50"></text></g><g><title>proc_fill_cache (25 samples, 0.01%)</title><rect x="97.6793%" y="709" width="0.0112%" height="15" fill="rgb(236,126,17)" fg:x="217610" fg:w="25"/><text x="97.9293%" y="719.50"></text></g><g><title>proc_readfd_common (28 samples, 0.01%)</title><rect x="97.6789%" y="725" width="0.0126%" height="15" fill="rgb(209,33,33)" fg:x="217609" fg:w="28"/><text x="97.9289%" y="735.50"></text></g><g><title>__GI___readdir64 (32 samples, 0.01%)</title><rect x="97.6775%" y="821" width="0.0144%" height="15" fill="rgb(227,85,29)" fg:x="217606" fg:w="32"/><text x="97.9275%" y="831.50"></text></g><g><title>__GI___getdents64 (31 samples, 0.01%)</title><rect x="97.6780%" y="805" width="0.0139%" height="15" fill="rgb(241,53,46)" fg:x="217607" fg:w="31"/><text x="97.9280%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="97.6784%" y="789" width="0.0135%" height="15" fill="rgb(228,167,53)" fg:x="217608" fg:w="30"/><text x="97.9284%" y="799.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="97.6784%" y="773" width="0.0135%" height="15" fill="rgb(238,195,45)" fg:x="217608" fg:w="30"/><text x="97.9284%" y="783.50"></text></g><g><title>__x64_sys_getdents64 (30 samples, 0.01%)</title><rect x="97.6784%" y="757" width="0.0135%" height="15" fill="rgb(252,124,45)" fg:x="217608" fg:w="30"/><text x="97.9284%" y="767.50"></text></g><g><title>iterate_dir (30 samples, 0.01%)</title><rect x="97.6784%" y="741" width="0.0135%" height="15" fill="rgb(251,38,35)" fg:x="217608" fg:w="30"/><text x="97.9284%" y="751.50"></text></g><g><title>btrfs_truncate_inode_items (24 samples, 0.01%)</title><rect x="97.7054%" y="661" width="0.0108%" height="15" fill="rgb(227,33,2)" fg:x="217668" fg:w="24"/><text x="97.9554%" y="671.50"></text></g><g><title>__dentry_kill (47 samples, 0.02%)</title><rect x="97.6955%" y="709" width="0.0211%" height="15" fill="rgb(223,157,46)" fg:x="217646" fg:w="47"/><text x="97.9455%" y="719.50"></text></g><g><title>evict (43 samples, 0.02%)</title><rect x="97.6973%" y="693" width="0.0193%" height="15" fill="rgb(222,78,41)" fg:x="217650" fg:w="43"/><text x="97.9473%" y="703.50"></text></g><g><title>btrfs_evict_inode (43 samples, 0.02%)</title><rect x="97.6973%" y="677" width="0.0193%" height="15" fill="rgb(248,176,11)" fg:x="217650" fg:w="43"/><text x="97.9473%" y="687.50"></text></g><g><title>__close (56 samples, 0.03%)</title><rect x="97.6919%" y="821" width="0.0251%" height="15" fill="rgb(241,221,18)" fg:x="217638" fg:w="56"/><text x="97.9419%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.02%)</title><rect x="97.6923%" y="805" width="0.0247%" height="15" fill="rgb(218,85,22)" fg:x="217639" fg:w="55"/><text x="97.9423%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (49 samples, 0.02%)</title><rect x="97.6950%" y="789" width="0.0220%" height="15" fill="rgb(222,223,7)" fg:x="217645" fg:w="49"/><text x="97.9450%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (49 samples, 0.02%)</title><rect x="97.6950%" y="773" width="0.0220%" height="15" fill="rgb(254,59,39)" fg:x="217645" fg:w="49"/><text x="97.9450%" y="783.50"></text></g><g><title>task_work_run (48 samples, 0.02%)</title><rect x="97.6955%" y="757" width="0.0215%" height="15" fill="rgb(247,100,27)" fg:x="217646" fg:w="48"/><text x="97.9455%" y="767.50"></text></g><g><title>__fput (48 samples, 0.02%)</title><rect x="97.6955%" y="741" width="0.0215%" height="15" fill="rgb(237,207,10)" fg:x="217646" fg:w="48"/><text x="97.9455%" y="751.50"></text></g><g><title>dput (48 samples, 0.02%)</title><rect x="97.6955%" y="725" width="0.0215%" height="15" fill="rgb(220,121,28)" fg:x="217646" fg:w="48"/><text x="97.9455%" y="735.50"></text></g><g><title>do_filp_open (33 samples, 0.01%)</title><rect x="97.7175%" y="725" width="0.0148%" height="15" fill="rgb(213,223,20)" fg:x="217695" fg:w="33"/><text x="97.9675%" y="735.50"></text></g><g><title>path_openat (33 samples, 0.01%)</title><rect x="97.7175%" y="709" width="0.0148%" height="15" fill="rgb(205,121,27)" fg:x="217695" fg:w="33"/><text x="97.9675%" y="719.50"></text></g><g><title>__GI___open64_nocancel (36 samples, 0.02%)</title><rect x="97.7170%" y="805" width="0.0162%" height="15" fill="rgb(253,24,53)" fg:x="217694" fg:w="36"/><text x="97.9670%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="97.7170%" y="789" width="0.0162%" height="15" fill="rgb(224,224,47)" fg:x="217694" fg:w="36"/><text x="97.9670%" y="799.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="97.7170%" y="773" width="0.0162%" height="15" fill="rgb(250,125,36)" fg:x="217694" fg:w="36"/><text x="97.9670%" y="783.50"></text></g><g><title>__x64_sys_openat (36 samples, 0.02%)</title><rect x="97.7170%" y="757" width="0.0162%" height="15" fill="rgb(240,144,38)" fg:x="217694" fg:w="36"/><text x="97.9670%" y="767.50"></text></g><g><title>do_sys_openat2 (36 samples, 0.02%)</title><rect x="97.7170%" y="741" width="0.0162%" height="15" fill="rgb(250,15,50)" fg:x="217694" fg:w="36"/><text x="97.9670%" y="751.50"></text></g><g><title>__opendir (38 samples, 0.02%)</title><rect x="97.7170%" y="821" width="0.0171%" height="15" fill="rgb(210,24,26)" fg:x="217694" fg:w="38"/><text x="97.9670%" y="831.50"></text></g><g><title>closeDescriptors (136 samples, 0.06%)</title><rect x="97.6753%" y="837" width="0.0610%" height="15" fill="rgb(234,53,53)" fg:x="217601" fg:w="136"/><text x="97.9253%" y="847.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (939 samples, 0.42%)</title><rect x="97.3243%" y="885" width="0.4215%" height="15" fill="rgb(208,108,28)" fg:x="216819" fg:w="939"/><text x="97.5743%" y="895.50"></text></g><g><title>vforkChild (892 samples, 0.40%)</title><rect x="97.3454%" y="869" width="0.4004%" height="15" fill="rgb(227,143,7)" fg:x="216866" fg:w="892"/><text x="97.5954%" y="879.50"></text></g><g><title>childProcess (287 samples, 0.13%)</title><rect x="97.6169%" y="853" width="0.1288%" height="15" fill="rgb(238,189,38)" fg:x="217471" fg:w="287"/><text x="97.8669%" y="863.50"></text></g><g><title>JVM_FillInStackTrace (27 samples, 0.01%)</title><rect x="97.7462%" y="869" width="0.0121%" height="15" fill="rgb(222,69,15)" fg:x="217759" fg:w="27"/><text x="97.9962%" y="879.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (27 samples, 0.01%)</title><rect x="97.7462%" y="853" width="0.0121%" height="15" fill="rgb(213,169,7)" fg:x="217759" fg:w="27"/><text x="97.9962%" y="863.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (25 samples, 0.01%)</title><rect x="97.7471%" y="837" width="0.0112%" height="15" fill="rgb(251,219,4)" fg:x="217761" fg:w="25"/><text x="97.9971%" y="847.50"></text></g><g><title>Java_java_lang_Throwable_fillInStackTrace (28 samples, 0.01%)</title><rect x="97.7462%" y="885" width="0.0126%" height="15" fill="rgb(241,55,40)" fg:x="217759" fg:w="28"/><text x="97.9962%" y="895.50"></text></g><g><title>OptoRuntime::new_array_C (33 samples, 0.01%)</title><rect x="97.7687%" y="885" width="0.0148%" height="15" fill="rgb(243,57,30)" fg:x="217809" fg:w="33"/><text x="98.0187%" y="895.50"></text></g><g><title>kernel_init_free_pages (29 samples, 0.01%)</title><rect x="97.7974%" y="661" width="0.0130%" height="15" fill="rgb(234,50,30)" fg:x="217873" fg:w="29"/><text x="98.0474%" y="671.50"></text></g><g><title>clear_page_erms (29 samples, 0.01%)</title><rect x="97.7974%" y="645" width="0.0130%" height="15" fill="rgb(239,23,42)" fg:x="217873" fg:w="29"/><text x="98.0474%" y="655.50"></text></g><g><title>alloc_pages_vma (31 samples, 0.01%)</title><rect x="97.7969%" y="725" width="0.0139%" height="15" fill="rgb(217,38,19)" fg:x="217872" fg:w="31"/><text x="98.0469%" y="735.50"></text></g><g><title>__alloc_pages_nodemask (31 samples, 0.01%)</title><rect x="97.7969%" y="709" width="0.0139%" height="15" fill="rgb(215,179,16)" fg:x="217872" fg:w="31"/><text x="98.0469%" y="719.50"></text></g><g><title>get_page_from_freelist (31 samples, 0.01%)</title><rect x="97.7969%" y="693" width="0.0139%" height="15" fill="rgb(254,21,37)" fg:x="217872" fg:w="31"/><text x="98.0469%" y="703.50"></text></g><g><title>prep_new_page (30 samples, 0.01%)</title><rect x="97.7974%" y="677" width="0.0135%" height="15" fill="rgb(219,207,48)" fg:x="217873" fg:w="30"/><text x="98.0474%" y="687.50"></text></g><g><title>ObjAllocator::initialize (52 samples, 0.02%)</title><rect x="97.7960%" y="821" width="0.0233%" height="15" fill="rgb(227,225,41)" fg:x="217870" fg:w="52"/><text x="98.0460%" y="831.50"></text></g><g><title>asm_exc_page_fault (52 samples, 0.02%)</title><rect x="97.7960%" y="805" width="0.0233%" height="15" fill="rgb(223,130,1)" fg:x="217870" fg:w="52"/><text x="98.0460%" y="815.50"></text></g><g><title>exc_page_fault (52 samples, 0.02%)</title><rect x="97.7960%" y="789" width="0.0233%" height="15" fill="rgb(249,54,42)" fg:x="217870" fg:w="52"/><text x="98.0460%" y="799.50"></text></g><g><title>do_user_addr_fault (52 samples, 0.02%)</title><rect x="97.7960%" y="773" width="0.0233%" height="15" fill="rgb(248,69,25)" fg:x="217870" fg:w="52"/><text x="98.0460%" y="783.50"></text></g><g><title>handle_mm_fault (51 samples, 0.02%)</title><rect x="97.7965%" y="757" width="0.0229%" height="15" fill="rgb(234,21,32)" fg:x="217871" fg:w="51"/><text x="98.0465%" y="767.50"></text></g><g><title>do_huge_pmd_anonymous_page (51 samples, 0.02%)</title><rect x="97.7965%" y="741" width="0.0229%" height="15" fill="rgb(252,136,6)" fg:x="217871" fg:w="51"/><text x="98.0465%" y="751.50"></text></g><g><title>InstanceKlass::allocate_instance (60 samples, 0.03%)</title><rect x="97.7929%" y="869" width="0.0269%" height="15" fill="rgb(245,87,12)" fg:x="217863" fg:w="60"/><text x="98.0429%" y="879.50"></text></g><g><title>CollectedHeap::obj_allocate (59 samples, 0.03%)</title><rect x="97.7933%" y="853" width="0.0265%" height="15" fill="rgb(208,12,15)" fg:x="217864" fg:w="59"/><text x="98.0433%" y="863.50"></text></g><g><title>MemAllocator::allocate (59 samples, 0.03%)</title><rect x="97.7933%" y="837" width="0.0265%" height="15" fill="rgb(250,98,2)" fg:x="217864" fg:w="59"/><text x="98.0433%" y="847.50"></text></g><g><title>OptoRuntime::new_instance_C (64 samples, 0.03%)</title><rect x="97.7915%" y="885" width="0.0287%" height="15" fill="rgb(205,213,15)" fg:x="217860" fg:w="64"/><text x="98.0415%" y="895.50"></text></g><g><title>TieredThresholdPolicy::call_event (26 samples, 0.01%)</title><rect x="97.8382%" y="837" width="0.0117%" height="15" fill="rgb(248,192,44)" fg:x="217964" fg:w="26"/><text x="98.0882%" y="847.50"></text></g><g><title>TieredThresholdPolicy::event (79 samples, 0.04%)</title><rect x="97.8279%" y="869" width="0.0355%" height="15" fill="rgb(221,89,17)" fg:x="217941" fg:w="79"/><text x="98.0779%" y="879.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (59 samples, 0.03%)</title><rect x="97.8369%" y="853" width="0.0265%" height="15" fill="rgb(209,55,3)" fg:x="217961" fg:w="59"/><text x="98.0869%" y="863.50"></text></g><g><title>TieredThresholdPolicy::compile (30 samples, 0.01%)</title><rect x="97.8499%" y="837" width="0.0135%" height="15" fill="rgb(247,23,45)" fg:x="217990" fg:w="30"/><text x="98.0999%" y="847.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (29 samples, 0.01%)</title><rect x="97.8503%" y="821" width="0.0130%" height="15" fill="rgb(235,152,23)" fg:x="217991" fg:w="29"/><text x="98.1003%" y="831.50"></text></g><g><title>CompileBroker::compile_method (28 samples, 0.01%)</title><rect x="97.8508%" y="805" width="0.0126%" height="15" fill="rgb(244,63,13)" fg:x="217992" fg:w="28"/><text x="98.1008%" y="815.50"></text></g><g><title>Runtime1::counter_overflow (109 samples, 0.05%)</title><rect x="97.8203%" y="885" width="0.0489%" height="15" fill="rgb(227,30,37)" fg:x="217924" fg:w="109"/><text x="98.0703%" y="895.50"></text></g><g><title>ObjectMonitor::enter (26 samples, 0.01%)</title><rect x="97.8737%" y="869" width="0.0117%" height="15" fill="rgb(224,49,42)" fg:x="218043" fg:w="26"/><text x="98.1237%" y="879.50"></text></g><g><title>finish_task_switch (57 samples, 0.03%)</title><rect x="97.8876%" y="597" width="0.0256%" height="15" fill="rgb(218,129,5)" fg:x="218074" fg:w="57"/><text x="98.1376%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.03%)</title><rect x="97.8881%" y="581" width="0.0251%" height="15" fill="rgb(240,199,54)" fg:x="218075" fg:w="56"/><text x="98.1381%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.03%)</title><rect x="97.8881%" y="565" width="0.0251%" height="15" fill="rgb(234,31,13)" fg:x="218075" fg:w="56"/><text x="98.1381%" y="575.50"></text></g><g><title>native_write_msr (56 samples, 0.03%)</title><rect x="97.8881%" y="549" width="0.0251%" height="15" fill="rgb(219,73,54)" fg:x="218075" fg:w="56"/><text x="98.1381%" y="559.50"></text></g><g><title>do_syscall_64 (59 samples, 0.03%)</title><rect x="97.8872%" y="709" width="0.0265%" height="15" fill="rgb(251,162,10)" fg:x="218073" fg:w="59"/><text x="98.1372%" y="719.50"></text></g><g><title>__x64_sys_futex (59 samples, 0.03%)</title><rect x="97.8872%" y="693" width="0.0265%" height="15" fill="rgb(240,138,47)" fg:x="218073" fg:w="59"/><text x="98.1372%" y="703.50"></text></g><g><title>do_futex (59 samples, 0.03%)</title><rect x="97.8872%" y="677" width="0.0265%" height="15" fill="rgb(216,138,26)" fg:x="218073" fg:w="59"/><text x="98.1372%" y="687.50"></text></g><g><title>futex_wait (59 samples, 0.03%)</title><rect x="97.8872%" y="661" width="0.0265%" height="15" fill="rgb(243,17,35)" fg:x="218073" fg:w="59"/><text x="98.1372%" y="671.50"></text></g><g><title>futex_wait_queue_me (58 samples, 0.03%)</title><rect x="97.8876%" y="645" width="0.0260%" height="15" fill="rgb(241,60,18)" fg:x="218074" fg:w="58"/><text x="98.1376%" y="655.50"></text></g><g><title>schedule (58 samples, 0.03%)</title><rect x="97.8876%" y="629" width="0.0260%" height="15" fill="rgb(234,2,44)" fg:x="218074" fg:w="58"/><text x="98.1376%" y="639.50"></text></g><g><title>__schedule (58 samples, 0.03%)</title><rect x="97.8876%" y="613" width="0.0260%" height="15" fill="rgb(225,225,33)" fg:x="218074" fg:w="58"/><text x="98.1376%" y="623.50"></text></g><g><title>Monitor::IWait (63 samples, 0.03%)</title><rect x="97.8863%" y="805" width="0.0283%" height="15" fill="rgb(234,50,31)" fg:x="218071" fg:w="63"/><text x="98.1363%" y="815.50"></text></g><g><title>os::PlatformEvent::park (61 samples, 0.03%)</title><rect x="97.8872%" y="789" width="0.0274%" height="15" fill="rgb(249,6,25)" fg:x="218073" fg:w="61"/><text x="98.1372%" y="799.50"></text></g><g><title>__pthread_cond_wait (61 samples, 0.03%)</title><rect x="97.8872%" y="773" width="0.0274%" height="15" fill="rgb(241,5,17)" fg:x="218073" fg:w="61"/><text x="98.1372%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (61 samples, 0.03%)</title><rect x="97.8872%" y="757" width="0.0274%" height="15" fill="rgb(207,116,10)" fg:x="218073" fg:w="61"/><text x="98.1372%" y="767.50"></text></g><g><title>futex_wait_cancelable (61 samples, 0.03%)</title><rect x="97.8872%" y="741" width="0.0274%" height="15" fill="rgb(222,128,18)" fg:x="218073" fg:w="61"/><text x="98.1372%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.03%)</title><rect x="97.8872%" y="725" width="0.0274%" height="15" fill="rgb(229,109,25)" fg:x="218073" fg:w="61"/><text x="98.1372%" y="735.50"></text></g><g><title>Monitor::wait (78 samples, 0.04%)</title><rect x="97.8863%" y="821" width="0.0350%" height="15" fill="rgb(222,102,25)" fg:x="218071" fg:w="78"/><text x="98.1363%" y="831.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (80 samples, 0.04%)</title><rect x="97.8858%" y="853" width="0.0359%" height="15" fill="rgb(239,211,5)" fg:x="218070" fg:w="80"/><text x="98.1358%" y="863.50"></text></g><g><title>VMThread::execute (80 samples, 0.04%)</title><rect x="97.8858%" y="837" width="0.0359%" height="15" fill="rgb(223,136,26)" fg:x="218070" fg:w="80"/><text x="98.1358%" y="847.50"></text></g><g><title>Runtime1::monitorenter (119 samples, 0.05%)</title><rect x="97.8701%" y="885" width="0.0534%" height="15" fill="rgb(227,30,15)" fg:x="218035" fg:w="119"/><text x="98.1201%" y="895.50"></text></g><g><title>ObjectSynchronizer::fast_enter (85 samples, 0.04%)</title><rect x="97.8854%" y="869" width="0.0382%" height="15" fill="rgb(247,76,4)" fg:x="218069" fg:w="85"/><text x="98.1354%" y="879.50"></text></g><g><title>kernel_init_free_pages (30 samples, 0.01%)</title><rect x="97.9370%" y="661" width="0.0135%" height="15" fill="rgb(245,38,48)" fg:x="218184" fg:w="30"/><text x="98.1870%" y="671.50"></text></g><g><title>clear_page_erms (30 samples, 0.01%)</title><rect x="97.9370%" y="645" width="0.0135%" height="15" fill="rgb(210,220,14)" fg:x="218184" fg:w="30"/><text x="98.1870%" y="655.50"></text></g><g><title>alloc_pages_vma (34 samples, 0.02%)</title><rect x="97.9356%" y="725" width="0.0153%" height="15" fill="rgb(224,60,51)" fg:x="218181" fg:w="34"/><text x="98.1856%" y="735.50"></text></g><g><title>__alloc_pages_nodemask (34 samples, 0.02%)</title><rect x="97.9356%" y="709" width="0.0153%" height="15" fill="rgb(212,133,49)" fg:x="218181" fg:w="34"/><text x="98.1856%" y="719.50"></text></g><g><title>get_page_from_freelist (34 samples, 0.02%)</title><rect x="97.9356%" y="693" width="0.0153%" height="15" fill="rgb(231,39,22)" fg:x="218181" fg:w="34"/><text x="98.1856%" y="703.50"></text></g><g><title>prep_new_page (31 samples, 0.01%)</title><rect x="97.9370%" y="677" width="0.0139%" height="15" fill="rgb(236,173,22)" fg:x="218184" fg:w="31"/><text x="98.1870%" y="687.50"></text></g><g><title>InstanceKlass::allocate_instance (74 samples, 0.03%)</title><rect x="97.9289%" y="869" width="0.0332%" height="15" fill="rgb(210,70,0)" fg:x="218166" fg:w="74"/><text x="98.1789%" y="879.50"></text></g><g><title>CollectedHeap::obj_allocate (74 samples, 0.03%)</title><rect x="97.9289%" y="853" width="0.0332%" height="15" fill="rgb(215,170,11)" fg:x="218166" fg:w="74"/><text x="98.1789%" y="863.50"></text></g><g><title>MemAllocator::allocate (74 samples, 0.03%)</title><rect x="97.9289%" y="837" width="0.0332%" height="15" fill="rgb(220,154,28)" fg:x="218166" fg:w="74"/><text x="98.1789%" y="847.50"></text></g><g><title>ObjAllocator::initialize (59 samples, 0.03%)</title><rect x="97.9356%" y="821" width="0.0265%" height="15" fill="rgb(240,160,41)" fg:x="218181" fg:w="59"/><text x="98.1856%" y="831.50"></text></g><g><title>asm_exc_page_fault (59 samples, 0.03%)</title><rect x="97.9356%" y="805" width="0.0265%" height="15" fill="rgb(243,215,41)" fg:x="218181" fg:w="59"/><text x="98.1856%" y="815.50"></text></g><g><title>exc_page_fault (59 samples, 0.03%)</title><rect x="97.9356%" y="789" width="0.0265%" height="15" fill="rgb(214,208,31)" fg:x="218181" fg:w="59"/><text x="98.1856%" y="799.50"></text></g><g><title>do_user_addr_fault (59 samples, 0.03%)</title><rect x="97.9356%" y="773" width="0.0265%" height="15" fill="rgb(247,57,22)" fg:x="218181" fg:w="59"/><text x="98.1856%" y="783.50"></text></g><g><title>handle_mm_fault (59 samples, 0.03%)</title><rect x="97.9356%" y="757" width="0.0265%" height="15" fill="rgb(228,73,52)" fg:x="218181" fg:w="59"/><text x="98.1856%" y="767.50"></text></g><g><title>do_huge_pmd_anonymous_page (59 samples, 0.03%)</title><rect x="97.9356%" y="741" width="0.0265%" height="15" fill="rgb(252,60,9)" fg:x="218181" fg:w="59"/><text x="98.1856%" y="751.50"></text></g><g><title>clear_huge_page (25 samples, 0.01%)</title><rect x="97.9509%" y="725" width="0.0112%" height="15" fill="rgb(233,9,51)" fg:x="218215" fg:w="25"/><text x="98.2009%" y="735.50"></text></g><g><title>clear_subpage (24 samples, 0.01%)</title><rect x="97.9513%" y="709" width="0.0108%" height="15" fill="rgb(223,67,14)" fg:x="218216" fg:w="24"/><text x="98.2013%" y="719.50"></text></g><g><title>clear_page_erms (24 samples, 0.01%)</title><rect x="97.9513%" y="693" width="0.0108%" height="15" fill="rgb(222,86,2)" fg:x="218216" fg:w="24"/><text x="98.2013%" y="703.50"></text></g><g><title>Runtime1::new_instance (78 samples, 0.04%)</title><rect x="97.9276%" y="885" width="0.0350%" height="15" fill="rgb(243,58,54)" fg:x="218163" fg:w="78"/><text x="98.1776%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="97.9711%" y="645" width="0.0117%" height="15" fill="rgb(210,200,39)" fg:x="218260" fg:w="26"/><text x="98.2211%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="97.9715%" y="629" width="0.0112%" height="15" fill="rgb(238,135,9)" fg:x="218261" fg:w="25"/><text x="98.2215%" y="639.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="97.9715%" y="613" width="0.0112%" height="15" fill="rgb(232,179,7)" fg:x="218261" fg:w="25"/><text x="98.2215%" y="623.50"></text></g><g><title>do_syscall_64 (29 samples, 0.01%)</title><rect x="97.9702%" y="773" width="0.0130%" height="15" fill="rgb(245,65,41)" fg:x="218258" fg:w="29"/><text x="98.2202%" y="783.50"></text></g><g><title>__x64_sys_futex (29 samples, 0.01%)</title><rect x="97.9702%" y="757" width="0.0130%" height="15" fill="rgb(227,43,8)" fg:x="218258" fg:w="29"/><text x="98.2202%" y="767.50"></text></g><g><title>do_futex (28 samples, 0.01%)</title><rect x="97.9706%" y="741" width="0.0126%" height="15" fill="rgb(235,91,14)" fg:x="218259" fg:w="28"/><text x="98.2206%" y="751.50"></text></g><g><title>futex_wait (28 samples, 0.01%)</title><rect x="97.9706%" y="725" width="0.0126%" height="15" fill="rgb(235,219,31)" fg:x="218259" fg:w="28"/><text x="98.2206%" y="735.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.01%)</title><rect x="97.9706%" y="709" width="0.0126%" height="15" fill="rgb(227,121,25)" fg:x="218259" fg:w="28"/><text x="98.2206%" y="719.50"></text></g><g><title>schedule (28 samples, 0.01%)</title><rect x="97.9706%" y="693" width="0.0126%" height="15" fill="rgb(254,129,24)" fg:x="218259" fg:w="28"/><text x="98.2206%" y="703.50"></text></g><g><title>__schedule (28 samples, 0.01%)</title><rect x="97.9706%" y="677" width="0.0126%" height="15" fill="rgb(226,144,49)" fg:x="218259" fg:w="28"/><text x="98.2206%" y="687.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="97.9706%" y="661" width="0.0126%" height="15" fill="rgb(214,187,32)" fg:x="218259" fg:w="28"/><text x="98.2206%" y="671.50"></text></g><g><title>__pthread_cond_timedwait (30 samples, 0.01%)</title><rect x="97.9702%" y="837" width="0.0135%" height="15" fill="rgb(243,129,46)" fg:x="218258" fg:w="30"/><text x="98.2202%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (30 samples, 0.01%)</title><rect x="97.9702%" y="821" width="0.0135%" height="15" fill="rgb(221,185,35)" fg:x="218258" fg:w="30"/><text x="98.2202%" y="831.50"></text></g><g><title>futex_abstimed_wait_cancelable (30 samples, 0.01%)</title><rect x="97.9702%" y="805" width="0.0135%" height="15" fill="rgb(205,0,32)" fg:x="218258" fg:w="30"/><text x="98.2202%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="97.9702%" y="789" width="0.0135%" height="15" fill="rgb(229,179,12)" fg:x="218258" fg:w="30"/><text x="98.2202%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.01%)</title><rect x="97.9855%" y="645" width="0.0112%" height="15" fill="rgb(252,107,19)" fg:x="218292" fg:w="25"/><text x="98.2355%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="97.9859%" y="629" width="0.0108%" height="15" fill="rgb(220,95,27)" fg:x="218293" fg:w="24"/><text x="98.2359%" y="639.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="97.9859%" y="613" width="0.0108%" height="15" fill="rgb(240,113,40)" fg:x="218293" fg:w="24"/><text x="98.2359%" y="623.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="97.9855%" y="661" width="0.0121%" height="15" fill="rgb(208,4,43)" fg:x="218292" fg:w="27"/><text x="98.2355%" y="671.50"></text></g><g><title>__pthread_cond_wait (33 samples, 0.01%)</title><rect x="97.9837%" y="837" width="0.0148%" height="15" fill="rgb(247,189,30)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (33 samples, 0.01%)</title><rect x="97.9837%" y="821" width="0.0148%" height="15" fill="rgb(231,157,17)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="831.50"></text></g><g><title>futex_wait_cancelable (33 samples, 0.01%)</title><rect x="97.9837%" y="805" width="0.0148%" height="15" fill="rgb(224,139,6)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.01%)</title><rect x="97.9837%" y="789" width="0.0148%" height="15" fill="rgb(223,83,16)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="799.50"></text></g><g><title>do_syscall_64 (33 samples, 0.01%)</title><rect x="97.9837%" y="773" width="0.0148%" height="15" fill="rgb(232,211,20)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="783.50"></text></g><g><title>__x64_sys_futex (33 samples, 0.01%)</title><rect x="97.9837%" y="757" width="0.0148%" height="15" fill="rgb(225,203,35)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="767.50"></text></g><g><title>do_futex (33 samples, 0.01%)</title><rect x="97.9837%" y="741" width="0.0148%" height="15" fill="rgb(215,211,44)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="751.50"></text></g><g><title>futex_wait (33 samples, 0.01%)</title><rect x="97.9837%" y="725" width="0.0148%" height="15" fill="rgb(248,213,26)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="735.50"></text></g><g><title>futex_wait_queue_me (32 samples, 0.01%)</title><rect x="97.9841%" y="709" width="0.0144%" height="15" fill="rgb(214,23,52)" fg:x="218289" fg:w="32"/><text x="98.2341%" y="719.50"></text></g><g><title>schedule (31 samples, 0.01%)</title><rect x="97.9846%" y="693" width="0.0139%" height="15" fill="rgb(225,173,50)" fg:x="218290" fg:w="31"/><text x="98.2346%" y="703.50"></text></g><g><title>__schedule (31 samples, 0.01%)</title><rect x="97.9846%" y="677" width="0.0139%" height="15" fill="rgb(206,150,22)" fg:x="218290" fg:w="31"/><text x="98.2346%" y="687.50"></text></g><g><title>ObjectMonitor::enter (68 samples, 0.03%)</title><rect x="97.9684%" y="869" width="0.0305%" height="15" fill="rgb(239,64,23)" fg:x="218254" fg:w="68"/><text x="98.2184%" y="879.50"></text></g><g><title>os::PlatformEvent::park (64 samples, 0.03%)</title><rect x="97.9702%" y="853" width="0.0287%" height="15" fill="rgb(242,50,38)" fg:x="218258" fg:w="64"/><text x="98.2202%" y="863.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (70 samples, 0.03%)</title><rect x="97.9684%" y="885" width="0.0314%" height="15" fill="rgb(217,91,15)" fg:x="218254" fg:w="70"/><text x="98.2184%" y="895.50"></text></g><g><title>ClassFileParser::ClassFileParser (55 samples, 0.02%)</title><rect x="98.0420%" y="837" width="0.0247%" height="15" fill="rgb(230,172,6)" fg:x="218418" fg:w="55"/><text x="98.2920%" y="847.50"></text></g><g><title>ClassFileParser::parse_stream (55 samples, 0.02%)</title><rect x="98.0420%" y="821" width="0.0247%" height="15" fill="rgb(221,98,26)" fg:x="218418" fg:w="55"/><text x="98.2920%" y="831.50"></text></g><g><title>KlassFactory::create_from_stream (68 samples, 0.03%)</title><rect x="98.0420%" y="853" width="0.0305%" height="15" fill="rgb(227,210,45)" fg:x="218418" fg:w="68"/><text x="98.2920%" y="863.50"></text></g><g><title>SystemDictionary::parse_stream (91 samples, 0.04%)</title><rect x="98.0321%" y="869" width="0.0408%" height="15" fill="rgb(206,8,30)" fg:x="218396" fg:w="91"/><text x="98.2821%" y="879.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (96 samples, 0.04%)</title><rect x="98.0303%" y="885" width="0.0431%" height="15" fill="rgb(241,219,17)" fg:x="218392" fg:w="96"/><text x="98.2803%" y="895.50"></text></g><g><title>__pthread_cond_timedwait (27 samples, 0.01%)</title><rect x="98.0941%" y="853" width="0.0121%" height="15" fill="rgb(247,121,29)" fg:x="218534" fg:w="27"/><text x="98.3441%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.01%)</title><rect x="98.0941%" y="837" width="0.0121%" height="15" fill="rgb(219,169,49)" fg:x="218534" fg:w="27"/><text x="98.3441%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (27 samples, 0.01%)</title><rect x="98.0941%" y="821" width="0.0121%" height="15" fill="rgb(253,49,49)" fg:x="218534" fg:w="27"/><text x="98.3441%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.01%)</title><rect x="98.0945%" y="805" width="0.0117%" height="15" fill="rgb(217,178,3)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="815.50"></text></g><g><title>do_syscall_64 (26 samples, 0.01%)</title><rect x="98.0945%" y="789" width="0.0117%" height="15" fill="rgb(234,73,37)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="799.50"></text></g><g><title>__x64_sys_futex (26 samples, 0.01%)</title><rect x="98.0945%" y="773" width="0.0117%" height="15" fill="rgb(250,98,22)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="783.50"></text></g><g><title>do_futex (26 samples, 0.01%)</title><rect x="98.0945%" y="757" width="0.0117%" height="15" fill="rgb(220,108,37)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="767.50"></text></g><g><title>futex_wait (26 samples, 0.01%)</title><rect x="98.0945%" y="741" width="0.0117%" height="15" fill="rgb(225,168,10)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="751.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.01%)</title><rect x="98.0945%" y="725" width="0.0117%" height="15" fill="rgb(247,215,21)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="735.50"></text></g><g><title>schedule (26 samples, 0.01%)</title><rect x="98.0945%" y="709" width="0.0117%" height="15" fill="rgb(253,189,31)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="719.50"></text></g><g><title>__schedule (26 samples, 0.01%)</title><rect x="98.0945%" y="693" width="0.0117%" height="15" fill="rgb(241,54,22)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (354 samples, 0.16%)</title><rect x="98.1233%" y="661" width="0.1589%" height="15" fill="rgb(211,87,4)" fg:x="218599" fg:w="354"/><text x="98.3733%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (345 samples, 0.15%)</title><rect x="98.1273%" y="645" width="0.1549%" height="15" fill="rgb(245,112,24)" fg:x="218608" fg:w="345"/><text x="98.3773%" y="655.50"></text></g><g><title>native_write_msr (344 samples, 0.15%)</title><rect x="98.1277%" y="629" width="0.1544%" height="15" fill="rgb(235,190,41)" fg:x="218609" fg:w="344"/><text x="98.3777%" y="639.50"></text></g><g><title>finish_task_switch (369 samples, 0.17%)</title><rect x="98.1210%" y="677" width="0.1656%" height="15" fill="rgb(214,89,8)" fg:x="218594" fg:w="369"/><text x="98.3710%" y="687.50"></text></g><g><title>futex_wait_queue_me (405 samples, 0.18%)</title><rect x="98.1107%" y="725" width="0.1818%" height="15" fill="rgb(249,155,35)" fg:x="218571" fg:w="405"/><text x="98.3607%" y="735.50"></text></g><g><title>schedule (397 samples, 0.18%)</title><rect x="98.1143%" y="709" width="0.1782%" height="15" fill="rgb(249,88,26)" fg:x="218579" fg:w="397"/><text x="98.3643%" y="719.50"></text></g><g><title>__schedule (397 samples, 0.18%)</title><rect x="98.1143%" y="693" width="0.1782%" height="15" fill="rgb(232,56,8)" fg:x="218579" fg:w="397"/><text x="98.3643%" y="703.50"></text></g><g><title>do_syscall_64 (414 samples, 0.19%)</title><rect x="98.1084%" y="789" width="0.1858%" height="15" fill="rgb(240,95,3)" fg:x="218566" fg:w="414"/><text x="98.3584%" y="799.50"></text></g><g><title>__x64_sys_futex (413 samples, 0.19%)</title><rect x="98.1089%" y="773" width="0.1854%" height="15" fill="rgb(222,44,28)" fg:x="218567" fg:w="413"/><text x="98.3589%" y="783.50"></text></g><g><title>do_futex (412 samples, 0.18%)</title><rect x="98.1093%" y="757" width="0.1849%" height="15" fill="rgb(234,16,30)" fg:x="218568" fg:w="412"/><text x="98.3593%" y="767.50"></text></g><g><title>futex_wait (411 samples, 0.18%)</title><rect x="98.1098%" y="741" width="0.1845%" height="15" fill="rgb(223,26,17)" fg:x="218569" fg:w="411"/><text x="98.3598%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (419 samples, 0.19%)</title><rect x="98.1084%" y="805" width="0.1881%" height="15" fill="rgb(239,187,47)" fg:x="218566" fg:w="419"/><text x="98.3584%" y="815.50"></text></g><g><title>__pthread_cond_wait (425 samples, 0.19%)</title><rect x="98.1062%" y="853" width="0.1908%" height="15" fill="rgb(247,102,50)" fg:x="218561" fg:w="425"/><text x="98.3562%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (425 samples, 0.19%)</title><rect x="98.1062%" y="837" width="0.1908%" height="15" fill="rgb(231,216,22)" fg:x="218561" fg:w="425"/><text x="98.3562%" y="847.50"></text></g><g><title>futex_wait_cancelable (424 samples, 0.19%)</title><rect x="98.1067%" y="821" width="0.1903%" height="15" fill="rgb(216,201,26)" fg:x="218562" fg:w="424"/><text x="98.3567%" y="831.50"></text></g><g><title>Parker::park (481 samples, 0.22%)</title><rect x="98.0869%" y="869" width="0.2159%" height="15" fill="rgb(214,186,23)" fg:x="218518" fg:w="481"/><text x="98.3369%" y="879.50"></text></g><g><title>Unsafe_Park (491 samples, 0.22%)</title><rect x="98.0833%" y="885" width="0.2204%" height="15" fill="rgb(235,184,4)" fg:x="218510" fg:w="491"/><text x="98.3333%" y="895.50"></text></g><g><title>ttwu_do_activate (44 samples, 0.02%)</title><rect x="98.3338%" y="725" width="0.0198%" height="15" fill="rgb(244,46,17)" fg:x="219068" fg:w="44"/><text x="98.5838%" y="735.50"></text></g><g><title>psi_task_change (23 samples, 0.01%)</title><rect x="98.3432%" y="709" width="0.0103%" height="15" fill="rgb(248,74,46)" fg:x="219089" fg:w="23"/><text x="98.5932%" y="719.50"></text></g><g><title>do_syscall_64 (100 samples, 0.04%)</title><rect x="98.3154%" y="821" width="0.0449%" height="15" fill="rgb(243,79,5)" fg:x="219027" fg:w="100"/><text x="98.5654%" y="831.50"></text></g><g><title>__x64_sys_futex (100 samples, 0.04%)</title><rect x="98.3154%" y="805" width="0.0449%" height="15" fill="rgb(213,148,1)" fg:x="219027" fg:w="100"/><text x="98.5654%" y="815.50"></text></g><g><title>do_futex (100 samples, 0.04%)</title><rect x="98.3154%" y="789" width="0.0449%" height="15" fill="rgb(221,30,0)" fg:x="219027" fg:w="100"/><text x="98.5654%" y="799.50"></text></g><g><title>futex_wake (99 samples, 0.04%)</title><rect x="98.3158%" y="773" width="0.0444%" height="15" fill="rgb(207,85,29)" fg:x="219028" fg:w="99"/><text x="98.5658%" y="783.50"></text></g><g><title>wake_up_q (82 samples, 0.04%)</title><rect x="98.3235%" y="757" width="0.0368%" height="15" fill="rgb(239,31,46)" fg:x="219045" fg:w="82"/><text x="98.5735%" y="767.50"></text></g><g><title>try_to_wake_up (82 samples, 0.04%)</title><rect x="98.3235%" y="741" width="0.0368%" height="15" fill="rgb(219,6,1)" fg:x="219045" fg:w="82"/><text x="98.5735%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (124 samples, 0.06%)</title><rect x="98.3154%" y="837" width="0.0557%" height="15" fill="rgb(229,90,29)" fg:x="219027" fg:w="124"/><text x="98.5654%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (24 samples, 0.01%)</title><rect x="98.3603%" y="821" width="0.0108%" height="15" fill="rgb(242,201,42)" fg:x="219127" fg:w="24"/><text x="98.6103%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (24 samples, 0.01%)</title><rect x="98.3603%" y="805" width="0.0108%" height="15" fill="rgb(243,80,54)" fg:x="219127" fg:w="24"/><text x="98.6103%" y="815.50"></text></g><g><title>schedule (24 samples, 0.01%)</title><rect x="98.3603%" y="789" width="0.0108%" height="15" fill="rgb(223,166,15)" fg:x="219127" fg:w="24"/><text x="98.6103%" y="799.50"></text></g><g><title>__schedule (24 samples, 0.01%)</title><rect x="98.3603%" y="773" width="0.0108%" height="15" fill="rgb(238,78,27)" fg:x="219127" fg:w="24"/><text x="98.6103%" y="783.50"></text></g><g><title>__pthread_cond_signal (133 samples, 0.06%)</title><rect x="98.3118%" y="869" width="0.0597%" height="15" fill="rgb(235,28,43)" fg:x="219019" fg:w="133"/><text x="98.5618%" y="879.50"></text></g><g><title>futex_wake (129 samples, 0.06%)</title><rect x="98.3136%" y="853" width="0.0579%" height="15" fill="rgb(240,210,28)" fg:x="219023" fg:w="129"/><text x="98.5636%" y="863.50"></text></g><g><title>Unsafe_Unpark (150 samples, 0.07%)</title><rect x="98.3051%" y="885" width="0.0673%" height="15" fill="rgb(253,6,46)" fg:x="219004" fg:w="150"/><text x="98.5551%" y="895.50"></text></g><g><title>handle_edge_irq (25 samples, 0.01%)</title><rect x="98.3746%" y="853" width="0.0112%" height="15" fill="rgb(250,159,47)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="863.50"></text></g><g><title>handle_irq_event (25 samples, 0.01%)</title><rect x="98.3746%" y="837" width="0.0112%" height="15" fill="rgb(216,139,2)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="847.50"></text></g><g><title>__handle_irq_event_percpu (25 samples, 0.01%)</title><rect x="98.3746%" y="821" width="0.0112%" height="15" fill="rgb(221,124,44)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="831.50"></text></g><g><title>nvme_irq (25 samples, 0.01%)</title><rect x="98.3746%" y="805" width="0.0112%" height="15" fill="rgb(205,37,22)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="815.50"></text></g><g><title>nvme_process_cq (25 samples, 0.01%)</title><rect x="98.3746%" y="789" width="0.0112%" height="15" fill="rgb(250,55,8)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="799.50"></text></g><g><title>blk_mq_end_request (25 samples, 0.01%)</title><rect x="98.3746%" y="773" width="0.0112%" height="15" fill="rgb(215,83,48)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="783.50"></text></g><g><title>blk_update_request (25 samples, 0.01%)</title><rect x="98.3746%" y="757" width="0.0112%" height="15" fill="rgb(253,2,32)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="767.50"></text></g><g><title>asm_common_interrupt (39 samples, 0.02%)</title><rect x="98.3746%" y="885" width="0.0175%" height="15" fill="rgb(236,67,28)" fg:x="219159" fg:w="39"/><text x="98.6246%" y="895.50"></text></g><g><title>common_interrupt (39 samples, 0.02%)</title><rect x="98.3746%" y="869" width="0.0175%" height="15" fill="rgb(252,55,15)" fg:x="219159" fg:w="39"/><text x="98.6246%" y="879.50"></text></g><g><title>tick_sched_timer (40 samples, 0.02%)</title><rect x="98.4092%" y="805" width="0.0180%" height="15" fill="rgb(243,173,17)" fg:x="219236" fg:w="40"/><text x="98.6592%" y="815.50"></text></g><g><title>tick_sched_handle (39 samples, 0.02%)</title><rect x="98.4096%" y="789" width="0.0175%" height="15" fill="rgb(215,212,13)" fg:x="219237" fg:w="39"/><text x="98.6596%" y="799.50"></text></g><g><title>update_process_times (36 samples, 0.02%)</title><rect x="98.4110%" y="773" width="0.0162%" height="15" fill="rgb(253,176,6)" fg:x="219240" fg:w="36"/><text x="98.6610%" y="783.50"></text></g><g><title>scheduler_tick (30 samples, 0.01%)</title><rect x="98.4137%" y="757" width="0.0135%" height="15" fill="rgb(236,105,26)" fg:x="219246" fg:w="30"/><text x="98.6637%" y="767.50"></text></g><g><title>__hrtimer_run_queues (55 samples, 0.02%)</title><rect x="98.4052%" y="821" width="0.0247%" height="15" fill="rgb(239,226,32)" fg:x="219227" fg:w="55"/><text x="98.6552%" y="831.50"></text></g><g><title>hrtimer_interrupt (62 samples, 0.03%)</title><rect x="98.4047%" y="837" width="0.0278%" height="15" fill="rgb(236,104,51)" fg:x="219226" fg:w="62"/><text x="98.6547%" y="847.50"></text></g><g><title>__sysvec_apic_timer_interrupt (63 samples, 0.03%)</title><rect x="98.4047%" y="853" width="0.0283%" height="15" fill="rgb(220,172,33)" fg:x="219226" fg:w="63"/><text x="98.6547%" y="863.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (119 samples, 0.05%)</title><rect x="98.3980%" y="885" width="0.0534%" height="15" fill="rgb(224,182,25)" fg:x="219211" fg:w="119"/><text x="98.6480%" y="895.50"></text></g><g><title>sysvec_apic_timer_interrupt (104 samples, 0.05%)</title><rect x="98.4047%" y="869" width="0.0467%" height="15" fill="rgb(236,184,24)" fg:x="219226" fg:w="104"/><text x="98.6547%" y="879.50"></text></g><g><title>irq_exit_rcu (40 samples, 0.02%)</title><rect x="98.4334%" y="853" width="0.0180%" height="15" fill="rgb(241,221,14)" fg:x="219290" fg:w="40"/><text x="98.6834%" y="863.50"></text></g><g><title>do_softirq_own_stack (38 samples, 0.02%)</title><rect x="98.4343%" y="837" width="0.0171%" height="15" fill="rgb(227,146,5)" fg:x="219292" fg:w="38"/><text x="98.6843%" y="847.50"></text></g><g><title>asm_call_sysvec_on_stack (38 samples, 0.02%)</title><rect x="98.4343%" y="821" width="0.0171%" height="15" fill="rgb(214,15,23)" fg:x="219292" fg:w="38"/><text x="98.6843%" y="831.50"></text></g><g><title>__softirqentry_text_start (38 samples, 0.02%)</title><rect x="98.4343%" y="805" width="0.0171%" height="15" fill="rgb(233,157,31)" fg:x="219292" fg:w="38"/><text x="98.6843%" y="815.50"></text></g><g><title>finish_task_switch (44 samples, 0.02%)</title><rect x="98.4599%" y="805" width="0.0198%" height="15" fill="rgb(211,27,52)" fg:x="219349" fg:w="44"/><text x="98.7099%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.02%)</title><rect x="98.4604%" y="789" width="0.0193%" height="15" fill="rgb(212,223,15)" fg:x="219350" fg:w="43"/><text x="98.7104%" y="799.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.02%)</title><rect x="98.4608%" y="773" width="0.0189%" height="15" fill="rgb(254,211,0)" fg:x="219351" fg:w="42"/><text x="98.7108%" y="783.50"></text></g><g><title>native_write_msr (42 samples, 0.02%)</title><rect x="98.4608%" y="757" width="0.0189%" height="15" fill="rgb(205,43,38)" fg:x="219351" fg:w="42"/><text x="98.7108%" y="767.50"></text></g><g><title>schedule (69 samples, 0.03%)</title><rect x="98.4568%" y="837" width="0.0310%" height="15" fill="rgb(242,206,46)" fg:x="219342" fg:w="69"/><text x="98.7068%" y="847.50"></text></g><g><title>__schedule (69 samples, 0.03%)</title><rect x="98.4568%" y="821" width="0.0310%" height="15" fill="rgb(220,221,12)" fg:x="219342" fg:w="69"/><text x="98.7068%" y="831.50"></text></g><g><title>irqentry_exit_to_user_mode (77 samples, 0.03%)</title><rect x="98.4559%" y="869" width="0.0346%" height="15" fill="rgb(217,156,35)" fg:x="219340" fg:w="77"/><text x="98.7059%" y="879.50"></text></g><g><title>exit_to_user_mode_prepare (77 samples, 0.03%)</title><rect x="98.4559%" y="853" width="0.0346%" height="15" fill="rgb(207,181,49)" fg:x="219340" fg:w="77"/><text x="98.7059%" y="863.50"></text></g><g><title>asm_sysvec_reschedule_ipi (79 samples, 0.04%)</title><rect x="98.4559%" y="885" width="0.0355%" height="15" fill="rgb(235,103,47)" fg:x="219340" fg:w="79"/><text x="98.7059%" y="895.50"></text></g><g><title>__sysvec_thermal (46 samples, 0.02%)</title><rect x="98.4913%" y="853" width="0.0206%" height="15" fill="rgb(222,63,28)" fg:x="219419" fg:w="46"/><text x="98.7413%" y="863.50"></text></g><g><title>intel_thermal_interrupt (45 samples, 0.02%)</title><rect x="98.4918%" y="837" width="0.0202%" height="15" fill="rgb(244,137,21)" fg:x="219420" fg:w="45"/><text x="98.7418%" y="847.50"></text></g><g><title>asm_sysvec_thermal (49 samples, 0.02%)</title><rect x="98.4913%" y="885" width="0.0220%" height="15" fill="rgb(228,35,27)" fg:x="219419" fg:w="49"/><text x="98.7413%" y="895.50"></text></g><g><title>sysvec_thermal (49 samples, 0.02%)</title><rect x="98.4913%" y="869" width="0.0220%" height="15" fill="rgb(226,191,41)" fg:x="219419" fg:w="49"/><text x="98.7413%" y="879.50"></text></g><g><title>btrfs_search_slot (25 samples, 0.01%)</title><rect x="98.5510%" y="709" width="0.0112%" height="15" fill="rgb(210,154,3)" fg:x="219552" fg:w="25"/><text x="98.8010%" y="719.50"></text></g><g><title>btrfs_insert_empty_items (26 samples, 0.01%)</title><rect x="98.5510%" y="725" width="0.0117%" height="15" fill="rgb(216,60,49)" fg:x="219552" fg:w="26"/><text x="98.8010%" y="735.50"></text></g><g><title>btrfs_new_inode (31 samples, 0.01%)</title><rect x="98.5510%" y="741" width="0.0139%" height="15" fill="rgb(226,17,20)" fg:x="219552" fg:w="31"/><text x="98.8010%" y="751.50"></text></g><g><title>btrfs_create (43 samples, 0.02%)</title><rect x="98.5465%" y="757" width="0.0193%" height="15" fill="rgb(206,115,35)" fg:x="219542" fg:w="43"/><text x="98.7965%" y="767.50"></text></g><g><title>link_path_walk.part.0 (26 samples, 0.01%)</title><rect x="98.5748%" y="757" width="0.0117%" height="15" fill="rgb(227,88,1)" fg:x="219605" fg:w="26"/><text x="98.8248%" y="767.50"></text></g><g><title>do_filp_open (112 samples, 0.05%)</title><rect x="98.5380%" y="789" width="0.0503%" height="15" fill="rgb(230,222,24)" fg:x="219523" fg:w="112"/><text x="98.7880%" y="799.50"></text></g><g><title>path_openat (109 samples, 0.05%)</title><rect x="98.5394%" y="773" width="0.0489%" height="15" fill="rgb(214,124,32)" fg:x="219526" fg:w="109"/><text x="98.7894%" y="783.50"></text></g><g><title>__libc_open64 (124 samples, 0.06%)</title><rect x="98.5358%" y="869" width="0.0557%" height="15" fill="rgb(240,41,36)" fg:x="219518" fg:w="124"/><text x="98.7858%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (122 samples, 0.05%)</title><rect x="98.5367%" y="853" width="0.0548%" height="15" fill="rgb(221,17,52)" fg:x="219520" fg:w="122"/><text x="98.7867%" y="863.50"></text></g><g><title>do_syscall_64 (122 samples, 0.05%)</title><rect x="98.5367%" y="837" width="0.0548%" height="15" fill="rgb(252,70,16)" fg:x="219520" fg:w="122"/><text x="98.7867%" y="847.50"></text></g><g><title>__x64_sys_openat (122 samples, 0.05%)</title><rect x="98.5367%" y="821" width="0.0548%" height="15" fill="rgb(250,177,4)" fg:x="219520" fg:w="122"/><text x="98.7867%" y="831.50"></text></g><g><title>do_sys_openat2 (121 samples, 0.05%)</title><rect x="98.5371%" y="805" width="0.0543%" height="15" fill="rgb(240,188,47)" fg:x="219521" fg:w="121"/><text x="98.7871%" y="815.50"></text></g><g><title>fileOpen (152 samples, 0.07%)</title><rect x="98.5259%" y="885" width="0.0682%" height="15" fill="rgb(215,92,12)" fg:x="219496" fg:w="152"/><text x="98.7759%" y="895.50"></text></g><g><title>jni_IsAssignableFrom (34 samples, 0.02%)</title><rect x="98.6004%" y="885" width="0.0153%" height="15" fill="rgb(242,110,29)" fg:x="219662" fg:w="34"/><text x="98.8504%" y="895.50"></text></g><g><title>[[vdso]] (54 samples, 0.02%)</title><rect x="98.6583%" y="837" width="0.0242%" height="15" fill="rgb(208,211,26)" fg:x="219791" fg:w="54"/><text x="98.9083%" y="847.50"></text></g><g><title>os::javaTimeNanos (147 samples, 0.07%)</title><rect x="98.6170%" y="885" width="0.0660%" height="15" fill="rgb(244,147,6)" fg:x="219699" fg:w="147"/><text x="98.8670%" y="895.50"></text></g><g><title>__GI___clock_gettime (132 samples, 0.06%)</title><rect x="98.6238%" y="869" width="0.0593%" height="15" fill="rgb(211,130,42)" fg:x="219714" fg:w="132"/><text x="98.8738%" y="879.50"></text></g><g><title>__vdso_clock_gettime (97 samples, 0.04%)</title><rect x="98.6395%" y="853" width="0.0435%" height="15" fill="rgb(220,63,1)" fg:x="219749" fg:w="97"/><text x="98.8895%" y="863.50"></text></g><g><title>[perf-945576.map] (62,944 samples, 28.25%)</title><rect x="70.4300%" y="901" width="28.2539%" height="15" fill="rgb(241,212,30)" fg:x="156904" fg:w="62944"/><text x="70.6800%" y="911.50">[perf-945576.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (27 samples, 0.01%)</title><rect x="98.7041%" y="869" width="0.0121%" height="15" fill="rgb(233,153,17)" fg:x="219893" fg:w="27"/><text x="98.9541%" y="879.50"></text></g><g><title>SharedRuntime::find_callee_method (28 samples, 0.01%)</title><rect x="98.7041%" y="885" width="0.0126%" height="15" fill="rgb(236,3,10)" fg:x="219893" fg:w="28"/><text x="98.9541%" y="895.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (34 samples, 0.02%)</title><rect x="98.7167%" y="885" width="0.0153%" height="15" fill="rgb(232,41,21)" fg:x="219921" fg:w="34"/><text x="98.9667%" y="895.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (34 samples, 0.02%)</title><rect x="98.7167%" y="869" width="0.0153%" height="15" fill="rgb(206,63,51)" fg:x="219921" fg:w="34"/><text x="98.9667%" y="879.50"></text></g><g><title>Bytecode_invoke::static_target (39 samples, 0.02%)</title><rect x="98.7759%" y="853" width="0.0175%" height="15" fill="rgb(250,214,3)" fg:x="220053" fg:w="39"/><text x="99.0259%" y="863.50"></text></g><g><title>LinkResolver::resolve_method_statically (39 samples, 0.02%)</title><rect x="98.7759%" y="837" width="0.0175%" height="15" fill="rgb(254,89,27)" fg:x="220053" fg:w="39"/><text x="99.0259%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (34 samples, 0.02%)</title><rect x="98.7939%" y="853" width="0.0153%" height="15" fill="rgb(249,41,14)" fg:x="220093" fg:w="34"/><text x="99.0439%" y="863.50"></text></g><g><title>OopMapStream::find_next (32 samples, 0.01%)</title><rect x="98.8275%" y="821" width="0.0144%" height="15" fill="rgb(221,196,51)" fg:x="220168" fg:w="32"/><text x="99.0775%" y="831.50"></text></g><g><title>frame::sender (57 samples, 0.03%)</title><rect x="98.8172%" y="853" width="0.0256%" height="15" fill="rgb(214,116,26)" fg:x="220145" fg:w="57"/><text x="99.0672%" y="863.50"></text></g><g><title>OopMapSet::update_register_map (53 samples, 0.02%)</title><rect x="98.8190%" y="837" width="0.0238%" height="15" fill="rgb(236,67,7)" fg:x="220149" fg:w="53"/><text x="99.0690%" y="847.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (156 samples, 0.07%)</title><rect x="98.7737%" y="869" width="0.0700%" height="15" fill="rgb(253,179,32)" fg:x="220048" fg:w="156"/><text x="99.0237%" y="879.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (250 samples, 0.11%)</title><rect x="98.7364%" y="885" width="0.1122%" height="15" fill="rgb(218,33,15)" fg:x="219965" fg:w="250"/><text x="98.9864%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (213 samples, 0.10%)</title><rect x="98.8599%" y="613" width="0.0956%" height="15" fill="rgb(217,202,41)" fg:x="220240" fg:w="213"/><text x="99.1099%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (211 samples, 0.09%)</title><rect x="98.8608%" y="597" width="0.0947%" height="15" fill="rgb(234,133,5)" fg:x="220242" fg:w="211"/><text x="99.1108%" y="607.50"></text></g><g><title>native_write_msr (210 samples, 0.09%)</title><rect x="98.8612%" y="581" width="0.0943%" height="15" fill="rgb(240,47,40)" fg:x="220243" fg:w="210"/><text x="99.1112%" y="591.50"></text></g><g><title>finish_task_switch (222 samples, 0.10%)</title><rect x="98.8576%" y="629" width="0.0996%" height="15" fill="rgb(234,166,26)" fg:x="220235" fg:w="222"/><text x="99.1076%" y="639.50"></text></g><g><title>futex_wait_queue_me (232 samples, 0.10%)</title><rect x="98.8545%" y="677" width="0.1041%" height="15" fill="rgb(244,125,51)" fg:x="220228" fg:w="232"/><text x="99.1045%" y="687.50"></text></g><g><title>schedule (229 samples, 0.10%)</title><rect x="98.8558%" y="661" width="0.1028%" height="15" fill="rgb(229,171,11)" fg:x="220231" fg:w="229"/><text x="99.1058%" y="671.50"></text></g><g><title>__schedule (228 samples, 0.10%)</title><rect x="98.8563%" y="645" width="0.1023%" height="15" fill="rgb(224,38,45)" fg:x="220232" fg:w="228"/><text x="99.1063%" y="655.50"></text></g><g><title>do_syscall_64 (238 samples, 0.11%)</title><rect x="98.8522%" y="741" width="0.1068%" height="15" fill="rgb(237,27,7)" fg:x="220223" fg:w="238"/><text x="99.1022%" y="751.50"></text></g><g><title>__x64_sys_futex (237 samples, 0.11%)</title><rect x="98.8527%" y="725" width="0.1064%" height="15" fill="rgb(216,52,7)" fg:x="220224" fg:w="237"/><text x="99.1027%" y="735.50"></text></g><g><title>do_futex (236 samples, 0.11%)</title><rect x="98.8531%" y="709" width="0.1059%" height="15" fill="rgb(243,11,11)" fg:x="220225" fg:w="236"/><text x="99.1031%" y="719.50"></text></g><g><title>futex_wait (234 samples, 0.11%)</title><rect x="98.8540%" y="693" width="0.1050%" height="15" fill="rgb(253,167,20)" fg:x="220227" fg:w="234"/><text x="99.1040%" y="703.50"></text></g><g><title>__pthread_cond_wait (241 samples, 0.11%)</title><rect x="98.8518%" y="805" width="0.1082%" height="15" fill="rgb(215,207,5)" fg:x="220222" fg:w="241"/><text x="99.1018%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (241 samples, 0.11%)</title><rect x="98.8518%" y="789" width="0.1082%" height="15" fill="rgb(252,127,31)" fg:x="220222" fg:w="241"/><text x="99.1018%" y="799.50"></text></g><g><title>futex_wait_cancelable (240 samples, 0.11%)</title><rect x="98.8522%" y="773" width="0.1077%" height="15" fill="rgb(209,106,27)" fg:x="220223" fg:w="240"/><text x="99.1022%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (240 samples, 0.11%)</title><rect x="98.8522%" y="757" width="0.1077%" height="15" fill="rgb(214,220,18)" fg:x="220223" fg:w="240"/><text x="99.1022%" y="767.50"></text></g><g><title>Monitor::lock_without_safepoint_check (250 samples, 0.11%)</title><rect x="98.8491%" y="853" width="0.1122%" height="15" fill="rgb(237,89,12)" fg:x="220216" fg:w="250"/><text x="99.0991%" y="863.50"></text></g><g><title>Monitor::ILock (250 samples, 0.11%)</title><rect x="98.8491%" y="837" width="0.1122%" height="15" fill="rgb(209,167,36)" fg:x="220216" fg:w="250"/><text x="99.0991%" y="847.50"></text></g><g><title>os::PlatformEvent::park (246 samples, 0.11%)</title><rect x="98.8509%" y="821" width="0.1104%" height="15" fill="rgb(243,45,22)" fg:x="220220" fg:w="246"/><text x="99.1009%" y="831.50"></text></g><g><title>SafepointSynchronize::block (267 samples, 0.12%)</title><rect x="98.8491%" y="869" width="0.1198%" height="15" fill="rgb(239,2,46)" fg:x="220216" fg:w="267"/><text x="99.0991%" y="879.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (271 samples, 0.12%)</title><rect x="98.8486%" y="885" width="0.1216%" height="15" fill="rgb(241,101,0)" fg:x="220215" fg:w="271"/><text x="99.0986%" y="895.50"></text></g><g><title>entry_SYSCALL_64 (23 samples, 0.01%)</title><rect x="99.0264%" y="821" width="0.0103%" height="15" fill="rgb(244,34,31)" fg:x="220611" fg:w="23"/><text x="99.2764%" y="831.50"></text></g><g><title>__fget_light (53 samples, 0.02%)</title><rect x="99.0475%" y="757" width="0.0238%" height="15" fill="rgb(248,23,22)" fg:x="220658" fg:w="53"/><text x="99.2975%" y="767.50"></text></g><g><title>__fget_files (33 samples, 0.01%)</title><rect x="99.0565%" y="741" width="0.0148%" height="15" fill="rgb(218,27,48)" fg:x="220678" fg:w="33"/><text x="99.3065%" y="751.50"></text></g><g><title>__fdget_pos (66 samples, 0.03%)</title><rect x="99.0461%" y="773" width="0.0296%" height="15" fill="rgb(232,78,1)" fg:x="220655" fg:w="66"/><text x="99.2961%" y="783.50"></text></g><g><title>copy_user_enhanced_fast_string (579 samples, 0.26%)</title><rect x="99.1588%" y="709" width="0.2599%" height="15" fill="rgb(233,169,12)" fg:x="220906" fg:w="579"/><text x="99.4088%" y="719.50"></text></g><g><title>copy_page_to_iter (624 samples, 0.28%)</title><rect x="99.1395%" y="725" width="0.2801%" height="15" fill="rgb(225,222,54)" fg:x="220863" fg:w="624"/><text x="99.3895%" y="735.50"></text></g><g><title>pagecache_get_page (153 samples, 0.07%)</title><rect x="99.4290%" y="725" width="0.0687%" height="15" fill="rgb(245,126,29)" fg:x="221508" fg:w="153"/><text x="99.6790%" y="735.50"></text></g><g><title>find_get_entry (134 samples, 0.06%)</title><rect x="99.4376%" y="709" width="0.0601%" height="15" fill="rgb(241,63,48)" fg:x="221527" fg:w="134"/><text x="99.6876%" y="719.50"></text></g><g><title>xas_load (70 samples, 0.03%)</title><rect x="99.4663%" y="693" width="0.0314%" height="15" fill="rgb(235,126,38)" fg:x="221591" fg:w="70"/><text x="99.7163%" y="703.50"></text></g><g><title>xas_start (23 samples, 0.01%)</title><rect x="99.4874%" y="677" width="0.0103%" height="15" fill="rgb(232,96,49)" fg:x="221638" fg:w="23"/><text x="99.7374%" y="687.50"></text></g><g><title>atime_needs_update (29 samples, 0.01%)</title><rect x="99.5000%" y="709" width="0.0130%" height="15" fill="rgb(211,146,40)" fg:x="221666" fg:w="29"/><text x="99.7500%" y="719.50"></text></g><g><title>btrfs_dirty_inode (26 samples, 0.01%)</title><rect x="99.5130%" y="709" width="0.0117%" height="15" fill="rgb(247,93,44)" fg:x="221695" fg:w="26"/><text x="99.7630%" y="719.50"></text></g><g><title>touch_atime (61 samples, 0.03%)</title><rect x="99.4977%" y="725" width="0.0274%" height="15" fill="rgb(251,41,49)" fg:x="221661" fg:w="61"/><text x="99.7477%" y="735.50"></text></g><g><title>generic_file_buffered_read (923 samples, 0.41%)</title><rect x="99.1117%" y="741" width="0.4143%" height="15" fill="rgb(218,155,12)" fg:x="220801" fg:w="923"/><text x="99.3617%" y="751.50"></text></g><g><title>new_sync_read (940 samples, 0.42%)</title><rect x="99.1058%" y="757" width="0.4219%" height="15" fill="rgb(221,161,30)" fg:x="220788" fg:w="940"/><text x="99.3558%" y="767.50"></text></g><g><title>ksys_read (1,121 samples, 0.50%)</title><rect x="99.0412%" y="789" width="0.5032%" height="15" fill="rgb(221,179,11)" fg:x="220644" fg:w="1121"/><text x="99.2912%" y="799.50"></text></g><g><title>vfs_read (1,030 samples, 0.46%)</title><rect x="99.0821%" y="773" width="0.4623%" height="15" fill="rgb(224,170,48)" fg:x="220735" fg:w="1030"/><text x="99.3321%" y="783.50"></text></g><g><title>security_file_permission (32 samples, 0.01%)</title><rect x="99.5300%" y="757" width="0.0144%" height="15" fill="rgb(223,117,5)" fg:x="221733" fg:w="32"/><text x="99.7800%" y="767.50"></text></g><g><title>apparmor_file_permission (26 samples, 0.01%)</title><rect x="99.5327%" y="741" width="0.0117%" height="15" fill="rgb(209,52,20)" fg:x="221739" fg:w="26"/><text x="99.7827%" y="751.50"></text></g><g><title>do_syscall_64 (1,137 samples, 0.51%)</title><rect x="99.0390%" y="805" width="0.5104%" height="15" fill="rgb(209,19,41)" fg:x="220639" fg:w="1137"/><text x="99.2890%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,161 samples, 0.52%)</title><rect x="99.0367%" y="821" width="0.5211%" height="15" fill="rgb(210,177,12)" fg:x="220634" fg:w="1161"/><text x="99.2867%" y="831.50"></text></g><g><title>__libc_read (1,237 samples, 0.56%)</title><rect x="99.0084%" y="853" width="0.5553%" height="15" fill="rgb(211,159,37)" fg:x="220571" fg:w="1237"/><text x="99.2584%" y="863.50"></text></g><g><title>__libc_read (1,236 samples, 0.55%)</title><rect x="99.0089%" y="837" width="0.5548%" height="15" fill="rgb(209,20,2)" fg:x="220572" fg:w="1236"/><text x="99.2589%" y="847.50"></text></g><g><title>handleRead (1,251 samples, 0.56%)</title><rect x="99.0057%" y="869" width="0.5615%" height="15" fill="rgb(244,3,46)" fg:x="220565" fg:w="1251"/><text x="99.2557%" y="879.50"></text></g><g><title>jni_GetArrayLength (47 samples, 0.02%)</title><rect x="99.5673%" y="869" width="0.0211%" height="15" fill="rgb(220,94,38)" fg:x="221816" fg:w="47"/><text x="99.8173%" y="879.50"></text></g><g><title>ThreadStateTransition::transition_from_native (28 samples, 0.01%)</title><rect x="99.5758%" y="853" width="0.0126%" height="15" fill="rgb(253,14,31)" fg:x="221835" fg:w="28"/><text x="99.8258%" y="863.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (26 samples, 0.01%)</title><rect x="99.6023%" y="853" width="0.0117%" height="15" fill="rgb(234,176,13)" fg:x="221894" fg:w="26"/><text x="99.8523%" y="863.50"></text></g><g><title>JNIHandles::make_local (35 samples, 0.02%)</title><rect x="99.6238%" y="853" width="0.0157%" height="15" fill="rgb(218,62,25)" fg:x="221942" fg:w="35"/><text x="99.8738%" y="863.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (24 samples, 0.01%)</title><rect x="99.6400%" y="853" width="0.0108%" height="15" fill="rgb(216,124,40)" fg:x="221978" fg:w="24"/><text x="99.8900%" y="863.50"></text></g><g><title>jni_GetObjectField (158 samples, 0.07%)</title><rect x="99.5884%" y="869" width="0.0709%" height="15" fill="rgb(228,170,12)" fg:x="221863" fg:w="158"/><text x="99.8384%" y="879.50"></text></g><g><title>[libc-2.31.so] (231 samples, 0.10%)</title><rect x="99.6817%" y="853" width="0.1037%" height="15" fill="rgb(231,226,5)" fg:x="222071" fg:w="231"/><text x="99.9317%" y="863.50"></text></g><g><title>readBytes (1,788 samples, 0.80%)</title><rect x="98.9905%" y="885" width="0.8026%" height="15" fill="rgb(237,122,22)" fg:x="220531" fg:w="1788"/><text x="99.2405%" y="895.50"></text></g><g><title>jni_SetByteArrayRegion (298 samples, 0.13%)</title><rect x="99.6593%" y="869" width="0.1338%" height="15" fill="rgb(209,185,25)" fg:x="222021" fg:w="298"/><text x="99.9093%" y="879.50"></text></g><g><title>[unknown] (2,488 samples, 1.12%)</title><rect x="98.6839%" y="901" width="1.1168%" height="15" fill="rgb(228,200,32)" fg:x="219848" fg:w="2488"/><text x="98.9339%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (79 samples, 0.04%)</title><rect x="99.8061%" y="837" width="0.0355%" height="15" fill="rgb(217,140,10)" fg:x="222348" fg:w="79"/><text x="100.0561%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (78 samples, 0.04%)</title><rect x="99.8065%" y="821" width="0.0350%" height="15" fill="rgb(253,17,24)" fg:x="222349" fg:w="78"/><text x="100.0565%" y="831.50"></text></g><g><title>native_write_msr (78 samples, 0.04%)</title><rect x="99.8065%" y="805" width="0.0350%" height="15" fill="rgb(212,61,6)" fg:x="222349" fg:w="78"/><text x="100.0565%" y="815.50"></text></g><g><title>schedule_tail (83 samples, 0.04%)</title><rect x="99.8052%" y="869" width="0.0373%" height="15" fill="rgb(205,14,25)" fg:x="222346" fg:w="83"/><text x="100.0552%" y="879.50"></text></g><g><title>finish_task_switch (83 samples, 0.04%)</title><rect x="99.8052%" y="853" width="0.0373%" height="15" fill="rgb(232,69,41)" fg:x="222346" fg:w="83"/><text x="100.0552%" y="863.50"></text></g><g><title>ret_from_fork (85 samples, 0.04%)</title><rect x="99.8047%" y="885" width="0.0382%" height="15" fill="rgb(241,106,47)" fg:x="222345" fg:w="85"/><text x="100.0547%" y="895.50"></text></g><g><title>JavaThread::exit (23 samples, 0.01%)</title><rect x="99.8608%" y="821" width="0.0103%" height="15" fill="rgb(210,213,53)" fg:x="222470" fg:w="23"/><text x="100.1108%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (25 samples, 0.01%)</title><rect x="99.8608%" y="837" width="0.0112%" height="15" fill="rgb(253,175,27)" fg:x="222470" fg:w="25"/><text x="100.1108%" y="847.50"></text></g><g><title>Thread::call_run (35 samples, 0.02%)</title><rect x="99.8568%" y="853" width="0.0157%" height="15" fill="rgb(211,171,24)" fg:x="222461" fg:w="35"/><text x="100.1068%" y="863.50"></text></g><g><title>__GI___clone (167 samples, 0.07%)</title><rect x="99.8007%" y="901" width="0.0750%" height="15" fill="rgb(229,80,7)" fg:x="222336" fg:w="167"/><text x="100.0507%" y="911.50"></text></g><g><title>start_thread (73 samples, 0.03%)</title><rect x="99.8429%" y="885" width="0.0328%" height="15" fill="rgb(212,46,39)" fg:x="222430" fg:w="73"/><text x="100.0929%" y="895.50"></text></g><g><title>thread_native_entry (62 samples, 0.03%)</title><rect x="99.8478%" y="869" width="0.0278%" height="15" fill="rgb(240,80,45)" fg:x="222441" fg:w="62"/><text x="100.0978%" y="879.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (35 samples, 0.02%)</title><rect x="99.9044%" y="901" width="0.0157%" height="15" fill="rgb(253,177,40)" fg:x="222567" fg:w="35"/><text x="100.1544%" y="911.50"></text></g><g><title>skyframe-evalua (94,458 samples, 42.40%)</title><rect x="57.5303%" y="917" width="42.3997%" height="15" fill="rgb(249,200,15)" fg:x="128166" fg:w="94458"/><text x="57.7803%" y="927.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (64 samples, 0.03%)</title><rect x="99.9583%" y="661" width="0.0287%" height="15" fill="rgb(217,78,26)" fg:x="222687" fg:w="64"/><text x="100.2083%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.03%)</title><rect x="99.9583%" y="645" width="0.0287%" height="15" fill="rgb(254,151,32)" fg:x="222687" fg:w="64"/><text x="100.2083%" y="655.50"></text></g><g><title>native_write_msr (64 samples, 0.03%)</title><rect x="99.9583%" y="629" width="0.0287%" height="15" fill="rgb(226,165,27)" fg:x="222687" fg:w="64"/><text x="100.2083%" y="639.50"></text></g><g><title>__pthread_cond_wait (71 samples, 0.03%)</title><rect x="99.9560%" y="853" width="0.0319%" height="15" fill="rgb(250,206,4)" fg:x="222682" fg:w="71"/><text x="100.2060%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (71 samples, 0.03%)</title><rect x="99.9560%" y="837" width="0.0319%" height="15" fill="rgb(231,229,27)" fg:x="222682" fg:w="71"/><text x="100.2060%" y="847.50"></text></g><g><title>futex_wait_cancelable (71 samples, 0.03%)</title><rect x="99.9560%" y="821" width="0.0319%" height="15" fill="rgb(239,217,8)" fg:x="222682" fg:w="71"/><text x="100.2060%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.03%)</title><rect x="99.9565%" y="805" width="0.0314%" height="15" fill="rgb(225,204,27)" fg:x="222683" fg:w="70"/><text x="100.2065%" y="815.50"></text></g><g><title>do_syscall_64 (70 samples, 0.03%)</title><rect x="99.9565%" y="789" width="0.0314%" height="15" fill="rgb(230,56,32)" fg:x="222683" fg:w="70"/><text x="100.2065%" y="799.50"></text></g><g><title>__x64_sys_futex (70 samples, 0.03%)</title><rect x="99.9565%" y="773" width="0.0314%" height="15" fill="rgb(222,56,27)" fg:x="222683" fg:w="70"/><text x="100.2065%" y="783.50"></text></g><g><title>do_futex (70 samples, 0.03%)</title><rect x="99.9565%" y="757" width="0.0314%" height="15" fill="rgb(253,108,27)" fg:x="222683" fg:w="70"/><text x="100.2065%" y="767.50"></text></g><g><title>futex_wait (70 samples, 0.03%)</title><rect x="99.9565%" y="741" width="0.0314%" height="15" fill="rgb(212,87,36)" fg:x="222683" fg:w="70"/><text x="100.2065%" y="751.50"></text></g><g><title>futex_wait_queue_me (69 samples, 0.03%)</title><rect x="99.9569%" y="725" width="0.0310%" height="15" fill="rgb(247,82,36)" fg:x="222684" fg:w="69"/><text x="100.2069%" y="735.50"></text></g><g><title>schedule (67 samples, 0.03%)</title><rect x="99.9578%" y="709" width="0.0301%" height="15" fill="rgb(222,143,9)" fg:x="222686" fg:w="67"/><text x="100.2078%" y="719.50"></text></g><g><title>__schedule (67 samples, 0.03%)</title><rect x="99.9578%" y="693" width="0.0301%" height="15" fill="rgb(238,162,48)" fg:x="222686" fg:w="67"/><text x="100.2078%" y="703.50"></text></g><g><title>finish_task_switch (67 samples, 0.03%)</title><rect x="99.9578%" y="677" width="0.0301%" height="15" fill="rgb(221,59,43)" fg:x="222686" fg:w="67"/><text x="100.2078%" y="687.50"></text></g><g><title>Unsafe_Park (76 samples, 0.03%)</title><rect x="99.9542%" y="885" width="0.0341%" height="15" fill="rgb(205,166,41)" fg:x="222678" fg:w="76"/><text x="100.2042%" y="895.50"></text></g><g><title>Parker::park (74 samples, 0.03%)</title><rect x="99.9551%" y="869" width="0.0332%" height="15" fill="rgb(241,186,40)" fg:x="222680" fg:w="74"/><text x="100.2051%" y="879.50"></text></g><g><title>[perf-945576.map] (131 samples, 0.06%)</title><rect x="99.9309%" y="901" width="0.0588%" height="15" fill="rgb(216,119,35)" fg:x="222626" fg:w="131"/><text x="100.1809%" y="911.50"></text></g><g><title>skyframe-invali (155 samples, 0.07%)</title><rect x="99.9300%" y="917" width="0.0696%" height="15" fill="rgb(208,68,38)" fg:x="222624" fg:w="155"/><text x="100.1800%" y="927.50"></text></g><g><title>all (222,780 samples, 100%)</title><rect x="0.0000%" y="933" width="100.0000%" height="15" fill="rgb(217,113,1)" fg:x="0" fg:w="222780"/><text x="0.2500%" y="943.50"></text></g></svg></svg>